.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;
	font-weight: bold;
}

.choices__inner {
	border: 2px solid black;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	color: black;
	height: 53px;

	.is-open & {
		border-radius: 10px 10px 0px 0px;
		border-color: black;
	}

	.is-focused & {
		border-color: black;
	}
}

@media screen and (min-width: 1200px) {
	.choices__inner {
		font-size: 24px;
	}
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
	border-radius: 0px 0px 10px 10px;
	border: 2px solid black;

	.is-open & {
		border-color: black;
		border-top: 0px;
	}
}

.choices__list--single {
	padding-left: 10px;
	height: 100%;
	display: flex;
	align-items: center;
}

.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: none;
	right: 20px;
	top: 0px;
	margin-top: 0;
	width: 24px;
	height: 100%;
	background: url("img/icon-search.svg") no-repeat center center;
	background-size: contain;
	opacity: 0.5;
}

.choices[data-type*="select-one"].is-open::after {
	opacity: 1;
	margin-top: 0;
}

.choices__notice.has-no-results {
	word-break: keep-all;
	font-size: 14px !important;
	font-weight: normal;
}

.choices-option-secondary {
	font-weight: normal;
}
