/* node_modules/@gozem/ui/styles/tokens.css */
:root {
  --gz-primary: #179138;
  --gz-primary-hover: #12722d;
  --gz-primary-soft: #e8f5ec;
  --gz-primary-50: #e8f5ec;
  --gz-primary-100: #c8e6d1;
  --gz-accent: #0a67b1;
  --gz-content-primary: #1a1a1a;
  --gz-content-secondary: #3a3a3a;
  --gz-content-tertiary: #6c6c6c;
  --gz-content-inverse: #ffffff;
  --gz-gray-0: #fafafa;
  --gz-gray-50: #f9f9f9;
  --gz-gray-100: #f2f2f2;
  --gz-gray-200: #e8e8e8;
  --gz-gray-300: #d4d4d4;
  --gz-gray-400: #b4b4b4;
  --gz-gray-500: #949494;
  --gz-gray-600: #787878;
  --gz-gray-700: #595959;
  --gz-gray-800: #3a3a3a;
  --gz-gray-900: #1a1a1a;
  --gz-bg-page: #fafafa;
  --gz-bg-card: #ffffff;
  --gz-bg-muted: #f5f5f5;
  --gz-bg-active-nav: #f2f2f2;
  --gz-bg-overlay: rgba(0, 0, 0, 0.48);
  --gz-border-card: #e8e8e8;
  --gz-border-input: #d4d4d4;
  --gz-border-subtle: #f2f2f2;
  --gz-border-strong: #262626;
  --gz-mixx-blue: #1d6feb;
  --gz-mixx-soft: #e8f0ff;
  --gz-moov-yellow: #ffcc00;
  --gz-moov-soft: #fff8dc;
  --gz-gozem-green: #179138;
  --gz-gozem-soft: #e8f5ec;
  --gz-danger: #dc2626;
  --gz-danger-soft: #fee2e2;
  --gz-danger-border: #fecaca;
  --gz-danger-surface: #fff5f5;
  --gz-danger-ink: #991b1b;
  --gz-danger-ink-strong: #7f1d1d;
  --gz-success: #16a34a;
  --gz-success-soft: #dcfce7;
  --gz-warning: #d97706;
  --gz-warning-soft: #fef3c7;
  --gz-font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --gz-text-xs: 12px;
  --gz-text-sm: 13px;
  --gz-text-body: 14px;
  --gz-text-md: 15px;
  --gz-text-lg: 16px;
  --gz-text-xl: 18px;
  --gz-text-2xl: 20px;
  --gz-text-3xl: 24px;
  --gz-text-4xl: 32px;
  --gz-weight-regular: 400;
  --gz-weight-medium: 500;
  --gz-weight-semibold: 600;
  --gz-weight-bold: 700;
  --gz-weight-extrabold: 800;
  --gz-space-1: 4px;
  --gz-space-2: 8px;
  --gz-space-3: 12px;
  --gz-space-4: 16px;
  --gz-space-5: 20px;
  --gz-space-6: 24px;
  --gz-space-8: 32px;
  --gz-space-10: 40px;
  --gz-space-12: 48px;
  --gz-radius-sm: 8px;
  --gz-radius-md: 10px;
  --gz-radius-lg: 12px;
  --gz-radius-xl: 14px;
  --gz-radius-2xl: 16px;
  --gz-radius-3xl: 20px;
  --gz-radius-pill: 9999px;
  --gz-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --gz-shadow-md: 0 1px 10px rgba(0, 0, 0, 0.08);
  --gz-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
  --gz-shadow-xl: 0 8px 30px rgba(0, 0, 0, 0.15);
  --gz-shadow-focus: 0 0 0 3px rgba(23, 145, 56, 0.2);
  --gz-duration-fast: 120ms;
  --gz-duration-default: 200ms;
  --gz-duration-slow: 300ms;
  --gz-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --gz-z-dropdown: 100;
  --gz-z-modal: 1000;
  --gz-z-toast: 2000;
  --gz-z-tooltip: 3000;
}
.gz-tooltip {
  position: absolute;
  padding: 6px 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--gz-font-family);
  font-size: var(--gz-text-xs);
  font-weight: var(--gz-weight-medium);
  border-radius: var(--gz-radius-md);
  pointer-events: none;
  white-space: nowrap;
  max-width: 240px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity var(--gz-duration-fast) var(--gz-easing), transform var(--gz-duration-fast) var(--gz-easing);
  z-index: var(--gz-z-tooltip);
}
.gz-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* src/styles.css */
:root {
  --gz-primary-500: var(--gz-primary);
  --gz-primary-600: var(--gz-primary-hover);
  --gz-primary-700: #0e5722;
  --gz-primary-900: #062f10;
  --gz-neutral-50: var(--gz-gray-50);
  --gz-neutral-100: var(--gz-gray-100);
  --gz-neutral-200: var(--gz-gray-200);
  --gz-neutral-300: var(--gz-gray-300);
  --gz-neutral-400: var(--gz-gray-400);
  --gz-neutral-500: var(--gz-gray-500);
  --gz-neutral-600: var(--gz-gray-600);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--gz-font-family);
  font-size: var(--gz-text-body);
  color: var(--gz-content-primary);
  background: var(--gz-bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.gz-page {
  gap: 28px !important;
}
.gz-page {
  display: block;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gz-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.gz-page-header-left h1 {
  font-size: var(--gz-text-3xl);
  font-weight: var(--gz-weight-extrabold);
  color: var(--gz-content-primary);
  margin: 0 0 4px;
}
.gz-page-header-left p {
  color: var(--gz-content-tertiary);
  margin: 0;
}
.gz-page-header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.gz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gz-font-family);
  font-size: 14px;
  font-weight: var(--gz-weight-semibold);
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--gz-radius-lg);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all var(--gz-duration-default) var(--gz-easing);
  white-space: nowrap;
}
.gz-btn i {
  width: 16px;
  height: 16px;
}
.gz-btn-primary {
  background: var(--gz-primary);
  color: var(--gz-content-inverse);
  border-color: var(--gz-primary);
}
.gz-btn-primary:hover {
  background: var(--gz-primary-hover);
  border-color: var(--gz-primary-hover);
}
.gz-btn-secondary {
  background: var(--gz-bg-card);
  color: var(--gz-content-secondary);
  border-color: var(--gz-border-card);
}
.gz-btn-secondary:hover {
  background: var(--gz-gray-50);
  border-color: var(--gz-gray-300);
}
.gz-btn-lg {
  padding: 12px 24px;
  font-size: 16px;
}
.gz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.gz-stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--gz-bg-card);
  border: 1px solid var(--gz-border-card);
  border-radius: var(--gz-radius-2xl);
  padding: 20px;
  box-shadow: var(--gz-shadow-sm);
}
.gz-stat-label {
  font-size: var(--gz-text-sm);
  color: var(--gz-content-tertiary);
  font-weight: var(--gz-weight-medium);
  margin-bottom: 4px;
}
.gz-stat-value {
  font-size: var(--gz-text-3xl);
  font-weight: var(--gz-weight-extrabold);
  color: var(--gz-content-primary);
  letter-spacing: -0.02em;
}
.gz-stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gz-primary-soft);
  color: var(--gz-primary);
  border-radius: var(--gz-radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gz-stat-icon i {
  width: 22px;
  height: 22px;
}
.gz-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--gz-radius-lg);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.gz-alert i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.gz-alert-error {
  background: var(--gz-danger-soft);
  color: var(--gz-danger-ink);
  border: 1px solid var(--gz-danger-border);
}
.gz-form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
}
.gz-form-card {
  background: var(--gz-bg-card);
  border: 1px solid var(--gz-border-card);
  border-radius: var(--gz-radius-2xl);
  padding: 24px;
  box-shadow: var(--gz-shadow-sm);
}
.gz-form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gz-border-subtle);
}
.gz-form-card-step {
  width: 28px;
  height: 28px;
  border-radius: var(--gz-radius-pill);
  background: var(--gz-primary-soft);
  color: var(--gz-primary);
  font-weight: var(--gz-weight-extrabold);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gz-form-card-title {
  font-size: var(--gz-text-lg);
  font-weight: var(--gz-weight-bold);
  color: var(--gz-content-primary);
  margin: 0;
}
.gz-form-group {
  margin-bottom: 18px;
}
.gz-form-group:last-child {
  margin-bottom: 0;
}
.gz-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gz-form-label {
  display: block;
  font-size: 14px;
  font-weight: var(--gz-weight-semibold);
  color: var(--gz-content-primary);
  margin-bottom: 6px;
}
.gz-required {
  color: var(--gz-danger);
  margin-left: 2px;
}
.gz-form-helper {
  font-size: 12px;
  color: var(--gz-content-tertiary);
  margin-top: 5px;
}
.gz-input {
  font-family: var(--gz-font-family);
  font-size: 14px;
  padding: 10px 14px;
  border: 1.5px solid var(--gz-border-input);
  border-radius: var(--gz-radius-md);
  background: var(--gz-bg-card);
  color: var(--gz-content-primary);
  width: 100%;
  transition: all var(--gz-duration-default) var(--gz-easing);
}
.gz-input::placeholder {
  color: var(--gz-gray-400);
}
.gz-input:hover:not(:disabled):not(:focus) {
  border-color: var(--gz-gray-400);
}
.gz-input:focus {
  outline: none;
  border-color: var(--gz-primary);
  box-shadow: var(--gz-shadow-focus);
}
.gz-input:disabled {
  background: var(--gz-gray-100);
  color: var(--gz-gray-500);
  cursor: not-allowed;
}
textarea.gz-input {
  min-height: 90px;
  resize: vertical;
  font-family: inherit;
}
.gz-form-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gz-content-primary);
}
.gz-form-switch input {
  accent-color: var(--gz-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.gz-form-footer-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gz-bg-card);
  border-top: 1px solid var(--gz-border-card);
  margin-top: 24px;
  border-radius: 0 0 var(--gz-radius-2xl) var(--gz-radius-2xl);
  box-shadow: var(--gz-shadow-sm);
}
.gz-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--gz-gray-400);
  text-align: center;
}
.gz-empty-state i {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.gz-empty-state p {
  font-size: 14px;
  margin: 0;
}
.gz-empty-state a {
  color: var(--gz-primary);
  font-weight: var(--gz-weight-semibold);
}
.gz-col-mono {
  font-family:
    ui-monospace,
    Menlo,
    Consolas,
    monospace;
  font-size: 13px;
  color: var(--gz-content-tertiary);
}
.gz-spin {
  animation: gz-spin 1s linear infinite;
}
@keyframes gz-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
gz-data-table .gz-dt-row.menu-open {
  z-index: 200 !important;
}
gz-data-table .gz-dt-inline-menu {
  z-index: 2500 !important;
}

/* node_modules/leaflet/dist/leaflet.css */
.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;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-tile::selection {
  background: transparent;
}
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}
.leaflet-container img.leaflet-tile {
  mix-blend-mode: plus-lighter;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-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-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.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 {
  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-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
svg.leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}
.leaflet-container a {
  color: #0078A8;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-container {
  font-family:
    "Helvetica Neue",
    Arial,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font:
    bold 18px "Lucida Console",
    Monaco,
    monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url("./media/layers.png");
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("./media/layers-2x.png");
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
.leaflet-default-icon-path {
  background-image: url("./media/marker-icon.png");
}
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}
.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}
.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font:
    16px/24px Tahoma,
    Verdana,
    sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}
.leaflet-popup-scrolled {
  overflow: auto;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
