.awesomplete [hidden] {
	display: none;
}

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

.awesomplete {
	display: inline-block;
	position: relative;
	text-align: left;
}

.awesomplete > input {
	display: block;
}

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

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

.awesomplete > ul {
	margin: -3px 0 0;
	border: 2px solid white;
	border-top: none;
	background: white;
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
/*	max-height: 400px;*/
	overflow-y: scroll;
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		transition: .3s linear;
		transform-origin: 0px 0px;
	}
	
	.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);
	}
	*/

	.awesomplete > ul > li {
		position: relative;
		padding: 10px;
		line-height: 20px !important;
		cursor: pointer;
		color: black;
		font-weight: 400;
		transition: background 0.3s linear, color 0.3s linear;
	}
	
	.awesomplete > ul > li:hover {
		background: #313131;
		color: white;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: #313131;
		color: white;
	}
	
		.awesomplete mark {
			background: none;
			font-weight: 600;
			transition: background 0.3s linear, color 0.3s linear;
		}
		
		.awesomplete li:hover mark {
			background: none;
			color: white;
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: none;
			color: white;
		}
/*# sourceMappingURL=awesomplete.css.map */
