.awesomplete [hidden],
.awesomplete > ul[hidden],
.awesomplete > ul:empty {
    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;
    top: 2.75rem;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    z-index: 999;
}
.awesomplete > input.above + ul {
    top: auto;
    bottom: 2.75rem;
}

.awesomplete > ul {
    margin: .2em 0 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.3);
    box-shadow: .05em .2em .6em rgba(0,0,0,.2);
}


.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 > input.above + ul:before {
    top: auto;
    bottom: -.43em;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.awesomplete > ul > li {
    position: relative;
    padding: .2em .5em;
    line-height: 1.5rem;
    cursor: pointer;
    float: none !important;
    margin: 0 !important;
}

.awesomplete > ul > li:hover {
    background: #00adef;
    color: white;
}

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

.awesomplete mark {
    background: hsl(65, 100%, 50%);
}

.awesomplete li:hover mark {
    background: hsl(68, 100%, 41%);
}

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