.autocomplete {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.autocomplete-items > li {
    padding: 0.5em;
    cursor: pointer;
    background-color: #fff;
    border-style: solid;
    border-color: var(--gray-5);
    border-width: 0 1px 1px 1px;
}

.autocomplete-items > li:last-child {
    border-bottom-left-radius: var(--size-1);
    border-bottom-right-radius: var(--size-1);
}

.autocomplete-items > li:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
