.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: block;
    position: relative;
	/*width: 500px;*/
}

.awesomplete > input {
    display: block;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
	top: 65px;
	border-top: 5px solid #999999;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 5px solid #999999;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #666666;
	z-index: 9999;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	background: #ffffff;
	text-align:left;
	width: 500px;
	font-size: 11px;
	line-height: 16px;
	margin-top: 7px;
	margin-left: -2px;
	/*border: 1px solid #D72227;*/
	border: 0;
	padding: 2px;
}

@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);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
		color: #333333;
	}
	
	.awesomplete > ul > li:hover {
		background: #666666;
		color: #ffffff;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: #666666;
		color: white;
	}
	
		.awesomplete mark {
			background: #D02023;
			color: #ffffff;
		}
		
		.awesomplete li:hover mark {
			background: #D02023;
			color: #ffffff;
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: #D02023;
			color: inherit;
		}
/*# sourceMappingURL=awesomplete.css.map */
