
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    overflow: visible !important;
}

.autocomplete-items {
    box-shadow: 3px 9px 20px #0000003b;
    position: absolute;
    border-top: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 2px;
    right: 0;
    max-height: 400px;
    overflow: auto;
    scrollbar-gutter: stable;
}

.autocomplete-items div {
    padding: 4px 10px;
    text-align: left;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    background-color: #f9f8f8;
}

.autocomplete-items div::after {
    content: ">";
    font-size: 15px;
    margin-top: 2px;
    line-height: 28px;
    display: inline-block;
    padding-left: 9px;
    float: right;
    color: #fff;
    background-color: #004899;
    border-radius: 50%;
    height: 28px;
    width: 28px;
}

}
.autocomplete-items div: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;
}
