@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

fieldset.rating, .rating label {
    margin: 0;
    padding: 0;
}

#qmToolFilterBar .rating label {
    cursor: pointer;
}

.qmToolList td.starRatingTd {
    padding-left: 5px;
}

#qmToolList td.starRatingTd {
    padding-left: 5px;
}

.multipleStarsRating {
    width: 139px !important;
    white-space: nowrap !important;
}

.rating {
    border: none;
    float: left;
}

.rating > input {
    display: none;
}

.rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating > label {
    color: #ddd;
    float: right;
}

.multipleStarRatingWidth{
    white-space: nowrap;
    width: 157px;
}


.rating > input:checked, /* hover current star when changing rating */
.rating > input:checked,
.rating > input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label {
    color: #ffbc00;
}


.clickableStarLabel {
    cursor: pointer;
}

/***** Clickable Star*****/

.clickableStar.rating > input:checked ~ label, /* show gold star when clicked */
.clickableStar.rating:not(:checked) > label:hover, /* hover current star */
.clickableStar.rating:not(:checked) > label:hover ~ label {
    color: #ffbc00;
}

/* hover previous stars in list */

.clickableStar.rating > input:checked + label:hover, /* hover current star when changing rating */
.clickableStar.rating > input:checked ~ label:hover,
.clickableStar.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.clickableStar.rating > input:checked ~ label:hover ~ label {
    color: #FFD700;
}

.clickableStar.rating > input:not(checked) ~ label { /*color white when clicked again*/
    color: #ddd;
}