@charset "UTF-8";.has-ribbon {
    position: relative;
}

.has-ribbon:after {
    content:"";
    position:absolute;
    bottom:-5px;
    width:30%;
    height:10px;
    background-color:#ffd60d;
    right:0;
    border-radius: 50px 0 0 50px;
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;    
}

.has-ribbon:before {
    content:"";
    position:absolute;
    bottom:-25px;
    width:50px;
    height:50px;
    background-color:#e10493;
    right:calc(30% + 15px);
    border-radius: 50px;
    opacity:0;
    animation-name: rotate3d;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;    
    animation-direction: normal;
}


.mod-banners.bannergroup {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    gap:6px;
    padding:10px;
    width:auto;
}


.mod-banners.bannergroup .banneritem {
    flex: 1 0 130px;
    margin:0 auto;
    text-align:center;
}


.uk-modal-full {
    width: 90%;
    margin: 5% auto;
    border-radius:20px;
}

html.uk-modal-page:before {
    content:"";
    background:rgba(0,0,0,0.7);
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index:6;
}







