#my_filters_div {
	z-index: 2;
    background-color: #FFF;
    position: absolute;
    padding: 1em;
    border: 1px solid #CCC;
    border-top: 0;
    width: 95%;
}

#locations_div {
    position: absolute;
    background-color: white;
    z-index: 10;
    overflow: auto;
    min-height: 10vh;
    max-height: 30vh;
    border: 1px solid #CCC;
    border-top: 0;
	padding: 0.5em 1em;
    width: 95%;
}

#my_prices_div {
    position: absolute;
    background-color: white;
    z-index: 1024;
    overflow: auto;
    min-height: 10vh;
    padding: 1em;
    border: 1px solid #CCC;
    border-top: 0;
    width: 95%;
}

@media (min-width: 768px) {  
    #locations_div {
        width: calc(100vw - 450%);
        max-width: calc(100% + 5vw);
    }

    #my_prices_div {
        width: calc(100vw - 450%);
        max-width: calc(100% + 3vw);
    }

    #my_filters_div {
        width: calc(100vw - 450%);
        max-width: calc(100% + 3vw);
    }
}

#searcher_search_box {
    position: -webkit-sticky;
    position: sticky;
    top: var(--top) !important;
    z-index: 1000;
}

#open-filter {
    cursor: pointer;
}

@media (min-width: 576px) {
	#searcher_search_box{
		margin: 0;
		padding: 1em 0em;
		box-shadow: 0 4px 10px 3px rgb(0 0 0 / 3%);
		background: #fff;
	}
}

@media (max-width: 768px) {
    div.panel-search {
        padding: 0 18px;
        max-height: 0;
        overflow: inherit;
        transition: 0.6s ease-in-out;
        opacity: 0;
        display: none;
    }
    
    div.panel-search.show {
        opacity: 1;
        max-height: 500px;
        display: block;
    }
}