.rating{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.rating__item{
    width: 100%;
    padding: 14px 0;
}

.rating__item:not(:last-child){
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);;
}

.rating__item span:not(.rating__item-stars__list, .rating__item .rating__item__value){
    display: block;
}

.rating__item .rating__item__value{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.rating__item__logo{
    text-align: center;
}
.rating__item__link{
    display: block;
}

.rating__item-image-box{

}
.rating__item-image{
    max-width: 100%;
    flex: none;
}
.rating__item__value{
    width: 100%;
}
.rating__item__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rating__item-text{
    font-size: 10px;
    line-height: 1.2;
    color: #000;
    white-space: nowrap;
}
.rating__item-img{
    width: 40px;
    height: 40px;
    border-radius: 99px;
}

.rating__item__value-text{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    flex: none;
}
.rating__item-stars {
    position: relative;
}
.rating__item-stars_active {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.rating__item-stars__list{
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
}
.rating__item-stars_active .rating__item-stars__list{
    opacity: 1;
    position: absolute;
}
.rating__item-stars__item{
    width: 13px;
    height: 13px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(images/star.png);
}

.rating__item-stars_active{
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {

}

@media (min-width: 600px) {
    .rating__item{
        width: 50%;
    }
    .rating__item:nth-child(3){
        border-bottom: none;
    }
    .rating__item:not(:last-child, :nth-child(2)){
        border-right: 1px solid rgba(255, 255, 255, 0.1);;
    }
}

@media (min-width: 992px) {
    .rating{
        margin-bottom: 50px;
    }
    .rating .rating__item{
        width: 25%;
        border-bottom: none;
    }
    .rating__item:not(:last-child){
        border-right: 1px solid rgba(255, 255, 255, 0.1);;
    }
}

