.rate-block {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    justify-content: flex-end;
    font-size: 0;
}
.rate-block input {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: 0 !important;
    min-width: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.rate-block label {
    width: 20px;
    height: 20px;
    padding: 0 16px 0 0;
    display: inline-block;
    box-sizing: content-box;
    overflow: hidden;
    text-indent: 9999px;
    white-space: nowrap;
    background: 0 0 url(img/rating-empty.png) no-repeat;
    cursor: pointer;
    margin-bottom: 0;
}
.rate-block label:first-of-type {
    padding-right: 0;
}
.rate-block.disabled label {
    cursor: default;
}
.rate-block:not(.disabled) label:hover,
.rate-block:not(.disabled) label:hover ~ label,
.rate-block input[type="radio"]:checked ~ label {
    background: 0 0 url(img/rating-checked.png) no-repeat;
}

.rate-block.big label {
    width: 32px;
    height: 32px;
    background: 0 0 url(img/rating-big-empty.png) no-repeat;
    padding: 0 32px 0 0;
}
.rate-block.big label:first-of-type {
    padding: 0;
}
.rate-block.big:not(.disabled) label:hover,
.rate-block.big:not(.disabled) label:hover ~ label,
.rate-block.big input[type="radio"]:checked ~ label {
    background: 0 0 url(img/rating-big-checked.png) no-repeat;
}
.rate-block.big {
    justify-content: center;
}
.vote-product__item-review.done:hover {
    color: #90A4AE;
}