@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --navy:          #0d1b3e;
  --navy-2:        #142354;
  --canvas:        #f6f6f3;
  --panel:         #ffffff;
  --ink:           #0f1428;
  --ink-2:         #3a4060;
  --ink-3:         #6b7280;
  --muted:         #6b7088;
  --line:          #e6e6e1;
  --line-strong:   #d8d8d2;
  --code-bg:       #1a1d2e;
  --code-bg-2:     #14172a;
  --code-fg:       #e6e8f2;
  --code-dim:      #8a90b3;
  --code-line:     #2a2f48;
  --accent:        #4C6EF5;
  --accent-2:      #6b8afd;
  --accent-soft:   rgba(76, 110, 245, 0.10);
  --accent-soft-2: rgba(76, 110, 245, 0.18);
  --good:          #2fbf71;
  --good-soft:     rgba(47, 191, 113, 0.14);
  --bad:           #ef4f5e;
  --bad-soft:      rgba(239, 79, 94, 0.14);

  --hero-pad: 160px;
  --grid-cols: 3;
  --radius: 10px;
  --radius-sm: 6px;

  --border: #e4e4df;
  --border-strong: #d6d6cf;

  --map-bg:        #eef2ee;
  --map-road:      #ffffff;
  --map-road-2:    #e7e7e0;
  --map-water:     #d9e6f0;
  --map-park:      #e1ecdc;
  --map-label:     #6b7088;
 
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(15,20,40,0.04), 0 1px 1px rgba(15,20,40,0.03);
  --shadow-md: 0 6px 18px -8px rgba(15,20,40,0.18), 0 2px 6px rgba(15,20,40,0.05);
  --shadow-lg: 0 20px 40px -20px rgba(15,20,40,0.30), 0 4px 12px rgba(15,20,40,0.06);

  --font-ui:   "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

/* ── Global ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ui) !important;
  background: var(--canvas) !important;
  color: var(--ink) !important;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

    /* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
    .navbar {
        height: 56px;
      border-radius: 0px;
      margin: 0;
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      z-index: 100;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-shrink: 0;
    }

    .navbar-fixed {
        position: fixed;
        width: 100vw;
    }    

    .navbar-full {
        width: 98vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        flex-shrink: 0;
    }

    .navbar-inner {
      width: 1280px;
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      padding: 6px 10px;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo:hover {
      border-radius: 6px;
      transition: all 0.15s;
      background: rgba(255, 255, 255, 0.07);
      text-decoration: none !important;
    }
    .nav-logo-text {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .nav-logo-text2 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.01em;
    }

    /* Divider */
    .nav-sep {
      width: 1px; height: 18px;
      background: rgba(255,255,255,0.12);
      margin: 0 16px;
      flex-shrink: 0;
    }

    /* Tool pill */
    .nav-pill {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      /* reszta bez zmian */
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 12px 5px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.10);
      letter-spacing: -0.005em;
      white-space: nowrap;
    }
    .nav-pill-h1 {
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      margin: 0;
    }
    .nav-pill-h2 {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;      
    }
    .nav-pill-icon {
      width: 18px; height: 18px;
      border-radius: 999px;
      background: var(--accent);
      display: grid; place-items: center;
      flex-shrink: 0;
    }

    .pill-tag {
        font-family: "Geist Mono", ui-monospace, monospace;
        font-size: 10px;
        line-height: 12px;
        color: rgba(255, 255, 255, 0.55);
        margin-left: 2px;
    }    

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-link {
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 6px;
      transition: all 0.15s;
    }
    .nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }

    /* Right side */
    .nav-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-icon-btn {
      display: none;
      width: 30px; height: 30px;
      border-radius: 7px;
      border: 1px solid transparent;
      background: transparent;
      color: rgba(255,255,255,0.60);
      place-items: center;
      cursor: pointer;
      transition: all 0.15s;
    }
    .nav-icon-btn:hover {
      color: #fff;
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.10);
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 8px;
      background: var(--accent);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 4px 12px -4px rgba(76,110,245,0.50);
      transition: all 0.15s;
      letter-spacing: -0.005em;
    }
    .nav-cta:hover {
      background: var(--accent-2);
      transform: translateY(-1px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 6px 16px -4px rgba(76,110,245,0.60);
    }

  .workspace {
    flex: 1;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 0;
    background: var(--canvas);
    overflow: hidden;
    min-height: 0;
  }    

  .pane.left {
    padding-right: 6px;
  }

  .pane {
      display: flex;
      flex-direction: column;
      padding: 12px;
      min-height: 0;
      min-width: 0;
  }

  .pane.right {
      padding-left: 6px;
  }
   

.editor-body {
    flex: 1;
    display: grid;
    grid-template-columns: 44px 1fr;
    overflow: hidden;
    min-height: 0;
    position: relative;
}

/* Editor header */
    .editor-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      background: var(--code-bg-2);
      flex-shrink: 0;
    }
    .editor-header-left {
      display: flex; align-items: center; gap: 10px;
    }
    .file-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--code-bg);
      color: var(--code-fg);
      font-family: var(--font-mono);
      font-size: 12px;
      padding: 5px 10px 5px 9px;
      border-radius: 6px;
      border: 1px solid var(--code-line);
    }
    .file-tab .dot {
      width: 7px; height: 7px;
      border-radius: 999px;
      background: var(--accent-2);
      box-shadow: 0 0 0 3px rgba(107,138,253,0.18);
    }
    .file-tab-readonly {
        color: var(--code-dim);
        font-size: 11px;
        font-family: var(--font-mono);
    }
    /* Validity badge */
    .validity-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      font-weight: 500;
      padding: 4px 9px;
      border-radius: 999px;
      font-family: var(--font-ui);
      letter-spacing: -0.005em;
      transition: all 0.2s;
    }
    .validity-badge.valid {
      color: var(--good);
      background: var(--good-soft);
      border: 1px solid rgba(47,191,113,0.30);
    }
    .validity-badge.invalid {
      color: var(--bad);
      background: var(--bad-soft);
      border: 1px solid rgba(239,79,94,0.30);
    }
    .validity-badge .pulse {
      width: 6px; height: 6px;
      border-radius: 999px;
      background: currentColor;
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 currentColor; opacity: 0.7; }
      70%  { box-shadow: 0 0 0 5px rgba(0,0,0,0); opacity: 1; }
      100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); opacity: 0.7; }
    }

    /* Stats */
    .editor-stats {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--code-dim);
      font-size: 11px;
      font-family: var(--font-mono);
    }
    .editor-stats .sep {
      width: 1px; height: 10px;
      background: var(--code-line);
    }

