.my-star-rating {
white-space: nowrap;
display: inline-block;
}
.my-star-rating >* {
display: inline-block;
font-size: 16px;
font-weight: 400;
line-height: 20px;
font-style: normal;
vertical-align: top;
text-align: center;
}
.my-star-rating.hide-title .title {
display: none;
}
.my-star-rating .title {
margin: 0 10px;
}
.my-star-rating .stars {
font-weight: 600;
}
.my-star-rating .star {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 2px;
font-family: FontAwesome;
font-size: 20px;
position: relative;
}
.my-star-rating .star:before {
position: absolute;
left: 0;
top: 0;
content: "\f005";
color: #bbb900;
}
.my-star-rating .star:after {
position: absolute;
left: 0;
top: 0;
color: #ffb900;
transition: color .1s ease-in, opacity .1s ease-in;
}
.my-star-rating .star-full:after {
content: "\f005";
}
.my-star-rating .star-half:after {
content: "\f089";
}
.my-star-rating .star-empty:after {
}
.my-star-rating.active .stars:hover .star:after {
content: "\f005";
color: #ff4400;
cursor: pointer;
}
.my-star-rating.active .stars:hover .star:hover ~*:after {
color: #bbb900;
opacity: 0;
}