.reviews__wrapper {
    background-color: var(--whiteSecond);
}

.reviews__slider > div {
    align-items: stretch !important;
}
.reviews__item {
    height: unset !important;
    background-color: var(--white);
    padding: 20px;
}
.reviews__item_profile {
    display: flex;
    flex-direction: row;
    align-items: start;
}
.reviews__item_avatar {
    max-width: 52px;
    max-height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 100%;
    background-color: gray;
    overflow: hidden;
}
.reviews__item_name {
    margin-left: 15px;
}
.reviews__item_name p:first-child {
    color: black !important;
    line-height: 140% !important;
}
.reviews__item_rating {
    margin-left: auto;
}
.reviews__item_rating p {
    color: #ffc700 !important;
}

.reviews__title {
    display: flex;
    flex-direction: row;
    align-items: end;
}
.reviewsControls {
    position: relative;
    width: max-content;
    gap: 15px;
    top: unset !important;
    transform: unset !important;
    left: unset !important;
    margin-left: auto;
}

@media (max-width: 768px) {
    .reviews__wrapper {
        padding: 30px 0;
    }
    .reviews__title {
        flex-direction: column;
        align-items: start;
    }
    .reviewsControls {
        margin-left: unset;
        /* width: 100%; */
        margin-top: 14px;
    }
    .reviewsControls > div {
    }
    .reviews__item_profile {
        flex-wrap: wrap;
    }
    .reviews__item_profile > * {
        flex: 1 1 40%;
    }
    .reviews__item_profile > *:last-child {
        flex: 1 1 50%;
    }
}
