/************************************** CLASSIC CSS STYLES ************************************/
/* Combobox */
.wkextsearchform .filter-combobox {
	display: block;
	width: 100%;
	padding: 3px 5px;
	font-size: 13px;
	line-height: 1.42857;
	vertical-align: middle;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.wkextsearchform .filter-combobox:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.wkextsearchform .itemSelected {
    -webkit-box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.5);
	box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.5);
	opacity: 1;
}
/* Multiple select */
.wkextsearchform .ms-choice > div, .wkextsearchform .ms-choice > div.open {
	background: none;
}
.wkextsearchform .ms-choice > div:before,
.wkextsearchform .ms-choice > div.open:before {
	font-family:'FontAwesome'!Important;
	display:block;
	text-align:center;
	color:#000!Important;
}
.wkextsearchform .ms-choice > div:before {
	font-size:1.1em;
	content:"\f0dd";
}
.wkextsearchform .ms-choice > div.open:before {
	margin-top:5px;
	font-size:1em;
	content:"\f0de";
}
.wkextsearchform span.number, .wkextsearchform span.arrow {
	display:none;
}
