/* phpcs:ignore */
.headers-map.hide{
    display: none;
}
.headers-map{
    position: fixed;
    z-index: 9999999999999;
}
.headers-map.left{
     left: 0;
}
.headers-map.right{
    right: 0;
}
.headers-map-toggle{
    width: 115px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: inset 0 0 0 0 rgba(0,0,0,0.75);
    transition: all .5s;
    background-color: #fff;
}
.headers-map-toggle svg{
    display: block;
    width: 85%;
    max-width: 100px;
    max-height: 100px;
    height: 85%;
}
.headers-map-toggle img{
    max-width: 33%;
    height: auto;
}
.headers-map-toggle span{
    font-size: 12px;
    line-height: 1;
    font-family: inherit;
}
.headers-map-toggle:hover{
    box-shadow: inset 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.map-nav{
    position: absolute;
    top: 60px;
    width: 300%;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: all .5s;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.headers-map.left .map-nav{
    left: 0;
}
.headers-map.right .map-nav{
    right: 0;
}
.map-nav.open{
    max-height: 2000px;
}
.map-list-nav{
    padding: 20px!important;
}
.map-nav ul li{
    text-align: right;
}
.map-nav ul li a{
    font-size: 16px;
    color: #000;
}
@media (max-width: 640px) {
    .headers-map-toggle span{
        display: none;
    }
    .headers-map-toggle{
        width: 60px;
    }
    .hide-small{
        display: none;
    }
}