<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* rating */
.rating-css div {
    color: #ffc107;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}
.rating-css input {
    display: none;
}
.rating-css input + label {
    font-size: 30px;
    text-shadow: 1px 1px 0 #ffc107;
    cursor: pointer;
}
.rating-css input:checked + label ~ label {
    color: #b4afaf;
}
.rating-css label:active {
    transform: scale(0.8);
    transition: 0.3s ease;
}


/* End of Star Rating */
</pre></body></html>