/* --- 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{
	position: relative;
	width: 170px;
	cursor: pointer;
	padding-top: 3px;
    padding-bottom: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.dropdown.open{
	z-index: 3;
}

/* CARAT */

.dropdown .carat{
	position: absolute;
	right: -27px;
	top: 50%;
	margin-top: -4px;
}
.dropdown .fa {
display: inline-block;
	top: 50%;
	margin-top: -6px;
	    margin-left: 10px;
    color: #a9a9a9;
    font-size: 12px;
}
.dropdown .fa-chevron-up, .dropdown.open .fa-chevron-down {
    display: none;
}
.dropdown.open .fa-chevron-up {
    display: inline-block;
}
.dropdown.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	border-bottom: 8px solid #cccccc;
}

.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{
	display: block;
/*	font-size: 16px;*/
	line-height: 1;
	color: #fb5221;
	/*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;
}

/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #f8f8f8;
	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-top: 0px;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 4px 12px;
}

/* .focus class is also added on hover */

.dropdown li.focus{
	background: #fb5221;
	position: relative;
	z-index: 3;
	color: #fff;
}

/*.dropdown li.active, .dropdown .selected {
	font-weight: 700;
}*/
.dropdown .carat {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #cccccc transparent transparent;
    border-image: none;
    border-style: solid;
    border-width: 8px 6px 6px;
    margin-top: -4px;
    position: absolute;
    right: -27px;
    top: 50%;
}

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