/* --- EASYlistpdown DEFAULT THEME --- */

/* PREFIXED CSS */

.listpdown,
.listpdown div,
.listpdown li,
.listpdown 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;
}

.listpdown .selected::after,
.listpdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.listpdown{
	position: relative;
	width: 310px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	cursor: pointer;
	background: #EBEDEF;
	margin-bottom:5px;
	/*font:normal 13px Arial, Helvetica, sans-serif !important;*/
	
}

.listpdown.open{
	z-index: 2;
}

.listpdown:hover{
	/*box-shadow: 0 0 5px rgba(0,0,0,.15);*/
}

.listpdown.focus{
	/*box-shadow: 0 0 5px rgba(51,102,248,.4);*/
}

/* CARAT */

.listpdown .carat{
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 8px solid transparent;
	border-top: 10px solid #a7aab0;
}

.listpdown.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #a7aab0;
}

.listpdown.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.listpdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.listpdown select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.listpdown.touch .old{
	width: 100%;
	height: 100%;
}

.listpdown.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.listpdown .selected,
.listpdown li{
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #000;
	padding: 12px 12px;
	overflow: hidden;
	white-space: nowrap;
}

.listpdown.disabled .selected{
	color: #999;
}

.listpdown .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 */

.listpdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #E7E7E7;
	border-top: 1px solid #eee;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.listpdown.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.listpdown.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.listpdown.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.listpdown ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	margin:0px;
	padding:0px;
	
}

.listpdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.listpdown li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.listpdown li.focus{
	background: #55be67;
	position: relative;
	z-index: 3;
	color: #fff;
}

.listpdown li.active{
	font-weight: 700;
}


