.checked {
    color: #f0d90e;
    padding: 1px;
    font-size: 15px;
    transition: all .2s;
    font-size: 15px;
}
div.stars1 {
    /* width: 270px;*/
    display: inline-block;
}
input.star1 {
    display: none;
}
label.star1 {
    float: right;
    padding: 10px;
    font-size: 36px;
    color: #000;
    transition: all .2s;
}
input.star1:checked~label.star1:before {
    content: '\f005';
    color: #f0d90e;
    transition: all .25s;
    text-shadow: 0 0 20px #000;
}
input.star1-5:checked~label.star1:before {
    color: #f0d90e;
    text-shadow: 0 0 20px #000;
}

input.star1-1:checked~label.star1:before {
    color: #F62;
}

label.star1:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star1:before {
    content: '\f006';
    font-family: FontAwesome;
}