/* ------------- tab ------------- */

.product-reviews-module .product-reviews-tab {
    display: flex;
    padding-bottom: 20px;
    position: relative;
    background: #FFFFFF;
    color: #272323;
    border-radius: 6px;
    border: 0 solid #FFFFFF;
    box-shadow: none;
    padding: 15px;
}

.product-reviews-module .product-reviews-tab-left {
    flex: 1;
}

.product-reviews-module .product-reviews-tab-title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: .3px;
    color: #272323;
    width: 100%;
}

.product-reviews-module .product-reviews-tab-right {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    max-width: 480px;
}

.product-reviews-module .product-reviews-tab-rating-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
}

.product-reviews-module .product-reviews-tab-rating-item:hover {
    background: #f9f9f9;
    border-radius: 6px;
}

.product-reviews-module .product-reviews-tab-rating-number {
    padding-right: 5px;
    font-size: 15px;
    color: #000;
    line-height: 20px;
    width: 20px;
    text-align: center;
}

.product-reviews-module .product-reviews-tab-rating-top {
    display: flex;
    flex-direction: row-reverse;
}


.product-reviews-module .product-reviews-tab-rating-line {
    height: 6px;
    background: #ebebeb;
    margin: 0 15px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.product-reviews-module .product-reviews-tab-rating-line span {
    display: block;
    height: 100%;
    background: #e9e9e9;
}

.product-reviews-module .product-reviews-tab-rating-value {
    padding: 3px 7px;
    font-weight: 500;
    line-height: 17px;
    color: #f4f4f4;
    border-radius: 6px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    min-width: 30px;
    background: #ffa900;
}

.product-reviews-module .product-reviews-tab-rating-item:first-child .product-reviews-tab-rating-line span, 
.product-reviews-module .product-reviews-tab-rating-item:first-child .product-reviews-tab-rating-value {
    background: #27ae60;
}

.product-reviews-module .product-reviews-tab-rating-item:nth-child(2) .product-reviews-tab-rating-line span, 
.product-reviews-module .product-reviews-tab-rating-item:nth-child(2) .product-reviews-tab-rating-value {
    background: #6fcf97
}

.product-reviews-module .product-reviews-tab-rating-item:nth-child(3) .product-reviews-tab-rating-line span, 
.product-reviews-module .product-reviews-tab-rating-item:nth-child(3) .product-reviews-tab-rating-value {
    background: #f2c94c
}

.product-reviews-module .product-reviews-tab-rating-item:nth-child(4) .product-reviews-tab-rating-line span, 
.product-reviews-module .product-reviews-tab-rating-item:nth-child(4) .product-reviews-tab-rating-value {
    background: #f2994a
}

.product-reviews-module .product-reviews-tab-rating-item:nth-child(5) .product-reviews-tab-rating-line span, 
.product-reviews-module .product-reviews-tab-rating-item:nth-child(5) .product-reviews-tab-rating-value {
    background: #eb5757
}

.product-reviews-module .product-reviews-tab-container-avg {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.product-reviews-module .product-reviews-tab-rating-top-left {
    position: relative;
    width: fit-content;
    display: flex;
    margin-right: 15px;
    padding-bottom: 2px;
}

.product-reviews-module .product-reviews-tab .product-reviews-star {
    width: 25px;
    height: 25px;
    margin: 0 2px 0 0;
}

.product-reviews-module .product-reviews-tab-rating-top-full {
    position: absolute;
    top: 0;
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
}

.product-reviews-module .product-reviews-tab-product-rating {
    font-size: 34px;
    margin-bottom: 0;
    color: #272323;
}

.product-reviews-module .product-reviews-tab-product-rating span {
    font-size: 20px;
    font-weight: 300;
}

.product-reviews-module .product-reviews-tab-product-rating-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: #777777;
}

