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

/* PREFIXED CSS */

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

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

/* WRAPPER */

.easydropdown{
	position: relative;
	border: 1px solid #595757;
	cursor: pointer;
	background: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	
	font-family: "Helvetica";
	width: 100%;
	height: 40px;
	margin-top: 20px;
	margin-bottom: 24px;
	font-size: 18px;
	color: #595757;
	text-align:left;
	padding: 0;
}

.easydropdown.open{
	z-index: 2;
}
/*cyt 0428*/
/*.easydropdown:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}*/

.easydropdown.focus{
	/*box-shadow: 0 0 5px rgba(51,102,248,.4);*/
	border: 1px solid #004898;
}

/* CARAT */

.easydropdown .carat{
	position: absolute;
	/*right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 6px solid transparent;
	border-top: 8px solid #000;*/
	top: -32px;
	right: -20px;
	height: 100px;
	width: 100px;
	background: url(../images/common/arrow-down.svg) no-repeat;
	background-position: 100% center;
	background-size: 100%;
}

.easydropdown.open .carat{
	/*margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #000;*/
	background: url(../images/common/arrow-up.svg) no-repeat;
	background-position: 100% center;
}

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

/* OLD SELECT (HIDDEN) */

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

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

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

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

/* SELECTED FEEDBACK ITEM */ 

.easydropdown .selected,
.easydropdown li{
	display: block;
	font-size: 18px;
	line-height: 40px;
	height: 40px;
	color: #595757;
	padding: 0 16px;
	overflow: hidden;
	white-space: nowrap;
}

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

.easydropdown .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 */

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

/* Height is adjusted by JS on open */

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

/* FADE OVERLAY FOR SCROLLING LISTS */

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

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

/* DROP DOWN LIST */

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

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

/* DROP DOWN LIST ITEMS */

.easydropdown li{
	list-style: none;
	padding: 0 16px;
}

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

.easydropdown li.focus{
	background: #004898;
	position: relative;
	z-index: 3;
	color: #fff;
}

/*.easydropdown li.active{
	font-weight: 700;
}*/