
.myselect {
	height:31px;
	line-height:30px;
	border-bottom:1px solid #434A54;
	cursor:pointer;
	color:#fff;
	padding:0 30px 0 10px;
	font-size:10pt;
	margin-bottom:15px;
	transition:border 0.3s ease-in-out;
}

.myselect.bgwhite b {
	color:#434A54;
}

.myselect:after {
	display:inline-block;
	content:'';
	position:absolute;
	top:12px;
	right:10px;

	border-top:7px solid #434A54;
	border-left:5px solid transparent;
	border-right:5px solid transparent;
	border-bottom:0px;

	transition:border 0.3s ease-in-out;
}

.myselect:hover {
	border-bottom:2px solid #434A54;
}

/*.myselect:hover:after {
	border-top:7px solid #fff;
}
*/
.myselect b {
	font-weight:normal;
	display:block;
	height:30px;
	line-height:30px;
	overflow:hidden;
	white-space:nowrap;
}

.myselect .drop {
	visibility:hidden;
	position:absolute;
	top:32px;
	left:0;
	right:0;
	z-index:1000;
	opacity:0;
	transition:opacity 0.2s ease-in-out 0s, visibility 0s step-end 0.2s;
	box-shadow: 0 1px 10px 0 rgba(0,0,0,0.4);
	max-height:210px;
	overflow:hidden;
}

.myselect.shown .drop {
	visibility:visible;
	opacity:1;
	transition:opacity 0.2s ease-in-out 0s, visibility 0s step-start 0s;
}

.myselect .drop span {
	display:block;
	line-height:30px;
	padding:0 10px;
	background:#434A54;
	transition:background 0.3s ease-in-out;
	cursor:pointer;
	white-space: nowrap;
}

.myselect .drop span.cur {
	color:rgba(255,255,255,0.4);
	background:#363B43;
}

.myselect .drop span:not(.cur):hover {
	background:#5A616C;
}