.rating-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #222222;
    margin: 0;
}

.rating-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(34, 34, 34, 0.50);
}


.rating-text .js-go-to-reviews span {
    color: #00AFFF;
}

.rating-advantages-list {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid #F0F0F0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rating-advantage {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    border-right: 1px solid #F0F0F0;
    padding: 15px 8px;
}

.rating-advantage:last-child {
    border-right: none;
}

.rating-advantage-info {
    display: flex;
    gap: 2px;
}

.rating-advantage__label,
.rating-advantage-info__value {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(34, 34, 34, 0.5);
    margin: 0;
}

.rating-advantage-info__value {
    color: #222222;
}

.write-review-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    font-family: var(--font-harmonia);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
    border: 1px solid #00AFFF;
    background-color: #00AFFF;
    padding: 13px 0;
    margin: 0 auto;
}

.write-review-btn:hover,
.write-review-btn:focus {
    background-color: #ffffff;
    color: #00AFFF;
}

/* ? Pluses ? */

.dropdown-block .show-more-btn {
    font-family: var(--font-harmonia);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #00AFFF;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 17px;
    right: 12px;
    padding: 0;
    margin: 0;
}

.dropdown-block .show-more-btn span:last-of-type {
    display: none;
}

.dropdown-block.js-open .show-more-btn span:first-of-type {
    display: none;
}

.dropdown-block.js-open .show-more-btn span:last-of-type{
    display: block;
}

.advantage-user-selection-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-height: 95px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;

    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.advantage-user-selection {
    max-width: 225px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    padding: 12px 8px;
}

.advantage-user-selection-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    border-right: 1px solid #F0F0F0;
    padding: 0 6px 0 0;
}

.advantage-user-selection-inner__img {
    width: 18px;
    height: 9px;
}

.advantage-user-selection-inner__value,
.advantage-user-selection__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #222222;
    margin: 0;
}

.dropdown-block .advantage-user-selection__text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown-block.js-open .advantage-user-selection__text {
    text-overflow: initial;
    white-space: initial;
    overflow: visible;
}

/* ? Progress ? */

.rating-prodgress-bar-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px 15px;
    margin: 0;
}

.rating-prodgress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.rating-prodgress-bar__star,
.rating-prodgress-bar__percent {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(34, 34, 34, 0.5);
}

.rating-prodgress-bar__star {
    display: flex;
    gap: 4px;
}

.rating-prodgress-bar__percent {
    flex-shrink: 0;
    width: 34px;
    text-align: left;
}

.progressbar {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 15px;
    background-color: rgba(0, 175, 255, 0.5);
}

.progressbar__progress {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 10px;
    border-radius: 15px;
    background-color: #00AFFF;
}

/* ! Временные стили ! */

.info-block-content .product-reviews .product-reviews-heading__title {
    display: none;
}

.info-block-content .product-reviews .product-reviews-heading__btn {
    position: absolute;
    top: 28px;
    right: 15px;
}

@media(max-width: 767px) {
    .dropdown-block .show-more-btn { 
        display: none;
    }

    .advantage-user-selection-list {
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
    }

    .advantage-user-selection-list::-webkit-scrollbar {
        display: none;
    }

    .advantage-user-selection {
        flex-shrink: 0;
    }

    .info-block-content .product-reviews .product-reviews-heading__btn {
        top: 16px;
        right: 8px;
    }

    .rating-advantages-list {
        overflow: scroll;
    }

    .rating-advantage {
        max-width: 150px;
        flex-shrink: 0;
    }
}