.rating-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
    background-color: #f3f3f3;
    border-bottom: 1px solid #d9d9d9;
}

@media screen and (max-width: 479.98px) {
    .rating-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.rating-head__left, .rating-head__right {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 50px;
}

@media (max-width: 1199.98px) {
    .rating-head__left, .rating-head__right {
        padding: 25px 40px;
    }
}

@media (max-width: 991.98px) {
    .rating-head__left, .rating-head__right {
        padding: 20px 30px;
    }
}

@media (max-width: 767.98px) {
    .rating-head__left, .rating-head__right {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 575.98px) {
    .rating-head__left, .rating-head__right {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.rating-head__left {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
    border-right: 1px solid #d9d9d9;
}

@media (max-width: 991.98px) {
    .rating-head__left {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 479.98px) {
    .rating-head__left {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
        border-right: none;
    }
}

.rating-head__right {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

@media (max-width: 991.98px) {
    .rating-head__right {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 479.98px) {
    .rating-head__right {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
    }
}

.rating-head__title {
    margin: 0 0 15px 0;
    font-size: 16px;
    text-transform: uppercase;
}

@media (max-width: 1199.98px) {
    .rating-head__title {
        margin-bottom: 10px;
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .rating-head__title {
        margin-bottom: 7px;
        font-size: 14px;
    }
}



.rating-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rating-info__total {
    display: inline-block;
    margin-right: 25px;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    color: #ea0001;
}

@media (max-width: 1199.98px) {
    .rating-info__total {
        margin-right: 20px;
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .rating-info__total {
        margin-right: 10px;
        font-size: 22px;
    }
}

.rating-info__rating {
    margin-right: 8px;
}

.rating-info__count {
    display: inline-block;
    font-size: 16px;
}

@media (max-width: 1199.98px) {
    .rating-info__count {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .rating-info__count {
        font-size: 13px;
    }
}


.show-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.show-rating.show-rating--gold .show-rating__star.show-rating__star--checked {
    background-image: url("/assets/img/star-red.svg");
}

.show-rating.show-rating--clickable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.show-rating.show-rating--clickable .show-rating__star:hover,
.show-rating.show-rating--clickable .show-rating__star:hover ~ .show-rating__star {
    background-image: url("/assets/img/star-red.svg");
    cursor: pointer;
}

.show-rating.show-rating--large .show-rating__star {
    width: 20px;
    height: 20px;
}

@media (max-width: 1199.98px) {
    .show-rating.show-rating--large .show-rating__star {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 991.98px) {
    .show-rating.show-rating--large .show-rating__star {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 767.98px) {
    .show-rating.show-rating--large .show-rating__star {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 575.98px) {
    .show-rating.show-rating--large .show-rating__star {
        width: 14px;
        height: 14px;
    }
}

.show-rating__star {
    margin: 0 7px 0 0;
    padding: 0;
    width: 12px;
    height: 12px;
    background: url("/assets/img/star-gray.svg") center no-repeat;
    background-size: contain;
}

.show-rating__star:last-child {
    margin-right: 0;
}

.show-rating__star.show-rating__star--checked {
    background-image: url("/assets/img/star-red.svg");
}


.rating-list {
    margin: 0 0 -7px;
    padding: 0;
    list-style: none;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}

.rating-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 7px;
    padding: 0;
}

.rating-list__name {
    -ms-flex-preferred-size: 12px;
    flex-basis: 12px;
    display: inline-block;
    max-width: 12px;
    margin-right: 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .rating-list__name {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .rating-list__name {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .rating-list__name {
        -ms-flex-preferred-size: 9px;
        flex-basis: 9px;
        max-width: 9px;
        margin-right: 3px;
        font-size: 14px;
    }
}

.rating-list__star {
    -ms-flex-preferred-size: 20px;
    flex-basis: 20px;
    display: inline-block;
    max-width: 20px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background: url("/assets/img/star-red.svg") center no-repeat;
    background-size: contain;
}

@media (max-width: 1199.98px) {
    .rating-list__star {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 767.98px) {
    .rating-list__star {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575.98px) {
    .rating-list__star {
        -ms-flex-preferred-size: 14px;
        flex-basis: 14px;
        max-width: 14px;
        margin-right: 3px;
        width: 14px;
        height: 14px;
    }
}

.rating-list__line {
    -ms-flex-preferred-size: calc(100% - 12px - 20px - 30px - 15px);
    flex-basis: calc(100% - 12px - 20px - 30px - 15px);
    display: inline-block;
    max-width: calc(100% - 12px - 20px - 30px - 15px);
    margin-right: 5px;
    height: 1px;
    background-color: #d9d9d9;
}

@media (max-width: 575.98px) {
    .rating-list__line {
        -ms-flex-preferred-size: calc(100% - 9px - 14px - 25px - 9px);
        flex-basis: calc(100% - 9px - 14px - 25px - 9px);
        margin-right: 3px;
    }
}

.rating-list__count {
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    display: inline-block;
    max-width: 30px;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 1199.98px) {
    .rating-list__count {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .rating-list__count {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .rating-list__count {
        -ms-flex-preferred-size: 25px;
        flex-basis: 25px;
        max-width: 25px;
        font-size: 12px;
    }
}


.reviews {
    position: relative;
    margin-left: 60px;
}

@media (max-width: 575.98px) {
    .reviews {
        margin-left: 35px;
    }
}

.reviews__photo-wrap {
    position: absolute;
    top: -10px;
    left: -60px;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
}

@media (max-width: 1199.98px) {
    .reviews__photo-wrap {
        top: -8px;
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 991.98px) {
    .reviews__photo-wrap {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .reviews__photo-wrap {
        top: -7px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .reviews__photo-wrap {
        top: -5px;
        left: -30px;
        width: 50px;
        height: 50px;
    }
}

.reviews__photo-wrap::before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 10px;
    left: 10px;
    display: block;
    width: 100%;
    height: 100%;
    background: url(/assets/img/pattern.svg);
    background-size: 0.5rem;
    border: 1px solid #1b1b1b;
}

@media (max-width: 991.98px) {
    .reviews__photo-wrap::before {
        top: 8px;
        left: 8px;
    }
}

@media (max-width: 767.98px) {
    .reviews__photo-wrap::before {
        top: 7px;
        left: 7px;
    }
}

@media (max-width: 575.98px) {
    .reviews__photo-wrap::before {
        top: 5px;
        left: 5px;
    }
}

.reviews__photo {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #1b1b1b;
    -o-object-fit: contain;
    object-fit: contain;
}

.reviews__content {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 30px 35px 60px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
}

@media (max-width: 1199.98px) {
    .reviews__content {
        padding: 30px 25px 30px 55px;
    }
}

@media (max-width: 991.98px) {
    .reviews__content {
        padding: 25px 20px 60px 50px;
    }
}

@media (max-width: 767.98px) {
    .reviews__content {
        padding: 20px 15px 30px 35px;
    }
}

.reviews__name {
    margin: 0 0 15px 0;
    font-weight: 600;
    font-size: 18px;
    color: #201b21;
}

@media (max-width: 1199.98px) {
    .reviews__name {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .reviews__name {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .reviews__name {
        font-size: 15px;
    }
}

.reviews__text {
    margin: 0 0 30px 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.375;
    color: #6e7981;
}

@media (max-width: 1199.98px) {
    .reviews__text {
        margin-bottom: 25px;
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .reviews__text {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .reviews__text {
        font-size: 13px;
    }
}

.reviews__remove-label {
    position: absolute;
    right: 125px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #1b1b1b;
    cursor: pointer;
}

.reviews__remove-label-one {
    right: 17px;
}

.reviews__answer-label {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding-right: 55px;
    font-size: 14px;
    text-transform: uppercase;
    color: #1b1b1b;
    cursor: pointer;
}

@media (max-width: 767.98px) {
    .reviews__answer-label {
        height: 40px;
        padding-right: 45px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .reviews__answer-label {
        height: 35px;
        padding-right: 40px;
        font-size: 12px;
    }
}

.reviews__answer-label::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url("/assets/img/pattern.svg");
    opacity: 0.2;
}

@media (max-width: 767.98px) {
    .reviews__answer-label::before {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .reviews__answer-label::before {
        width: 35px;
        height: 35px;
    }
}

.reviews__answer-label::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url("/assets/img/chat-double-icon-red.svg") center no-repeat;
    background-size: 24px;
}

@media (max-width: 767.98px) {
    .reviews__answer-label::after {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .reviews__answer-label::after {
        width: 35px;
        height: 35px;
        background-size: 18px;
    }
}

.reviews__answer {
    position: relative;
    margin-top: 25px;
    margin-left: 200px;
}

@media (max-width: 1199.98px) {
    .reviews__answer {
        margin-left: 160px;
    }
}

@media (max-width: 991.98px) {
    .reviews__answer {
        margin-left: 140px;
    }
}

@media (max-width: 767.98px) {
    .reviews__answer {
        margin-left: 80px;
    }
}

@media (max-width: 575.98px) {
    .reviews__answer {
        margin-top: 20px;
        margin-left: 40px;
    }
}


.section__reviews {
    margin-bottom: -50px;
}

@media (max-width: 575.98px) {
    .section__reviews {
        margin-bottom: -35px;
    }
}

.section__review {
    margin-bottom: 50px;
}

@media (max-width: 575.98px) {
    .section__review {
        margin-bottom: 35px;
    }
}


.btn.btn--review .btn__label {
    padding-left: 50px;
    padding-right: 20px;
    background-image: url("/assets/img/chat-icon-red.svg");
    background-position: left 15px center;
    background-repeat: no-repeat;
    background-size: 24px;
}

@media (max-width: 575.98px) {
    .btn.btn--review .btn__label {
        padding-left: 30px;
        padding-right: 8px;
        height: 43px;
        background-position: left 5px center;
        background-size: 16px;
    }
}

.reviews__answer-btn-wrap {
    text-align: right;
}

