/* The container must be positioned relative: */
.custom-select {
	position: relative;
	color: #126ea3;
}

.custom-select select {
	display: none; /*hide original SELECT element: */
}

.select-selected {
	background-color: white;
}

/* Style the arrow inside the select element: */
.select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	color: #126ea3;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
	top: 7px;
	color: #126ea3;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
	padding: 8px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	color: #126ea3;
}

/* Style items (options): */
.select-items {
	position: absolute;
	background-color: white;
	top: 100%;
	left: 0;
	right: 0;
	border-radius: 0px;
	z-index: 99;
	color: #126ea3;
}

/* Hide the items when the select box is closed: */
.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}