/* Toolbar */
    .editor-toolbar {
      min-height: 50px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 12px;
      background: var(--code-bg-2);
      flex-shrink: 0;
    }
    .toolbtn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 10px;
      background: transparent;
      border: 1px solid var(--code-line);
      color: var(--code-fg);
      font: 500 12px var(--font-ui);
      border-radius: 7px;
      cursor: pointer;
      transition: all 0.15s;
      letter-spacing: -0.005em;
      white-space: nowrap;
    }
    .toolbtn:hover { background: rgba(255,255,255,0.04); border-color: #3a4068; }
    .toolbtn.icon-only {
      padding: 5px;
      width: 30px; height: 30px;
      justify-content: center;
    }
    .toolbtn.danger:hover { color: var(--bad); border-color: rgba(239,79,94,0.40); background: var(--bad-soft); }
    .toolbtn.success:hover { color: var(--good); border-color: rgba(47,191,113,0.40); background: var(--good-soft); }
    .toolbtn.accent:hover { color: var(--accent-2); border-color: rgba(76,110,245,0.40); background: var(--accent-soft); }
    .tool-sep { width: 1px; height: 18px; background: var(--code-line); margin: 0 4px; }

/* Examples row */
    .examples-row {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-top: 1px solid var(--code-line);
      background: var(--code-bg-2);
      flex-wrap: wrap;
      flex-shrink: 0;
    }
    .examples-label {
      color: var(--code-dim);
      font-size: 10px;
      line-height: 12px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-right: 2px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      background: transparent;
      border: 1px solid var(--code-line);
      color: var(--code-dim);
      font: 500 11.5px var(--font-ui);
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.15s;
    }
    .chip:hover { border-color: var(--accent); color: var(--code-fg); background: var(--accent-soft); }
    .chip-dot {
      width: 7px; height: 7px;
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* API banner */
    .api-banner {
      margin: 5px 12px 10px 12px;
      padding: 11px 13px;
      background: linear-gradient(135deg, rgba(76,110,245,0.10) 0%, rgba(139,92,246,0.06) 100%);
      border: 1px solid rgba(76,110,245,0.22);
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 11px;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
      text-decoration: none;
    }
    .api-banner:hover {
      border-color: rgba(76,110,245,0.42);
      background: linear-gradient(135deg, rgba(76,110,245,0.14) 0%, rgba(139,92,246,0.10) 100%);
      text-decoration: none;
    }
    .api-banner-icon {
      width: 30px; height: 30px;
      border-radius: 8px;
      background: rgba(76,110,245,0.18);
      border: 1px solid rgba(76,110,245,0.28);
      display: grid; place-items: center;
      color: var(--accent-2);
      flex-shrink: 0;
    }
    .api-banner-text {
      flex: 1;
      font-size: 12px;
      line-height: 1.4;
      color: var(--code-fg);
    }
    .api-banner-text strong { font-weight: 600; color: #fff; display: block; }
    .api-banner-text small { color: var(--code-dim); font-size: 11px; }
    .api-banner-arrow { color: var(--accent-2); font-size: 14px; }

    /* Footer */
    .editor-footer {
      padding: 9px 14px;
      border-top: 1px solid var(--code-line);
      background: var(--code-bg-2);
      font-size: 10.5px;
      line-height: 12px;
      font-family: var(--font-mono);
      color: var(--code-dim);
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .footer-mark {
      width: 10px; height: 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
      flex-shrink: 0;
    }
    .editor-footer a {
      color: var(--code-fg);
      text-decoration: none;
      border-bottom: 1px dashed var(--code-line);
      line-height: 10px;
    }
    .editor-footer a:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }
    .footer-right {
      margin-left: auto;
      opacity: 0.5;
    }

/* ───── Hero ───── */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--hero-pad) 32px calc(var(--hero-pad) - 16px);
  text-align: center;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
}
.hero::before {
  content: ''; position: absolute;
  width: 540px; height: 540px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(76,110,245,.25) 0%, rgba(139,92,246,.12) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  font-size: 12.5px; font-weight: 450;
  color: rgba(255,255,255,.75);
  font-family: var(--font-mono);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }
.hero-title {
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  max-width: 620px; margin: 0 auto 36px;
  font-weight: 400;
  text-wrap: pretty;
}
.muted-strong { color: rgba(255,255,255,.85); font-weight: 450; }
.hero-pills {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 450;
  color: rgba(255,255,255,.85);
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }


/* ───── Sections ───── */
.section {
  background: var(--canvas);
  padding: 88px 32px;
  border-top: 1px solid var(--border);
}
.section-tight { padding-top: 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-head { margin-bottom: 44px; max-width: 720px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 14px;
}
.tag-line { width: 18px; height: 1.5px; border-radius: 1px; }
.section-count {
  margin-left: 2px;
  padding: 2px 7px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

/* ───── Grid ───── */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(var(--grid-cols, 3), 1fr); }
@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr !important; } }

/* ───── Tool card ───── */
.tool-card {
  padding: 0;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-sm);
}
.tool-card:hover, .tool-card.hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  text-decoration: none;
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--code-dark);
  border-bottom: 1px solid var(--border);
}
.thumb svg { display: block; }
.tool-card:hover .thumb svg { filter: brightness(1.05); }
.here-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 8px;
  background: rgba(255,255,255,.92);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.05em;
}
.here-mark {
  background: linear-gradient(180deg, #00afaa 0%, #008b87 100%);
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
  font-family: var(--font);
  letter-spacing: 0.04em;
}
.tool-body {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column;
  gap: 6px;
  flex: 1;
}
.tool-name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.tool-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0 0 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: pretty;
}
.tool-link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center; gap: 4px;
  margin-top: auto;
}
.tool-card:hover .tool-link .arrow { transform: translateX(3px); }

