.star-rating-container {
    color: #ffc107;
    font-size: 1.4em;
}

.star-rating-container i {
    margin-bottom: 10px;
    padding-right: 5px;
}

div.stars {
    width: auto;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

input.star {
    display: none;
}

label.star {
    float: right;
    padding: 0 15px;
    font-size: 24px;
    color: #444;
    transition: all .2s;
}

input.star:checked~label.star:before {
    content: '\f005';
    color: #ffc107;
    transition: all .25s;
}

input.star-5:checked~label.star:before {
    color: #ffc107;
}

label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}

label.star-label {
    float: right;
    padding: 0 10px;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
    color: #444;
}