.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid #ccc;
    border-top: 0;
    background-color: #fff;
    margin: 2px 0;
    padding: 6px 0;
    border: 1px solid rgba(0, 0, 0, 0.2);

    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
       -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
            box-shadow: 0 5px 10px rgba(0,0,0,.2);

    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 100200;
    max-height: 254px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.autocomplete-suggestion {
    position: relative;
    /* padding: 0 .6em; */
    /* line-height: 23px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* font-size: 1.02em; */
    /* color: #333; */

    padding: 3px 8px;
    font-size: 12px;
    line-height: 24px;
    color: #545459;
}

.autocomplete-suggestion b {
    font-weight: bold;
}

.autocomplete-suggestion.selected {
    /* background: #f0f0f0; */
    color: #fff;
    background-color: #0097cf;
}
