/**
 *  Star component
 */

.star-content {
    margin: 0 0 0 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.star-content div.star,
.star-content div.star-on,
.star-content div.star-hover {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/stars.png) no-repeat 0 0 transparent;
    flex: auto;
    margin-left: 3px;
}
.star-content div.star-on,
.star-content div.star-hover {
    background-position: -24px 0;
}

.small-stars .star-content div.star,
.small-stars .star-content div.star-on,
.small-stars .star-content div.star-hover {
    background: url(../img/small_stars.png) no-repeat 0 0 transparent;
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.small-stars .star-content div.star-on,
.small-stars .star-content div.star-hover {
    background-position: -19px 0;
}

.star-content div.star-hover {
    cursor: pointer;
}

.grade-stars {
    position: relative;
    height: 20px;
    min-width: 120px;
    display: inline-block;
}

.grade-stars.small-stars {
    min-width: 100px;
}

.grade-stars .star-content {
    position: absolute;
    top: 3px;
    left: 0;
}

.criterion-rating .grade-stars .star-content {
    top: 0;
}