.popupBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 15px;
    /* helps on small screens */
}

.popupBox_backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    top: 0;
    left: 0;
}

.popupBox__container {
    width: 600px;
    min-height: 400px;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 30px;
    display: flex;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    align-items: center;
    justify-content: center;
}

.popupBox__content {
    position: relative;
    border-radius: 30px;
    display: flex;
    margin-top: 40px;
}

.popupBox__contentOne {
    position: relative;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popupBox__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupBox__img img {
    width: 60%;
}

.popupBox__img::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: #e7ffe0;
    border-radius: 50%;
    border: 1px dashed #A2102D;
}

.popupBox__img img {
    position: relative;
    max-width: 250px;
    max-height: 250px;
    z-index: 1;
    /* border-radius: 100%; */
    mix-blend-mode: darken;
}

.popupBox__contentTwo {
    position: relative;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
}

.popupBox__title {
    color: #333;
    line-height: 1em;
    font-weight: 300;
    font-size: 2em;
    margin: 0;
}

.popupBox__titleTwo {
    font-size: 3em;
    color: #887fff;
    line-height: 1em;
    margin: 0;
}

.popupBox__titleTwo span {
    color: #333;
    font-size: 0.75em;
    text-transform: uppercase;
}

.popupBox__price-old {
    color: #666;
    font-size: 14px;
    text-decoration: line-through;
}

.popupBox__description {
    font-weight: 300;
    margin: 0;
}

.popupBox__btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #A2102D;
    text-decoration: none;
    color: #000;
    border-radius: 10px;
}

.popupBox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: var(--wpr-bg-d18ac68b-b2b7-46ca-ac2d-3f8b597b8434);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-color: #f3f3f3;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
}

.popupBox__close:hover {
    background-color: #ccc;
}

.popupBox__stars {
    --rating: 0;
    font-size: 24px;
    color: #ccc;
    position: relative;
    display: inline-block;
}

.popupBox__stars::before {
    content: "★★★★★";
}

.popupBox__stars::after {
    content: "★★★★★";
    color: gold;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--rating) / 5 * 100%);
    overflow: hidden;
    white-space: nowrap;
}


@media (max-width: 768px) {
    .popupBox__content {
        width: 300px;
        height: auto;
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }

    .popupBox__contentOne {
        height: 200px;
        transform: translateY(-50px);
    }

    .popupBox__contentTwo {
        height: auto;
        text-align: center;
        align-items: center;
        padding: 20px;
        padding-top: 0;
    }

    .popupBox__img::before {
        background: #fff;
    }

    .popupBox__close {
        top: -50px;
        right: -10px;
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
    }
}

.popupBox__credit a {
    text-decoration: none;
    color: #887fff;
}

.affiliate-native-ad {
    margin: 0;
    clear: both;
}

.nativeAdList__heading {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.nativeAdBox--list {
    display: flex;
    flex-direction: column;
}

.affiliate-native-ad a {
    text-decoration: none;
    color: #A2102D;
}


.nativeAdList__items.zon-list {
    margin-bottom: 0;
}


.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}