/* Essential Leaflet 1.9 layout rules, stored locally so map tiles cannot lose positioning. */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  background: #172119;
  outline-offset: 1px;
}

.leaflet-container img,
.leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile {
  width: 256px !important;
  height: 256px !important;
  visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-map-pane,
.leaflet-tile-pane,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-tooltip-pane,
.leaflet-popup-pane {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-map-pane { z-index: 400; }
.leaflet-tile-pane { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane { z-index: 500; }
.leaflet-marker-pane { z-index: 600; }
.leaflet-tooltip-pane { z-index: 650; }
.leaflet-popup-pane { z-index: 700; }

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform .25s cubic-bezier(0, 0, .25, 1);
}

.leaflet-control-container {
  position: relative;
  z-index: 800;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top { top: 0; }
.leaflet-right { right: 0; }
.leaflet-bottom { bottom: 0; }
.leaflet-left { left: 0; }

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control { float: right; }
.leaflet-top .leaflet-control { margin-top: 10px; }
.leaflet-bottom .leaflet-control { margin-bottom: 10px; }
.leaflet-left .leaflet-control { margin-left: 10px; }
.leaflet-right .leaflet-control { margin-right: 10px; }

.leaflet-bar {
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0,0,0,.65);
}

.leaflet-bar a {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #111;
  font: bold 18px/30px Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
}

.leaflet-bar a:last-child { border-bottom: 0; }
.leaflet-bar a:hover { background: #f4f4f4; }

.leaflet-control-attribution {
  margin: 0;
  padding: 0 5px;
  background: rgba(255,255,255,.82);
  color: #333;
  font: 11px/1.5 Arial, Helvetica, sans-serif;
}

.leaflet-control-attribution a { color: #0078a8; }

.leaflet-popup {
  position: absolute;
  margin-bottom: 20px;
  text-align: center;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(0,0,0,.4);
  text-align: left;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
}

.leaflet-popup-tip-container {
  position: absolute;
  left: 50%;
  width: 40px;
  height: 20px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  margin: -10px auto 0;
  padding: 1px;
  transform: rotate(45deg);
  box-shadow: 3px 3px 15px rgba(0,0,0,.25);
}

.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: 0;
  background: transparent;
  color: #c3c3c3;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  text-decoration: none;
}

.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
  color: #222;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
  font: 12px/1.4 Arial, Helvetica, sans-serif;
  pointer-events: none;
  white-space: nowrap;
}

.leaflet-interactive {
  cursor: pointer;
}
