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

  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, .c-rating__item_static {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24px;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    height: 24px;
    background: url("../images/stars.svg");
    background-position: 0 0;
    cursor: pointer;
    width: 24px;
    list-style: none;
    float: left;
}

.c-rating__item_static{
    cursor: auto !important;
}

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

#rating-current .c-rating__item, 
#rating-current .c-rating__item_static{
    height: 18px;
    width: 18px;
    background-size: cover;
}

#rating-current .c-rating__item:hover,
#rating-current .c-rating__item.is-active,
#rating-current .c-rating__item_static.is-active {
    background-position: -18px 0;
}


