.product-item-rating {
    display: flex;
    justify-content: center;
}
@media (max-width: 1024px) {
    .product-item-rating{
        display: none;
    }
}
.stars span.selected svg {
    color: #FFB800;
}
.stars span svg {
    color: #808080;
}
.stars span:not(:last-child){
    padding-right: 4px;
}
.stars-item-block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.stars-item-block .stars {
    display: flex;
}
.stars-item-block .stars span {
    line-height: 1;
}
.stars-item-block .comments-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
}
.stars-item-block .comments-count svg {
    display: block;
}
.stars-item-block .comments-count a {
    color: #747474;;
}
