/* =========================================================================
   GREAT CIRCLE PRO — MOBILE LAYER v2.0  "Award-Winning"
   Loaded AFTER style.css. Everything scoped to ≤768px so desktop is untouched.
   ========================================================================= */

/* ================= BOTTOM-SHEET FOUNDATION ================= */
@media (max-width: 768px) {

  /* ---- lock viewport: prevent any horizontal overflow ---- */
  html, body {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }

  /* ---- override the old left-slide sidebar ---- */
  #sidebar {
    position: fixed !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100vw !important;
    height: 75vh;
    max-height: 75vh;
    border-right: none !important;
    border-top: none;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -6px 40px rgba(0,0,0,0.22), 0 -1px 0 rgba(0,0,0,0.06);
    z-index: 400 !important;
    overflow: hidden;
    transform: translateY(100%) !important;
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1) !important;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    background: var(--panel) !important;
  }
  #sidebar.mobile-open {
    transform: translateY(0) !important;
  }

  /* Drag handle at top of sheet */
  #sidebar::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border2);
    border-radius: 4px;
    margin: 10px auto 6px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  /* ---- header compact ---- */
  #header {
    flex-shrink: 0;
    padding: 0;
  }
  #header .header-inner {
    padding: 4px 16px 4px;
  }
  #header .header-inner .flex-row {
    display: none;
  }
  .header-sub {
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0;
    overflow: hidden;
  }
  .header-links {
    display: none !important;
  }

  /* ---- tabs become a horizontal strip right under handle ---- */
  #tabs {
    display: flex;
    gap: 4px;
    padding: 4px 12px 8px;
    height: auto !important;
    min-height: 42px;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .tab {
    flex: 1;
    flex-direction: row !important;
    gap: 5px !important;
    padding: 8px 6px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    min-height: 44px;
    opacity: 0.45;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: transparent !important;
  }
  .tab .tab-icon { font-size: 17px !important; line-height: 1; }
  .tab .tab-text { font-size: 9px !important; letter-spacing: 0.5px; }
  .tab.active {
    opacity: 1;
    border-color: var(--accent) !important;
    background: rgba(26,107,255,0.08) !important;
    color: var(--accent) !important;
    box-shadow: none !important;
  }

  /* ---- scrollable panel ---- */
  #panel-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding: 8px 14px 32px !important;
  }

  /* ---- overlay ---- */
  #mobile-overlay {
    z-index: 399 !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  /* ---- old sidebar toggle: HIDE it ---- */
  #sidebar-toggle {
    display: none !important;
  }

  /* Safe area for notched phones / Dynamic Island */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    #m-fab { bottom: calc(22px + env(safe-area-inset-bottom)); }
    #m-panel-btn { bottom: calc(22px + env(safe-area-inset-bottom)); }
    #m-quick-add { bottom: calc(24px + env(safe-area-inset-bottom)); }
    #m-clear-menu { bottom: calc(86px + env(safe-area-inset-bottom)); }
    #sidebar { padding-bottom: env(safe-area-inset-bottom); }
    #proj-bar { bottom: calc(86px + env(safe-area-inset-bottom)) !important; }
    #share-btn { bottom: calc(136px + env(safe-area-inset-bottom)) !important; }
    #home-btn { bottom: calc(136px + env(safe-area-inset-bottom)) !important; }
    #m-onboard-arrow { bottom: calc(86px + env(safe-area-inset-bottom)); }
  }


  /* ================= MAP VIGNETTE — premium depth framing ================= */

  #map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.08) 100%);
  }
  body.day #map-container::after {
    background:
      radial-gradient(ellipse at center, transparent 50%, rgba(60,50,30,0.06) 100%);
  }


  /* ================= FLOATING ACTION BUTTONS ================= */

  /* Quick-Add FAB (bottom-right) */
  #m-fab {
    position: fixed !important;
    bottom: 22px;
    right: 16px !important;
    left: auto !important;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 0;
    transition: opacity 0.25s, box-shadow 0.25s;
    transform: none !important;
  }
  #m-fab-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff8c1a 0%, #e86a00 100%);
    border: none;
    color: #fff;
    font-size: 23px;
    font-weight: 300;
    cursor: pointer;
    box-shadow:
      0 6px 24px rgba(232, 106, 0, 0.45),
      0 2px 8px rgba(0,0,0,0.12),
      inset 0 1px 0 rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  #m-fab-btn:hover { opacity: 0.95; }
  #m-fab-btn:active {
    transform: scale(0.9);
    box-shadow: 0 2px 12px rgba(232,106,0,0.35);
  }
  #m-fab-btn:focus-visible { outline: 2px solid var(--accent2); outline-offset: 3px; }

  /* Quick-Add inline input (expands left from FAB) */
  #m-quick-add {
    position: fixed !important;
    bottom: 24px;
    left: 14px !important;
    right: 76px !important;
    z-index: 500;
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: var(--panel);
    border: 1.5px solid var(--accent);
    border-radius: 28px;
    padding: 5px 6px 5px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.06) inset;
    animation: m-slide-in 0.22s ease-out;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  #m-quick-add.open { display: flex; }

  @keyframes m-slide-in {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  #m-quick-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    outline: none;
    text-transform: uppercase;
  }
  #m-quick-input:focus { outline: none; }
  #m-quick-input::placeholder {
    color: var(--muted);
    text-transform: none;
    font-size: 12px;
  }
  #m-quick-go {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s;
    box-shadow: 0 2px 8px rgba(26,107,255,0.3);
  }
  #m-quick-go:hover { opacity: 0.9; }
  #m-quick-go:active { background: var(--accent-lt); }
  #m-quick-go:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  /* Panel-open button (bottom-left) */
  #m-panel-btn {
    position: fixed !important;
    bottom: 22px;
    left: 16px !important;
    right: auto !important;
    z-index: 500;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4090ff 0%, #1a6bff 100%);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
      0 6px 24px rgba(26, 107, 255, 0.4),
      0 2px 8px rgba(0,0,0,0.12),
      inset 0 1px 0 rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  #m-panel-btn:hover { opacity: 0.95; }
  #m-panel-btn:active {
    transform: scale(0.9);
    box-shadow: 0 2px 12px rgba(26,107,255,0.3);
  }
  #m-panel-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  #m-panel-btn .m-panel-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e86a00;
    color: #fff;
    font-size: 9px;
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  #m-panel-btn .m-panel-badge.show { display: flex; }


  /* ================= MAP CONTROL ADJUSTMENTS ================= */

  #map-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 0;
    overflow: hidden !important;
  }
  #map-container svg {
    touch-action: none;
  }

  /* ---- break desktop toolbar on mobile, show buttons individually ---- */
  #map-toolbar {
    position: static !important;
    display: contents !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  /* ---- Frosted glass foundation for map overlays ---- */
  #theme-toggle,
  #style-btn,
  #hud,
  #proj-bar,
  #share-btn,
  #home-btn {
    backdrop-filter: blur(16px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 0.5px 0 rgba(255,255,255,0.5) inset !important;
  }
  /* Night mode: dark glass */
  body:not(.day) #theme-toggle,
  body:not(.day) #style-btn,
  body:not(.day) #hud,
  body:not(.day) #proj-bar,
  body:not(.day) #share-btn,
  body:not(.day) #home-btn {
    background: rgba(20,25,32,0.75) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0.5px 0 rgba(255,255,255,0.04) inset !important;
  }

  /* ---- Top-left: theme + style pill group ---- */
  #theme-toggle {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    font-size: 10px !important;
    padding: 8px 14px !important;
    border-radius: 14px !important;
    color: var(--text) !important;
    z-index: 10 !important;
    letter-spacing: 0.5px;
  }
  #style-btn {
    position: fixed !important;
    top: 12px !important;
    left: 110px !important;
    right: auto !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
    color: var(--text) !important;
    z-index: 10 !important;
  }

  /* ---- HUD — minimal chip badges (top-right) ---- */
  #hud {
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 10 !important;
    font-size: 8.5px !important;
    padding: 6px 10px !important;
    border-radius: 14px !important;
    min-width: auto !important;
    line-height: 1.7 !important;
    color: var(--text2) !important;
    letter-spacing: 0.8px !important;
  }
  #hud .val {
    font-weight: 700 !important;
    font-size: 9.5px !important;
  }
  #hud-coords {
    font-size: 8px !important;
    opacity: 0.7;
  }

  /* Slightly smaller airport labels on mobile */
  :root { --label-size: 10px; }
  .airport-label { font-size: 10px !important; }
  body.day .airport-label { font-size: 10px !important; }

  /* Hide SVG watermark on mobile — it sits behind the proj bar */
  .wm-layer { display: none !important; }

  /* Zoom — hidden on mobile (pinch-to-zoom + auto-fit) */
  #map-fit-btn { display: none !important; }
  #zoom-controls { display: none !important; }

  /* Share + Home buttons — right edge, vertically stacked */
  #share-btn,
  #home-btn {
    position: fixed !important;
    top: auto !important;
    right: 14px !important;
    left: auto !important;
    font-size: 0 !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    z-index: 500 !important;
    color: var(--text2) !important;
  }
  #share-btn {
    bottom: 136px !important;
  }
  #home-btn {
    bottom: 184px !important;
  }
  #share-btn svg,
  #home-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Clear buttons — hidden (use long-press clear menu) */
  #map-clear-routes, #map-clear-circles, #map-clear-etops {
    display: none !important;
  }

  /* ---- Projection bar — frosted glass pill, center bottom ---- */
  #proj-bar {
    position: fixed !important;
    bottom: 86px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 200 !important;
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 16px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    display: flex !important;
  }
  #proj-bar::-webkit-scrollbar { display: none; }

  .proj-btn {
    font-size: 8.5px !important;
    padding: 10px 13px !important;
    white-space: nowrap !important;
    font-weight: 500 !important;
    color: var(--text2) !important;
    scroll-snap-align: center;
    transition: all 0.15s ease;
    border-color: transparent !important;
    letter-spacing: 0.8px !important;
  }
  .proj-btn.active {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: transparent !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(26,107,255,0.3);
  }

  /* Ortho hint */
  #ortho-hint {
    top: auto !important;
    bottom: 140px !important;
    left: 50% !important;
    transform: translateX(-50%);
    border-radius: 10px;
    font-size: 9px !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Style panel */
  #style-panel {
    top: 56px !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 14px !important;
    z-index: 450 !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2) !important;
  }

  /* Footer + map footer: hidden */
  #map-footer { display: none !important; }

  /* Legend */
  #legend {
    bottom: 140px !important;
    left: 12px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
  }

  /* Tooltip */
  #map-tooltip {
    max-width: min(280px, 80vw) !important;
    font-size: 10px !important;
    border-radius: 10px !important;
  }


  /* ================= FORM TOUCH TARGETS ================= */

  .toggle-btn, .wind-season-btn, .wind-pct-btn, .rating-btn {
    min-height: 44px;
    font-size: 11.5px !important;
    border-radius: 10px !important;
  }

  .btn {
    min-height: 48px;
    font-size: 12.5px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(26, 109, 255, 0.12);
    letter-spacing: 1px;
  }

  input[type="text"], input[type="number"], select, textarea {
    min-height: 46px;
    font-size: 16px !important;
    border-radius: 10px !important;
  }

  .section-body {
    border-radius: 0 0 12px 12px !important;
    padding: 12px !important;
  }
  .section-label, .etops-step-label {
    border-radius: 12px 12px 0 0 !important;
    font-size: 10px !important;
    padding: 10px 12px !important;
  }

  /* Route / Range cards */
  .route-item, .range-item, .etops-result {
    border-radius: 12px !important;
    padding: 12px 14px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }
  .route-delete {
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px !important;
    font-size: 15px !important;
  }

  /* Color picker larger target */
  input[type="color"].color-picker-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
  }


  /* ================= COLLAPSIBLE SECTIONS ================= */

  .m-collapsible > .section-label,
  .m-collapsible > .etops-step-label {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    padding-right: 32px !important;
  }
  .m-collapsible > .section-label::after,
  .m-collapsible > .etops-step-label::after {
    content: '\25BE';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--muted);
    transition: transform 0.2s;
  }
  .m-collapsible.m-collapsed > .section-label::after,
  .m-collapsible.m-collapsed > .etops-step-label::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .m-collapsible.m-collapsed > .section-body {
    display: none;
  }


  /* ================= MOBILE LINKS DRAWER ================= */
  #m-links-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 14px;
    background: var(--panel2);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }
  #m-links-bar a {
    flex: 1 1 auto;
    min-width: 60px;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text2);
    text-decoration: none;
    padding: 8px 6px;
    background: var(--panel3);
    border: 1px solid var(--border);
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s;
  }
  #m-links-bar a:hover { background: var(--panel2); color: var(--text); }
  #m-links-bar a:active { background: var(--accent); color: #fff; border-color: var(--accent); }
  #m-links-bar a:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }


  /* ================= MOBILE ROUTE SUMMARY TOAST ================= */
  #m-route-toast {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: 450;
    background: rgba(0, 168, 107, 0.92);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 168, 107, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  #m-route-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }


  /* ================= MOBILE CLEAR MENU ================= */
  #m-clear-menu {
    position: fixed !important;
    bottom: 86px;
    left: 16px !important;
    right: auto !important;
    z-index: 500;
    display: none;
    flex-direction: column;
    gap: 6px;
    animation: m-pop-up 0.2s ease-out;
    transform: none !important;
  }
  #m-clear-menu.open { display: flex; }

  @keyframes m-pop-up {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  #m-clear-menu button {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }
  body:not(.day) #m-clear-menu button {
    background: rgba(20,25,32,0.85);
    border-color: rgba(239, 68, 68, 0.35);
    color: #f87171;
  }
  #m-clear-menu button:hover { background: rgba(239, 68, 68, 0.1); }
  #m-clear-menu button:active { background: rgba(239, 68, 68, 0.2); }
  #m-clear-menu button:focus-visible { outline: 2px solid #ef4444; outline-offset: 2px; }

}

