
.autocomplete {
    background: white;
    z-index: 1000;
    font: 14px/22px ;
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid rgba(50, 50, 50, 0.6);
}

.autocomplete * {
    font: inherit;
}

.autocomplete > div {
    padding: 0 4px;
}

.autocomplete .group {
    background: #eee;
}

    .autocomplete > div:hover:not(.group),
    .autocomplete > div.selected {
        background: var(--theme-orange);
        cursor: pointer;
    }

