.sct_rating {
    display:inline-block;
    width:auto;
    height:auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    user-select:none;
}
.sct_rating_action_up {
    position: absolute;
    margin-top:-1px;
    display:inline-block;
    width:16px;
    height:16px;
    background:url('rating_up.png') center right no-repeat;
    background-size:16px;
    cursor:pointer;
}
.sct_rating_action_up:hover {
    transition: background 0.5s ease;
    background:url('rating_up_active.png') center right no-repeat;
    background-size:16px;
}
.sct_rating_action_down {
    position: absolute;
    margin-top:3px;
    display:inline-block;
    width:16px;
    height:16px;
    background:url('rating_down.png') center right no-repeat;
    background-size:16px;
    background-position:0px 0px;
    cursor:pointer;
}
.sct_rating_action_down:hover {
    transition: background 0.5s ease;
    background:url('rating_down_active.png') center right no-repeat;
    background-size:16px;
}
.sct_rating_action_result_up {
    display:inline-block;
    color:#28bc00;
}
.sct_rating_action_result_down {
    display:inline-block;
    color:#ff564e;
}
.sct_rating_action_result_zero {
    display:inline-block;
    color:#777777;
}

.sct_rating__locked {
    display:inline-block;
    width:auto;
    height:auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    user-select:none;
    opacity:0.7;
}
.sct_rating_action_up__locked {
    position: absolute;
    margin-top:-1px;
    display:inline-block;
    width:16px;
    height:16px;
    background:url('rating_up.png') center right no-repeat;
    background-size:16px;
}
.sct_rating_action_down__locked {
    position: absolute;
    margin-top:3px;
    display:inline-block;
    width:16px;
    height:16px;
    background:url('rating_down.png') center right no-repeat;
    background-size:16px;
    background-position:0px 0px;
}
.sct_rating_action_result_up__locked {
    display:inline-block;
    color:#28bc00;
}
.sct_rating_action_result_down__locked {
    display:inline-block;
    color:#ff564e;
}
.sct_rating_action_result_zero__locked {
    display:inline-block;
    color:#777777;
}