.typeahead {
    position: relative;
}
.typeahead-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 405px;
    overflow: auto;
    filter: drop-shadow(2px 4px 6px black);
}
.typeahead-item {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
    white-space: nowrap;
    display: flex;
    position: relative;
}
.typeahead-item:hover {
    background-color: #e9e9e9; 
}
.typeahead-item > span {
    z-index: 2;
    padding-right: 10px;
    background-color: inherit;
    overflow: hidden;
}
.typeahead-item > div {
    /*float: right;*/
    position: absolute;
    right: 10px;
    z-index: 1;
}
.typeahead-active {
    background-color: #0069d9 !important; 
    color: #ffffff; 
}
.typeahead-more {
    color: gray;
    font-weight: bold;
}