.nice-select {
	-webkit-tap-highlight-color: transparent;
	border: 1px solid rgba(44, 65, 89, 0.16);
	border-radius: 6px;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
	height: 50px;
	outline: none;
	padding-left: 18px;
	padding-right: 50px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
	min-width: 196px;
	background: rgba(255, 255, 255, 0);
	box-shadow: none;
	z-index: 10;
}
.nice-select.open {
	z-index: 90;
}
.nice-select span.current {
	display: inline-flex;
	height: 100%;
	align-items: center;
}
.nice-select:after {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #18437D;
	content: '';
	display: block;
	height: 0px;
	margin-top: -3px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	opacity: .50;
}
.nice-select.open:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}
.nice-select.disabled:after {
	border-color: #cccccc;
}
.nice-select.wide {
	width: 100%;
}
.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}
.nice-select.right {
	float: right;
}
.nice-select.right .list {
	left: auto;
	right: 0;
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}
.nice-select.small:after {
	height: 4px;
	width: 4px;
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}
.nice-select .list {
	background: #002B5C;
	border: 1px solid rgba(44, 65, 89, 0.16);
	border-radius: 0px;
	box-shadow: none;
	box-sizing: border-box;
	margin-top: 0px;
	opacity: 0;
	overflow: hidden;
	padding: 7px 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: -1px;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	min-width: 100%;
	margin: 2px 0 0 0;
	max-height: 260px;
	overflow-y: scroll;
}
.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	list-style: none;
	height: auto;
	display: flex;
	align-items: center;
	outline: none;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size: 82%;
	padding: 7px 18px;
	color: #fff;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	color: #F7B800;
}
.nice-select .option.selected {
	color: #F7B800;
}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}
.no-csspointerevents .nice-select .list {
	display: none;
}
.no-csspointerevents .nice-select.open .list {
	display: block;
}
