<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.search-bar {
    background: rgba(1, 111, 74, 1);
    padding: 15px;
  
  
    width: 100%;
    
    transition: height 2s;
    border-bottom: 1px solid rgba(1, 111, 74, 1);
    margin: 0;
}
.overMap .search-bar {
    background: rgba(1, 111, 74, 0.7);
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    transition: height 2s;
    border-bottom: 1px solid rgba(1, 111, 74, 1);
    margin: 0;
}
    .search-bar ::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .search-bar ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .search-bar ::-webkit-scrollbar-thumb {
        background: rgba(0,69,124,1);
    }

        /* Handle on hover */
        .search-bar ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .search-bar button {
        background: none;
        border-radius: 3px;
        border: 2px solid white;
        height: 40px;
        width: 100%;
    }

    .search-bar select {
        /*width: 300px;
        height: 30px;
        border-radius: 0.3rem;
        border-style: none;
        margin-right: 2%;*/
        border-radius: 6px;
        background-color: #fff;
        border: 1px solid;
        border-color: #cfcfcd;
        /*width: 180px;*/
        height: 40px;
        font-size: 12px;
        font-family: "Montserrat";
        color: #7c7c7b;
        /*margin-right: 4%;*/
    }

.btn-light {
    color: #fff;
}

.search {
    width: 100%;
    max-width: 100%;
    height: 40px;
    border-radius: 0.3rem;
    border-style: none;
    padding: 0 15px;
}

.btn-secondary:hover {
    background: white;
    color: rgba(0,69,124,1);
    border-color: white;
}

.filters {
    transition: ease-in-out 0.4s;
}

    .filters label {
        display: block;
        color: white;
    }

.open-search {
    height: 110px;
}

.hide {
    display: none;
}

.over-select {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#land::before {
    content: check;
}

.ui-autocomplete {
    z-index: 99999;
    border-radius: 0.5rem;
}
.ui-autocomplete-category {
    font-size: 20px;
    font-weight: bold;
    color: #696969;
    line-height: 2;
    height: 40px;
    border-bottom: 1px solid #e1e1e1;
}

.ui-menu-item {
    font-size: 20px;
    color: #696969;
    line-height: 2;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}

    .ui-menu-item:hover {
        background: rgba(0, 69, 124, 0.9);
        color: #fff;
    }

.ui-autocomplete-category .fa {
    font-size: 24px;
    color: rgba(1, 111, 74, 1);
    background: #fff;
    border: none;
}

.ui-state-active, .ui-state-active:hover {
    border: none !important;
    background: none !important;
    font-weight: normal !important;
    color: #ffffff !important;
}

.search-mobile {
    display: none;
}

@media(max-width: 767px) {
    .search-desktop {
        display: none;
    }

    .search-mobile {
        display: inline-block;
    }
}</pre></body></html>