.starRating:not(old){
	display        : inline-block;
	width          : 107.5%;
	height         : 33px;
	overflow       : hidden;
	vertical-align : top;
}

.starRating:not(old) > input{
	margin-right : -108%;
	opacity      : 0;
}

.starRating:not(old) > label{
	display         : inline-block;
	float           : left;
	position        : static;
	background      : url('../images/website/star-off.png');
	background-size : contain;
	width: 23px;
	margin-top: 9px;
}

.starRating:not(old) > label:before{
	content         : '';
	display         : block;
	fill: #2666A5 !important;
	width           : 1.5em;
	height          : 1.5em;
	background      : url('../images/website/star-on.png');
	background-size : contain;
	opacity         : 0;
	transition      : opacity 0.2s linear;
}

.starRating:not(old) > label:hover:before,
.starRating:not(old) > label:hover ~ label:before,
.starRating:not(:hover) > :checked ~ label:before{
  opacity : 1;
}
