/* Dropdown control */
.selectBox-dropdown {
	min-width: 200px;
	position: relative;
	text-decoration: none;
	text-align: left;
	color: #000;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
	border-bottom:1px solid #000000;
	font-size: 14px;
}
a.selectBox-dropdown:hover {color: #000;cursor:pointer;}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	transition: 0.5s;
	position: absolute;
	top: 3px;
	right: 0;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: 100% 3px;
	background-size: auto 12px;
	background-image: url('data:image/svg+xml, <svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M0.848298 9.15593L8.36131 9.15522C8.48859 9.16559 8.60149 9.15121 8.70002 9.11208C8.79807 9.07249 8.88151 9.01828 8.95033 8.94945C9.01916 8.88063 9.07337 8.79719 9.11297 8.69913C9.15209 8.60061 9.16647 8.48771 9.1561 8.36043L9.17166 0.832566C9.16129 0.645896 9.09741 0.488676 8.98003 0.360928C8.86218 0.233649 8.70497 0.169774 8.50839 0.169302C8.32219 0.179202 8.16521 0.248027 8.03746 0.375777C7.90971 0.503526 7.84088 0.660506 7.83098 0.846706L7.84583 6.90167L1.12832 0.184151C1.01047 0.0663004 0.855848 0.00501735 0.664458 0.000303351C0.472588 -0.00488165 0.312787 0.0564014 0.185036 0.184151C0.0572854 0.311902 -0.00399663 0.471708 0.00118837 0.663566C0.00590237 0.854956 0.0671854 1.00958 0.185036 1.12744L6.90255 7.84495L0.833448 7.84424C0.656678 7.84471 0.506768 7.90128 0.383728 8.01395C0.261168 8.12709 0.194935 8.28666 0.185036 8.49266C0.195407 8.67934 0.264232 8.83631 0.391508 8.96359C0.519258 9.09134 0.671528 9.15545 0.848298 9.15593Z" fill="black"/> </svg>');
}
.selectBox-menuShowing .selectBox-arrow {
	rotate:90deg;
	transition: 0.5s;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	background: #FFF;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	font-size:14px;
}

/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: auto;
}

/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
}

.selectBox-options.selectBox-options-top{
	border-bottom:none;
	margin-top:1px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
	padding-bottom:3px;
	border-bottom:1px solid #000000;
}

.selectBox-options li a {
	line-height: 1.5;
	padding: 0;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
	color:#74746B;
}
.selectBox-options li a:not([href]):not([class]) {
	color:#74746B;
}
.selectBox-options li a:not([href]):not([class]):hover {
	color:#000000;
}

.selectBox-options LI.selectBox-hover a, .selectBox-options LI.selectBox-hover a:hover,
.selectBox-options LI.selectBox-hover a:not([href]):not([class]), .selectBox-options LI.selectBox-hover a:not([href]):not([class]):hover
{
	background-color: #ffffff;
	color:#000000;
	cursor: pointer;
}

.selectBox-options LI.selectBox-disabled a, .selectBox-options LI.selectBox-disabled:not([href]):not([class]) {
	opacity:0.5;
	background-color: #ffffff;
}

.selectBox-options LI.selectBox-selected a, .selectBox-options LI.selectBox-selected a:not([href]):not([class]) {
	background-color: #ffffff;
	color:#000000;
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
	color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
	color: #888 !important;
}
