.autocomplete-suggestions {
    text-align: left; 
    cursor: default; 
    border: 0;  
    background: #fff;

    /* 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; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    font-size: 1.4rem; 
    color: #232323; 
    border-bottom: 1px solid #efefef;
    padding: 0.6rem 0.6rem;
}
.autocomplete-suggestion.more {
    background-color: #232323;
    color: #fff;
    text-align: center;
    border-bottom: 0;
}
.autocomplete-suggestion.more.selected {
    color: #fff;
}
.autocomplete-suggestion b { 
    font-weight: bold; 
}
.autocomplete-suggestion.selected { 
    color: #dd6e73;
    cursor: pointer;
}