/* ───── CTA banner ───── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 80px 32px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 50%, transparent 100%);
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 320px;
  right: -100px; top: -50px;
  background: radial-gradient(ellipse at center, rgba(76,110,245,.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 450;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono);
  margin-bottom: 14px;
}
.cta-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }
.cta-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.cta-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 520px;
}
.cta-sub strong { color: #fff; font-weight: 500; }
.cta-actions {
  display: flex; gap: 10px;
}
@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; }
}


/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 7px 12px; font-size: 13px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 1px 2px rgba(13,27,62,.2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -6px var(--accent), 0 1px 0 rgba(255,255,255,.15) inset; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn-ghost:hover { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
.arrow { transition: transform .15s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(2px); }


/* ───── Footer ───── */
.footer {
  background: #0A1628;
  color: rgba(255,255,255,.65);
  padding: 64px 32px 32px;
}
.footer .logo-text { color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tag {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin: 16px 0 28px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-family: var(--mono);
  display: flex; gap: 8px; align-items: center;
}
.dot-sep { opacity: 0.5; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col-contact {
    padding: 48px 0 12px 0;
}
.footer-col-contact-break {
    margin: 0px 15px 0px 20px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B89CEC;
  margin: 32px 0 16px;
  font-family: var(--mono);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-badges {
  display: flex; gap: 12px;
}
.badge-card {
    margin: 0px 20px 0px 0px;
    padding: 7px 9px 10px 9px;
    background-color: #00000000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF1F;
    border-radius: 50% 50% 50% 50%;
}
.badge-card:hover {
    border-color: white;
    cursor: pointer;
}
.badge-mark {
  width: 36px; height: 36px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.badge-here {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
}
.badge-here-h {
  background: #00afaa;
  color: #fff;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-gf {
  background: rgba(244,63,94,.12);
  border: 1px solid rgba(244,63,94,.3);
}
.badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.badge-label { font-size: 12.5px; font-weight: 600; color: #fff; }
.badge-sub { font-size: 10.5px; color: rgba(255,255,255,.55); margin-top: 2px; }



.description_sections_title {
    color: var(--code-dim);
    font-size: 10px;
    line-height: 12px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.description_sections_break {
    margin-top: 18px;
}

.code_type_select {
  margin-left: 6px;
  font-family: "Poppins", sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 100px;
  border: 1px solid var(--code-line);
  background: transparent;
}

.code_type_select:hover {
    border-color: rgba(76, 110, 245, 0.42);
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.14) 0%, rgba(139, 92, 246, 0.10) 100%);
    text-decoration: none;
}

.code_type_select .route-label {
  font-size: 10px;
  color: var(--code-dim);
}

.code_type_select .route-km {
  font-size: 10px;
  font-weight: 500;
  color: #ccc;
}

.code_type_select .route-time {
  font-size: 9px;
  color: #888;
}

.code_type_selected {
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.10) 0%, rgba(139, 92, 246, 0.06) 100%);
    border: 1px solid rgba(76, 110, 245, 0.22);
    color: var(--accent-2);
}

.code_type_selected .route-label {
  color: var(--accent-2);
}

.code_type_selected .route-km {
  color: white;
}

.code_type_selected .route-time {
  color: white;
}

.section_type_select {
    margin-left: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    border: 1px solid var(--code-line);
    background: transparent;
    color: var(--code-dim);
}
.section_type_select:hover {
    border-color: rgba(139, 92, 246, 0.42);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14) 0%, rgba(139, 92, 246, 0.10) 100%);
    text-decoration: none;
}
.section_type_selected {
    color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10) 0%, rgba(139, 92, 246, 0.06) 100%);
    border: 1px solid rgba(139, 92, 246, 0.22);
}













.map-pane {
    flex: 1;
    background: var(--panel);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 0;
    position: relative;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    flex-shrink: 0;
}

.map-tabs {
    display: flex;
    align-items: center;
    background: var(--canvas);
    border-radius: 8px;
    padding: 3px;
    border: 1px solid var(--line);
}

.map-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--muted);
    font-family: "Geist Mono", ui-monospace, monospace;
}

.map-tab.active {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.map-tab {
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    background: transparent;
    font-family: "Geist", sans-serif;
    letter-spacing: -0.005em;
}

.map-meta .feat-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 500;
}

.legend {
    position: absolute;
    top: 137px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: var(--shadow-sm);
    font-size: 11.5px;
    z-index: 999;
    min-width: 160px;
}

.legend-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-family: "Geist Mono", ui-monospace, monospace;
    margin-bottom: 6px;
    font-weight: 500;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    color: var(--ink-2);
}

.legend-row .lg-count {
    margin-left: auto;
    color: var(--muted);
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 10.5px;
}

.legend-row .lg-swatch {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}


#table-data {
      min-height: calc(100vh - 84px);
      flex: 1;
    background: var(--panel);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: auto;
    border: 1px solid var(--line);
    position: relative;
}

#geojsonFeatureTableHead tr {
    background: var(--canvas);
    border: 1px solid var(--line);
}

#geojsonFeatureTableHead th {
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-2);;
    border: none;
    background: transparent;
    font-family: "Geist", sans-serif;
    letter-spacing: -0.005em;
}

#geojsonFeatureTableBody td {
    padding: 0;
    border: 1px solid var(--line);
    min-width: 160px;
    font-size: 11.5px;
    color: var(--ink-2);
    padding: 5px 11px;
}


.CodeMirror {
  flex: 1 1 auto;
  min-height: 100px;
  background: var(--code-bg) !important;
  color: var(--code-fg) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  line-height: 20px !important;
  border-top: 1px solid var(--code-line);
}

.CodeMirror-gutters {
  background: var(--code-bg-2) !important;
  border-right: 1px solid var(--code-line) !important;
}

.CodeMirror-linenumber {
  color: var(--code-dim) !important;
  font-size: 11px !important;
}

.CodeMirror-cursor {
  border-left: 2px solid #fff !important;
}

.CodeMirror-selected {
  background: rgba(76,110,245,0.20) !important;
}

    /* ═══════════════════════════════════════
       TOASTS
    ═══════════════════════════════════════ */
    .toast {
      display: none;
      position: fixed;
      top: 210px;
      left: 70%;
      transform: translateX(-70%);
      z-index: 9999;
      padding: 10px 16px 6px 16px;
      border-radius: 8px;
      font: 500 13px var(--font-ui);
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
      white-space: nowrap;
    }
    .toast-autocomplete {
        top: 150px;
    }
    #copyAlert, #saveAlert {
      background: var(--navy);
      border: 1px solid rgba(76,110,245,0.25);
      color: var(--code-fg);
    }
    #errorAlert {
      background: var(--navy);
      border: 1px solid rgba(239,79,94,0.30);
      color: var(--bad);
    }
    .toast-icon { font-size: 18px !important; padding-bottom: 4px; }
    .toast-icon.good { color: var(--good); }
    .toast-icon.bad { color: var(--bad); }

.icons_example {
	font-size: 15px !important;
    vertical-align: sub !important;
}
.icons_example2 {
    font-size: 22px !important;
    vertical-align: bottom !important;
    margin-right: 10px !important;
    color: #78C9A8 !important;
}
.icons_example3 {
    font-size: 22px !important;
    vertical-align: bottom !important;
    margin-right: 10px !important;
    color: #EA7469 !important;
}
.icons_example4 {
	font-size: 20px !important;
    vertical-align: bottom !important;
}

.description-meta {
    margin-top: 20px;
    font-size: 12px;
    font-family: "Geist Mono", ui-monospace, monospace;
    color: var(--accent);
    font-weight: 500;    
}















