.awesomplete [hidden] {
    display: none;
}

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

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

.awesomplete > input {
    display: block;
}

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

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

.awesomplete > ul {
        margin: 0;
	background: hsla(0,0%,100%,1.0);
	border: 1px solid rgb(204,204,204);
}

.awesomplete > ul > li {
        position: relative;
        padding: 3px 8px;
        cursor: pointer;
        font-weight: bold;
}

.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: #fff;
        font-weight: normal;
        padding: 0;
}

.awesomplete li:hover mark {
        background: hsl(200, 40%, 80%);
}

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