.rate {
    height: 22px;
    padding: 0 10px;
    text-align: center;
    align-items: center;
}
.rate:not(:checked) > input {
    position:fixed;
    top:-9999px;
}
.rate:not(:checked) > label {
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    /*font-size:30px;*/
    font-size: 15px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked + label {
    color: #FF0000;
}

