#search-autocomplete-results {
    display: none;
    width: 220px;
    color: black;
    background-color: white;
    border:1px solid #e5e6e6;
    border-radius: 10;
    position:absolute;
    max-height:250px;
    overflow-y: hidden;
    overflow-y: auto;
    padding:0 !important;

    z-index: 10000;
}

#search-autocomplete-results > li {
    width: 100%;
    height: 100%;
    padding: 10px !important;
    margin: 0px !important;
    
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    font-family: Roboto Sans Condensed, sans-serif !important;
    cursor:pointer;
    list-style-type:none;
}

#search-autocomplete-results > li:hover {
    background-color: #e5e6e6;
}