@charset "UTF-8";
.rating-widget {
  text-align: center;
  position: relative;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
.rating-widget .hidden {
  opacity: 0;
}
.rating-widget .star {
  display: inline-block;
  margin: 3px;
  font-size: 25px;
  color: whitesmoke;
  position: relative;
}
.rating-widget .star.animate {
  -webkit-animation: stretch-bounce 0.5s ease-in-out;
}
.rating-widget .star.hidden {
  opacity: 0;
  display: none;
}
.rating-widget .full:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "";
  position: relative;
  float: right;
  z-index: 2;
  text-shadow: #acbbbe 1px 1px 3px;
}
.rating-widget .half:before {
  font-family: fontAwesome;
  content: "";
  position: absolute;
  float: left;
  z-index: 3;
  width: 14px;
  overflow: hidden;
  text-shadow: none;
}
.rating-widget .star-colour {
  color: #ffd700;
}
.rating-widget .selected:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
  opacity: 1;
  z-index: 1;
  text-shadow: none;
}
.rating-widget .selected.pulse:before {
  -webkit-transform: scale(3);
  opacity: 0;
}
.rating-widget .selected.is-animated:before {
  transition: 1s ease-out;
}

.rating-widget.size-md .star {
  font-size: 20px;
  margin: 0;
}
.rating-widget.size-md .half:before {
  width: 12px;
}

.rating-widget.size-sm .star {
  font-size: 12px;
  margin: 0;
}
.rating-widget.size-sm .half:before {
  width: 7px;
}

.rating-widget.size-xs .star {
  font-size: 10px;
  margin: 0;
  margin-left: -2px;
}
.rating-widget.size-xs .half:before {
  width: 5px;
}

@-webkit-keyframes stretch-bounce {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

/*# sourceMappingURL=star-rating.css.map */
