.custom-select-container {
	position: relative;
	box-sizing: border-box;;
	width: 100%;
}

.custom-select-container.is-disabled {
	opacity: .333;
}

.custom-select-opener {
	display: flex;
	align-items: center;
	border-radius: 8px;
	padding: 8px 12px;
	background: #FAFAFA ;
	border: 1px solid #F3F3F4;
}

.custom-select-container select {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.custom-select-panel {
	max-height: 0;
	transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
	overflow: hidden;
	position: absolute;
	top: calc(100% + 8px);
	z-index: 1;
	width: 100%;
	border-radius: 8px;
}

.custom-select-container.is-open .custom-select-panel {
	max-height: 10.7em;
	overflow-y: auto
}

.custom-select-option {
	padding: 4px 16px;
	background: #FAFAFA;
	font-size: 15px;
	line-height: 24px;
}

.custom-select-option.has-focus {
	background: #EDEFF3;
}

.custom-select-optgroup > .custom-select-option {
	padding-left: 2em;
}

.custom-select-optgroup::before {
	content: attr(data-label);
	display: block;
	padding: 0.5em;
	color: #888;
}

.custom-select-opener::after {
	content: "";
	width: 16px;
	height: 16px;
	display: block;
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%231D2023' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}