.jq-selectbox {
	width: 100%;
	max-width: 100%;
	vertical-align: middle;
	cursor: pointer;
	z-index: 1!important;
}
.jq-selectbox__select {
	height: 40px;
	padding: 0 10px;
	border: 1px solid #335c92;
	color: #335c92;
}
.jq-selectbox__select-text {
	display: block;
	width: 100%;
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 37px;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 100%;
	background: transparent;
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 17px;
    right: 10px;
	width: 0;
	height: 0;
	overflow: hidden;
	border-top: 6px solid #335c92;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}
.jq-selectbox__dropdown {
	top: 42px;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #FFF;
	font-weight: 100;
}
.jq-selectbox__dropdown ul {
	width: 100%;
	max-height: 230px;
	margin: 0;
	padding: 0;
	border: 1px solid #335c92;
}
.jq-selectbox__dropdown ul li {
	margin: 0 0 1px;
	padding: 10px 15px;
	color: #335c92;
}
.jq-selectbox__dropdown ul li:hover {
	color: #fff;
	background: #337caf;
}
.jq-selectbox__search {
	display: none;
	width: 100%;
	margin: 2px 0;
}
.jq-selectbox__search input[type="text"],
.jq-selectbox__search input[type="search"] {
	display: block;
    width: 100%;
    height: 42px;
    padding: 0 10px 0 20px;
    font-size: 1.1em;
    color: #335c92;
    line-height: 42px;
    background: #fff;
    border: 1px solid #335c92;
    outline: 0;
    transition: all .2s ease-in-out;
}
.jq-selectbox__search input[type="text"]:focus,
.jq-selectbox__search input[type="search"]:focus{
	border-color: #335c92;
    transition: all .2s ease-in-out;
}