

/* Start:/local/components/liga/review.service/templates/detail/style.css?174469683711390*/
/* review not found */
.empty-reviews-body {
    gap: 10px;
    display: grid;
    text-align: center;
}

.empty-reviews-body img {
    display: flex;
    margin: 0 auto;
    padding: 25px 0;
}

.empty-reviews-body span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.empty-reviews-body .button {
    padding-top: 25px;
}
/* !review not found */


/* review-product-info */
.review-product-info {
    gap: 30px;
    padding: 10px;
    align-items: center;

    display: grid;
    grid-template-columns: auto auto 1fr auto;

    border-top: 1px solid #E4E8EA;
    border-bottom: 1px solid #E4E8EA;
    margin-bottom: 50px;
}

.review-product-info>a>img {
    height: 80px;
}

.review-product-info a {
    color: black;
    text-decoration: none;
}

.review-product-info .product-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.review-product-info>.product-info {
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-product-info .rating-data {
    gap: 8px;
    display: flex;
    align-items: center;
}

.review-product-info .product-price {
    text-align: right;
    vertical-align: middle;
}

.review-product-info .product-buy {
    gap: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.review-product-info .product-buy>a {
    display: block;
    width: 100%;
    background: #e31e24;
    color: #fff;
    padding: 15px 35px;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
}

/* !review-product-info */

/* product-info-top-line */
.product-info-top-line {
    position: sticky;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;

    background-color: white;
    box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.8);
}

/* product-info-top-line */


.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-header,
.reviews-rating-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-rating {
    background-color: #F2F5F9;
    padding: 20px 40px;
}

.reviews-header>.reviews-count {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.reviews-rating-content {
    padding-top: 20px;
}

.reviews-rating-value-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-rating>span,
.reviews-rating-value-block>span:first-child {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.reviews-rating-value-block>span:first-child {
    font-size: 36px;
}

.review-comment-date,
.reviews-rating-value-block>span:last-child {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #B0B6BE;
}

/* progress bar */
.reviews-rathing-progressbar {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 60fr 1fr;
}

.reviews-score-values,
.reviews-score-bars {
    gap: 9px;
    display: grid;
    text-align: center;
    align-items: center;
}

.review-score-bar {
    display: flex;
    width: 100%;
    height: 6px;
    position: relative;
    background: #B0B6BE;

    cursor: pointer;
}

.review-score-bar>span {
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    background-color: #F7B500;
}

.reviews-rathing-progressbar>.reviews-score-values {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.reviews-rathing-progressbar>.reviews-score-values:last-child {
    color: #B0B6BE;
}

/* !progress bar */

/* reviews filter */
.reviews-filters .switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3em;
    height: 1.5em;
}

.reviews-filters .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.reviews-filters .switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #B0B6BE;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.reviews-filters .switch .slider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.45em;
    width: 1.5em;
    inset: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reviews-filters .switch input:checked+.slider {
    background: #e31e24;
}

.reviews-filters .switch input:checked+.slider:before {
    transform: translateX(1.6em);
}


.reviews-filters {
    gap: 18px;
    display: flex;
    flex-direction: column;

    padding: 20px 0;
}

.reviews-filters>.sort-by-params {
    gap: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.reviews-filter {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-filters .filter-ordering {
    gap: 10px;
    display: flex;
    flex-direction: row;
}

.filter-by-stars {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.reviews-filters .filter-checkbox input {
    display: none;
}

.reviews-filters .filter-checkbox label {
    padding: 2px 10px;
    display: flex;
    cursor: pointer;
    border-radius: 15px;

    border: 2px solid #F2F5F9;
    background-color: #F2F5F9;
}

.reviews-filters .filter-checkbox label:hover {
    border: 2px solid #b0b6be4f;
}

.reviews-filters .filter-checkbox input:checked+label {
    border: 2px solid #B0B6BE;
}

/* !reviews filter */

.reviews-list {
    gap: 30px;
    display: flex;
    flex-direction: column;
}

/* review-item */
.review-item {
    padding: 20px 40px;
    background-color: #F2F5F9;
}

.review-header {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.review-header>.top-line {
    display: flex;
    justify-content: space-between;
}

.review-header>.top-line>span:first-child {
    display: inline-flex;
    gap: 30px;
}

.review-header>.top-line>span:first-child>span:first-child {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.review-header>.top-line>span:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #B0B6BE;
}

.review-real-buyer {
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-real-buyer>span {
    cursor: pointer;
}

.review-body {
    padding-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}


.review-media-content {
    gap: 10px;
    padding: 15px 0;
    display: flex;
    flex-direction: row;

    flex-wrap: wrap;
}

.review-media {
    flex-basis: 177px;
    display: flex;
    width: 177px;
    height: 222px;
}

.review-media.video {
    flex-basis: auto;
    display: flex;
    min-width: none;
    height: 100%;
    width: auto;
    min-width: 177px;
    background-color: #F2F5F9;
}

.review-media>a {
    display: flex;
}

.review-media>a>img {
    object-fit: cover;
    object-position: center;
}

.review-media video {
    max-width: 100%;
    min-height: 222px;
    height: 222px;

    flex-grow: 1;
}

.review-footer {
    display: flex;
    flex-direction: column;
}

.review-voice-wrapper {
    gap: 20px;
    display: flex;
    flex-direction: row;
}

.review-voice {
    display: flex;
    border: none;
    height: 32px;
    align-items: center;
    background-color: #F2F5F9;
}

.review-voice::before {
    content: '';
    width: 32px;
    height: 32px;

    background-color: #9D9B9B;
    -webkit-mask-image: url("/local/components/liga/review.service/images/like.svg");
    mask-image: url("/local/components/liga/review.service/images/like.svg");
}

.review-voice.review-voice-dislike::before {
    transform: scaleY(-1);
}

.review-voice.active::before {
    background-color: red;
}

.review-comment {
    padding: 10px;
    margin-top: 20px;
    background-color: white;
}

.review-comment-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-comment-title>span {
    color: #B0B6BE;
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 0px;
}

.review-comment-body {
    position: relative;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
}

.review-comment-body>span {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

.review-comment-date {
    text-align: end;
}

.review-comment-text {
    margin-bottom: 5px;
    white-space: break-spaces;
}

/* !review-item */


/* review modal */
.review-modal {
    display: none;
    width: 80vw;
    max-width: 1200px;
}

.review-modal-container {
    padding: 30px;
}

.review-modal-content {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 250px;
}

.add-review-modal-skin {
    background-color: white !important;
}

.review-modal-close {
    top: 8px !important;
    right: 8px !important;
}

.review-modal-product {
    gap: 15px;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-product-img {
    display: flex;
    justify-content: center;

    max-height: 217px;
}

.review-modal-product img {
    object-fit: contain;
}

.review-modal-product span {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.review-modal-product a {
    color: black;
    text-decoration: none;
    text-align: center;
}

.review-modal-product .rating-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-modal-product .product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* review modal form */
.review-modal-form {
    gap: 20px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.review-heading-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
}

.add-review-rating>span,
.reviews-media-input span {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.reviews-media-input span+.alert {
    color: red;
}

.add-review-media input[type="file"],
.add-review-rating .rating-select input[type="radio"] {
    display: none;
}

.add-review-comment textarea {
    resize: none;
    height: 230px;

    border-radius: 6px;
    border: 2px solid #B0B6BE;
}

.add-review-media {
    gap: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.reviews-media-input>label {
    gap: 10px;
    padding: 10px;

    display: grid;
    grid-template-columns: 64px 1fr;

    cursor: pointer;
}
/* !review modal */



/* media */
@media (max-width: 666px) {
    .review-modal {
        width: 100vw;
    }

    .reviews-rating-content {
        gap: 15px;
        flex-direction: column;
    }

    .reviews-rating-value-block {
        width: 100%;
    }

    .review-product-info {
        gap: 12px;
        margin: 0;
        padding: 10px 0;
        grid-template-columns: auto 1fr auto;
    }

    .review-product-info .product-buy {
        display: none;
    }

    .review-header>.top-line>span:first-child {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .review-item {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .reviews-filters>.sort-by-params {
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1250px) {
    .add-review-media {
        gap: 10px;
        grid-template-columns: 1fr;
    }
}
/* End */
/* /local/components/liga/review.service/templates/detail/style.css?174469683711390 */