.header_bar {
	background-color: white;
	color: #051441;
    font: 500 18px "Poppins", sans-serif;
	text-align: left;
	height: 87px;
    padding: 10px 0px;
    border-bottom: 1px solid #e5e7eb;    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    line-height: 28px;    
}
h1.tool_header_h1 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    display: inline;
}
.subheader_bar {
    width: 100%;
    font: 500 24px "Poppins", sans-serif;
    padding: 15px 0px 10px 0px;
    border-bottom: 1px solid #e5e7eb;
}
.subheader_bar_text {
    font: 600 34px "Poppins", sans-serif;
    padding: 0px 30px;
    text-align: center;
	span {
		color: #5e2ced;
	}
} 
.subheader_bar_text-description {
    color: #222d39;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
h2.tool_description_h2 {
    font-size: 13px;
    font-weight: 400;
    color: #374151;
    margin: 0 0 8px 0;
    padding: 0;
}
.logo_pm {
	background: url("/tools/resources/pm_small.png") no-repeat center center;
	text-align: center;
	height:67px;
	cursor: pointer;
    width: 200px;	
}
.logo_pm:hover {
	background-color: rgba(0, 0, 0, 0.02);
	border-radius: 4px 4px 4px 4px;
}
.logo_divider {
	width: 40px;
	text-align:left;
	font-weight: 300;
}

.logo_info_about2 {
    font: 500 14px "Poppins", sans-serif;
    cursor: pointer;
    padding: 10px 10px 2px 10px;
	margin-left: 50px;
	border-bottom: 1px white solid;
    color: white;
	border-radius: 0px !important;    
}
.logo_info_about2:hover {
	color: white;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 0;
    padding-bottom: 10px;
}
.logo_info_about3 {
    font: 500 14px "Poppins", sans-serif;
    color: #222d39;
    cursor: pointer;
    padding: 10px 10px 2px 10px;
	margin: 10px 0px;
	border-bottom: 1px #222d39 solid;
	border-radius: 0px !important;    
}
.logo_info_about3:hover {
	color: #5e2ced;
    border-bottom: 1px #5e2ced solid;
}
.menu_about {
    text-decoration: none;
}

.menu_about:hover {
    text-decoration: none !important;
}
.logo_info_signup {
    font: 500 14px "Poppins", sans-serif;
	color: white;
    background-color: #5e2ced;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px 4px 4px 4px;    
}
.logo_info_signup:hover {
    opacity: 0.75;
}
.logo_info_close {
    font: 500 14px "Poppins", sans-serif;
	color: white;
    background-color: #222d39;
    cursor: pointer;
    padding: 10px 20px;
    border: 0 !important;
    border-radius: 4px 4px 4px 4px;    
}
.logo_info_close:hover {
    opacity: 0.75;
}
.description {
	color: #6a7695;
    font: 400 15px "Poppins", sans-serif;
	text-align: left;
    margin: 20px 0px 0px 0px;
    span {
    	color: #051441;
	    font-weight: 500;
    }
}
.description_buttons_box {
    margin: 10px 0px;
    height: 30px;    
}
.description_buttons_box_margin {
	margin-top: 30px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}
.description_buttons_div {
    height: fit-content;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;

}

.description_buttons {
    margin: 0px;
    max-width: 160px;
    height: 30px;
    font: 400 12px "Poppins", sans-serif;
    background-color: white;
    color: #222d39;
    cursor: pointer;
    border: 1px #222d39 solid;
    border-radius: 4px 4px 4px 4px;
}
.description_buttons:hover {
    color: white;
    background-color: #222d39;
}
.description_buttons_copy {
    border: 0px;
    float: right;
    margin: 0px 5px 0px 0px;
    width: 100px;
}
.description_buttons_copy:hover {
    color: #4cae4c;
    background-color: rgba(76, 174, 76, 0.05) !important;
}
.description_buttons_clear {
    border: 0px;
    float: right;
    margin: 0px 5px 0px 0px;
    width: 100px;
}
.description_buttons_clear:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.05) !important;
}
.description_buttons_hide {
    width: 110px !important;
}
.description_buttons_save {
    border: 0px;
    float: right;
    margin: 0px 5px 0px 0px;
    width: 100px;
}
.description_buttons_save:hover {
    color: #5e2ced;
    background-color: rgba(94, 44, 237, 0.05) !important;
}
.description_buttons_convert {
    width: 160px !important;
}
.logo_deligoo {
	background: url("/tools/resources/logo_deligoo.png") no-repeat center center, linear-gradient(to bottom right, #6882C9 , #85609E);
	text-align: center;
	width: 142px;
	height:67px;
	cursor: pointer;
}
.logo_dm {
	background-color: #E7511B;
	text-align: center;
	max-width: 180px;
}
.logo_here {
	background-color: #0F1621;
	text-align: center;
	max-width: 180px;
}
.logo_powerbi {
	background-color: #f1c816;
	text-align: center;
	max-width: 180px;
}
.autocomplete_pm {
	background-color: white;
	border-bottom: 1px solid #e5e7eb !important;	
	height: 67px;
    padding: 0 10px;
}
.autocomplete_pm_small {
	background-color: white;
	border-bottom: 1px solid #e5e7eb !important;	
	height: 47px;
}
.autocomplete_pm_absolute {
	position: absolute;
	top:100px;
	left: 40px;
	width: 60vw;
	max-width: 600px;
	z-index: 999;
	background-color: white;
	padding: 20px;
	box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5);  
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.vcenter {
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.calculator_box {
	margin: 25px 10vw;
    border-radius: 40px;
    display: flex;
    justify-content: start; 
}
.calculator_box_div {
    margin: 0px !important;
    padding: 0px 40px;
    width: 50%;
    
    p {
		font: 600 24px "Poppins", sans-serif;
        margin: 20px 0px 40px 0px;
        line-height: 20px;        
    }
    
	.small, small {
		font-size: 75%;
		font-weight: 500;
	}    
    
}

/* 					AUTOCOMPLETER					*/

.selectize-control .selectize-input > div {
	padding: 2px 10px;
	font: 400 14px "Poppins", sans-serif !important;
	-webkit-font-smoothing: auto;
	color: #f7fbff;
	text-shadow: 0 1px 0 rgba(8,32,65,0.2);
	background: #222d39;
	border: 0px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.selectize-control .selectize-dropdown .caption {
	font-size: 12px;
	display: block;
	color: #a0a0a0;
}
.selectize-input {
	background: white url("/tools/resources/search_new2.png") no-repeat left center !important;
	border: 0px !important;
	webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.1) !important; 
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.1) !important; 
	-webkit-border-radius: 0px !important; 
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
	padding: 14px 0px 16px 50px !important;
	font: 400 20px "Poppins", sans-serif !important;
}
.selectize-input > input {
	width: 100% !important;
}
.selectize-dropdown [data-selectable] {
    padding: 5px 58px !important;
    background: white url("/tools/resources/search_new.png") no-repeat left center !important;
}
.selectize-dropdown .active  {
	background-color: rgba(34, 45, 57, 0.15) !important;
}
.selectize-dropdown .active:hover  {
	box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1), 0px -1px 0px 0px rgba(243, 241, 248, 0.004);
}
.ac_white {
	background-color: #fff;
}
.city .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_city.png") no-repeat left center !important;
}
.street .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_street.png") no-repeat left center !important;
}
.house .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_house.png") no-repeat left center !important;
}
.from .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from.png") no-repeat left center !important;
}
.to .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_to.png") no-repeat left center !important;
}

