div.fancy-select {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	color: #46565D;
}

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

div.fancy-select select:focus + div.trigger {
	box-shadow: 0 0 0 2px #4B5468;
}

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

div.fancy-select div.trigger {
	border-radius: 4px;
	cursor: pointer;
	padding: 10px 24px 9px 9px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	background: #99A5BE;
	border: 1px solid #99A5BE;
	border-top-color: #A5B2CB;
	color: #4B5468;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	width: 200px;

	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;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #4B5468;
	top: 20px;
	right: 9px;
}

div.fancy-select div.trigger.open {
	background: #4A5368;
	border: 1px solid #475062;
	color: #7A8498;
	box-shadow: none;
}

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

div.fancy-select ul.options {
	list-style: none;
	margin: 0;
	position: absolute;
	top: 40px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 50;
	max-height: 200px;
	overflow: auto;
	background: #62C8BF;
	border-radius: 4px;
	border-top: 1px solid #7DD8D2;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	min-width: 200px;

	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: 50px;
	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: 40px;

	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: 50px;

	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 {
	padding: 8px 12px;
	color: #2B8686;
	cursor: pointer;
	white-space: nowrap;

	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 li.selected {
	background: rgba(43,134,134,0.3);
	color: rgba(255,255,255,0.75);
}

div.fancy-select ul.options li.hover {
	color: #fff;
}


/* Select-1 */

.select-1 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'adelle', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	text-transform: none;
	background: none;
	border-radius: 2px;
	border: 0;
	box-shadow: none !important;
	color: #bfdff4;
	padding: 0px 10px 0px 25px;
	border: none;
}
.select-1 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
}
.select-1 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 8px;
	right: 0px;
	background: url(../img/icons/arrow-bottom-1.png) right center no-repeat;
}
.select-1 div.fancy-select ul.options {
	top: 30px;
	border-radius: 0px;
	border: 0;
	background: #31597f;
	width: 300px;
	padding-bottom: 10px;
}
.select-1 div.fancy-select ul.options li.selected,
.select-1 div.fancy-select ul.options li.selected:hover {
	color: #31597f;
	background: #bfdff4 url(../img/icons/arrow-right-2.png) 95% center no-repeat;
}
.select-1 div.fancy-select ul.options li {
	font-family: 'adelle', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	text-transform: none;
	color: #bfdff4;
	background: #31597f url(../img/icons/arrow-right-1.png) 95% center no-repeat;
}
.select-1 div.fancy-select ul.options li:hover {
	color: #31597f;
	background: #bfdff4 url(../img/icons/arrow-right-2.png) 95% center no-repeat;
}






/* Select-3 category-1 */

.filter.category-1 .select-3 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	background: none;
	border-radius: none;
	border: 0;
	box-shadow: none !important;
	color: #fff;
	padding: 0px 15px 0px 15px;
	border: none;
	width: 90px;
	text-align: right;
}
.filter.category-1 .select-3 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.filter.category-1 .select-3 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 4px;
	right: 0px;
	background: url(../img/icons/arrow-bottom-6.png) right center no-repeat;
}
.filter.category-1 .select-3 div.fancy-select ul.options {
	width: 100px;
	min-width: 100px;
	top: 25px;
	border-radius: 0px;
	border: 0;
	background: #297fb6;
	padding-bottom: 0px;
	border: 1px solid #297fb6;
}
.filter.category-1 .select-3 div.fancy-select ul.options li.selected,
.filter.category-1 .select-3 div.fancy-select ul.options li.selected:hover {
	color: #297fb6;
	background: #fff;
}
.filter.category-1 .select-3 div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	text-transform: uppercase;
	color: #fff;
	text-align: right;
}
.filter.category-1 .select-3 div.fancy-select ul.options li:hover {
	color: #297fb6;
	background: #fff;
}


/* Select-2 category-2 */

.filter.category-2 .select-3 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	background: none;
	border-radius: none;
	border: 0;
	box-shadow: none !important;
	color: #fff;
	padding: 0px 15px 0px 15px;
	border: none;
	width: 90px;
	text-align: right;
}
.filter.category-2 .select-3 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.filter.category-2 .select-3 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 4px;
	right: 0px;
	background: url(../img/icons/arrow-bottom-6.png) right center no-repeat;
}
.filter.category-2 .select-3 div.fancy-select ul.options {
	width: 100px;
	min-width: 100px;
	top: 25px;
	border-radius: 0px;
	border: 0;
	background: #f10044;
	padding-bottom: 0px;
	border: 1px solid #f10044;
}
.filter.category-2 .select-3 div.fancy-select ul.options li.selected,
.filter.category-2 .select-3 div.fancy-select ul.options li.selected:hover {
	color: #f10044;
	background: #fff;
}
.filter.category-2 .select-3 div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	text-transform: uppercase;
	color: #fff;
	text-align: right;
}
.filter.category-2 .select-3 div.fancy-select ul.options li:hover {
	color: #f10044;
	background: #fff;
}

