.popup-promo {
    position: fixed;
    display: none;
    z-index: 1000;
    top: 0;
    background-repeat: no-repeat;
}
.closePromoPopup {
    position: absolute;
    top: 15px;
    right: 50px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    transform: rotate(-45deg);
    z-index: 99;
    transition: 0.3s;
}
.closePromoPopup:before, .closePromoPopup:after {
    content: "";
    position: absolute;
    background-color: #ffffff99;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
}
.closePromoPopup:before {
    width: 15px;
    height: 2px;
}
.closePromoPopup:after {
    width: 2px;
    height: 15px;
}
.popup-promo__btn {
    width: 168px;
    height: 43px;
    opacity: 1;
    border-radius: 46px;
    display: flex;
    background: #A31F1A;
    border: none;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.popup-promo_first {
    background-size: 100%;
    width: 577px;
    height: 347px;
    top: calc(50% - 174px);
    left: calc(50% - 289px);
}

.popup-promo_first .popup-promo__btn {
    position: absolute;
    bottom: 33px;
    left: 10px;
    width: 195px;
}

.popup-promo_second {
    background-size: 100%;
    width: 577px;
    height: 347px;
    top: calc(50% - 174px);
    left: calc(50% - 289px);
}

.popup-promo_second .popup-promo__btn {
    position: absolute;
    bottom: 33px;
    left: 10px;
    width: 195px;
}

.mask-overlay {
    z-index: 990;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.3;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 666px) {
    .popup-promo__btn {
        width: 84px;
        height: 22px;
        opacity: 1;
        border-radius: 23px;
        font-size: 8px;
    }
    .popup-promo_first {
        width: 333px;
        height: 192px;
        top: calc(50% - 128px);
        left: calc(50% - 167px);
    }
    .popup-promo_first .popup-promo__btn {
        position: absolute;
        bottom: 16px;
        right: 55px;
        width: 100px;
    }
    .popup-promo_second {
        background-image: url('../images/popup2.png');
        background-size: 100%;
        width: 282px;
        height: 172px;
        top: calc(50% - 86px);
        left: calc(50% - 141px);
    }

    .popup-promo_second .popup-promo__btn {
        position: absolute;
        bottom: 17px;
        left: 5px;
        width: 98px;
    }
    .closePromoPopup {
        right: 20px;
    }
}