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:#000;
  	font-family: 'Tahoma';
  	font-size: 16px;
}


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

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

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

/* CARAT */

.dropdowns .carat{
	position: absolute;
	right: 0px;
	top: 16px;
	width: 11px;
    height: 7px;
	transition: all 0.3s;
	background: url('/public/img/caret.svg') no-repeat;
	z-index: 10;
}

.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: 10px;
	top: 10px;
	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,
.dropdowns li{
	display: block;
	padding: 10px 15px;
	overflow: hidden;
	white-space: nowrap;
	background:none;

	color: #808080;
	font-family: 'Prompt', sans-serif;
    font-weight: 300;
	font-size: 18px;
}
.dropdowns .selected{
    border:none;
	border-bottom:1px solid #d9d9d9;
	border-radius: 0px;
	background: #fff;
	box-shadow: none !important;
	outline: none;
	padding: 5px 0px;
	
	color: #808080;
	font-family: 'Prompt', sans-serif;
    font-weight: 300;
	font-size: 18px;
}
@media (min-width: 992px){
	.dropdowns .selected{
		position: relative;
		z-index: 9;
	}
}
.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;
	left: 0px;
	right: 0px;
	top: 38px;

	background: #fff;
	border:1px solid #cccccc;
	box-shadow: 3px 3px 3px rgba(#999999,.3);
 	border-radius: 3px;
	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{
	list-style: none;
	padding: 10px 15px;
	background: none;
	
	color: #808080;
	font-family: 'Prompt', sans-serif;
    font-weight: 300;
	font-size: 16px;
}

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

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

}

.dropdowns li.active{
	color: #814182;
	background: #fff;
}
