.reviews-form {
  padding: 30px;
}
.reviews-form .form-product {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.reviews-form .form-product img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #ebebeb;
  margin-right: 20px;
}
.reviews-form .form-product .input-rating {
  width: 200px;
  height: 40px;
  background: url('/view/img/shop/rating.svg') top left no-repeat;
  background-size: auto 40px !important;
  position: relative;
}
.reviews-form .form-product .input-rating > div {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 0px;
  background: url('/view/img/shop/rating-in.svg') top left no-repeat;
  background-size: auto 40px !important;
  z-index: 5;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.reviews-form .form-product .input-rating > span {
  position: relative;
  display: block;
  float: left;
  width: 20%;
  height: 40px;
  z-index: 10;
  background: transparent;
  cursor: pointer;
}
.reviews-form .form-product .input-rating[data-value="0"] > div {
  width: 0%;
}
.reviews-form .form-product .input-rating[data-value="1"] > div {
  width: 20%;
}
.reviews-form .form-product .input-rating[data-value="2"] > div {
  width: 40%;
}
.reviews-form .form-product .input-rating[data-value="3"] > div {
  width: 60%;
}
.reviews-form .form-product .input-rating[data-value="4"] > div {
  width: 80%;
}
.reviews-form .form-product .input-rating[data-value="5"] > div {
  width: 100%;
}
.reviews-form .form-product .input-rating[data-hover="0"] > div {
  width: 0%;
}
.reviews-form .form-product .input-rating[data-hover="1"] > div {
  width: 20%;
}
.reviews-form .form-product .input-rating[data-hover="2"] > div {
  width: 40%;
}
.reviews-form .form-product .input-rating[data-hover="3"] > div {
  width: 60%;
}
.reviews-form .form-product .input-rating[data-hover="4"] > div {
  width: 80%;
}
.reviews-form .form-product .input-rating[data-hover="5"] > div {
  width: 100%;
}
