  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
  *{margin:0;padding:0;box-sizing:border-box}
  body{font-family:'Inter',sans-serif;background:#0a0a0f;color:#fff;overflow:hidden;height:100vh;width:100vw}
  #map{position:absolute;inset:0;z-index:1;background:#101018}

  /* ─── HEADER ─── */
  .header{
    position:absolute;top:16px;left:50%;transform:translateX(-50%);z-index:1000;
    display:flex;align-items:center;gap:0;
    background:linear-gradient(135deg,rgba(20,10,40,.88),rgba(10,10,30,.92));
    backdrop-filter:blur(24px) saturate(1.8);
    border:1px solid rgba(255,255,255,.08);border-radius:20px;
    padding:10px 20px 32px;
    box-shadow:0 8px 32px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.06);
    animation:slideDown .8s cubic-bezier(.16,1,.3,1) forwards;opacity:0;
  }
  @keyframes slideDown{from{opacity:0;transform:translateX(-50%) translateY(-20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}
  .header-logo{
    width:42px;height:42px;border-radius:12px;
    background:linear-gradient(135deg,#a855f7,#ec4899,#f97316);
    display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;
    box-shadow:0 4px 16px rgba(168,85,247,.4);animation:lp 3s ease-in-out infinite;
  }
  @keyframes lp{0%,100%{box-shadow:0 4px 16px rgba(168,85,247,.4)}50%{box-shadow:0 4px 24px rgba(236,72,153,.6)}}
  .header-text h1{
    font-family:'Space Grotesk',sans-serif;font-size:16px;font-weight:700;letter-spacing:.5px;
    background:linear-gradient(90deg,#e0c3fc,#f5a0c0,#fbc2eb);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;line-height:1.2;
  }
  .header-text p{font-size:10.5px;color:rgba(255,255,255,.45);letter-spacing:2px;text-transform:uppercase}
  .header-text{position:relative;display:block;line-height:0}
  .header-banner{
    display:block;
    width:min(68vw,920px);
    min-width:360px;
    height:auto;
    position:relative;
    z-index:1;
    overflow:visible;
  }
  .event-lockup{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 36px);
    max-width:860px;
    bottom:-14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    white-space:nowrap;
    line-height:1.1;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(10px,1.35vw,18px);
    font-weight:700;
    letter-spacing:.9px;
    color:#f5f5f4;
    text-shadow:none;
    z-index:2;
    pointer-events:none;
  }
  .event-main{display:inline-block}
  .event-sub{display:inline-block;letter-spacing:1px}
  @media (max-width: 900px){
    .event-lockup{
      position:static;
      left:auto;
      right:auto;
      transform:none;
      width:100%;
      max-width:none;
      margin-top:6px;
      gap:10px;
      font-size:clamp(9px,2.1vw,13px);
      white-space:normal;
      flex-wrap:wrap;
      line-height:1.05;
    }
  }
  .event-date,.event-tagline{display:none}
  .header-text svg{display:block;width:320px;max-width:52vw;height:auto;position:relative;z-index:1;overflow:visible}
  .header-text svg path,.header-text svg polygon,.header-text svg rect{fill:#f3f4f6!important;stroke:#f3f4f6!important}

  /* ─── LEGEND ─── */
  .legend-panel{
    position:absolute;bottom:24px;left:24px;z-index:1000;
    background:linear-gradient(160deg,rgba(15,10,35,.92),rgba(10,8,25,.95));
    backdrop-filter:blur(24px) saturate(1.6);
    border:1px solid rgba(255,255,255,.07);border-radius:20px;
    min-width:240px;max-width:280px;
    box-shadow:0 12px 48px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.05);
    animation:slideUp .8s .3s cubic-bezier(.16,1,.3,1) forwards;opacity:0;overflow:hidden;
  }
  @keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
  .legend-header{display:flex;align-items:center;justify-content:space-between;padding:14px 18px 10px;cursor:pointer;user-select:none}
  .legend-header h2{font-family:'Space Grotesk',sans-serif;font-size:11px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,.5)}
  .legend-hint{
    padding:0 18px 8px;
    font-size:10px;
    letter-spacing:.4px;
    color:rgba(255,255,255,.45);
    font-family:'Inter',sans-serif;
  }
  .legend-toggle{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:rgba(255,255,255,.05);color:rgba(255,255,255,.4);font-size:10px;transition:all .3s}
  .legend-toggle.collapsed{transform:rotate(180deg)}
  .legend-body{padding:4px 14px 16px;display:flex;flex-direction:column;gap:2px;max-height:400px;overflow-y:auto;transition:all .4s cubic-bezier(.16,1,.3,1)}
  .legend-body.collapsed{max-height:0;padding:0 14px;overflow:hidden}

  .leg-section{
    font-family:'Space Grotesk',sans-serif;font-size:10px;font-weight:600;color:rgba(255,255,255,.3);
    letter-spacing:1.8px;text-transform:uppercase;padding:10px 8px 4px;
  }
  .leg-item{display:flex;align-items:center;gap:10px;padding:7px 8px;border-radius:10px;cursor:pointer;transition:all .25s}
  .leg-item:hover{background:rgba(255,255,255,.05)}
  .leg-item.off .leg-sw,.leg-item.off .leg-lb{opacity:.2}

  .leg-sw{width:18px;height:18px;flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:transform .2s}
  .leg-item:hover .leg-sw{transform:scale(1.1)}
  .leg-lb{font-size:12px;color:rgba(255,255,255,.68);line-height:1.3;transition:opacity .2s}

  .gallery-widget{
    position:absolute;bottom:300px;left:24px;z-index:1000;
    background:linear-gradient(160deg,rgba(15,10,35,.92),rgba(10,8,25,.95));
    backdrop-filter:blur(24px) saturate(1.6);
    border:1px solid rgba(255,255,255,.07);border-radius:20px;
    min-width:240px;max-width:280px;
    box-shadow:0 12px 48px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.05);
    animation:slideUp .8s .35s cubic-bezier(.16,1,.3,1) forwards;opacity:0;overflow:hidden;
  }
  .gw-header{display:flex;align-items:center;justify-content:space-between;padding:14px 18px 10px;cursor:pointer;user-select:none}
  .gw-header h2{font-family:'Space Grotesk',sans-serif;font-size:11px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,.5)}
  .gw-toggle{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:rgba(255,255,255,.05);color:rgba(255,255,255,.4);font-size:10px;transition:all .3s}
  .gw-toggle.collapsed{transform:rotate(180deg)}
  .gw-body{padding:4px 14px 16px;max-height:340px;overflow-y:auto;transition:all .4s cubic-bezier(.16,1,.3,1)}
  .gw-body.collapsed{max-height:0;padding:0 14px;overflow:hidden}
  .gw-placeholder{
    margin:8px;
    padding:8px 10px;
    border-radius:10px;
    color:rgba(255,255,255,.6);
    font-size:12px;
    font-family:'Inter',sans-serif;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }
  .gw-list{display:flex;flex-direction:column;gap:6px;padding:6px 8px 2px}
  .gw-item{
    width:100%;text-align:left;cursor:pointer;
    border:1px solid rgba(255,255,255,.08);border-radius:10px;
    background:rgba(255,255,255,.03);color:rgba(255,255,255,.86);
    padding:8px 10px;transition:all .2s;
    font-family:'Inter',sans-serif;font-size:12px;line-height:1.3;
  }
  .gw-item:hover{background:rgba(255,255,255,.08);border-color:rgba(224,195,252,.35);transform:translateY(-1px)}
  .gw-item-name{font-weight:600}
  .gw-item-addr{display:block;margin-top:2px;font-size:11px;color:rgba(255,255,255,.52)}
  .gw-body{
    scrollbar-width:thin;
    scrollbar-color:rgba(224,195,252,.45) rgba(255,255,255,.04);
  }
  .gw-body::-webkit-scrollbar{width:6px}
  .gw-body::-webkit-scrollbar-track{
    background:rgba(255,255,255,.04);
    border-radius:6px;
  }
  .gw-body::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,rgba(224,195,252,.5),rgba(168,85,247,.45));
    border-radius:6px;
    border:1px solid rgba(255,255,255,.08);
  }

  /* swatch shapes */
  .sw-square{width:14px;height:14px;border-radius:3px;border:2px solid}
  .sw-square-filled{width:14px;height:14px;border-radius:3px;border:2px solid}
  .sw-gallery{
    width:21px;
    height:21px;
    border-radius:3px;
    border:2px solid #3f3f46;
    background:#F7931E;
    position:relative;
    box-sizing:border-box;
  }
  .sw-gallery::after{
    content:'';
    position:absolute;
    width:4px;
    height:4px;
    border-radius:999px;
    background:#3f3f46;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
  }
  .leg-item[data-layer="gallery"] .leg-sw{
    width:22px;
    height:22px;
  }
  .gallery-exhibit-icon{filter:drop-shadow(0 1px 2px rgba(15,23,42,.2))}
  .sw-bus{
    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#087BBE;
    color:#fff;
    font-size:10px;
    line-height:1;
  }
  .sw-route{
    position:relative;
    width:34px;
    height:10px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .sw-route-line{
    width:100%;
    height:6px;
    border-radius:4px;
    background:#A54499;
    box-shadow:0 0 0 1px rgba(165,68,153,.2);
  }
  .sw-route-arrows{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
    pointer-events:none;
  }
  .sw-route-arrows span{
    width:0;
    height:0;
    border-top:3px solid transparent;
    border-bottom:3px solid transparent;
    border-left:5px solid #ffffff;
    filter:drop-shadow(0 0 1px rgba(0,0,0,.25));
  }

  .basemap-switcher{
    position:absolute;bottom:24px;right:24px;z-index:1000;
    display:flex;flex-direction:column;gap:6px;
    animation:slideUp .8s .5s cubic-bezier(.16,1,.3,1) forwards;opacity:0;
  }
  .bm-btn{
    width:46px;height:46px;border-radius:14px;
    border:1.5px solid rgba(255,255,255,.08);
    background:linear-gradient(145deg,rgba(20,12,40,.88),rgba(12,10,28,.92));
    backdrop-filter:blur(20px);cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    font-size:14px;color:rgba(255,255,255,.5);
    transition:all .3s;box-shadow:0 4px 20px rgba(0,0,0,.4);position:relative;
  }
  .bm-btn:hover{border-color:rgba(168,85,247,.3);color:rgba(255,255,255,.85);transform:scale(1.05)}
  .bm-btn.active{border-color:rgba(168,85,247,.5);color:#e0c3fc;box-shadow:0 4px 24px rgba(168,85,247,.25)}
  .bm-tip{
    position:absolute;right:56px;top:50%;transform:translateY(-50%);
    background:rgba(15,10,35,.95);border:1px solid rgba(255,255,255,.1);border-radius:8px;
    padding:5px 10px;font-size:10px;white-space:nowrap;color:rgba(255,255,255,.8);
    pointer-events:none;opacity:0;transition:opacity .2s;
  }
  .bm-btn:hover .bm-tip{opacity:1}

  /* ─── CONTROLS ─── */
  .zoom-ctrls{position:absolute;left:20px;bottom:88px;top:auto;z-index:1000;display:flex;flex-direction:column;gap:2px;animation:slideUp .8s .45s cubic-bezier(.16,1,.3,1) forwards;opacity:0}
  .nav-ctrls{position:absolute;left:20px;bottom:24px;top:auto;z-index:1000;display:flex;flex-direction:column;gap:6px;animation:slideUp .8s .4s cubic-bezier(.16,1,.3,1) forwards;opacity:0}
  .cb{
    width:40px;height:40px;border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
    background:linear-gradient(145deg,rgba(20,12,40,.85),rgba(12,10,28,.9));
    backdrop-filter:blur(20px);cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    font-size:13px;color:rgba(255,255,255,.5);transition:all .2s;
    box-shadow:0 2px 12px rgba(0,0,0,.3);
  }
  .cb:hover{color:rgba(255,255,255,.85);border-color:rgba(168,85,247,.3)}
  .cb:active{transform:scale(.95)}
  .zoom-ctrls .cb:first-child{border-radius:12px 12px 4px 4px}
  .zoom-ctrls .cb:last-child{border-radius:4px 4px 12px 12px}

  /* ─── LOADING ─── */
  .loading{
    position:absolute;inset:0;z-index:2000;background:#0a0a0f;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:24px;
    transition:opacity 1s,visibility 1s;
  }
  .loading.hidden{opacity:0;visibility:hidden;pointer-events:none}
  .lr{display:none}
  .lt{display:flex;align-items:center;justify-content:center;opacity:.85;animation:tp 1.5s ease-in-out infinite}
  .lt svg{display:block;width:220px;max-width:62vw;height:auto;overflow:visible}
  .lt svg path,.lt svg polygon,.lt svg rect{fill:#f3f4f6!important;stroke:#f3f4f6!important}
  #loaderLockup svg > *:nth-child(1),
  #loaderLockup svg > *:nth-child(2),
  #loaderLockup svg > *:nth-child(3){
    transform-box:fill-box;
    transform-origin:center;
    animation:artBounce 1.15s ease-in-out infinite;
  }
  #loaderLockup svg > *:nth-child(2){animation-delay:.12s}
  #loaderLockup svg > *:nth-child(3){animation-delay:.24s}
  @keyframes artBounce{
    0%,65%,100%{transform:translateY(0)}
    28%{transform:translateY(-3px)}
    45%{transform:translateY(0)}
  }
  @keyframes tp{0%,100%{opacity:.4}50%{opacity:.8}}

  .ag{position:absolute;border-radius:50%;filter:blur(80px);opacity:.06;pointer-events:none;z-index:2;animation:gd 12s ease-in-out infinite}
  .g1{width:300px;height:300px;background:#a855f7;top:-50px;left:-50px}
  .g2{width:250px;height:250px;background:#ec4899;bottom:-30px;right:-30px;animation-delay:-4s}
  @keyframes gd{0%,100%{transform:translate(0,0)}33%{transform:translate(15px,10px)}66%{transform:translate(-10px,15px)}}

  /* ─── LEAFLET OVERRIDES ─── */
  .leaflet-control-attribution{background:rgba(0,0,0,.4)!important;color:rgba(255,255,255,.3)!important;font-size:9px!important}
  .leaflet-control-attribution a{color:rgba(255,255,255,.4)!important}
  .leaflet-container{background:#101018!important}

  .leaflet-popup-content-wrapper{background:rgba(15,10,35,.95)!important;color:#fff!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.1)!important;box-shadow:0 12px 40px rgba(0,0,0,.5)!important}
  .leaflet-popup-tip{background:rgba(15,10,35,.95)!important}
  .leaflet-popup-content{font-family:'Inter',sans-serif;font-size:12px;line-height:1.5;margin:12px 14px}
  .leaflet-popup-close-button{color:rgba(255,255,255,.5)!important;font-size:18px!important}
  .aw-popup{min-width:180px;max-width:260px}
  .aw-popup-title{
    font-family:'Space Grotesk',sans-serif;
    font-size:14px;
    font-weight:600;
    color:#e0c3fc;
    margin-bottom:3px;
  }
  .aw-popup-badge{
    --badge-color:#60a5fa;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    display:inline-block;
    padding:2px 8px;
    border-radius:6px;
    background:rgba(96,165,250,.16);
    color:var(--badge-color);
    border:1px solid rgba(96,165,250,.34);
    margin-bottom:6px;
  }
  .aw-popup-address{
    font-size:11.5px;
    color:rgba(255,255,255,.62);
    margin-top:4px;
    display:flex;
    align-items:center;
    gap:4px;
    flex-wrap:wrap;
  }
  .aw-popup-address-text{margin-right:2px}
  .map-app-wrap{position:relative;display:inline-flex}
  .map-app-trigger{
    appearance:none;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    color:#f3f4f6;
    border-radius:8px;
    font:600 10px/1 'Inter',sans-serif;
    padding:3px 7px;
    cursor:pointer;
  }
  .map-app-popover{
    position:absolute;
    z-index:20;
    top:calc(100% + 6px);
    right:0;
    min-width:156px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(8,12,24,.96);
    box-shadow:0 8px 24px rgba(0,0,0,.42);
    padding:5px;
    display:none;
    flex-direction:column;
    gap:2px;
  }
  .map-app-wrap.open .map-app-popover{display:flex}
  .map-app-popover a{
    color:#f3f4f6;
    text-decoration:none;
    font-size:11px;
    border-radius:7px;
    padding:5px 7px;
    white-space:nowrap;
  }
  .map-app-popover a:hover{background:rgba(255,255,255,.1)}
  body.ui-light .map-app-trigger{
    border-color:rgba(17,24,39,.22);
    background:rgba(17,24,39,.06);
    color:#111827;
  }
  body.ui-light .map-app-popover{
    border-color:rgba(17,24,39,.16);
    background:rgba(255,255,255,.98);
    box-shadow:0 8px 24px rgba(15,23,42,.24);
  }
  body.ui-light .map-app-popover a{color:#111827}
  body.ui-light .map-app-popover a:hover{background:rgba(17,24,39,.07)}
  @media (max-width:600px){
    .map-app-popover{
      left:0;
      right:auto;
    }
  }
  .aw-popup-row{
    font-size:11px;
    color:rgba(255,255,255,.56);
    margin-top:3px;
  }
  .aw-popup-row b{color:rgba(255,255,255,.78)}
  .aw-popup-route-title{color:#93c5fd}
  .shuttle-stop-icon{background:transparent;border:0;filter:drop-shadow(0 1px 2px rgba(15,23,42,.22))}
  .shuttle-stop-icon-badge{
    display:flex;
    width:25px;
    height:25px;
    border:1.5px solid #fff;
    box-shadow:0 0 0 1px rgba(255,255,255,.45),0 1px 2px rgba(15,23,42,.18);
    box-sizing:border-box;
  }
  .route-line{filter:drop-shadow(0 1px 2px rgba(15,23,42,.24))}
  .route-arrow-icon{background:transparent;border:0;pointer-events:none!important}
  .route-arrow{
    width:0;height:0;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-left:10px solid #ffffff;
    filter:drop-shadow(0 0 3px rgba(0,0,0,.45));
  }
  .point-label-tooltip{
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
  }
  .point-label-tooltip:before{display:none}
  .point-label{
    position:relative;
    display:inline-block;
    padding:2px 7px;
    border-radius:8px;
    font-family:'Inter',sans-serif;
    font-size:11px;
    font-weight:600;
    letter-spacing:.1px;
    color:#f9fafb;
    background:rgba(10,16,34,.68);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 1px 6px rgba(0,0,0,.35);
    white-space:nowrap;
    pointer-events:auto;
    cursor:pointer;
  }

  .legend-body::-webkit-scrollbar{width:4px}
  .legend-body::-webkit-scrollbar-track{background:transparent}
  .legend-body::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:4px}

body.ui-light .header{
  background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(246,248,252,.95));
  border-color:rgba(17,24,39,.12);
  box-shadow:0 8px 24px rgba(15,23,42,.18),inset 0 1px 0 rgba(255,255,255,.75);
}
body.ui-light .header-text svg path,
body.ui-light .header-text svg polygon,
body.ui-light .header-text svg rect{fill:#111827!important;stroke:#111827!important}
body.ui-light .event-date{color:#9a5c10}
body.ui-light .event-tagline{color:#111827;text-shadow:none}

body.ui-light .legend-panel,
body.ui-light .gallery-widget{
  background:linear-gradient(160deg,rgba(255,255,255,.94),rgba(246,248,252,.96));
  border-color:rgba(17,24,39,.12);
  box-shadow:0 10px 28px rgba(15,23,42,.16),inset 0 1px 0 rgba(255,255,255,.9);
}
body.ui-light .legend-header h2,
body.ui-light .gw-header h2,
body.ui-light .legend-hint,
body.ui-light .leg-section{color:rgba(17,24,39,.62)}
body.ui-light .leg-lb{color:rgba(17,24,39,.85)}
body.ui-light .leg-item:hover{background:rgba(15,23,42,.06)}

body.ui-light .gw-placeholder{
  color:rgba(17,24,39,.74);
  background:rgba(15,23,42,.05);
  border-color:rgba(17,24,39,.12);
}
body.ui-light .gw-item{
  background:rgba(15,23,42,.04);
  color:rgba(17,24,39,.9);
  border-color:rgba(17,24,39,.14);
}
body.ui-light .gw-item:hover{background:rgba(15,23,42,.08);border-color:rgba(59,130,246,.4)}
body.ui-light .gw-item-addr{color:rgba(17,24,39,.58)}

body.ui-light .cb,
body.ui-light .bm-btn,
body.ui-light .legend-toggle,
body.ui-light .gw-toggle{
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(244,246,250,.95));
  color:rgba(17,24,39,.72);
  border-color:rgba(17,24,39,.14);
}
body.ui-light .cb:hover,
body.ui-light .bm-btn:hover{
  color:rgba(17,24,39,.95);
  border-color:rgba(59,130,246,.45);
}
body.ui-light .bm-btn.active{border-color:rgba(37,99,235,.6);color:#1d4ed8;box-shadow:0 4px 18px rgba(37,99,235,.18)}
body.ui-light .bm-tip{
  background:rgba(255,255,255,.96);
  border-color:rgba(17,24,39,.12);
  color:rgba(17,24,39,.82);
}

body.ui-light .point-label{
  color:#111827;
  background:rgba(255,255,255,.9);
  border-color:rgba(17,24,39,.2);
  box-shadow:0 1px 5px rgba(15,23,42,.2);
}
body.ui-light .event-lockup{color:#231f20}
body.ui-light .leaflet-popup-content-wrapper{
  background:rgba(255,255,255,.97)!important;
  color:#111827!important;
  border-color:rgba(17,24,39,.16)!important;
  box-shadow:0 12px 34px rgba(15,23,42,.18)!important;
}
body.ui-light .leaflet-popup-tip{background:rgba(255,255,255,.97)!important}
body.ui-light .leaflet-popup-close-button{color:rgba(17,24,39,.58)!important}
body.ui-light .aw-popup-title{color:#2563eb}
body.ui-light .aw-popup-address{color:rgba(17,24,39,.72)}
body.ui-light .aw-popup-row{color:rgba(17,24,39,.66)}
body.ui-light .aw-popup-row b{color:rgba(17,24,39,.88)}
body.ui-light .aw-popup-route-title{color:#1d4ed8}
