.wcsc-choice {
	border: 0;
	margin: 0 0 1.25rem;
	min-width: 0;
	padding: 0;
}

.wcsc-choice__legend {
	font-size: 1em;
	font-weight: 600;
	margin-bottom: 0.55rem;
	padding: 0;
}

.wcsc-choice__options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.wcsc-choice__option {
	position: relative;
}

.wcsc-choice__input {
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 1px;
}

.wcsc-choice__label {
	align-items: flex-start;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	min-width: 10rem;
	padding: 0.65rem 0.85rem;
	transition: box-shadow 120ms ease, background-color 120ms ease;
}

.wcsc-choice__name {
	font-weight: 600;
}

.wcsc-choice__help {
	font-size: 0.82em;
	margin-top: 0.2rem;
	opacity: 0.75;
}

.wcsc-choice__input:checked + .wcsc-choice__label {
	background: rgba(0, 0, 0, 0.07);
	box-shadow: inset 0 0 0 2px currentColor;
}

.wcsc-choice__input:focus-visible + .wcsc-choice__label {
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.35);
	outline: 2px solid transparent;
}

@media (max-width: 480px) {
	.wcsc-choice__option,
	.wcsc-choice__label {
		width: 100%;
	}
}

