/**
 * A modifiable style scheme for for use with the searchableList.js plugin for jQuery
 *
 * @copyright   (c) May 7th 2019, Warwick Weston Wright <warwickwestonwright@live.com>
 * @version     1.0.0
 * @license     BSD
 */
.customSelect {
	height: auto;
	overflow: hidden;
	background: #1b5e2000;
	display: block;
	box-sizing: border-box;
/*	margin-left: auto;
	margin-right: auto;
*/	width: 290px;
}

.customSelect .show {
	visibility: visible;
}

.customSelect .hidden {
	display: none;
}

/*Text control*/
.customSelect .searchBar {
/*	background: white; */
	color: #0c0c0c;
	display: block;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: normal;
	width: 75%;
	margin: 0px 0 0px 2px;
}

.customSelect .itemContainer {
	display: none;
	max-height: 250px;
	position: fixed;
	width: 230px;
	margin-left: auto;
	margin-right: auto;
	background: #FFF9C4;;
	color: black;
	overflow-x: hidden;
	overflow-y: scroll;
	box-sizing: border-box;
	z-index: 200;
}

.customSelect .item {
	height: auto;
	width: auto;
	margin: 0px 0 0px 2px;
	box-sizing: border-box;
	font-size: 13px;
	font-weight: normal;
	cursor: pointer;
	background: #f7f7f700;
	color: black;
}.customSelect .item:hover {
	  background-color: #3CA4FF;
	  color: white;
}