.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid rgba(32, 57, 157,.1); border-top: 0; background: #fff; 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;
}

.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: rgba(32, 57, 157,1); }
.autocomplete-suggestion.selected { background: rgba(32, 57, 157,.1); }


/* Let's get this party started rgb(68, 149, 196)*/
.autocomplete-suggestions::-webkit-scrollbar {
    width: 5px;
}
 
/* Track */
.autocomplete-suggestions::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
.autocomplete-suggestions::-webkit-scrollbar-thumb {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background:  rgba(32, 57, 157,1); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); 
}
.autocomplete-suggestions::-webkit-scrollbar-thumb:window-inactive {

	background: rgba(255,0,0,0.0); 
}