.choices {
	text-align: left;
	font-family: "Inter";
	margin-bottom: 0;
	border-radius: 10px;

	&.is-focused {
		box-shadow: 0 0 0 3px rgba(3, 74, 187, 0.24);
	}

	&.is-focused.is-open {
		box-shadow: 0 0 0 0;
	}
}

.choices__placeholder {
	opacity: 1;
}

.choices__list--dropdown .choices__placeholder {
	display: none;
}

.choices__list--dropdown .choices__item {
	font-size: 16px !important;
}

.choices__inner {
	border: 3px solid var(--secondary);
	border-radius: 10px;
	font-size: 28px;
	font-weight: 700;
	color: var(--secondary);

	.is-open & {
		border-radius: 10px 10px 0px 0px;
		border-color: var(--secondary);
	}

	.is-focused & {
		border-color: var(--secondary);
	}
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
	border-radius: 0px 0px 10px 10px;
	border: 3px solid var(--secondary);

	.is-open & {
		border-color: var(--secondary);
		border-top: 0px;
	}
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
	background-color: var(--secondary);
	color: white;
	font-weight: 600;
}

.choices__input {
	font-family: "Inter";
	font-size: 16px;
}

.choices[data-type*="select-one"]::after {
	border-color: var(--secondary) transparent transparent;
	right: 20px;
	border-width: 8px;
}

.choices[data-type*="select-one"].is-open::after {
	border-color: transparent transparent var(--secondary);
	margin-top: -10px;
}
