/* --- 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 {
  -moz-user-select: none;
  background: #f2f2f2 none repeat scroll 0 0;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  cursor: pointer;
  font: 20px "Museo Slab W01 900";
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.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 {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  position: absolute;
  top: -1px;
}

/* .dropdown.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #000;
} */

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

/* 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 {
  color: #d1d1d1;
  display: block;
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
  padding: 18px;
  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 {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #c2c2c2;
  height: 0;
  left: -1px;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: -1px;
  top: 100%;
}

/* 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;
	
	width: 100%;
	list-style: none;
	overflow: hidden;
}

.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: #bbb none repeat scroll 0 0;
  color: #fff;
  position: relative;
  z-index: 3;
}

.dropdown li.active{
	font-weight: 700;
}