.full-stars .rating-group {
    display: inline-flex;
}
.full-stars input {
    position: absolute;
    left: -9999px;
}
.full-stars label {
    margin: 0;
    cursor: pointer;
}
.full-stars label svg {
    margin: 5px;
    height: 1em;
    width: 1em;
    fill: #ffbc1f;
    transition: fill 0.3s;
}
.full-stars input:checked ~ label svg {
    fill: #d9d9dd;
}
.full-stars .rating-group:hover label svg {
    fill: #ffbc1f;
}
.full-stars .rating-group input:hover ~ label svg {
    fill: #d9d9dd;
}

.rating-comment {
    color: #ffab01;
}