/* ================= SMALL PHONES ================= */
@media (max-width: 390px) {
  #sidebar {
    height: 78vh !important;
    max-height: 78vh !important;
  }
  .tab .tab-text { display: none; }
  .tab .tab-icon { font-size: 18px !important; }
  .tab { min-height: 38px; }
  #m-fab-btn { width: 48px; height: 48px; font-size: 21px; }
  #m-panel-btn { width: 44px; height: 44px; }
  #m-quick-add { right: 70px !important; }
  .proj-btn { font-size: 7.5px !important; padding: 9px 10px !important; }
}

/* ================= LANDSCAPE MOBILE ================= */
@media (max-width: 768px) and (max-height: 500px) {
  #sidebar {
    height: 85vh !important;
    max-height: 85vh !important;
  }
  #header { display: none !important; }
}

/* ================= PAYLOAD-RANGE CHART: disable on mobile ========= */
@media (max-width: 768px) {
  .rls-dash-btn {
    display: none !important;
  }
  #pr-modal,
  #pr-overlay {
    display: none !important;
  }
}

/* ================= ONBOARDING ARROW (mobile only) ================= */
@media (max-width: 768px) {
  #m-onboard-arrow {
    position: fixed;
    bottom: 86px;
    right: 8px;
    z-index: 501;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: ob-bounce 1.6s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  #m-onboard-arrow.fade-out {
    opacity: 0;
  }
  #m-onboard-arrow .ob-text {
    background: linear-gradient(135deg, #e86a00 0%, #cc5500 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 16px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(232, 106, 0, 0.45);
    white-space: nowrap;
  }
  #m-onboard-arrow .ob-caret {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #cc5500;
    margin-top: -1px;
  }
  @keyframes ob-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
}

/* ================= DESKTOP: hide all mobile elements ================= */
@media (min-width: 769px) {
  #m-fab,
  #m-fab-btn,
  #m-quick-add,
  #m-panel-btn,
  #m-route-toast,
  #m-clear-menu,
  #m-links-bar,
  #m-onboard-arrow {
    display: none !important;
  }
}
