.ssrv-rating-form .RatingReview {
    display: flex;
    gap: 7px;
    direction: ltr;
}

.ssrv-rating-form .RatingReview button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 11px;
    color: #cbd5e1;
    background: var(--ssrv-card);
    cursor: pointer;
    transition: 180ms;
}

.ssrv-rating-form .RatingReview button.active {
    color: #ffa700;
    transform: translateY(-2px) scale(1.08);
}

.ssrv-rating-form .RatingReview button:focus-visible {
    outline: 2px solid #ffa700;
    outline-offset: 2px;
}

.ssrv-rating-form .RatingReview button i {
    color: inherit;
    font-size: 20px;
    pointer-events: none;
}

@media (max-width: 767px) {
    .ssrv-rating-form .RatingReview {
        gap: 5px;
    }

    .ssrv-rating-form .RatingReview button {
        width: 38px;
        height: 38px;
    }
}
