﻿/*@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);*/
.rating { 
  border: none;
  float: right;
  margin:8px 0px 0px 0px;
}

.rating > input { display: none; } 
.rating > label:before { 
  padding:0px 4px 0px 4px;
  font-size: 1.25em;
  font-family:"Font Awesome 5 Free";
  display: inline-block;
  content: "\f005";
}

.rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.rating > label { 
	color: #9d9d9d; 
	float: left;
    font-weight:600;    
	margin-bottom: 0;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { 
	color:#fcb040 !important;
  cursor:pointer;
} /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > 