/** Container Level */
.autocomplete-suggestions {
    text-align: left; cursor: default; background: #fff; box-shadow: 0 0 34px 0 rgba(63,66,87,.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;
}

/** Item Level */
.autocomplete-suggestion {
    padding:12px !important;

    /** Defaults */
    position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333;
}
.autocomplete-suggestion .inner-container {min-height:48px;}
.autocomplete-suggestion img {height:40px;width:40px;border-radius:100%;overflow:hidden;max-width:unset;margin-right:12px;}

.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }
