.ua__set-rating__wrapper {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ua__set-rating__title {
	margin: 0;
	color: var(--text-secondary, #475569);
	font-family: Daikon;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.ua__set-rating__list {
	list-style: none;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 12px;
	padding: 20px;
	border-radius: 24px;
	background: var(--bg-content, #fff);
}

.ua__set-rating__item {
	width: 30px;
	cursor: pointer;
}

.ua-stars {
	flex-direction: row-reverse;
}

.ua-stars input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	border: 0;
	background: url("/images/rating-star-grey.svg") center / contain no-repeat;
	cursor: pointer;
}

.ua-stars input[type="radio"]:is(:checked, :hover),
.ua-stars input[type="radio"]:is(:checked, :hover) ~ input[type="radio"] {
	background-image: url("/images/rating-star-blue.svg");
}

.ua-stars input[type="radio"]:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

@media (max-width: 599px) {
	.ua__set-rating__wrapper {
		width: 100%;
	}

	.ua__set-rating__list {
		width: 100%;
	}
}
