@charset "UTF-8";
/* CSS Document */

.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 18px;
}
.rating span.star {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}
.rating span.star:hover {
  cursor: pointer;
}
.rating span.star:before {
  content: "\f006";
  padding-right: 2px;
  color: #eee;

}
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before {
  content: "\f005";
/*  color: #fc0; */
  color:#bed9a1;
}

.rating span.active:before {
  content: "\f005";
 /* color: #fc0; */
  color:#bed9a1;  
}

