/* GS POST RAITING */
.rating {
    gap: unset;
    display: flex;
}

.rating .rating__item {
    padding-right: 0;
}

.rating .rating__item svg path {
    fill: #7e8f9a;
}

.rating .rating__item.active svg path {
    fill: #FFCD43;
}

#postRating:not(.disabled) .rating:hover .rating__item svg path {
    fill: #FFCD43;
}

#postRating:not(.disabled) .rating:hover .rating__item:hover {
    cursor: pointer;
}

#postRating:not(.disabled) .rating:hover .rating__item:hover ~ div.rating__item path
{
    fill: #7e8f9a !important;
}


.article__stars {
    /*font-size: unset;*/
    display: flex;
    gap: 10px;
    align-items: start;
}

/*
@media (max-width: 500px) {
    .article__stars {
        flex-direction: column;
        align-items: start;

    }
}
*/

.article__stars .article__stars-rating {
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
}

.article__stars .reit-rated {
    display: none;
}

.article__stars.disabled .reit-rated {
    display: inline;
}
/*
.article__stars > *,
.article__stars > .rating > * {
    display: inline-block;
}
*/

