.category-reviews {
    float: left;
    width: 100%;
    margin-bottom: 100px;
    margin-top: 100px;
}

.category-reviews-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 24px;
    color: #101011;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.reviews-wrap {
    display: flex;
    justify-content: space-between;
    margin-left: -41px;
    margin-right: -41px;
}

.reviews-wrap-arrows {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
}

.reviews-wrap-arrows .slick-arrow {
    width: 19px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.reviews-wrap-arrows .slick-arrow:hover {
    opacity: 0.7;
}

.reviews-wrap-arrows .arrow-prev {
    background-image: url("../img/arrow-prev.svg");
}

.reviews-wrap-arrows .arrow-next {
    margin-left: 26px;
    background-image: url("../img/arrow-next.svg");
}

.review-item {
    width: calc(33.333% - 82px);
    margin: 0 41px;
}

.review-description {
    height: 72px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2E2E35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-content {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #E4E4E4;
}

.review-author-content {
    display: flex;
}

.review-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #F5F5F5;
    margin-right: 19px;
    border-radius: 50%;

    text-transform: uppercase;
    color: #D6D6D6;
    font-weight: 500;
    font-size: 36px;
}

.review-author {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.review-author-name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
}

.review-author-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #848889;
}

.review-rating {
    position: relative;
    width: 100px;
    height: 20px;
    color: red;
}

.review-rating:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0;
    left: 0;
    background: url("../img/star.svg");
    opacity: 0.15;
    z-index: -1;
}

.review-rating .rating-stars {
    display: block;
    width: 0;
    height: 20px;
    background: url("../img/star.svg");
}

.rating-stars.stars-1 {
    width: 20px;
}

.rating-stars.stars-2 {
    width: 40px;
}

.rating-stars.stars-3 {
    width: 60px;
}

.rating-stars.stars-4 {
    width: 80px;
}

.rating-stars.stars-5 {
    width: 100px;
}

.review-product .slick-arrow {
    display: none !important;
}

.review-product {
    padding: 14px 0;
    margin: 0;
    list-style: none;
}

.review-product .review-product-item{
    display: flex;
    align-items: center;
}

.review-product .product-image {
    width: 108px;
}

.review-product-content {
    width: calc(100% - 108px);
    padding-left: 28px;
}

.product-title {
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
}

.product-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #795943;
}

.product-sizes {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
}

.product-sizes .display-sizes {
    font-size: 1em;
    margin-top: 0;
}

.product-sizes .size-value {
    color: #795943;
}

@media all and (max-width: 1199px) {
    .review-item {
        width: calc(50% - 82px);
        margin: 0 41px;
    }
}

@media all and (max-width: 991px) {
    .reviews-wrap {
        margin-left: -21px;
        margin-right: -21px;
    }

    .review-item {
        width: calc(50% - 42px);
        margin: 0 21px;
    }

    .review-image {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }

    .review-product .product-image {
        width: 102px;
    }

    .review-product-content {
        padding-left: 18px;
        width: calc(100% - 102px);
    }

    .product-title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-sizes {
        margin-top: 10px;
        font-size: 14px;
    }
}

@media all and (max-width: 767px) {
    .category-reviews {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .reviews-wrap {
        margin-left: -15px;
        margin-right: -15px;
    }

    .review-item {
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .category-reviews-title {
        margin-bottom: 46px;
        font-size: 24px;
    }

    .reviews-wrap-arrows {
        display: none;
    }

    .reviews-wrap .slick-dots {
        padding: 0 15px;
        margin-top: 12px;
    }

    .slick-dots button {
        border-radius: 50%;
    }

    .slick-dots .slick-active button {
        background: #E7E7E8;

    }
}