/* -----------------------------------------------------------------------------

  COMPENENTS - RATING
  
----------------------------------------------------------------------------- */
.c-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-rating__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24px;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  background: url("../img/stars.svg") !important;
  background-position: 0 0;
  
  margin-left: 0px !important;
  padding-left: 0px !important;
  cursor: pointer;
}

.c-rating__item:hover,
.c-rating__item.is-active {
  background-position: -24px 0 !important;
}

.disabled .c-rating__item{
  background-position: 0 0 !important;
  background: url("../img/stars-grey.png") !important;
}



.enabled .c-rating__item:hover {
  background-position: 0 0 !important;
}

.enabled .c-rating__item.is-active:hover {
   background-position: -24px 0 !important;
}