.from_a .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_a.png") no-repeat left center !important;
}
.to_b .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_to_b.png") no-repeat left center !important;
}

.from_s .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_s.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
	padding-left: 80px !important;
}
.from_1 .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_1.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
}
.from_2 .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_2.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
}
.from_3 .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_3.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
}
.from_4 .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_4.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
}
.from_e .selectize-input {
	background: #F7F8F8 url("/tools/resources/search_from_e.png") no-repeat left center !important;
	height: 40px;
    padding-top: 8px !important;
	padding-left: 80px !important;
}

.aprox {
	font-size: 14px;
	text-align: center;
}

.input-simple {
	display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;    
    color: #303030;
    font-family: inherit;
	line-height: 18px;
    -webkit-font-smoothing: inherit;
	background: #F7F8F8 url("/tools/resources/fastfood.png") no-repeat left center !important;
    border: 0px !important;
	padding: 20px 0px 20px 50px !important;
    font-size: 13px !important;
	margin-bottom: 5px;
}

.selectize-control.single .selectize-input .remove {
    font-size: 16px;
    opacity: 0.6;
}
.selectize-control.single .selectize-input .remove:hover {
    opacity: 1;
}


/* 					TILES					*/
.map_tiles {
	position: absolute;
	bottom:30px;
	left: 40px;
	z-index: 999;
	background-color: white;
	padding: 5px 5px 0px 5px;
	font-size: 10px;
	box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5);  
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.rightMenu {
	position:relative;
	float:right;
	padding: 0px;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);  
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: 0;
}

/* 					TILES					*/
.contact_icon {
	position: absolute;
	bottom:30px;
	right: 40px;
	z-index: 999;
	background-color: white;
	padding: 3px 0px 3px 0px;
	font-size: 14px;
	color: #85609E;
	box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5);  
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
}
.leftContact {
	position:relative;
	float:left;
	padding: 0px;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);  
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	border: 0;
}
.phoneNumber {
	font-size: 14px;
}

/* 					PUNKTY STEPY				*/
.pointset {
	border-radius: 25px;
	background: linear-gradient(to bottom right, #BE1B49 , #85609E);
	color:#fff;
	text-align:center;
	width: 25px;
	height: 25px; 
	margin: 0 auto;
	font-size: 18px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);  
}
.pointset_out {
	border-radius: 25px;
	background: linear-gradient(to bottom right, #6882C9 , #85609E);;
	color:#fff;
	text-align:center;
	width: 25px;
	height: 25px; 
	margin: 0 auto;
	font-size: 18px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);  
}

/* 					MAP BUTTONS					*/
.add_map_buttons {
	position: absolute;
	top:155px;
	right: 20px;
	z-index: 999;
}

.btn-powerbi {
    background-color: #f1c816;
    border: 0px;
	font-size: 13px;
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);  
}

