/* --- EASYDROPDOWN DEFAULT THEME --- */

/* PREFIXED CSS */

.custom-select select{ width:auto;}
.custom-select{ 
	margin-bottom:10px;
	  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.custom-select,
.custom-select div,
.custom-select li,
.custom-select div::after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.custom-select .selected::after,
.custom-select.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.custom-select{
	position: relative;
	width: 220px;
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff;
	display:inline-block;
    -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
	
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.search_advance select{
	float:right;
	width: 220px;
}
.search_advance .custom-select{ float:right; margin-bottom:0} 
.search_advance .custom-select .selected{ padding:8px 12px;}

.custom-select.open{
	z-index: 2;
}

 
/* CARAT */

.custom-select .carat{
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 5px solid transparent;
	border-top: 7px solid #000;
	width:0px;
}

.custom-select.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #000;
}

.custom-select.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.custom-select .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.custom-select select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.custom-select.touch .old{
	width: 100%;
	height: 100%;
}

.custom-select.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.custom-select .selected,
.custom-select li{
	display: block;
	font-size: 14px;
	font-weight:bold;
	line-height: 1;
	color: #000;
	padding: 2px 12px;
	overflow: hidden;
	white-space: nowrap;
	font-family:Tahoma;
}
 
.custom-select .selected{
	-webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
		  padding: 6px 12px;
}

.custom-select.disabled .selected{
	color: #999;
}

.custom-select .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
}

/* DROP DOWN WRAPPER */

.custom-select div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top:1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	overflow: hidden;
	opacity: 0;
	padding:3px 0;
	
   -webkit-border-radius:3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}

/* Height is adjusted by JS on open */

.custom-select.open div{
	opacity: 1;
	z-index: 2;
}

.custom-select div ul li:first-child{ margin-top:3px;}
/* FADE OVERLAY FOR SCROLLING LISTS */

.custom-select.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.custom-select.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.custom-select ul{
	position: absolute;
	left: 0;
	top: 0;
	padding:0px;
	margin:0px;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}

.custom-select.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.custom-select li{
	list-style: none;
	padding: 4px 12px !important;
	font-weight:normal;
	font-size:12px;
	float:none !important; 
}

/* .focus class is also added on hover */

.custom-select li.focus{
	position: relative;
	z-index: 3;
	background-color:#047efa;
	color:#fff;
}

.custom-select li.active{
	font-weight: 700;
 
}

.custom-select .line_group{
	background:none !important;
	color:#333 !important;
	font-size:13px !important;
	font-weight:700;
	text-align:center
}
.custom-select .line_group{color:#333 !important}
.banner{ z-index:1 !important}