/* --- 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: 100%;
    outline: none;
    padding: 13px 30px;
    border: none;
    background-color: #fff;
    text-align: left;
    color: #083b4c;
    font-family: "OpenSansRegular";
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 20px;
    cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.filter-area .dropdown{
	position: relative;
	border: none;
	display: inline-block;
	width: 100%;
	margin-right: 22px;
	cursor: pointer;
	background: #f4f4f4;
	border-radius: 3px;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.dropdown.open{
	z-index: 2;
}

/* CARAT */

.dropdown .carat{
	position: absolute;
	right: 20px;
	top: 45%;
	margin-top: -4px;
	border: 10px solid transparent;
	border-top: 14px solid #10779b;
}

.dropdown.open .carat{
	margin-top: -15px;
	border-top: 10px solid transparent;
	border-bottom: 14px solid #10779b;
}

.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;
	color: rgba(8,59,76,.65);
	overflow: hidden;
	white-space: nowrap;
	outline: none;
}

.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;
}

/* DROP DOWN WRAPPER */

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

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

/* DROP DOWN LIST */

.dropdown ul{
	position: absolute;
    left: 0;
    top: 0;
    height: auto;
    width: 100%;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0px;
    padding-left: 20px;
    border: 0;
    font-size: 100%;
    background-color: #083b4c;
    vertical-align: baseline;
}

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

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 10px 20px;
	color: #fff;
	font-size: 13px;
	font-family: "OpenSansRegular";
	color: #fff;
	background: url("./images/select-list-icon.png") no-repeat left 50%;
}

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

.dropdown li.focus{
	position: relative;
	z-index: 3;
	color: #fff;
}
.dropdown li:hover {
	color: #1cb7c7;
	text-decoration: underline;
	background: url("./images/select-list-icon-hover.png") no-repeat left 50%;
}
.dropdown li.active{
	font-weight: 700;
}