.star-rating {
white-space: nowrap;
display: inline-block;
width: 124px;
height: 23px;
overflow: hidden;
position: relative;
background: url(../img/stella_bg.png);
background-size: contain;
margin-bottom:2px;
}

.star-rating.dettaglio {
background: url(../img/stella_bg2.png);
}


.star-rating i {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 1;
  background: url(../img/stella_on.png);
  background-size: contain;
}

.star-rating.dettaglio i {
  background: url(../img/stella2_on.png);
}


.star-rating input {
  -moz-appearance: none;
-webkit-appearance: none;
opacity: 0;
display: inline-block;
width: 19px;
height: 100%;
margin: 0;
padding: 0;
z-index: 2;
position: relative;
cursor:pointer;
}
.star-rating input:hover + i,
.star-rating input:checked + i {
  opacity: 1;
}
.star-rating i ~ i {
  width: 40%;
}
.star-rating i ~ i ~ i {
  width: 60%;
}
.star-rating i ~ i ~ i ~ i {
  width: 80%;
}
.star-rating i ~ i ~ i ~ i ~ i {
  width: 100%;
}
.choice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px;
  display: block;
}
