﻿/* --- 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{
	font: 16px Lato,Helvetica, Arial, sans-serif;
	position: absolute;	
	width: 80px;
	/*border: 1px solid #ccc;*/
	cursor: pointer;
	background: #fff;
	color:#666666;
	/*border-radius: 3px;*/
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	
	border: 1px solid #aed0ec;
	background-color: #ffffff;
	
	/* Old browsers */ background: -moz-linear-gradient(top, #ffffff 0%, #e8f2f4 100%);
	 /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e8f2f4 ));
	 /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* IE10+ */ background: linear-gradient(to bottom, #fffff 0%,#e8f2f4 100%); /* W3C */;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8f2f4',GradientType=0 ); /* IE6-9 */;

	
	
	border-radius: 5px;
	box-shadow: 0 1px 1px #777;

}

.dropdown.open{
	z-index: 2;
}

.dropdown:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.dropdown.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
}

/* CARAT */

.dropdown .carat{
	display:inherit;
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 6px solid transparent;
	border-top: 8px solid #AED0EC;
}

.dropdown.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #FFDE5C;
}

.dropdown.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.dropdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;/*display:none;*/
}

.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{
	position: relative;
}
.dropdown .selected,
.dropdown li{
	display: block;

	font-size: 16px;
	line-height: 1;
	color: #777777;
	padding: 9px 12px;
	overflow: hidden;
	white-space: nowrap;
}

.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: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.dropdown.open div{
	opacity: 1;
	z-index: 2;
}

/* 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{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding-left:0px;
	margin:0;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.dropdown li.focus{
	/*background: #d24a67;*/
	
	background: #CAD7E4; /* Old browsers */

	background: -moz-linear-gradient(left,  #CAD7E4 0%, #E9EFF4 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#CAD7E4 ),  color-stop(100%,#E9EFF4)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* IE10+ */
	background: linear-gradient(to right, #CAD7E4 0%,#E9EFF4 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CAD7E4', endColorstr='#E9EFF4',GradientType=1 ) !important; /* IE6-9 */
	

	position: relative;
	z-index: 3;
	color: #2A5785;
}

.dropdown li.active{
	font-weight: 700;
}


.dropdown2,
.dropdown2 div,
.dropdown2 li,
.dropdown2 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;
}

.dropdown2 .selected::after,
.dropdown2.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

.dropdown2,
.dropdown2 div,
.dropdown2 li,
.dropdown2 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;
}

.dropdown2 .selected::after,
.dropdown2.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.dropdown2{
	font: 16px Lato,Helvetica, Arial, sans-serif;
	position: absolute;	
	width: 200px;
	/*border: 1px solid #ccc;*/
	cursor: pointer;
	background: #fff;
	color:#666666;
	/*border-radius: 3px;*/
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	
	border: 1px solid #aed0ec;
	background-color: #ffffff;
	
	/* Old browsers */ background: -moz-linear-gradient(top, #ffffff 0%, #e8f2f4 100%);
	 /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e8f2f4 ));
	 /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ffffff 0%,#e8f2f4 100%);
	 /* IE10+ */ background: linear-gradient(to bottom, #fffff 0%,#e8f2f4 100%); /* W3C */;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8f2f4',GradientType=0 ); /* IE6-9 */;

	
	
	border-radius: 5px;
	box-shadow: 0 1px 1px #777;

}

.dropdown2.open{
	z-index: 2;
}

.dropdown2:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.dropdown2.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
}

/* CARAT */

.dropdown2 .carat{
	display:inherit;
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 6px solid transparent;
	border-top: 8px solid #AED0EC;
}

.dropdown2.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #FFDE5C;
}

.dropdown2.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.dropdown2 .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;/*display:none;*/
}

.dropdown2 select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.dropdown2.touch .old{
	width: 100%;
	height: 100%;
}

.dropdown2.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 
.dropdown2 .selected{
	position: relative;
}
.dropdown2 .selected,
.dropdown2 li{
	display: block;

	font-size: 16px;
	line-height: 1;
	color: #777777;
	padding: 9px 12px;
	overflow: hidden;
	white-space: nowrap;
}

.dropdown2.disabled .selected{
	color: #999;
}

.dropdown2 .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 */

.dropdown2 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;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.dropdown2.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown2.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.dropdown2.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown2 ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding-left:0px;
	margin:0;
}

.dropdown2.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown2 li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.dropdown2 li.focus{
	/*background: #d24a67;*/
	
	background: #CAD7E4; /* Old browsers */

	background: -moz-linear-gradient(left,  #CAD7E4 0%, #E9EFF4 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#CAD7E4 ),  color-stop(100%,#E9EFF4)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(left, #CAD7E4 0%,#E9EFF4 100%) !important; /* IE10+ */
	background: linear-gradient(to right, #CAD7E4 0%,#E9EFF4 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CAD7E4', endColorstr='#E9EFF4',GradientType=1 ) !important; /* IE6-9 */
	

	position: relative;
	z-index: 3;
	color: #2A5785;
}

.dropdown2 li.active{
	font-weight: 700;
}

