
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: white;

    z-index: 99999;

    max-height: 200px;
    overflow-y: auto;

    background: #fff;
}

.autocomplete-item {
    padding: 0px 2px;
    cursor: pointer;
    white-space: nowrap;
}

.autocomplete-item:hover {
    background: #007cba;
    color: white;
}

