.jq-selectbox {
	display: block !important;
	vertical-align: middle;
	cursor: pointer;
	z-index: 200 !important;
}

.jq-selectbox__select {
	height: 48px;
	padding: 0 50px 0 0;
	border-bottom: 1px solid rgba(0,0,0,.5);
	background: transparent;
	font: inherit;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

select.error + .jq-selectbox__select {

}

.jq-selectbox.focused .jq-selectbox__select {
	border-color: #018b95;
}

.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100% !important;
	height: 100%;
	line-height: 48px;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-transform: none;
}

.jq-selectbox .placeholder {
	color: #018b95;
}

.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 100%;
}

.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 50%;
	right: 50%;
	width: 0;
	height: 0;
	margin: -2px -5px;
	border-top: 5px solid #018b95;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
	border-top-color: #018b95;
}

.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100% !important;
	top: 100% !important;
	margin: 0;
	padding: 0;
	border: 1px solid #018b95;
	border-top: none;
	background: rgba(255,255,255,.9);
	text-transform: none;
}

.jq-selectbox ul {
	margin: 0;
	padding: 0 !important;
}

.jq-selectbox li {
	list-style: none !important;
	min-height: 18px;
	padding: 5px 10px 6px !important;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.jq-selectbox li.selected {
	color: #018b95;
}

.jq-selectbox li:hover {
	background-color: #018b95;
	color: white;
}

.jq-selectbox li.option {
	padding-left: 25px;
}