.autocomplete-suggestions {
    text-align: left; cursor: default; border: none; border-top: 0; 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: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
    background: #ABC4E9;
    border-radius: 10px;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; background: #ABC4E9; text-overflow: ellipsis; font-size: 1.02em; color: #ffffff; padding: 15px 10px;}
.autocomplete-suggestion:hover {
    background: #ecc6e9;
    cursor: pointer;
}
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #cee0fa; }