.big_error {
	display: none;
    position: absolute;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(255,0,0,0.5);
    text-align: center;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* 					MATERIAL ICONS					*/
.material-symbols-outlined {
    vertical-align: middle;
    font-size: 32px;
}
.material-symbols-outlined-14 {
    font-size: 18px !important;
    padding-right: 7px !important;
    vertical-align: sub !important;
}
.icons_apps {
        padding:10px;
        color: #222d39;
        cursor: pointer;
	}
.icons_apps:hover {
  		color: #5e2ced;
		background: rgba(0, 0, 0, 0.03);
	}
.icons_close {
    position: absolute;
    top: 64px;
    right: 40px;
    z-index: 2;
    font-size: 24px;
    font-weight: 100;
    color: #808080;
    cursor: pointer;
    padding: 10px;
}
.icons_close_autcomplete {
    top: 8px;
}
.icons_close:hover {
	color: black;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 999px;
}
	
/* 					MODALS							*/	
.myModalSignupDialog {
    max-width: 1052px;
    width: 90vw;
    max-height: 1050px;
    height: 90vh;
}	
.myModalSignupBody {
    padding: 0px !important;
    background-color: #FBFBFD;
    max-width: 1050px;
    width: 90vw;
    max-height: 1050px;
    height: 90vh;
}	
.modal-about-title {
	background: url("/tools/resources/pm_small.png") no-repeat right top;
    color: #222d39;
    font-family: "Poppins", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 72px;
}
.modal-about-description {
    color: #222d39;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
}

/* 							MAP									*/	
.leaflet-control-attribution a {
    color: #222d39;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 400;    
}
.leaflet-left .leaflet-control {
	margin-left: 20px;
	margin-bottom: 20px;
}
.leaflet-touch .leaflet-bar {
	border: 0px !important;
	border-radius: 0 !important;
    box-shadow: 0 2px 7px -1px #42445a;
}
.leaflet-touch .leaflet-bar a:first-child {
	background-color: white;
	color: #222734;
    height: 32px;
    width: 32px;
    font-size: 18px;
    line-height: 32px;
    border-radius: 0px;
    font-family: Arial;
    font-weight: 700;
}
.leaflet-touch .leaflet-bar a:first-child:hover {
	background-color: #222734;
	color: white;
}
.leaflet-touch .leaflet-bar a:last-child {
	background-color: white;
	color: #222734;
    height: 32px;
    width: 32px;
    font-size: 18px;
    line-height: 32px;
    border-radius: 0px;
    font-family: Arial;
    font-weight: 700;
}
.leaflet-touch .leaflet-bar a:last-child:hover {
	background-color: #222734;
	color: white;
}
.leaflet-control-defaultextent-toggle:hover {
	background: #222734 url("/tools/resources/leaflet.defaultextent.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;    	
}
.leaflet-draw-draw-polyline {
	background: white url("/tools/resources/leaflet.draw.polyline.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;    
}
.leaflet-draw-draw-polyline:hover {
	background: #222734 url("/tools/resources/leaflet.draw.polyline.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;    	
}
.leaflet-draw-draw-polygon {
	background: white url("/tools/resources/leaflet.draw.polygon.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-polygon:hover {
	background: #222734 url("/tools/resources/leaflet.draw.polygon.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-rectangle {
	background: white url("/tools/resources/leaflet.draw.rectangle.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-rectangle:hover {
	background: #222734 url("/tools/resources/leaflet.draw.rectangle.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-circle {
	background: white url("/tools/resources/leaflet.draw.circle.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-circle:hover {
	background: #222734 url("/tools/resources/leaflet.draw.circle.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-marker {
	background: white url("/tools/resources/leaflet.draw.marker.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-draw-marker:hover {
	background: #222734 url("/tools/resources/leaflet.draw.marker.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-edit-edit {
	background: white url("/tools/resources/leaflet.edit.polygon.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-edit-edit:hover {
	background: #222734 url("/tools/resources/leaflet.edit.polygon.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-edit-remove {
	background: white url("/tools/resources/leaflet.remove.polygon.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}
.leaflet-draw-edit-remove:hover {
	background: #222734 url("/tools/resources/leaflet.remove.polygon.hover.png") no-repeat center center !important;
    background-size: 18px !important;
    height: 32px !important;
    width: 32px !important;
}


/* 							MAP	LABELS							*/	
.county-label {
    font-size: 14px;
    font-weight: bold;
    color: black;
    text-shadow: 1px 1px 2px white;
    text-align: center;
    white-space: nowrap;
}
.point-label {
    font-size: 10px;
    color: black;
    text-shadow: 1px 1px 2px white;
    text-align: center;
    white-space: nowrap;
}


/* 							PILLS								*/	
.code_type {
	font: 500 12px "Poppins", sans-serif;
    background-color: #222d39;
    color: white;
    padding: 2px 13px 2px 13px;
    border-radius: 4px 4px 4px 4px;
    vertical-align: sub;
    white-space: nowrap;
}
.code_type_error {
	font: 500 12px "Poppins", sans-serif;
	margin-left: 20px;
	background-color: red;
	color: white;
	padding: 2px 13px 2px 13px;
	display: none;
	border-radius: 4px 4px 4px 4px;
	vertical-align: sub;
	cursor: pointer;
}

/* 							ALERTS								*/	
.alert-success {
    min-width: 500px !important;
    background: #2C3035 !important;
    border: 0 !important;
    color: white;
    text-shadow: none !important;
    border-radius: 4px 4px 4px 4px !important;
    font: 500 14px "Poppins", sans-serif !important;
    box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
	-webkit-box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
	-moz-box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
}

.alert-danger {
    min-width: 500px !important;
    background: #2C3035 !important;
    border: 0 !important;
    color: white;
    text-shadow: none !important;
    border-radius: 4px 4px 4px 4px !important;
    font: 500 14px "Poppins", sans-serif !important;
    box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
	-webkit-box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
	-moz-box-shadow: -1px 1px 12px 0px rgba(0,0,0,0.19) !important;
}

/* 						TOOLS MAIN PAGE							*/	
.tile_bar_head {
    color: #333;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding: 40px 50px 30px 50px;
    background: url(/tools/resources/logo_box.png) repeat-x center top;
    text-align: center;
    line-height: 24px;    
}

.tile_bar_description {
    font-size: 16px;
    font-weight: 500;
}

.tile_bar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 2200px;
    margin: 0 auto;
    column-gap: 100px;
}
.tile_bar a {
	color: #333;
}
.tile_bar a:hover {
	text-decoration: none;
	color: #5e2ced;
}
.tile_box {
    width: 465px;
    margin: 0px 0px 40px 0px;
    padding: 0px !important;
    box-shadow: 2px 2px 10px 0px rgba(0, 11, 40, 0.1);
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;    
}
.tile_box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:169px;          /* domyślnie dla tiles 169px */
  background:#e6e7ea;
  z-index:0;
}

/* Shimmer pod obrazkiem */
.tile_box::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:169px;          /* domyślnie dla tiles 169px */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.65) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 1.2s infinite;
  z-index:1;
  pointer-events:none;
}
.tile_box:hover {
    transform: translateY(-3px);
    box-shadow:
		0 12px 8px rgba(0,0,0,0.08),
        0 20px 25px rgba(0,0,0,0.06);
}
.tile_bar_intro {
    font-family: "Poppins", Sans-serif;
    max-width: 1000px;
    margin: 0 auto 32px auto;
    padding: 0 20px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    /* border-top: 1px solid #F3F4F6; */
    padding-top: 20px;    
}
.tile_spacer {
	height: 200px;
}
.tile_name {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    line-height: 24px;  
    font-weight: 500;
    text-align: left;
    padding: 10px 15px 0px 15px;
    margin: 0;
}
.tile_description {
	color: #6a7695;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    padding: 0px 15px 15px 15px;
}
.tiles {
  position: relative;
  z-index: 2;
  display:block;
  width: 465px;
  height:169px;
}

.tiles_big {
    height: 269px;
}

.tile_169::before, .tile_169::after{ height:169px; }
.tile_269::before, .tile_269::after{ height:269px; }

.tile_box_contact {
    position: absolute;
    min-width: 915px;
    background-image: linear-gradient(90deg, #6056F3 0%, #8C9DF8 100%);
    color: white;
    width: calc(100vw - 160px);
    margin: -100px 80px 0px 80px;
    padding: 20px 20px 40px 20px !important;
    box-shadow: 2px 2px 10px 0px rgba(0, 11, 40, 0.1);
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
}
.tile_box_contact_name {
	font-size: 32px;
	opacity: 0.9;
}
.tile_box_contact_description {
	font-size: 18px;
    opacity: 0.7;	
}

/* 						MAIN PAGE FOOTER						*/	

.site_footer_bck {
    width: 100%;
    background-color: black;
    margin: 0 auto;
    padding: 150px 60px 60px 60px;
    font-family: "Poppins", Sans-serif;
    font-weight: 300;
}
.site_footer_bck a {	
    padding: 10px 0 10px 0;
    color: #e5e5e5;
    line-height: 3;
}
.site_footer_bck a:hover {	
    color: white;
}
.site_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.site_footer span {
    padding: 10px 0 10px 0;
	color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 3;
}
.site_footer_img {

	height: 114px;
	max-width: 100%;
}

/* 							DROPDOWN							*/	
.dropdown-toggle {
	margin: 0;
	background: #F7F8F8 url("/tools/resources/search_new2.png") no-repeat left center !important;
	padding: 24px 0px 20px 50px !important;
	font: 400 13px "Poppins", sans-serif;
    color: #828282 !important;
    height: 64px !important;
	border: 0 !important;
    border-radius: 0 !important;
    background-color: white !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
	z-index: 2 !important;
	max-width: 550px;
    width: 100%;
	text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	.caret {
		font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
		font-size: 26px !important;
		color: grey !important;
		border-top: 5px dashed;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
	}
}
.dropdown-menu {
    top: unset !important;
    margin: 0 !important;
    width: 90vw !important;
    border: none !important;
    z-index: 9999 !important;
}
.dropdown-menu li {
	padding: 5px 58px !important;
    background: white url(..//tools/resources/search_new.png) no-repeat left center !important;
}
.dropdown-menu li:hover  {
	background-color: rgba(34, 45, 57, 0.15) !important;
	cursor: pointer;
}
.dropdown-menu .caption {
    font-size: 12px;
    display: block;
    color: #a0a0a0;
}
.dropdown-menu-selected {
    padding: 2px 10px;
    font: 400 14px "Poppins", sans-serif !important;
    -webkit-font-smoothing: auto;
    color: #f7fbff;
    text-shadow: 0 1px 0 rgba(8, 32, 65, 0.2);
    background: #222d39;
    border: 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.dropdown-toggle-map {
	background: url("/tools/resources/search_layers.png") no-repeat left center !important;
}
.dropdown-check-toggle {
	margin: 0 0 6px 0;
	background: #F7F8F8 url("/tools/resources/search_pois.png") no-repeat left center !important;
	padding: 24px 0px 20px 50px !important;
	font: 400 13px "Poppins", sans-serif;
    color: #828282 !important;
    height: 64px !important;
	border: 0 !important;
    border-radius: 0 !important;
    background-color: white !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
	z-index: 2 !important;
	width: 100%;
	text-align: left;
	.caret {
		font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
		font-size: 26px !important;
		color: grey !important;
		border-top: 5px dashed;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
	}
}
.dropdown-check-menu {
    width: 50vw !important;
    max-width: 400px;
	border: 0px solid black;
    -webkit-border-radius: 999px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    z-index: 9999 !important;
}
.dropdown-check-menu li {
	padding: 0px !important;
    background: white !important;
}
.dropdown-check-menu>li>a {
	height: 38px !important;
}
.dropdown-check-menu>li>a:hover {
	background: none !important;
}


/* 							CODE TEXTAREA							*/	

#mapOutCode, #mapOutCode4 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    
}
#mapOutCode2 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    pre {
        flex: 1 1 auto;
        height: calc(100vh - 500px);
        overflow: auto;
        resize: none;
        border-radius: 4px 4px 4px 4px !important;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
        font-size: 12px !important;
    }
}
#mapOutCode3 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    pre {
        flex: 1 1 auto;
        height: calc(100vh - 760px);
        overflow: auto;
        resize: none;
        border-radius: 4px 4px 4px 4px !important;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
        font-size: 12px !important;
    }
}
.code-toolbar {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}


div.code-toolbar > .toolbar .toolbar-item {
    	display: none !important;
}

/* 							TAB PANEL							*/	
.nav-pills {
	margin-top: 10px !important;
}
.nav-pills>li>a {
    background-color: white !important;
    color: #333 !important;
    border-radius: 0 !important;
    margin: 0 10px 0 0 !important;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
	color: var(--accent) !important;
	background-color: var(--accent-soft) !important;
}
.tab-pane {
    padding: 10px 20px !important;
    background-color: var(--accent-soft) !important;
}
.tab-content {
	margin-top: 0px !important;
}

@media (max-width: 750px) { 
	.tile_box_contact {
		width: 90% !important;
        min-width: 90% !important;
        margin: -160px 0px 0px 0px !important;
        padding: 30px 0px 40px 0px !important;
	}
    .tile_box_contact_name {
        font-size: 22px;
    }
    .tile_box_contact_description {
        font-size: 16px;
    }
    .logo_info_signup {
        padding: 5px 10px;
    }
    .logo_info_about2 {
        padding: 0px;
        margin-left: 5px;
    }
}



.range_numbers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.slider-selection {
	background: black !important;
}
.slider-success .slider-selection {
	background-color: #5cb85c !important;
}
.slider-primary .slider-selection {
	background-color: #428bca !important;
}
.slider-info .slider-selection {
	background-color: #5bc0de !important;
}
.slider-warning .slider-selection {
	background-color: #f0ad4e !important;
}
.slider-danger .slider-selection {
	background-color: #d9534f !important;
}
.slider.slider-horizontal {
    width: 100% !important;
    height: 20px;
}
.slider-handle {
	background-color: #fff !important;
	background-image: none !important;
	-webkit-box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
	-moz-box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
	box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
}

.slider-strips .slider-selection {
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -ms-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -o-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -webkit-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important; 
}
.tooltip-inner {
 display: none !important;
}
.tooltip.top .tooltip-arrow {
    display: none !important;
}
.slider .tooltip.top {
 display: none !important;
}

/* Segmented control look for Bootstrap 3 btn-group-justified (Variant A: wrap) */
#productButtons.btn-group-justified{
  display: flex;                     /* flex container */
  flex-wrap: wrap;                   /* allow wrapping on all screens */
  align-items: center;
  justify-content: flex-start;       /* left align */
  width: fit-content;
  /* background: #e9eaee;               pill background */
  padding: 6px;
  gap: 6px;                          /* spacing between segments */
}

/* kill Bootstrap's table display for justified groups */
#productButtons.btn-group-justified > .btn-group{
  display: contents;                 /* allows buttons to flex nicely */
}

/* Base button style */
#productButtons .btn{
  flex: 0 0 auto;                    /* do NOT stretch; wrap instead */
  width: auto !important;            /* fight Bootstrap justified widths */
  border: 0 !important;
  background: transparent !important;
  border-radius: 999px !important;
  padding: 10px 32px;                /* a bit wider for readability */
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  white-space: nowrap;               /* keep labels on one line */
  box-shadow: none !important;
  transition: background .15s ease, box-shadow .15s ease, color .15s ease, transform .15s ease;
}

