/* Selectra review score */
.review-card {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    height: max-content;
}

.review-card__logo {
    width: auto;
    max-width: 120px;
    margin-right: 20px;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-card__title {
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -.022em;
    font-weight: 600;
    font-style: normal;
    font-family: Inter, sans-serif;
    line-height: 128%;
    color: #343535;
}

.review-card__stars {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.review-card__star {
    width: 20px;
    height: 20px;
    fill: lightgray;
}

.review-card__rating-text {
    font-size: .875rem;
    margin-top: 7px;
}

.review-card__rating-text span {
    font-size: 1.125rem;
    font-weight: 700;
}


.review-card .star-rating {
    width: 184px;
    height: 32px;
    margin-bottom: 0;
    margin-right: 16px;
}

.review-card .star-rating .star-rating__rating {
    height: 32px;
    display: flex;
    gap: 6px;
}

.review-card .star-rating {
    background-image: none;
}

.review-card .star-rating .star-rating__rating {
    background-image: none;
    white-space: nowrap;
}

.star-icon-wrapper {
    position: relative;
}

.star-icon-wrapper::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 6px;
    right: -6px;
    background-color: white;
    top: 0;
    z-index: 1;
}

.review-card .star-rating svg.star {
    background-color: transparent;
    height: 32px;
    width: 32px;
    padding: .5rem;
    fill: #fff;
}

.review-card__wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 24px;
    border: 1px solid #e5e5dd;
    border-radius: 12px;
}

.review-card__wrapper .review-card {
    margin: 0;
}

.review-card__html {
    width: 100%;
    margin-left: 1rem;
}

@media screen and (max-width: 991px) {
    .review-card {
        max-width: 100%;
        min-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .review-card__wrapper {
        padding: 12px;
        gap: 20px;
    }

    .review-card__html {
        max-width: 100%;
    }

    .review-card__logo {
        width: auto;
        margin-bottom: 7px;
        margin-right: 0;
    }

    .review-card__info {
        width: 100%;
    }

    .review-card__info {
        align-items: center;
    }
}

.card--reviews-reply .review__date {
    margin-left: 8px;
}

.card--reviews-reply .see-less {
    display: block;
}

@media screen and (max-width: 768px) {
    .card--reviews-reply .review__date {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }    
}
