.rating {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0 0 1em 0;
    padding: 0;
    border: none;
}

/* Group */

.rating__group {
    position: relative;
    width: 10em;
    height: 2em;
    background-image: url("../img/new-arrivals/star-off.svg");
    background-size: 2em auto;
    background-repeat: repeat-x;
}

.rating__group:focus-within {
    outline-offset: 0.2em;
}

/* Star */

.rating__star {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 2em;
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 2em auto;
    background-repeat: repeat-x;
}

.rating__star:focus {
    outline: none;
}

.rating__star:hover,
.rating__star:checked {
    background-image: url("../img/new-arrivals/star-on.svg");
}

.rating__star:hover ~ .rating__star {
    background-image: url("../img/new-arrivals/star-off.svg");
}

/* Options */

.rating__star:nth-of-type(1) {
    z-index: 5;
    width: 2em;
}

.rating__star:nth-of-type(2) {
    z-index: 4;
    width: 4em;
}

.rating__star:nth-of-type(3) {
    z-index: 3;
    width: 6em;
}

.rating__star:nth-of-type(4) {
    z-index: 2;
    width: 8em;
}

.rating__star:nth-of-type(5) {
    z-index: 1;
    width: 10em;
}