ul, li{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* PREFIXED CSS */

.dropdowns,
.dropdowns div,
.dropdowns li,
.dropdowns 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;

}

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

/* WRAPPER */
.dropdowns{
	position: relative;
	width:100%;
	border: none;
	cursor: pointer;
	background: none;	
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	color:#252525;
	font-family: 'db_heavent_med';
    font-size: 24px;
    line-height: 1em;
}


.dropdowns.open{
	z-index: 2;
	opacity: 1;
}

.dropdowns.focus{
	/*box-shadow: 0 0 5px rgba(51,102,248,.4);*/
	border:none
}

/* CARAT */

.dropdowns .carat{
	position: absolute;
	right: 0px;
	top: 4px;
	width: 15px;
	height: 7px;
	z-index: 99;
	transition: all 0.3s;
	background: url('/public/img/member/down.svg') no-repeat;
}

.dropdowns.open .carat{
	transform: rotate(180deg);
}

/* OLD SELECT (HIDDEN) */
.dropdowns .old{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.dropdowns select{
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0;
	width: 0;
	z-index: 0;
}

.dropdowns.touch .old{
	width: 100%;
	height: 100%;
}

.dropdowns.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}
/* SELECTED FEEDBACK ITEM */ 
.dropdowns .selected{
	display: block;
	padding:0px 15px 10px 15px;
	border-bottom: 1px solid #dcdcdc;
	border-radius: 0px;
	background: none;

	color:#252525;
	font-family: 'montserrat-regular';
	font-size: 12px;
	font-weight: normal;
	line-height: 1em;
	text-align: left;
}
@media (min-width: 992px) {
	.dropdowns .selected{
		overflow: hidden;
		white-space: nowrap;
		position: relative;
		z-index: 99;
	}
	.dropdowns select{
		visibility: hidden;
	}
}
.dropdowns.disabled .selected{
	content: '';
	background: none;   
}

.dropdowns .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
}


/* DROP DOWN WRAPPER */

.dropdowns div{
	position: absolute;
	z-index: 2;
	height: 0;
	top: 23px;
	right: 0;
	left: 0;

	background: #fff;
	border:1px solid #dcdcdc;
 	border-radius: 0px;
	overflow: hidden;
	opacity: 0;

}

/* Height is adjusted by JS on open */

.dropdowns.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdowns.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30px;
	
	/*box-shadow: inset 0 -50px 30px -35px #262626;*/
}

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

/* DROP DOWN LIST */

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

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

/* DROP DOWN LIST ITEMS */


.dropdowns li{
	display: block;
	padding: 15px 20px;
	overflow: hidden;
	white-space: nowrap;
	background:none;
	list-style: none;
	border-bottom: 1px solid #ccc;

	color:#969696;
	font-family: 'montserrat-regular';
	font-size: 12px;
	font-weight: normal;
	line-height: 1em;
	text-align: left;
}

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

.dropdowns li.focus{
	position: relative;
	z-index: 3;
	color: #fff;
	background: #b19a6f;

}

.dropdowns li.active{
	color: #fff;
	margin: 0px;
	background: #b19a6f;
}
