﻿.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-rating-input-hidden {
    height: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}

.star-rating-input-label {
    cursor: pointer;
    color: gray;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.star-rating-input-icon::before {
    font-family: "Font Awesome 5 Free";
    color: #ffcc33;
    content: "\f005";
}

.star-rating-reset-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: lightgray;
    content: "\f005";
}

.star-rating-input-input:hover ~ .star-rating-input-label {
    color: #ffcc33;
}

.star-rating-input-input:checked ~ .star-rating-input-label {
    color: #ffcc33;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f005";
}

.star-rating-input-reset:checked ~ .star-rating-input-label {
    color: gray;
}

.line {
    margin: 0 4px;
    width: 1px;
    background-color: lightgray;
}