/* Select-4 category-3 */

.filter.category-3 .select-3 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	background: none;
	border-radius: none;
	border: 0;
	box-shadow: none !important;
	color: #fff;
	padding: 0px 15px 0px 15px;
	border: none;
	width: 90px;
	text-align: right;
}
.filter.category-3 .select-3 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.filter.category-3 .select-3 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 4px;
	right: 0px;
	background: url(../img/icons/arrow-bottom-6.png) right center no-repeat;
}
.filter.category-3 .select-3 div.fancy-select ul.options {
	width: 100px;
	min-width: 100px;
	top: 25px;
	border-radius: 0px;
	border: 0;
	background: #6a9c09;
	padding-bottom: 0px;
	border: 1px solid #6a9c09;
}
.filter.category-3 .select-3 div.fancy-select ul.options li.selected,
.filter.category-3 .select-3 div.fancy-select ul.options li.selected:hover {
	color: #6a9c09;
	background: #fff;
}
.filter.category-3 .select-3 div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	text-transform: uppercase;
	color: #fff;
	text-align: right;
}
.filter.category-3 .select-3 div.fancy-select ul.options li:hover {
	color: #6a9c09;
	background: #fff;
}

/* Select-5 category-4 */

.filter.category-4 .select-3 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	background: none;
	border-radius: none;
	border: 0;
	box-shadow: none !important;
	color: #fff;
	padding: 0px 15px 0px 15px;
	border: none;
	width: 90px;
	text-align: right;
}
.filter.category-4 .select-3 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.filter.category-4 .select-3 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 4px;
	right: 0px;
	background: url(../img/icons/arrow-bottom-6.png) right center no-repeat;
}
.filter.category-4 .select-3 div.fancy-select ul.options {
	width: 100px;
	min-width: 100px;
	top: 25px;
	border-radius: 0px;
	border: 0;
	background: #e700c9;
	padding-bottom: 0px;
	border: 1px solid #e700c9;
}
.filter.category-4 .select-3 div.fancy-select ul.options li.selected,
.filter.category-4 .select-3 div.fancy-select ul.options li.selected:hover {
	color: #e700c9;
	background: #fff;
}
.filter.category-4 .select-3 div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	text-transform: uppercase;
	color: #fff;
	text-align: right;
}
.filter.category-4 .select-3 div.fancy-select ul.options li:hover {
	color: #e700c9;
	background: #fff;
}

/* Select-6 category-4 */

.select-6 div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1px;
	color: #959595;
	line-height: 34px;
	text-transform: uppercase;
	background: none;
	border-radius: 20px;
	border: 2px solid #cfcfcf;
	box-shadow: none !important;
	padding: 0px 15px 0px 15px;
	padding-left: 40px;
}
.select-6 div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.select-6 div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 15px;
	right: 15px;
	background: url(../img/icons/arrow-bottom-7.png) right center no-repeat;
}
.select-6 div.fancy-select ul.options {
	width: 100%;
	top: 36px;
	border-radius: 0px;
	border: 0;
	background: #fff;
	padding-bottom: 0px;
	border-radius: 20px;
	border: 2px solid #cfcfcf;
}
.select-6 div.fancy-select ul.options li.selected,
.select-6 div.fancy-select ul.options li.selected:hover {
	color: #959595;
	background: #f8f8f8;
}
.select-6 div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 34px;
	text-transform: uppercase;
	color: #959595;
}
.select-6 div.fancy-select ul.options li:hover {
	color: #959595;
	background: #f8f8f8;
}

.ginput_container div.fancy-select div.trigger {
	width: 100%;
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1px;
	color: #959595;
	line-height: 34px;
	text-transform: uppercase;
	background: none;
	border-radius: 20px;
	border: 2px solid #cfcfcf;
	box-shadow: none !important;
	padding: 0px 15px 0px 15px;
}
.ginput_container div.fancy-select select:focus + div.trigger.open {
	color: #bfdff4;
	box-shadow: none !important;
	border: 1px solid #fff;
}
.ginput_container div.fancy-select div.trigger:after {
	width: 8px;
	height: 5px;
	border: 0;
	top: 15px;
	right: 15px;
	background: url(../img/icons/arrow-bottom-7.png) right center no-repeat;
}
.ginput_container div.fancy-select ul.options {
	width: 100%;
	top: 36px;
	border-radius: 0px;
	border: 0;
	background: #fff;
	padding-bottom: 0px;
	border-radius: 20px;
	border: 2px solid #cfcfcf;
}
.ginput_container div.fancy-select ul.options li.selected,
.ginput_container div.fancy-select ul.options li.selected:hover {
	color: #959595;
	background: #f8f8f8;
}
.ginput_container div.fancy-select ul.options li {
	font-family: 'lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	line-height: 34px;
	text-transform: uppercase;
	color: #959595;
}
.ginput_container div.fancy-select ul.options li:hover {
	color: #959595;
	background: #f8f8f8;
}







