.autocomplete {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #d4d4d4;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.2em;
    padding: 0.5em;
    text-align: left;
    max-height: 580px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    /*border-bottom: 1px solid #d4d4d4;*/
}
.autocomplete-item:hover {
    /*when hovering an item:*/
    background-color: #f2f2f2;;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: #e9e9e9 !important;
    /*color: #ffffff;*/
}
.autocomplete-item-title {
    font-size: 1.1em;
    margin-bottom: 5px;
}
.autocomplete-item-scientific-name {
    /*font-weight: 300;*/
}
