.dropDown
{
	cursor:pointer;
	height:70px;
	line-height:50px;
	position:relative;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	width:100%;
}

.dropDown .divInputBackground
{
	background-color:#292a2f;
	border-radius:10px;
	bottom:0px;
	height:50px;
	left:0px;
	position:absolute;
	width:100%;
}

.dropDown .divInputBackground:after
{
	background-color:#37383d;
	border:2px solid #3f4656;
	border-radius:10px;
	color:#888b90;
	content:">";
	display:block;
	height:46px;
	line-height:46px;
	position:absolute;
	right:0px;
	text-align:center;
	top:0px;
	transform:rotate(90deg);
	transition:border 0.25s, box-shadow 0.25s, color 0.25s, text-shadow 0.25s;
	width:46px;
}

.dropDown:hover .divInputBackground:after, .dropDown.focus .divInputBackground:after
{
    border:2px solid #cffdff;
    box-shadow:inset 0px 0px 5px #01eff9, 0px 0px 5px #01eff9;
	color:#ffffff;
	text-shadow:0px 0px 5px #01eff9;
}

.dropDown .divPlaceHolder
{
	color:#888b90;
	font-size:16px;
	height:50px;
	left:15px;
	line-height:50px;
	overflow:hidden;
	position:absolute;
	right:60px;
	text-overflow:ellipsis;
	top:20px;
	transition:color 0.25s, font-size 0.25s, left 0.25s, text-shadow 0.25s, top 0.25s;
	white-space:nowrap;
}

.dropDown.focus .divPlaceHolder
{
	color:#ffffff;
	font-size:14px;
	left:0px;
	text-shadow:0px 0px 5px #01eff9;
	top:-15px;
}

.dropDown.hasValue .divPlaceHolder
{
	font-size:14px;
	left:0px;
	top:-15px;
}

.dropDown .divInputValue
{
	bottom:0px;
	color:#ffffff;
	font-size:16px;
	height:50px;
	left:15px;
	line-height:50px;
	overflow:hidden;
	position:absolute;
	right:65px;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	white-space:nowrap;
}

.dropDown .divDropDownItems
{
	background-color:#292a2f;
	border-radius:10px;
	height:0px;
	left:0px;
	overflow-y:auto;
	position:absolute;
	top:70px;
	transition:box-shadow 0.25s, height 0.25s;
	width:100%;
	z-index:1;
	-webkit-overflow-scrolling:touch;
}

.dropDown.focus .divDropDownItems
{
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.5);
	height:200px;
}

.dropDown .divDropDownItem
{
	color:#888b90;
	padding:0px 15px;
	transition:color 0.25s, text-shadow 0.25s;
	white-space:nowrap;
}

.dropDown .divDropDownItem:hover, .dropDown .divDropDownItem.selected
{
	color:#ffffff;
	text-shadow:0px 0px 5px #01eff9;
}