/* Minification failed. Returning unminified contents.
(60,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(201,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(202,31): run-time error CSS1046: Expect comma, found '245'
(202,39): run-time error CSS1046: Expect comma, found '/'
(202,41): run-time error CSS1047: Expected number or percentage value in rgb function, found 'var('
(202,45): run-time error CSS1034: Expected closing parenthesis, found '-'
(202,45): run-time error CSS1042: Expected function, found '-'
(202,46): run-time error CSS1039: Token not allowed after unary operator: '-tw-bg-opacity'
(202,63): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(210,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
.report-review-modal h3{
    margin:0;
}
.report-review-reason input {
    width: 16px;
}
.report-review-reason {
    display: flex;
    gap: 10px;
    align-items:center;
}
.helpful.active {
    background: rgba(22, 163, 74, 0.08);
    color: #16A34A;
    transform: scale(1.05);
    transition: all 0.15s ease;
}
    .report-review-reason h5, .report-review-reason p {
        margin: 8px 0;
        font-size: 0.9em;
    }

.report-review-modal .popup-container {
    width: 512px;
}

.review-form select {
    width: 100%;
    margin-top: 5px;
}

.review-form {
    width: 560px;
    margin: 0 auto;
    max-width: 100%;
}

.reviews-summary {
    padding: 40px;
    background-color: #fff;
    display: block;
    box-shadow: 0px 0px 10px 0px #e5e7eb;
    border-radius: 10px;
    color: #4A4A4A;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reviews-rating .star-rating {
        --star-size: 30px;
    }

    .reviews-rating b {
        font-size: 3em;
        margin: 20px;
    }

.reviews-details {
    display: grid;
    grid-template-columns: auto 1fr auto;
    row-gap: 0.5rem;
    column-gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.reviews-sorting {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    flex-wrap:wrap;
}

    .reviews-sorting span {
        background-color: #fff;
        box-shadow: 0px 0px 10px 0px #e5e7eb;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
        font-weight: 500;
    }

    .reviews-sorting .active {
        background: linear-gradient(180deg,#EF4F78 0%,#EE1F44 100%);
        color: #fff;
    }

.reviews-content {
    margin-top: 20px;
}

    .reviews-content > div {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .reviews-content > p {
        line-height: 24px;
    }

.review-reply {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.review-reply-content {
    font-size: 0.9em;
}

.review-action {
    display: flex;
    gap: 20px;
}

    .review-action span {
        display: flex;
        gap: 5px;
        cursor: pointer;
        border: 1px solid #e5e7eb;
        border-radius: 100px;
        padding: 5px 20px;
        font-size: 0.9em;
        align-items: center;
    }

.review-author p {
    margin: 5px auto;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.review-author strong {
    font-size: 1.2em;
}

.review-author .allow-badge {
    background: #FFF;
    color: #333;
    border: 1px solid #e5e7eb;
    margin-top: 0;
}

    .review-author .allow-badge.verified {
        color: #EE1F44;
        font-weight: bold;
    }

.review-criterias {
    line-height: 1.8em;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-name {
    font-weight: 600;
}

.review-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.star-rating-input {
    display: inline-flex;
    gap: 10px;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
    line-height: 20px;
}

    .star-rating-input span {
        color: #ddd;
        transition: color 0.2s ease;
    }

        .star-rating-input span.active {
            color: #f5a623;
        }

.star-bar {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
    border-radius: 9999px;
    overflow: hidden;
    width: 100%;
    height: 0.8rem;
}

.star-bar-percent {
    --tw-bg-opacity: 1;
    background: linear-gradient(180deg,#EF4F78 0%,#EE1F44 100%);
    border-radius: 9999px;
    height: 100%;
}

.show-more-reviews {
    cursor: pointer;
    text-decoration: underline;
    font-style: italic;
}

.review-title {
    margin: 0;
    font-size: 21px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 8px;
    color: #4A4A4A
}

.review-description {
    line-height: 20px
}
@media screen and (max-width:768px) {
    .review-criterias {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .review-summary {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reviews-summary {
        flex-direction: column;
    }

    .reviews-sorting span {
        padding: 10px;
        font-size:0.8em;
    }

    .reviews-sorting {
        gap: 10px;
    }
}
