/* --- 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: 160px;
	border: 1px solid #E84C19;
	cursor: pointer;
	background: #fff;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	text-align: left;
	margin: 0 1% 0 0;
}
.dropdown:first-child {
  margin-left: 0;
}
.dropdown.open{
	z-index: 51;
}

.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;
	border: 6px solid transparent;
	border-top: 8px solid #E84C19;
}

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

.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: 18px;
	line-height: 1;
	color: #000;
	padding: 9px 12px;
	overflow: hidden;
	white-space: nowrap;
	font-size: 14px;
	text-transform: uppercase; 
}

.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: -1px;
	background: #fff;
	border: 1px solid #E84C19;
	border-top:none;
	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;
}

.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: #E84C19;
	position: relative;
	z-index: 3;
	color: #fff;
}

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


.full .dropdown {
  background: #fff;
  background: rgba(255, 255, 255, 0.25);
  border: medium none;
  width: 100%;
}
.full .dropdown .selected:after {
    box-shadow: none;
}
.full .dropdown .selected {
    color: #fff;
    text-transform: uppercase;
}
.full .dropdown .carat {
    border-top: 8px solid #fff;
}
.full .dropdown.open .carat {
   border-top: 6px solid transparent;
    border-bottom: 8px solid #fff;
}
.full .dropdown li.focus{
    background:#007f3e;
    
}
.full .dropdown div {border: none;left: 0;right: 0;}




.contacts_wrap .full .dropdown {
  background: #fff;
  border: 1px solid #83c559;
  width: 100%;
}
.contacts_wrap .full .dropdown .selected:after {
    box-shadow: none;
}
.contacts_wrap .full .dropdown .selected {
    color: #000;
    text-transform: uppercase;
}
.contacts_wrap .full .dropdown .carat {
    border-top: 8px solid #000;
}
.contacts_wrap .full .dropdown.open .carat {
   border-top: 6px solid transparent;
   border-bottom: 8px solid #000;
}
.contacts_wrap .full .dropdown li.focus{
    background:#007f3e;
}
.contacts_wrap .full .dropdown div {border: none;}


.green .dropdown {
  background: #fff;
  border: 1px solid #71be44;
}
.green .dropdown .selected:after {
    box-shadow: none;
}
.green .dropdown .selected {
    color: #000;
    text-transform: uppercase;
}
.green .dropdown .carat {
    border-top: 8px solid #71be44;
}
.green .dropdown.open .carat {
   border-top: 6px solid transparent;
    border-bottom: 8px solid #71be44;
}
.green .dropdown li.focus{
    background:#71be44;
    
}
.green .dropdown div {border: 1px solid #71be44;}

.filter.green.no_mar_top .dropdown {
    width: 30%;
}
.filter .select_wrap.full .dropdown {
  width: 22%;
}
@media (min-width: 900px) {
   .filter .select_wrap.full .dropdown {
      width: 23%;
    }
}