.awesomplete [hidden] {
	display: none;
}

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

.awesomplete {
	display: block;
	position: relative;
}

.awesomplete > input {
	display: block;
}

.awesomplete > ul {
	position: absolute;
	left: -10px;
	z-index: 4;
	min-width: 300px;
	width: 100%;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	background: #fff;
	font-size: 11px;
	top: 30px;
}
.awesomplete > ul	li:before{
	content: '';
	position: absolute;
	left:0px;
}

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

.awesomplete > ul {
	border-radius: 3px;
	margin: .2em 0 0;
	background-color: hsla(0,0%,100%,.9);
	background-image: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid #727e9c;
	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: -0.47em;
	left: 1em;
	width: 0; 
	height: 0;
	padding: .4em;
	background: rgba(#FFFFFF, 0.5);
	border: inherit;
	border-right: 0;
	border-bottom: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.awesomplete > ul > li {
	position: relative;
	padding: .2em .5em;
	cursor: pointer;
	color: black;
}
.awesomplete > ul > li mark {
	font-style: normal;
}

.awesomplete > ul > li:nth-of-type(odd) {
	background-color: white;
}

.awesomplete > ul > li:nth-of-type(even) {
	background-color: #e9eaef;
}

.awesomplete > ul > li:first-child {
	border-radius: 3px 3px 0 0;
}
.awesomplete > ul > li:last-child {
	border-radius: 0 0 3px 3px;
}

.awesomplete > ul > li:hover {
	background-color: #0a2669;
	color: white;
}

.awesomplete > ul > li[aria-selected="true"] {
	background-color: #0a2669;
	color: white;
}

.awesomplete mark {
	background-color: transparent;
	font-weight: 700;
	color: #0070c9;
}

.awesomplete li:hover mark {
	background-color: transparent;
	color: #c3e2ff;
}

.awesomplete li[aria-selected="true"] mark {
	background-color: transparent;
	color: #bce9ff;
}