.wrap #productButtons .btn {
  padding: 5px 8px !important;
}

/* Hover */
#productButtons .btn:hover{
  color: rgba(0,0,0,.75);
}

/* Active segment */
#productButtons .btn.active{
  background: #fff !important;
  color: rgba(0,0,0,.85);
  box-shadow: 0 6px 14px rgba(0,0,0,.14) !important;
  transform: translateY(-1px);
}

/* Optional: focus ring */
#productButtons .btn:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(80,140,255,.20) !important;
}

.slider-handle {
  border: 3px solid black !important;
}

/* Mobile: keep it tidy (2 per row) */
@media (max-width: 768px){
  #productButtons.btn-group-justified{
    border-radius: 18px;
  }
  #productButtons .btn{
    flex: 1 1 calc(50% - 6px);       /* 2 per row on small screens */
    text-transform: none;            /* optional: readability */
    font-size: 13px;
    padding: 10px 10px;
  }
  .wrap #productButtons .btn {
    padding: 5px 2px !important;
  }
}

@media (max-width: 550px){
    .site_footer_bck {
        padding: 160px 40px 20px 40px;
    }
    .site_footer {
        flex-direction: column;
    }
    .tile_box {
        width: calc(100vw - 40px);
    }

    .tile_box::before{
        width: calc(100vw - 40px);
    }

    .tiles {
        width: calc(100vw - 40px);
        height: calc((100vw - 40px) * 0.363);
    }

    .tiles_big {
        height: calc((100vw - 40px) * 0.578);
    }

    .tile_169::before, 
    .tile_169::after { 
        height: calc((100vw - 40px) * 0.363); 
    }

    .tile_269::before, 
    .tile_269::after { 
        height: calc((100vw - 40px) * 0.578); 
    }    
}

