.rating-stars {
    display: flex;
    flex-direction: row;
    font-size: 28px;
    cursor: pointer;
}

.rating-stars .star {
    color: #ccc;
    transition: color 0.2s;
}

.rating-stars .star.hovered,
.rating-stars .star.selected {
    color: #f5a623;
}