.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid #c8c8c8;
    border-top: 0;
    background: #ffffff;
    box-shadow: -1px 1px 3px rgba(0,0,0,.1);
    /* core styles should not be changed */
    position: absolute !important;
    display: none;
    z-index: 9999;
    max-height: 254px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    color: #333333;
}
.autocomplete-suggestions.auto-width {
    width: auto !important;
}
.autocomplete-suggestion {
    position: relative;
    padding: 0 .6em;
    line-height: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.02em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.autocomplete-suggestion b {
    font-weight: normal;
    color: #D67A1A;
}
.autocomplete-suggestion.selected {
    background: #1E75B4;
    color: #FFFFFF;
}
.autocomplete-suggestion div {
    flex: 1;
}
.autocomplete-suggestion > div:nth-child(2) {
    padding-left: 1rem;
}
.autocomplete-suggestion > div:last-child {
    flex: 0 !important;
    padding-left: 1rem
}
.autocomplete-suggestion > div:only-child {
    padding-left: 0 !important;
}




