.awesomplete [hidden] {
	display: none;
}

.awesomplete .visually-hidden {
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

.awesomplete {
	display: inline-block;
	position: relative;
	z-index: 1500 !important;
}

.awesomplete>input {
	display: block;
}

.awesomplete>ul {
	position: absolute;
	left: 0;
	z-index: 1500 !important;
	min-width: 100%;
	box-sizing: border-box;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #fff;
}

.awesomplete>ul:empty {
	display: none;
}

.awesomplete>ul {
	border-radius: .3em;
	margin: .2em 0 0;
	background: hsla(0, 0%, 100%, .9);
	background: linear-gradient(to bottom right, white, rgba(255, 255, 255, 0.911));
	border: 1px solid rgb(169 169 169 / 30%);
	box-shadow: .05em .2em .6em rgba(0, 0, 0, .2);
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete>ul {
		transition: .3s cubic-bezier(.4, .2, .5, 1.4);
		transform-origin: 1.43em -.43em;
	}

	.awesomplete>ul[hidden],
	.awesomplete>ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		transition-timing-function: ease;
	}
}

/* Pointer */
.awesomplete>ul:before {
	content: "";
	position: absolute;
	top: -.43em;
	left: 1em;
	width: 0;
	height: 0;
	padding: .4em;
	background: white;
	border: inherit;
	border-right: 0;
	border-bottom: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.search-autocomplete.loading {
	background-image: url("../images/loading.gif");
	background-size: 20px 20px;
	background-position: right 5% center;
	background-repeat: no-repeat;
}

.awesomplete>ul>li {
	position: relative;
	padding: .7em .5em;
	font-size: 17px;
	cursor: pointer;
	list-style-type: none !important;
}

.awesomplete>ul>li:hover {
	background: hsl(200, 40%, 80%);
	color: black;
}

.awesomplete>ul>li[aria-selected="true"] {
	background: hsl(205, 40%, 40%);
	color: white;
}

.awesomplete mark {
	background: rgba(233, 7, 11, 0.439);
}

.awesomplete li:hover mark {
	background: rgba(233, 7, 11, 0.439);
}

.awesomplete li[aria-selected="true"] mark {
	background: hsl(86, 100%, 21%);
	color: inherit;
}

/*# sourceMappingURL=awesomplete.css.map */