.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    cursor: pointer;
}

.rating label img {
    width: 35px;
    height: auto;
    opacity: 0.5;
}

.rating input[type="radio"]:checked~label img {
    opacity: 1;
}