:root {
  --viewportheight: calc(var(--vh, 1vh) * 100);
}
.leaflet-map {
}
@media (max-width: 500px) {
  html {
    overflow: hidden;
  }

  body {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .leaflet-map {
    height: calc(100% - 130px) !important;
  }
}