.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    background: #fff;
    position: absolute;
    display: none;
    z-index: 100;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
    border-bottom: 2px solid #E5E5E5;
    border-right: 2px solid #E5E5E5;
    border-left: 2px solid #E5E5E5;
    margin-top: -5px;
}
.autocomplete-suggestion {
    position: relative;
    padding: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    color: #000;
}
.autocomplete-suggestion a {
    color: #000;
    display: block;
    border-bottom: 1px solid #E5E5E5;
    padding: .6rem;
}
.autocomplete-suggestion b {
    font-weight: normal;
    color: #004799;
}
.autocomplete-suggestion.selected {
    background: #fff;
}
.autocomplete-suggestion.selected a {
    color: #004799;
}
