.starRating {
  margin: 10px auto;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
.starRating > fieldset {
  border: none;
  display: block;
  position: relative;
  padding: 0;
  width: 200px;
}
.starRating > fieldset > label{
  transition: 0.1s;
}
.starRating > fieldset:not(:checked) > input {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.starRating > fieldset:not(:checked) > label {
  float: right;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  color: #fbc02d;
}
.starRating > fieldset label:before{
  font-family: 'siftal';
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 30px;
}
[data-pwa] .starRating > fieldset {
  width: 150px;
}
[data-pwa] .starRating > fieldset:not(:checked) > label {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
[data-pwa] .starRating > fieldset label:before{
  width: 30px;
  height: 30px;
  font-size: 27px;
}
.starRating > fieldset:not(:checked) > label:before {
  content: "\e002";
}
.starRating > fieldset:not(:checked) > label:hover,
.starRating > fieldset:not(:checked) > label:hover ~ label {
  color: #ffa700;
  text-shadow: 0 0 3px #ffa700;
}
.starRating > fieldset:not(:checked) > label:hover:before,
.starRating > fieldset:not(:checked) > label:hover ~ label:before {
  content: "\5c";
}
.starRating > fieldset > input:checked ~ label:before {
  content: "\5c";
}
.starRating > fieldset > label:active {
  padding-top: 3px;
}

.starRating[data-star] {
  display: block;
  position: relative;
  padding: 0;
  width: 100px;
  height: 20px;
  margin: 0 auto;
  vertical-align: middle;
}
.starRating[data-star][data-gold] i{
  color: #ffa700;
}
.starRating[data-star] i {
  float: left;
  width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0;
  font-style: normal;
  overflow: hidden;
  white-space: nowrap;
  color: #17a087;
}
.starRating[data-star] i:before{
  font-family: 'siftal';
  content: "\e002";
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 15px;
}
.starRating[data-star^="1"] i:nth-child(1):before{
  content: "\5c";
}
.starRating[data-star^="1."] i:nth-child(2):before{
  content: "\e001";
}
.starRating[data-star^="2"] i:nth-child(1):before,
.starRating[data-star^="2"] i:nth-child(2):before,{
  content: "\5c";
}
.starRating[data-star^="2."] i:nth-child(3):before{
  content: "\e001";
}
.starRating[data-star^="3"] i:nth-child(1):before,
.starRating[data-star^="3"] i:nth-child(2):before,
.starRating[data-star^="3"] i:nth-child(3):before,{
  content: "\5c";
}
.starRating[data-star^="3."] i:nth-child(4):before{
  content: "\e001";
}
.starRating[data-star^="4"] i:nth-child(1):before,
.starRating[data-star^="4"] i:nth-child(2):before,
.starRating[data-star^="4"] i:nth-child(3):before,
.starRating[data-star^="4"] i:nth-child(4):before,{
  content: "\5c";
}
.starRating[data-star^="4."] i:nth-child(5):before{
  content: "\e001";
}
.starRating[data-star^="5"] i:nth-child(1):before,
.starRating[data-star^="5"] i:nth-child(2):before,
.starRating[data-star^="5"] i:nth-child(3):before,
.starRating[data-star^="5"] i:nth-child(4):before,
.starRating[data-star^="5"] i:nth-child(5):before,{
  content: "\5c";
}