/* ---------- Usage input: match segmented + cards ---------- */

.usageLabel{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 600;
  color: rgba(0,0,0,.75);
  margin: 18px 0 10px 0;
}

#usage{
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.82);
  outline: none;
}

/* remove bootstrap focus glow and use our own */
#usage:focus{
  border-color: rgba(80, 140, 255, .45);
  box-shadow:
    0 14px 28px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.85),
    0 0 0 4px rgba(80,140,255,.18);
}

/* make number arrows less visually noisy */
#usage::-webkit-outer-spin-button,
#usage::-webkit-inner-spin-button{
  opacity: 0.3;
}

#usageHint{
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

#ranges{
  padding: 0 !important;
}

#ranges #ex8,
#ranges .slider{
  width: 100% !important;
}

.range_numbers{
  display:flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(0,0,0,.45);
  font-size: 12px;
  font-weight: 600;
}

@keyframes shimmer{
    100% { transform: translateX(100%); }
}

.map_bar {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.header_bar_mobile {
    display: none;
}

.tools-left-box {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

#codebar {
    flex: 1;
    background: var(--code-bg);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #1f2238;
    min-height: 0;
}
.codebar-here-demos {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

#textarea {
    flex: 1 1 auto;
    min-height: 200px;
    resize: none;
    width: 100%;
    border: 1px solid var(--code-line);
    background-color: var(--code-bg);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 12px;
    padding: 20px;
    color: white;
}
#textarea::placeholder {
  color: white;
}
#textarea2 {
    flex: 1 1 auto;
    min-height: 200px;
    resize: none;
    width: 100%;
    height: calc(50vh - 255px);
    border-color: #e5e7eb;
    background-color: #f9fafb;
    border-radius: 4px 4px 4px 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 12px;
    padding: 20px;
    color: #374151;
}
@media (max-width: 1500px){
    .description_buttons_div_long {
        .description_buttons {
            max-width: 50px;
        }
    }
    .nav-pills>li>a {
        font-size: 10px;
    }
}

@media (max-width: 1000px){
    .header_bar {
        display: none;
    }
    .header_bar_mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;      
        align-items: center;  
        font: 400 14px "Poppins", sans-serif;
        border-bottom: 1px solid #e5e7eb !important;
        padding: 10px 5px;
        position: fixed;
        width: 100vw;
        background: white;
        z-index: 999;        
        .material-symbols-outlined {
            font-size: 24px;
        }
    }
    .map_bar {
        flex-direction: column-reverse;
    }
    .map_map {
        width: calc(100vw - 15px) !important;
    }
    .logo_info_about, a {
        padding: 0 5px;
    }
    .description_buttons_box {
        height: fit-content;
        display: flex;
        flex-direction: column;
        button {
            margin-top: 10px;
            max-width: 100%;
        }
    }
    .leaflet-control {
        margin-left: 10px !important;
        margin-bottom: 15px !important;
    }    
    .leaflet-control-attribution {
        width: 100vw;
        text-align: center;  
        margin-left: 0px !important;
        margin-bottom: 0px !important;              
    }
    .leaflet-control-attribution a {
        font-size: 10px;
        font-weight: 400;    
    }
    .myModalSignupBody {
        width: 89vw;
        max-height: unset;
        height: 80vh;
    }	
    .modal-about-title {
        padding-top: 50px;
    }
    .leaflet-touch .leaflet-bar a:first-child {
        line-height: 32px;
    }
    .leaflet-touch .leaflet-bar a:last-child {
        line-height: 32px;
    }    
    .description_buttons_box_margin {
        align-items: start;
        .description_buttons {
            max-width: 160px;
            width: fit-content !important;
        }
    }    
    pre {
        max-height: 290px !important;
    }
    .dropdown-menu li {
        width: 100vw;
    }
    .dropdown-check-menu {
        width: 95vw !important;
        height: 50vh !important;
        overflow-y: scroll;
    }
    .usernotif {
        display: none;
    }
    .here-tile-preview {
        margin-bottom: 30px;
    }
    .autocomplete_pm {
        border-top: 1px solid #e5e7eb !important;	
        width: 100vw;
        padding: 0;
    }
    
    .selectize-control .selectize-input > div {
        font: 400 12px "Poppins", sans-serif !important;
        padding: 2px 5px;
        max-width: calc(100vw - 100px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #textarea2 {
        margin-bottom: 20px;
        height: 50vh;
    }
    .description_buttons_div {
        width: 100%;
    }
    .dropdown-toggle {
        width: 90%;
        .dropdown-menu-selected {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        }
    }
    .tools-autocomplete-route-waypoints {
        padding-top: 60px;
    }
    #mapOutCode2, #mapOutCode3 {
        margin-bottom: 28px !important;
        pre {
            height: 50vh;
        }
    }
    #routeType, #routeOpt, #routeMode {
        .btn-link {
            padding: 6px 4px;
        }
    }
    .here-tile-preview {
        img {
            width: 30%;
        }
    }


   .navbar {
      padding: 0 5px;
   }
   .navbar-inner {
      width: 100%;
   }
   .nav-logo a {
      padding: 0;
   }
   .nav-logo-text, .nav-sep, .nav-links, .pill-tag {
      display: none;
   }
   .nav-pill { 
    left: 60px;
    transform: translateX(0);
   }
   .nav-cta {
    width: 83px;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
   }
   .nav-icon-btn {
      display: grid;
   }

  body {
    overflow: auto;
  }
  
  .app {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }
  
  .workspace {
    grid-template-columns: 1fr;
    overflow: visible;
    height: auto;
  }

  .file-tab-mobile {
    display: none;
  }

  #exampleGeojsonMixed {
    display: none;
  }

    .hero {
        padding: calc(var(--hero-pad) / 2) 32px calc(var(--hero-pad) / 2);
    } 

    .cta-actions {
        flex-flow: column;
    }  

    .footer-top, .footer-cols {
        display: flex;
        flex-flow: column;
        gap: 0;
        padding-bottom: 18px;
    }

    .footer-col-contact {
        padding: 28px 0 12px 0;
        display: flex;
        flex-flow: column;
        line-height: 28px;
    }    

    .footer-col-contact-break {
        display: none;
    }
  
    .badge-card {
        padding: 7px 4px 10px 4px;
    }
    
    .alert-success {
        max-width: 100vw;
        min-width: 400px !important;
    }

    .nav-pill-h1 {
        max-width: calc(100vw - 280px);
        white-space: nowrap;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-pills>li>a {
        margin: 0 !important;
    }

}
