.checked{
    color: orange !important;
}

.ratings {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    direction: rtl;
    /*text-align: right;*/
}

.star {
    position: relative;
    line-height: 30px;
    display: inline-block;
    transition: color 0.2s ease;
    color: #ebebeb;
    cursor: pointer;
}

.star:before {
    content: '\2605';
    width: 45px;
    height: 45px;
    font-size: 45px;
}

.star:hover,
.star.selected,
.star:hover ~ .star,
.star.selected ~ .star{
    transition: color 0.8s ease;
    color: black;
}

.background-rating-degree-1, .rating-degree >  .rating-degree-1.active{
    background-color: var(--danger) !important;
    color: white !important;
}

.background-rating-degree-2, .rating-degree >  .rating-degree-2.active{
    background-color: #EE7B26 !important;
    color: white !important;
}

.background-rating-degree-3, .rating-degree >  .rating-degree-3.active{
    background-color: var(--warning) !important;
    color: black !important;
}

.background-rating-degree-4, .rating-degree >  .rating-degree-4.active{
    background-color:  #94B426 !important;
    color: white !important;
}

.background-rating-degree-5, .rating-degree >  .rating-degree-5.active{
    background-color:  var(--success) !important;
    color: white !important;
}

.ratingsView{
    font-size: 1.5em;
}