.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
	/* width: 100%; */
}

.awesomplete {
    display: inline-block;
    position: relative;
	width: 100%;
}

.awesomplete > input {
    display: block;
	font-size: .85em;
	/* width: 100%; */
}

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

.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, hsla(0,0%,100%,.8)); */
	border: 1px solid rgba(0,0,0,.3);
	/* 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;

	} */

	.awesomplete > ul > li {
		position: relative;
		padding: .1em .5em;
		margin: .2em .1em;
		cursor: pointer;
		line-height: 90%;
	}
	
	.awesomplete > ul > li:hover {
		/* background: #ffdd57; */
		background: #f0f0f0;
		color: black;
		line-height: 90%;
		/* color: white; */
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		/* background: #3D4E55;
		color: #ffffff; */
				background: #f0f0f0;
					color: black;
	}
	
		.awesomplete mark {
			background: #fff9eb;
		}
		
		/* .awesomplete li:hover mark {

			background: white;
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: hsl(86, 100%, 21%);
			color: inherit;
		} */
/*# sourceMappingURL=awesomplete.css.map */
