/* --- EASYDROPDOWN FLAT THEME by Jan Cantor --- */

/* PREFIXED CSS */

.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after,
.dropdown .carat,
.dropdown .carat:after,
.dropdown .selected::after,
.dropdown: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;
	width: 230px;
	cursor: pointer;
	font-weight: 200;
	background: #fff;
	padding: 5px 0px 4px;
	border: 1px solid #ccd1d9;
	border-radius: 4px;
	margin-bottom: 8px;
	color:  #000;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.dropdown.open{
	z-index: 2;
	background: #c9494d;
	border-color: #c9494d;
	border-radius: 4px 4px 0 0;
}

.dropdown:hover,
.dropdown:focus{
	border-color: #c9494d;
}

/* CARAT */

.dropdown .carat,
.dropdown .carat:after{
	position: absolute;
	right: 14px;
	top: 50%;
	margin-top: -3px;
	border: 6px solid transparent;
	border-top: 6px solid #ccd1d9;
	z-index: 1;
	
	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;
	
}

.dropdown:hover .carat,
.dropdown:hover .carat:after,
.dropdown:focus .carat,
.dropdown:focus .carat:after{
	border-top: 6px solid #c9494d;
}

.dropdown.open .carat{
	border-top: 6px solid #fff;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* 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 select{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 
.dropdown .selected {
    color: #80868e;
}

.dropdown .selected,
.dropdown li{
	display: block;
	/*font-size: 16px;*/
	font-weight: 400;
	/*text-transform: uppercase;*/
	line-height: 1;
	padding: 8px 16px;
	overflow: hidden;
	white-space: nowrap;
}

.dropdown .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	
	border-radius: 0 5px 5px 0;
	box-shadow: inset -55px 0 25px -20px #fff;
}

.dropdown:hover .selected,
.dropdown:focus .selected {
	color: #c9494d;
}

.dropdown:hover .selected::after,
.dropdown.focus .selected::after{
	box-shadow: inset -55px 0 25px -20px #fff;
}

.dropdown.open .selected{
	color :#fff;
}

.dropdown.open .selected::after{
	box-shadow: inset -55px 0 25px -20px #c9494d;
}

/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	background: #b5383c;
	overflow: hidden;
	opacity: 0;
	color: #04724E;
	border: 1px solid #c9494d;
	border-radius: 0 0 4px 4px;
}

.dropdown:hover div{
	background: #c9494d;
	border-radius: 0 0 4px 4px;
}

/* Height is adjusted by JS on open */

.dropdown.open div{
	opacity: 1;
	z-index: 3;
}

/* 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 #c9494d;
}

.dropdown.scrollable:hover div::after{
	box-shadow: inset 0 -50px 30px -35px #c9494d;
}

.dropdown.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	border-radius: 0 0 4px 4px;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	color: #fff;
	padding: 6px 12px 5px;
	/*border-bottom: 1px solid #b5383c;*/
}

.dropdown li:last-child {
    border-bottom: 0;
}

/* .focus class is also added on hover */

.dropdown li.focus{
	background: #b5383c;
	position: relative;
	z-index: 3;
	color: #fff;
}

.dropdown li.active{
	background: #b5383c;
	color: #fff;
}