<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#review-popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999999999;
    left: 0;
    transition: .4s;
    top: -30px;
    opacity: 0;
    animation: review-popup forwards .4s;
    margin: auto;
    width: 80%;
    max-height: 80%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
#review-popup:before {
    content: '';
    position: fixed;
    background: #000;
    opacity: .3;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
}
@keyframes review-popup {
    to {
        top: 0;
        opacity: 1;
    }
}
#review-popup .head {
    background-color: #F4F4F4;
    height: 80px;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    position: relative;
    z-index: 1;
}
#review-popup .head span {
    width: 40px;
    height: 40px;
    max-height: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    border-radius: 14px;
    padding: 0 0 2px 0;
    box-sizing: border-box;
}
.review-body {
    display: flex;
    height: calc(100% - 120px);
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    background-color: #fff;
}
.review-body .review-body-right {
    width: 35%;
    background-color: #fff;
    padding: 10px 20px;
    overflow-y: auto;
    height: calc(100%);
}
.review-body-right-head {
    margin-bottom: 7px;
}
.review-body-right-head figure {
    display: flex;
    gap:18px;
    margin: 0;
}
.review-body-right-head figure img {
    border-radius: 18px;
}
.review-body-right-head figure span {
    font-size: 20px;
    font-weight:bold;
    max-width: 200px;
}
.review-body-right-head {
    display: flex;
    justify-content: space-between;
}
.review-body-right-purchase {
    font-size: 16px;
    font-weight:bold;
}
.review-body-right-rating {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    row-gap: 4px;
}
.review-body-right-rating span {
    color: #A1AAB7;
    font-size: 16px;
}
.review-body-right-desc {
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 10px;
}
.review-details-slider-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}
.review-details-slide {
    display: flex;
}
.review-details-slide img {
    object-fit: cover;
    cursor: pointer;
}
.review-body-left {
    background-color: #333333;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 65%;
}
.review-body-left-box {
    background-color: #fff;
    width: 80%;
    display: flex;
    align-items: center;
    padding-block: 20px;
}
.review-body-left-box img {
    width: 80%;
    height: auto;
    border-radius: 16px;
    max-height: 100%;
    object-fit: contain;
    margin-inline: auto;
}
.review-details-slider-wrapper {
    /* display: flex; */
    position: relative;
    padding-inline: 30px;
}
.review-details-slider-right,
.review-details-slider-left {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.review-details-slider-left {
    right: auto;
    left: 0;
    z-index: 2;
}
.review-details-slider {
    overflow: hidden;
}
.review-details-slider-right:before {
    transform: scale(-1);
}
.review-details-slider-left:before,
.review-details-slider-right:before {
    content: "\e60f";
    font-size: 30px;
}
.review-details-slider-wrapper .swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.preview-review-image-slider-wrapper {
    display: none;
}
@media (max-width: 776px) {
    .review-body-left-box .do-img-review {
        display: none;
    }
    #review-popup {
        width: 100%;
        max-height: 100%;
        height: 100%;
    }
    .review-body .review-body-right {
        display: none;
    }
    .review-body-left,.review-body-left-box {
        width: 100%;
    }
    #review-popup .head {
        height: 45px;
        margin-bottom: 0;
        padding-inline: 10px;
    }
    .review-body-left {
        align-items: center;
    }
    .review-body-left-box {
        width: 100%;
    }
    .review-body {
        height: calc(100% - 45px);
        padding-block: 0;
    }
    #review-popup .head span {
        width: 33px;
        height: 33px;
        font-size: 24px;
        border-radius: 8px;
    }
    .review-body-left-box {
        height: 60%;
    }
    .review-body-left-box  {
        display: block;
    }
    .review-body-left-box img {
        width: 90%;
        margin-inline: auto;
        display: block;
    }
    .review-details-slider-right, .review-details-slider-left {
        z-index: 999;
    }
    .preview-review-image-slider-wrapper {
        display: block;
    }
}</pre></body></html>