.aim-autosuggest {
	position: relative;
}

.aim-autosuggest-list {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 4px);
	right: 0;
	left: 0;
	max-height: 20rem;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
	background: #fff;
	border: 1px solid #acacaf;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.aim-autosuggest-list[hidden] {
	display: none;
}

.aim-autosuggest-item,
.aim-autosuggest-empty {
	margin: 0;
	padding: 0;
}

.aim-autosuggest-item,
.aim-autosuggest-empty {
	display: block;
	padding: 0.75rem 1rem;
	color: #3e4242;
	line-height: 1.4;
}

.aim-autosuggest-item {
	cursor: pointer;
}

.aim-autosuggest-item:hover,
.aim-autosuggest-item.is-active {
	color: #fff;
	background: #3f76a7;
}

.aim-autosuggest-empty {
	color: #3e4242;
}

@media only screen and (max-width: 640px) {
	.aim-autosuggest-list {
		max-height: 16rem;
	}
}
