
.reviewsList__item {
    border: 1px solid #e8e8e8;
    margin-bottom: 15px;
    display: flex;
}
.reviewsList__item_ratings {
    border-left: 1px solid #e8e8e8;
    width: 140px;
    padding: 10px;
}
.reviewsSlider .reviewsList__item_ratings {
    border-left: 0;
}
.reviewsList__item_label {
    font-size: 14px;
}
.reviewsList__item_rating {
    margin-bottom: 8px;
}
.reviewsList__item_rating:last-child {
    margin-bottom: 0;
}
.reviewsList__item_stars span {
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/star.svg);
}
.reviewsList__item_stars span.fill {
    background-image: url(../img/icons/star_fill.svg);
}
.reviewsList__item_content {
    padding: 10px;
    flex: 1;
}
.reviewsList__item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.reviewsList__item_name {
    font-size: 16px;
}
.reviewsList__item_stars svg path.fill {
    fill: #ffcc46;
}
.reviewsList__item_stars {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}
.reviewsList__item_stars:last-child {
    margin-bottom: 0;
}
.reviewsList__item_stars svg {
    width: 18px;
    height: 18px;
}
.reviewsList__item_prof {
    font-size: 12px;
}
.reviewsList__item_date {
    font-size: 12px;
}

.reviewsSlider .reviewsList .slick-track {
    display: flex;
}
.reviewsSlider .reviewsList .reviewsList__item.slick-slide {
    height: auto;
    margin: 0px 5px;
}
.reviewsSlider .reviewsList .slick-list.draggable {
    margin: 0px -5px;
}
@media screen and (max-width: 729px) {
    .reviewsList__item_rating {
        flex-wrap: wrap;
    }
}