/*****Smart Search Autocomplete*****/

.l_autocomplete {
    position: absolute;
    top: 44px;
    z-index: 2000;
    background-color: white;
    border: 1px solid #ced4da;
    width: 100%;
    list-style: none;
    padding-inline-start: 0;
    padding-left: 0;
    overflow-y: auto;
    max-height: 30%;
}

.l_autocomplete.smart-search {
    position: fixed;
    top: 46px;
    z-index: 3000;
}

.l_autocomplete .item {
    padding: 5px 10px;
    cursor: pointer;
    border: solid #ccc;
    border-width: 0 0 1px 0;
}

.l_autocomplete .item:hover,
.l_autocomplete .item.active {
    background-color: #bfe5fb;
}

@media (max-width: 575.98px) {
    .l_autocomplete.smart-search {
        top: 86px;
    }
}