.fancy-select{
	display:inline-block;
	position:relative;
	vertical-align:top;
	border-right-width:35px;
	height:36px;
}
.fancy-select.disabled{
	opacity:0.5;
}

.fancy-select select{
	padding:0;
	border:0;
	display:none;
}

.fancy-select div.trigger{
	position:absolute;
	left:0;
	right:-36px;
	padding:0 46px 0 10px;
	cursor:pointer;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.fancy-select div.trigger:after{
	content:"";
	display:block;
	position:absolute;
	width:0;
	height:0;
	border:6px solid transparent;
	border-top-color:#fff;
	top:14px;
	right:11px;
}
/* .fancy-select .trigger.open{} */
/* .fancy-select .trigger.open:after{} */

.fancy-select ul.options {
	position:absolute;
	z-index:50;
	top:34px;
	left:-1px;
	width:100%;
	/* width:calc(100% - 10px); */
	margin:0;
	padding:0;
	max-height:200px;
	overflow:auto;
	overflow-x:hidden;
	border:1px solid #7e7e7e;
	border-bottom-left-radius:3px;
	border-bottom-right-radius:3px;
	background:#fff;
	list-style:none;
	visibility:hidden;
	opacity:0;
	box-shadow:0px 3px 5px #888;
}

.fancy-select ul.options.open {
	visibility:visible;
	opacity:1;
}

.fancy-select ul.options.overflowing {
	/* top: auto; */
	/* bottom: 40px; */
}

.fancy-select ul.options.overflowing.open {
	/* top: auto; */
	/* bottom: 50px; */
}

.fancy-select ul.options li {
	padding:0 10px;
	line-height:36px;
	color:#7e7e7e;
	cursor:pointer;
	white-space:nowrap;
}

.fancy-select ul.options li.selected {
	color:#fff;
	background:#7e7e7e;
}

.fancy-select ul.options li.hover {
	color:#fff;
	background:#7e7e7e;
}