/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 15 2026 | 13:56:30 */
/* Контейнер единственного радиогруппа-звёзд на странице */
[role="radiogroup"] {
	display: flex;
    gap: var(--space-xs);
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    [role="radiogroup"] {
		margin: 10px 0;
    }
}

[role="radiogroup"]:before {
	content: 'Ваша оценка:';
	font-weight: 600;
	font-size: var(--text-s);
}

[role="radiogroup"] .options-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

[role="radiogroup"] .options-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[role="radiogroup"] .options-wrapper label {
  font-size: var(--text-xxl);
  line-height: 1;
  cursor: pointer;
  color: var(--attention);
  transition: color var(--transition);
}

/* активные звёзды, класс ставит JS */
[role="radiogroup"] .options-wrapper label.is-active {
  color: var(--second-accent);
}
