#map {
    height: 800px;
    overflow: hidden;
   
}

.drawer {

    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2em;
    z-index: 1000;
    color: 	#ff595e;
    font-weight: 700
}

.drawer-title {
    position: relative;
    font-size: 36px;
    line-height: 60px;
    margin-top: 0px;
    margin-bottom: 50px;
    color: #59815b;
}

.drawer-content {

    height: calc(100% - 40px);
    font-size: 1rem;


}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background-color: #59815b !important;
    color: #fff;
    box-shadow: 0 0 10px 0 grey;
  

}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: #59815b !important;
    font-size: 1rem;
    font-family: 'Muli', sans-serif;
    text-shadow: -1px -1px 0 #000, 
} 

.leaflet-cluster-spider-leg {
    stroke: none !important;
    stroke-opacity: 0 !important;
  }
  

@media  screen and (min-width: 768px) {
    .drawer {
        width: 33%
    }
    
}