/* CSS for cuda.custom_select.js */

/*the container must be positioned relative:*/
.cuda-select {
	position: relative;
	font-family: Lato, sans-serif;
}
.cuda-select select {
	display: none; /*hide original SELECT element:*/
}

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

.select-selected {
	background-color: transparent;
	border: 1px solid #a6a6a6;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #807b7b transparent;
	top: 12px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    cursor: pointer;
    user-select: none;
	color: #000000;
	padding: 8px 16px;
}
/*style items (options):*/
.select-items {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	background-color: #FFFFFF;
	border: 1px solid #a6a6a6;
    max-height: 300px;
    overflow-y: scroll;
}
/*hide the items when the select box is closed:*/
.select-hide {
	display: none;
	background-color: #FFFFFF;
}

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



/************ Custom CSS overrides go here ***********/




/*******************************************************/