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

.custom-select-container * {
	box-sizing: border-box;
}

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

.custom-select-opener {
	background-color: #4F868E;
	padding-top: 10px;
	padding-bottom: 8px;
	padding-left: 24px;
	padding-right: 24px;
	display: block;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	width: 100%;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	position: relative;
	user-select: none;
}

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

.custom-select-panel {
	max-height: 0;
	transition: max-height .25s ease-in-out, overflow-y 0.1s 0.25s;
	overflow: hidden;
	background-color: #fff;
	position: absolute;
	top: 100%;
	z-index: 1;
	width: 100%;
	border: 1px solid #4F868E;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	padding: 0 10px;
}

.custom-select-container.is-open .custom-select-panel {
	max-height: 10.7em;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.custom-select-container.is-open .custom-select-panel::-webkit-scrollbar {
	display: none;
}

.custom-select-option {
	padding: 6px 8px 6px 8px;
	margin: 10px 0;
	line-height: 1.5;
	color: #007C84;
	font-size: 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color .25s ease-in-out, color .25s ease-in-out;
}

.custom-select-option.has-focus {
	background-color: #4F868E;
	color: #fff;
}

.custom-select-option.is-selected::before {
	content: "✔";
	padding-right: 0.5em;
}

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

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