.wcua-autocomplete-wrap {
	position: relative;
}

.wcua-autocomplete {
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 260px;
	margin-top: 4px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e7e2d9;
	border-radius: 4px;
}

.wcua-autocomplete[hidden] {
	display: none;
}

.wcua-autocomplete__item {
	display: block;
	width: 100%;
	padding: 6px;
	border: 0;
	background: #fff;
	color: #1c1c1c;
	font-size: 14px;
	text-align: left;
	text-transform: none;
	font-weight: normal;
	border-radius: 0px;
	cursor: pointer;
}

.wcua-autocomplete__item:hover,
.wcua-autocomplete__item.is-active {
	background: #ffb83c;
}

.wcua-autocomplete__more {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-top: 1px solid #e7e2d9;
	background: #fff;
	color: #1c1c1c;
	font-size: 14px;
	font-weight: bold;
	line-height: 42px;
	text-align: center;
	border-radius: 0px;
	cursor: pointer;
}

.wcua-autocomplete__more:hover,
.wcua-autocomplete__more:focus {
	background: #ffb83c;
	outline: none;
}

@media (max-width: 600px) {
	.wcua-autocomplete {
		max-height: 220px;
	}
}
