/* Leaflet core layout, shipped locally so map tiles always align correctly. */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

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

.leaflet-container a { color: #0d684e; }
.leaflet-container img,
.leaflet-container .leaflet-tile,
.leaflet-container .leaflet-marker-icon,
.leaflet-container .leaflet-marker-shadow,
.leaflet-container .leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile { visibility: hidden; }
.leaflet-tile-loaded { visibility: inherit; }
.leaflet-marker-icon,
.leaflet-marker-shadow { display: block; }
.leaflet-pane > svg path,
.leaflet-tile-container { pointer-events: none; }

.leaflet-map-pane { z-index: 2; }
.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-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
  float: left;
  clear: both;
}
.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-right .leaflet-control { float: right; }
.leaflet-top .leaflet-control { margin-top: 12px; }
.leaflet-bottom .leaflet-control { margin-bottom: 12px; }
.leaflet-left .leaflet-control { margin-left: 12px; }
.leaflet-right .leaflet-control { margin-right: 12px; }

.leaflet-bar {
  border: 1px solid rgba(17, 35, 29, .18);
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(17, 35, 29, .14);
  overflow: hidden;
}
.leaflet-bar a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: #11231d;
  font: bold 20px/32px Arial, Helvetica, sans-serif;
}
.leaflet-bar a + a { border-top: 1px solid #dfe7e3; }
.leaflet-bar a:hover { background: #f2f7f5; }
.leaflet-bar a.leaflet-disabled { cursor: default; color: #9aa6a1; background: #f4f6f5; }

.leaflet-control-attribution {
  margin: 0;
  padding: 2px 6px;
  background: rgba(255, 255, 255, .82);
  color: #52615b;
  font-size: 11px;
}
.leaflet-control-attribution a { text-decoration: none; }

.leaflet-popup { position: absolute; margin-bottom: 20px; text-align: center; }
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(17, 35, 29, .22);
}
.leaflet-popup-content { margin: 14px 18px; line-height: 1.4; }
.leaflet-popup-tip-container { width: 40px; height: 20px; position: absolute; left: 50%; margin-left: -20px; overflow: hidden; pointer-events: none; }
.leaflet-popup-tip { width: 17px; height: 17px; margin: -10px auto 0; transform: rotate(45deg); background: #fff; box-shadow: 3px 3px 8px rgba(17, 35, 29, .12); }
.leaflet-popup-close-button { position: absolute; top: 4px; right: 5px; z-index: 2; border: 0; padding: 4px 6px; background: transparent; color: #6f7c77; text-decoration: none; font: 20px/20px Arial, sans-serif; }
.leaflet-zoom-animated { transform-origin: 0 0; }
.leaflet-zoom-box { width: 0; height: 0; z-index: 800; border: 2px dotted #0d684e; background: rgba(201, 242, 87, .18); }
