.autocomplete {
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	-ms-flex-positive: 0;
	-ms-flex-negative: 1;
	flex-shrink: 1;
}
.autocomplete > div:first-of-type {
	flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	display: inline-block;
	order: 1;
	position: relative;
}

.autocomplete .left-icon {
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 0.5rem;
	font-size: 14px;
	color: #353535;
}

.autocomplete .left-icon + input {
	padding-left: 35px;
}

.autocomplete .wk-icon-spinner {
	position: absolute;
	top: 0.5rem;
	right: 0;
}

.autocomplete button {
	border: 1px solid transparent;
	height: 3rem;
	order: 1;
}

.autocomplete .autocomplete-results {
	max-height: 12.5rem;
	overflow-y: auto;
}

.autocomplete .autocomplete-results, .autocomplete .autocomplete-quick-list-holder {
	width: 100%;
	position: absolute;
	top: 2.5rem;
	left: 0;
	min-height: 0;
	overflow-x: hidden;
	color: #000000;
	background-color: #ffffff;
	z-index: 500;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.autocomplete ul {
	list-style-type: none;
	padding: 0;
}

.autocomplete ul:focus {
	outline-style: none;
}
#header .autocomplete ul {
	z-index: 1050;
}

.autocomplete .autocomplete-results > *, .autocomplete .autocomplete-quick-list-holder > * {
	position: relative;
}

.autocomplete li {
	cursor: pointer;
	padding: 0.5rem;
}
.autocomplete .autocomplete-results li:hover, .autocomplete li.selected {
	background-color: #ededed;
}
.autocomplete li a {
	color: #000000;
	display: block;
}
.autocomplete .error {
	width: 300px;
}

.autocomplete-quick-list-holder {
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
	border: solid 1px #ededed;
}