select{ display: none; }


.subnavdown{float:left; position:relative; background:url(../img/bullet_smenu.png) right 22px no-repeat; }
.subnavdown::before{ display: block;   position: absolute;    top: 0;    left: -1px;    width: 1px;    height: 48px;   content: ''; }
.subnavdown:nth-child(1)::after{display:none;}
.subnavdown::after{ display: block;   position: absolute;    top: 0;    right:-1px;    width: 1px;    height: 48px;    border-left: 1px solid #41c964;    content: ''; }


/* --- 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: 270px;
	/*border: 1px solid #ccc;*/
	cursor: pointer;
	border-radius: 3px;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.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{
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	width:20px; height:20px}


.dropdown.open .carat{
	margin-top: -10px;
	border-top: 6px solid transparent;
	
}

.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:14px;
	line-height: 1;
	padding: 18px 12px;
	overflow: hidden;
	white-space: nowrap; color:rgba(51,51,51,1);
}
.dropdown .selected{ color: #ffffff; font-weight: 500; }
.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: -2px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 0;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

.dropdown div:last-child{border-bottom:none;}
/* Height is adjusted by JS on open */

.dropdown.open div{
	width: 269px;
	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;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 14px 12px;
	border-bottom:1px solid #e1e1e1; 
}

/* .focus class is also added on hover */

.dropdown li.focus{
	background: #fafafa;
	position: relative;
	z-index: 3;
	color: #000;
	
}

.dropdown li.active{
	
}



@media only all and (max-width:1024px){

.dropdown{ width:100%}
.dropdown .carat{background:none;}
.dropdown .selected, .dropdown li{font-size:12px;}
.dropdown .selected{padding-left:7px;}
.subnavdown{width:28%;}
}