.anniversary-popup {
    font-family: Montserrat-Medium, serif;
    position: fixed;
    top: auto;
    bottom: 80px;
    left: auto;
    right: 60px;
    z-index: 90 !important;
    background: transparent;
    backdrop-filter: none;
    display: none;
    overflow: unset;
}

.anniversary-popup__container {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.anniversary-popup__wrapper {
    background-color: #fff;
    color: #121239;
    position: relative;
    -webkit-box-shadow: 0px -10px 100px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -10px 100px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -10px 100px 30px rgba(0, 0, 0, 0.2);
}

.anniversary-popup__title {
    max-width: 300px;
    color: #7949F4;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.66px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .anniversary-popup__title {
        max-width: 100%;
    }
}

.anniversary-popup__body {
    width: 400px;
    height: 170px;
    padding: 30px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    background-color: #121239;
    position: relative;
    overflow: hidden;
}



.anniversary-popup__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 5px;
    z-index: 1;
}

.anniversary-popup__image::before {
    width: 733.419px;
    height: 383.75px;
    height: 383.75px;
    position: absolute;
    content: '';
    border-radius: 733px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(33, 17, 211, 0.89) 0%, rgba(255, 201, 246, 0.00) 100%);
    mix-blend-mode: color;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    pointer-events: none;
}

.anniversary-popup__image img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    z-index: 0;
}

.anniversary-popup__button {
    display: inline-block;
    margin-top: 21px;
    padding: 8px 21px;
    background: #ffffff;
    border-radius: 2px;
    font-size: 12px;
    line-height: normal;
    font-weight: 600;
    border: 1px solid #ffffff;
    color: #121239;
}
.anniversary-popup__button:hover {
    border: 1px solid #7949F4;
    background-color: #7949F4;
    color: #ffffff;
}

.anniversary-popup-close {
    top: -65px;
    right: 0;
}

@media (max-width: 767px) {
    .anniversary-popup-close {
        top: -51px;
        right: 20px;
    }

    .anniversary-popup {
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .anniversary-popup__body {
        width: 100%;
    }

    .anniversary-popup__wrapper {
        width: 100%;
    }

    .anniversary-popup__title br {
        display: none;
    }

    .anniversary-popup__button {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        max-width: 220px;
    }
    .anniversary-popup__image::before {
        transform: translate(-15%, -50%);
    }
}


@media (max-width: 500px) {
    .anniversary-popup__body {
        padding: 20px;
    }

    .anniversary-popup__title {
        font-size: 20px;
    }
    .anniversary-popup__image img {
        max-width: 190px;
    }
}


[data-animation="animation-open"] .anniversary-popup__wrapper {
    -webkit-animation: animation-open .5s both;
    animation: animation-open .5s both;
}

[data-animation="animation-close"] .anniversary-popup__wrapper {
    -webkit-animation: animation-close .5s both;
    animation: animation-close .5s both;
}

@keyframes animation-open {
    from {
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes animation-close {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }
}