.enhanced-select-original {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.select-wrap {
	position: relative;
	display: block;
	min-width: 220px;
	font: inherit;
}

.select-button {
	font-size: var(--font-size-text);
	font-weight: 300;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border: none;
	outline: none;
	height: 50px;
	background-color: transparent;
	border-bottom: 1px solid #8d8d8d;
	transition: 0.1s ease-in-out;
	cursor: pointer;
}

.select-button:focus {
	border-bottom: 1px solid #3e3e3e;
}

.select-button[aria-disabled="true"] {
	opacity: 0.6;
	cursor: not-allowed;
}

.select-button[aria-expanded="true"] .select-caret svg{
	transform: rotate(180deg);
}

.select-caret {
	inline-size: 0;
	block-size: 0;
	width: 12px;
	height: 7px;
}

.select-label {
	color: #000;
}

.select-caret svg {
	fill: #000;
	width: 100%;
	height: 100%;
}

.select-listbox {
	position: fixed;
	z-index: 10000;
	margin-top: 0.25rem;
	inset-inline: 0;
	max-height: 260px;
	overflow: auto;
	background: #fff;
	padding: 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	clip-path: polygon(
		18px 0%,
		/* top left cut (comes in from left) */ 100% 0%,
		/* top right */ 100% calc(100% - 12px),
		/* bottom right inset */ calc(100% - 18px) 100%,
		/* bottom right cut */ 0% 100%,
		/* bottom left */ 0% 12px /* top left side inset */
	);
}

.select-option {
	padding: 0.8rem 1rem;
	border-bottom: 1px solid #efefef;
	cursor: pointer;
	font-weight: 300;
}

.select-option:last-child {
	border-bottom: none;
}

.select-option[aria-selected="true"] {
	background: #f0f7ff;
}

.select-option[data-active="true"] {
	background: #e6f0ff;
}

.select-empty {
	padding: 0.5rem 0.6rem;
	color: #666;
	font-style: italic;
}
