/* --- 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-family: "Gotham Medium";
	position: relative;
	width: 100%;
	border: 1px solid #cfcfcf;
	cursor: pointer;
	background: #fff;
	font-weight: 600;
	border-radius: 0px;
	margin-bottom: 15px;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.testimo-style .filter-style .dropdown{
	border: none;
}
.filter-style .dropdown{
	/*border: none;*/
	float: left;
	width: auto;
	margin-right: 30px;

}


.dropdown.open{
	z-index: 2;
}



/* CARAT */

.dropdown .carat{
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -4px;
	border: 6px solid transparent;
	border-top: 6px solid #C4D600;
}
.filter-style .dropdown .carat{
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -4px;
	border: 6px solid transparent;
	border-top: 6px solid #C4D600;

}



.dropdown.open .carat{
	margin-top: -8px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid #c2c2c2;
}
.filter-style .dropdown.open .carat{
	margin-top: -12px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid #C4D600;
}

.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: 13px;
	line-height: 1;
	   color: #363a35;
	padding: 11px 9px 10px;
	overflow: hidden;
	/*white-space: nowrap; */
	text-align: left;


}
.filter-style .dropdown .selected,
.filter-style .dropdown li{

	font-size: 12px;

	   color: #363a35;
	padding: 11px 50px 10px 9px;




}

.dropdown.disabled .selected{
	color: #999;
}

.dropdown .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	
	border-radius:0px;
	box-shadow: none;
}


/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #cfcfcf;
	border-top: 1px solid #cfcfcf;
	border-radius:0px;
	overflow: hidden;
	opacity: 0;
}




/* Height is adjusted by JS on open */

.dropdown.open div{
	opacity: 1;
	z-index: 2;
	text-align: left;
}

/* 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;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding-left:0px;
}

.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: #f2f2f2;
	position: relative;
	z-index: 3;
	color: #727272;
}

.dropdown li.active{

}


 