	/* --- EASYDROPDOWN DEFAULT THEME --- */

/* PREFIXED CSS */

.dropdown.tech-drop,
.dropdown.tech-drop div,
.dropdown.tech-drop li,
.dropdown.tech-drop 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.tech-drop .selected::after,
.dropdown.tech-drop.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.dropdown.tech-drop{
	position: relative;
	width: 100%;
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.dropdown.tech-drop.open{
	z-index: 2;
}

.dropdown.tech-drop:hover{
	
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.dropdown.tech-drop.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
}

/* CARAT */

.dropdown.tech-drop .carat{

	position: absolute;
	right: 12px;
	top: 28%;
	border: solid #f98c2f;
    border-width: 0 1.45px 1.45px 0;
    /*padding: 5px;*/
    height: 12px;
    width: 12px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.dropdown.tech-drop.open .carat{
	top: 36%;
	transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.dropdown.tech-drop.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.dropdown.tech-drop .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.dropdown.tech-drop select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.dropdown.tech-drop.touch .old{
	width: 100%;
	height: 100%;
}

.dropdown.tech-drop.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

@media only screen and (max-width: 600px) {
.dropdown.tech-drop.touch select{
	width: auto;
}
}

/* SELECTED FEEDBACK ITEM */ 

.dropdown.tech-drop li{
	display: block;
	font-size: 15px;
    color: #474747;
	overflow: hidden;
/*	white-space: nowrap;*/
    padding: 14px 10px;
    word-wrap: break-word;
    line-height: 18px;
    background: #fff;
}

.dropdown.tech-drop .selected{
		display: block;
	font-size: 15px;
    color: #474747;
	overflow: hidden;
/*	white-space: nowrap;*/
    padding: 7px 10px;
    word-wrap: break-word;
    line-height: 35px;
    background: #fff;
	height:47px;
}
.dropdown.tech-drop.disabled .selected{
	color: #999;
}

.dropdown.tech-drop .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;
}

.dropdown.tech-drop .selected:hover{
	color: #f98c2f;
}
/* DROP DOWN WRAPPER */

.dropdown.tech-drop div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.dropdown.tech-drop.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown.tech-drop.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.dropdown.tech-drop.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown.tech-drop ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding:0;
}

.dropdown.tech-drop.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown.tech-drop li{
	list-style: none;
	padding: 15px 0;
    display: block;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}

/* .focus class is also added on hover */

.dropdown.tech-drop li.focus{
	color: #f98c2f;
	position: relative;
	z-index: 3;
}

.dropdown.tech-drop li.active{
	font-weight: 700;
}