/* -----------------------------------------------------------------------------
	COMPENENTS - RATING
	
----------------------------------------------------------------------------- */
.c-rating {
    display: block;
    position: relative;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.c-rating__item {
	display: inline-block;
    position: relative;
	width: 20px;
	height: 19px;
	padding: 0px 4px 0px  4px;
	background-image: url("../images/stars_inactive.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
}
.c-rating.big .c-rating__item {
	width: 28px;
	height: 27px;
}

.c-rating__item:hover,
.c-rating__item.is-active {
	background-image: url("../images/stars_active.png");
	background-repeat: no-repeat;
	background-position: center;
}

.c-rating.disabled .c-rating__item {
    cursor: auto;
}

.c-rating.disabled .c-rating__item:hover {
    background-image: url("../images/stars_inactive.png");
	background-repeat: no-repeat;
	background-position: center;
}

.c-rating.disabled .c-rating__item.is-active:hover {
    background-image: url("../images/stars_active.png");
	background-repeat: no-repeat;
	background-position: center;
}