.promo-modal-c {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 99999;
    display: none;
}

.promo-modal-c.shown {
    display: flex;
    animation: promoFadeIn 250ms ease-out;
}

.promo-modal-c.fade-out {
    animation: promoFadeOut 250ms ease-out forwards;
}

.promo-modal-c .yt-modal {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 630px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.promo-modal-c .yt-modal .close-yt-modal {
    font-size: 20px;
    color: gray;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.promo-modal-c .yt-modal .close-yt-modal:hover {
    color: black;
}

.promo-modal-c .yt-modal .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-c .yt-modal .buy-now-btn {
    position: absolute;
    bottom: 7%;
    border-radius: 10px;
    overflow: hidden;
    width: 34%;
    font-size: 18px;
}

.promo-modal-c .yt-modal .buy-now-btn.domain-btn {
    left: 8%;
}

.promo-modal-c .yt-modal .buy-now-btn.hosting-btn {
    right: 8%;
}

@media (max-width: 520px) {
    .promo-modal-c .yt-modal .buy-now-btn {
        font-size: 14px;
        bottom: 6%;
        height: 34px;
    }
}



@keyframes promoFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes promoFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}