@keyframes blink {
    50% {
        opacity: 0;
    }
}

.af_bnr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af_bnr img {
    max-height: 100%;
}

.af_bnr:before {
    content: 'Реклама';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c2c2c2;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    z-index: -1;
    animation-name: blink;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.af_inline_bnr {
    margin: 25px auto;
}

.af_inline_bnr img {
    border-radius: 10px;
}

.af_inline_bnr.af_bnr_desktop {
    aspect-ratio: 1100 / 250;
    width: 100%;
    max-width: 1100px;
}

.af_inline_bnr.af_bnr_mobile {
    aspect-ratio: 410 / 300;
    width: 100%;
    max-width: 410px;
}

.af_sidebar_bnr {
    margin: 0 auto 25px;
}

.af_sidebar_bnr.af_bnr_desktop {
    aspect-ratio: 330 / 550;
    width: 100%;
    max-width: 330px;
}

.af_sidebar_bnr img {
    border-radius: 10px;
}

/* Попап */

.popup_advert {
    position: fixed;
    bottom: 50px;
    left: 40px;
    max-width: 450px;
    border-radius: 15px;
    z-index: 999;
    background: #dcdcdc;
    box-shadow: 7px 7px 30px rgba(0, 0, 0, .15);
    padding: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 575px) {
    .popup_advert {
        bottom: 0;
        right: 0;
        left: 0;
        width: 356px;
    }
}

.popup_advert.popup-hide {
    left: -500px;
}

.popup_btn {
    right: 10px;
    background-color: #dcdcdc;
    top: -30px;
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-top-left-radius: 99px;
    -webkit-border-top-right-radius: 99px;
    -moz-border-radius-topleft: 99px;
    -moz-border-radius-topright: 99px;
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
}

@media only screen and (max-width: 350px) {
    .popup_advert .popup_btn {
        left: 10px;
        right: auto;
    }
}

.popup_btn p {
    font-size: 20px;
    font-weight: 700;
    color: black;
}

.popup_img {
    width: 100%;
    height: 100%;
}

.popup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.popup_advert a {
    width: 100%;
    height: 100%;
}

/* Фулскрин баннер */

body.no_overflow {
    overflow: hidden;
}

.fullscreen_shader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: #00000050;
}

.fullscreen_advert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 450px;
    aspect-ratio: 300 / 600;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fullscreen_advert.fullscreen-hide {
    left: -1000px;
}

.fullscreen_shader.fullscreen-hide {
    display: none;
}

.fullscreen_img {
    width: 100%;
    height: 100%;
}

.fullscreen_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.fullscreen_advert a {
    width: 100%;
    height: 100%;
}
