.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid #ddd; background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    border-radius: 0 0 8px 8px;

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 280px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 10px 14px; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 15px; color: #333; transition: background 0.15s; }
.autocomplete-suggestion b { font-weight: 600; color: #1565c0; }
.autocomplete-suggestion.selected { background: #e8f0fe; }
.autocomplete-suggestion:hover { background: #f5f5f5; }

/* Search input wrapper */
.autocomplete-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
}
.autocomplete-input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}
.autocomplete-input-wrapper input {
    padding-left: 38px !important;
    font-size: 16px !important;
    width: 100% !important;
}
.autocomplete-suggestions.drop-up {
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #ddd;
    border-top: 0;
}
