.dropdown {
	position: relative;
	width: 133px;
	cursor: pointer;
	background: #ffffff;
	float: left;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
    
    font-family: HelveticaNeueLTStdHeavy;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: normal;    
}
.dropdown.open { z-index: 2; }
.dropdown:hover { }
.dropdown.focus { }
/* PREFIXED CSS */
.dropdown div {
}
/* ARROW */
.dropdown .carat {
    display: none;
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 5px solid transparent;
	border-top: 8px solid #000;
	/* -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out; */
	
	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;
}
.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;
	width: 0; height: 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 {
	display: block;
	font-size: 12px;
	line-height: 1;
	color: #000;
	padding: 13px 7px 10px 0px;
	overflow: hidden;
	white-space: nowrap;
}
.dropdown .selected {
    float: left;
    height: 10px;
    padding: 0 0 1px 0;
    margin: 13px 7px 8px 0px;
    border-bottom: 2px solid #ffffff;
}
.dropdown .selected:hover { border-bottom: 2px solid #000000; }
.dropdown.disabled .selected { color: #999; }
.dropdown .selected::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
}
/* DROP DOWN WRAPPER */
.dropdown div {
	position: absolute;
	height: 0;
	left: -2px;
	right: -2px;
	top: 100%;
	margin-top: 0;
	background: #fff;
	border-top: none;
	overflow: hidden;
}
/* Height is adjusted by JS on open */
.dropdown.open div { z-index: 2; }
/* FADE OVERLAY FOR SCROLLING LISTS */
.dropdown.scrollable div::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
}
.dropdown.scrollable.bottom div::after { opacity: 0; }
/* DROP DOWN LIST */
.dropdown ul {
	position: absolute;
    left: 0;
	top: 0;
    margin: 0;
    padding: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}
.dropdown.scrollable.open ul { overflow-y: auto; }
/* DROP DOWN LIST ITEMS */
.dropdown li { list-style: none; padding: 9px 7px 8px 2px; }
/* .focus class is also added on hover */
.dropdown li.focus {	
	position: relative;
	z-index: 3;
}
.dropdown li span {
    display: block;
    height: 11px;
    float: left;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #ffffff;
}
.dropdown li.focus span {
    border-bottom: 2px solid #000000;
}
.dropdown li.active{ font-weight: normal; }