.ph-map{
    height:60rem;
    position:relative;
    z-index: 1;
    background:var(--ph-color-9)
}
.ph-map-filters{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 10000;
}
.ph-map-filter-type{
    padding:0 2rem;
    display:flex;
    gap:1rem;
    justify-content:center;
    align-items:center;
    background:white;
    border:1px solid #e6e6e6;
    cursor:pointer;
    transition:background 0.2s;
}
.ph-map-filter-type span{
    line-height: 1;
    font-size: 1.5rem;
    padding-top: 0.4rem;
}
.ph-map-filter-type:hover{
    background:#e6e6e6;
}
.ph-map-filter-type.selected{
    background:var( --e-global-color-primary );
    color:white;
}

.ph-map-filter-type svg path{
    fill:#828f98;
    transition:color 0.2s;
    width:2rem;
}
.ph-map-filter-type.selected svg path{
    fill:white;
}
.ph-map-filters-search-wrapper button.auto-clear{
    display:none;
}
ul#auto-ph-map-filters-search-results{
    list-style: none;
    padding: 0;
    margin: 0;
}
ul#auto-ph-map-filters-search-results li{
    cursor:pointer;
    position:relative;
    padding:1rem 1rem 1rem 5rem;
}
ul#auto-ph-map-filters-search-results li p{    
    padding:0;
    margin:0;
    font-size: 1.5rem;
}
.ph-map-filter-type svg path{
    fill:#828f98;
    transition:color 0.2s;
    width:2rem;
}

.info-box-wrap-content svg path{
    width: 21px;
    vertical-align: text-bottom;
}    
.info-box-wrap-content svg path{
    fill:black;
}

#ph-map-filters-search{
    padding: 2rem 2rem;
    line-height: 1;
    width:30rem;
    max-width:100%;
}
.ph-map-filters-search-wrapper{
    position:relative;
}
.ph-map-filters-search-wrapper .auto-results-wrapper.auto-is-active{
    width:80rem;
}

@media (max-width: 1024px){
    .ph-map-filter-type span{
        display:none;
    }
    #ph-map-filters-search {
        width: 20rem;
    }
}


@media (max-width: 500px){
    .ph-map-filters-search-wrapper{
        width: 100%;
    }
    .ph-map-filter-type{
        padding:2rem;
    }
    .ph-map-filters{
        flex-wrap: wrap;
    }    
    #ph-map-filters-search {
        width: 100%;
    }
}