﻿.autocomplete {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    text-align: left;
    overflow: auto;
    max-height: 145px;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: #21B296 !important;
    color: #ffffff;
}

@media screen and (max-width: 715px) {
    .autocomplete-items {
        font-size: .875rem !important;
    }
}    
