div.fancy-select {
	position: relative;
	font-weight: bold;
	font-size: 15px;
	color: #fff;
}

div.fancy-select.disabled {
	opacity: 0.5;
}

div.fancy-select select:focus + div.trigger {
	
}

div.fancy-select select:focus + div.trigger.open {
	box-shadow: none;
}

div.fancy-select div.trigger {
	cursor: pointer;
	padding:0 52px 0 0;
	background-color:#0034b5;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	color: #fff;
	line-height:42px;
	text-indent:15px;
	transition: all 240ms ease-out;
	-webkit-transition: all 240ms ease-out;
	-moz-transition: all 240ms ease-out;
	-ms-transition: all 240ms ease-out;
	-o-transition: all 240ms ease-out;
}

div.fancy-select div.trigger::after {
	content: "";
	display: block;
	position: absolute;
	background:url(../images/list-arrow-white-down.svg) center center no-repeat scroll;
	width:25px;
	height:13px;
	right:0.9375rem;
	margin-top: -1.75rem;
}

div.fancy-select div.trigger.open {
	/*background:#cf1717 url(../images/select-box-arrow-up.svg) right center no-repeat scroll;*/
}

/*div.fancy-select div.trigger.open:after {
	border-top-color: #7A8498;
}*/

div.fancy-select ul.options {
	list-style: none;
	margin: 0 !important;
	padding:0 !important;
	position: absolute;
	top: 42px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 1001;
	/*max-height: 258px;*/
	overflow: auto;
	background: #0034b5;
	min-width: 100%;

	transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
	-webkit-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
	-moz-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
	-ms-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
	-o-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
}

div.fancy-select ul.options.open {
	visibility: visible;
	top: 42px;
	opacity: 1;

	/* have to use a non-visibility transition to prevent this iOS issue (bug?): */
	/*http://stackoverflow.com/questions/10736478/css-animation-visibility-visible-works-on-chrome-and-safari-but-not-on-ios*/
	transition: opacity 300ms ease-out, top 300ms ease-out;
	-webkit-transition: opacity 300ms ease-out, top 300ms ease-out;
	-moz-transition: opacity 300ms ease-out, top 300ms ease-out;
	-ms-transition: opacity 300ms ease-out, top 300ms ease-out;
	-o-transition: opacity 300ms ease-out, top 300ms ease-out;
}

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

	transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
	-webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
	-moz-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
	-ms-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
	-o-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;*/
}

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

	transition: opacity 300ms ease-out, bottom 300ms ease-out;
	-webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out;
	-moz-transition: opacity 300ms ease-out, bottom 300ms ease-out;
	-ms-transition: opacity 300ms ease-out, bottom 300ms ease-out;
	-o-transition: opacity 300ms ease-out, bottom 300ms ease-out;*/
}

div.fancy-select ul.options li {
	color: #fff;
	cursor: pointer;
	white-space: nowrap;
	border-top:1px solid #000b80;
	line-height:42px;
	background:none;
	font-weight: 600;
	margin-bottom: 0;
	padding-left: 18px;

	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

div.fancy-select ul.options.overflowing.open li {
	/*border-top:none;
	border-bottom:1px solid #fff;*/
}

div.fancy-select ul.options li.selected {
	background:#0024a0;
}

div.fancy-select ul.options li.hover {
	background: #0024a0;
}