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

/* PREFIXED CSS */

.dropdown,
.dropdown div,
.dropdown li,
.dropdown 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;

}

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

/* WRAPPER */

.dropdown{
	position: relative;
	text-align:left;
	width: 100%;
	color:#2d3a4b;
	height:40px;
	border: 1px solid #e5e5e5;

}
.dropdown.open{
	z-index: 2;
}
/* CARAT */

.dropdown .carat{
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
	background: url(../imgs/icon-select.png) no-repeat center top; width: 10px; height: 6px;
}

.dropdown.open .carat{
	background-position:center bottom;
}

.dropdown.disabled .carat{
	border-top-color: #adadad;
}

/* OLD SELECT (HIDDEN) */

.dropdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

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

.dropdown.touch .old{
	width: 100%;
	height: 100%;
}

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

/* SELECTED FEEDBACK ITEM */

.dropdown .selected,
.dropdown li{
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #bfbfbf;
	padding: 12px 10px 12px;
	overflow: hidden;
	white-space: nowrap;
!important
}

.dropdown.disabled .selected{
	color: #999;
}

.dropdown .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;

	border-radius: 0 2px 2px 0;
	/*box-shadow: inset -55px 0 25px -20px #fff;*/
}

/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left:0;
	right:0;
	top: 100%;
	margin-top: -1px;
	background: #f5f5f5;
	border: 0;
	/*border-top: 1px solid #eee;*/
	/*border-radius: 0 0 3px 3px;*/
	overflow: hidden;
	opacity: 0;

}

/* Height is adjusted by JS on open */

.dropdown.open{
	border: #1482f0 solid 1px;
}
.dropdown.open div{
	opacity: 1;
	z-index: 99999;
	position: absolute;
	border: #e5e5e5 solid 1px;
	background: #fff;
	left: -1px;
	right: -1px;
	margin-top: 1px;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;

	box-shadow: inset 0 -50px 30px -35px #fff;
}

.dropdown.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown ul {
	height: 100%;
	left: 0;
	list-style: outside none none;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
}

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

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 8px 10px;

	cursor: pointer;
}

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

.dropdown li.focus{
	/*background: #e61f1c;*/
	position: relative;
	z-index: 3;
	color: #666262;
}

.dropdown li.active{
	background: #f1f8fe;
	color: #1482f0;
}