﻿

.StarRating-Wrapper input {
    display: none;
}

.StarRating-Wrapper label {
    cursor: pointer;
    font-size: 1em;
    color: #FFD700;
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1.1em;
    text-align: center;
    float: left;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    text-shadow: 0 3px 3px #2b3c4e;
}

.StarRating-Enabled label:hover {
    font-size: 1.1em;
    color: #FFD700;
    text-shadow: 0 0 5px #FF0000;
}

.StarRating-Wrapper label:before {
    display: inline;
    width: auto;
    height: auto;
    line-height: normal;
    vertical-align: baseline;
    margin-top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    content: "\f005";
}

input:checked + label ~ label:before {
    content: "\f005";
    color: #FFFFFF;
    text-shadow: 0 0 5px #FFD700;
}

.StarRating-Wrapper {
    display: inline-block;
}

.StarRating-Enabled:hover label:before {
    content: "\f005";
    color: #FFD700;
    text-shadow: 0 0 5px #FF0000;
}

.StarRating-Enabled:hover label:hover ~ label:before {
    content: "\f006";
}
