/* --- EASYDROPDOWN DEFAULT THEME --- */

/* PREFIXED CSS */

.mzw-select-dropdown,
.mzw-select-dropdown div,
.mzw-select-dropdown li,
.mzw-select-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;
}

.mzw-select-dropdown .selected::after,
.mzw-select-dropdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.mzw-select-dropdown{
	position: relative;
	width: 100%;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mzw-select-dropdown.open{
	z-index: 2;
}

/* .mzw-select-dropdown:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
} */

/* .mzw-select-dropdown.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
} */

/* CARAT */

.mzw-select-dropdown .carat{
	display: block;
	width: 15px;
	height: 8px;
	background: url(/public/static/en/images/icon-a11.png) no-repeat center;
	background-size: 100% auto;
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -4px;
	transition: .4s;
}

.mzw-select-dropdown.open .carat{
	transform: rotate(180deg);
}

.mzw-select-dropdown.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.mzw-select-dropdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.mzw-select-dropdown select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.mzw-select-dropdown.touch .old{
	width: 100%;
	height: 100%;
}

.mzw-select-dropdown.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.mzw-select-dropdown .selected,
.mzw-select-dropdown li{
	display: block;
	font-size: 16px;
	letter-spacing: 0.1em;
	height: 38px;
	line-height: 38px;
	color: #3F3F3F;
	overflow: hidden;
}

.mzw-select-dropdown .selected{
	color: #B5B5B8;
	margin: 0 33px 0 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mzw-select-dropdown .selected.on{
	color: #fff;
}

.mzw-select-dropdown.disabled .selected{
	color: #999;
}

/* DROP DOWN WRAPPER */

.mzw-select-dropdown div{
	position: absolute;
	height: 0;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: -1px;
	background-color: #fff;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.mzw-select-dropdown.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.mzw-select-dropdown.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.mzw-select-dropdown.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.mzw-select-dropdown ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}

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

/* DROP DOWN LIST ITEMS */

.mzw-select-dropdown li{
	height: auto;
	line-height: 1.5;
	padding: 7px 20px;
	list-style: none;
}

.mzw-select-dropdown li:first-child{
	margin-top: 10px;
}
.mzw-select-dropdown li:last-child{
	margin-bottom: 10px;
}

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

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

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

@media only screen and (min-width: 950px) and (max-width: 1920px) {
	.mzw-select-dropdown .carat{
		width: 0.781vw;
		height: 0.416vw;
		right: 0.416vw;
		margin-top: -0.208vw;
	}
	.mzw-select-dropdown .selected,
	.mzw-select-dropdown li{
		font-size: 0.833vw;
		height: 1.979vw;
		line-height: 1.979vw;
	}
	.mzw-select-dropdown .selected{
		margin: 0 1.718vw 0 1.562vw;
	}
	.mzw-select-dropdown.scrollable div::after{
		height: 2.604vw;
		box-shadow: inset 0 -2.604vw 1.562vw -1.822vw #fff;
	}
	.mzw-select-dropdown li{
		line-height: 1.5;
		padding: 0.364vw 1.041vw;
	}
	.mzw-select-dropdown li:first-child{
		margin-top: 0.520vw;
	}
	.mzw-select-dropdown li:last-child{
		margin-bottom: 0.520vw;
	}
}