.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid #ccc;
    border-top: 0;
    background: #fff;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);

    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 125px;
    max-width: 600px;
    overflow-y: scroll;
    box-sizing: border-box;
    text-overflow: ellipsis;
}

.autocomplete-suggestions::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.no-found, .autocomplete-suggestion {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 41px;
    border-bottom: 1px solid #e9e9e9;
    color: #383c45;
    padding: 0 18px 0 8px;
}

.no-found {
    font-style: italic;
}

.autocomplete-suggestion b {
    font-weight: normal;
    color: #00afaa;
}

.autocomplete-suggestion.selected {
    background: #f0f0f0;
}

.input-autocopmlete {
    white-space: pre-wrap;
}
