:root {
  --ink: #0f1218;
  --panel: #171b23;
  --raised: #1e232d;
  --field: #12161d;
  --line: #262c37;
  --line-2: #353c4a;
  --text: #e8eaef;
  --muted: #8e95a4;
  --faint: #626a79;
  --warn: #f5c451;
  --danger: #ff8278;
  --route: #ff3b30;
  font-family: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body { display: flex; background: var(--ink); color: var(--text); font-size: 13px; line-height: 1.4; overflow: hidden; }
:focus-visible { outline: 2px solid var(--route); outline-offset: 2px; }
svg { display: block; }
[hidden] { display: none !important; }

/* ---------- панель ---------- */
#panel { width: 392px; flex: none; height: 100vh; display: flex; flex-direction: column; background: var(--panel); border-right: 1px solid var(--line); }
.p-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px 12px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand h1 { font-size: 16px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.tagline { margin: 1px 0 0; color: var(--muted); font-size: 12px; }
#lang { width: auto; margin: 0; padding: 5px 8px; font-size: 12px; }
.head-actions { display: flex; align-items: center; gap: 8px; }
.help { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-weight: 600; text-decoration: none; }
.help:hover { color: var(--text); border-color: var(--line-2); }

.tabs { display: flex; gap: 2px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.tab { flex: 1; background: none; border: 0; border-radius: 0; padding: 10px 4px 11px; color: var(--muted); font-weight: 500; position: relative; }
.tab:hover { color: var(--text); border: 0; }
.tab[aria-selected="true"] { color: var(--text); }
.tab[aria-selected="true"]::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: -1px; height: 2px; border-radius: 2px; background: var(--route); }

.p-body { flex: 1; overflow-y: auto; padding: 14px 20px 22px; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
body.exporting .p-body { pointer-events: none; opacity: 0.55; }
.pane[hidden] { display: none; }

.group { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.pane > .group:first-child { border-top: 0; padding-top: 2px; margin-top: 0; }
.group h2 { font-size: 13px; font-weight: 600; margin: 0 0 12px; }
.hint { color: var(--muted); font-size: 11.5px; margin: 6px 0 0; line-height: 1.45; }
.hint.error { color: var(--danger); }
code { background: var(--field); padding: 1px 5px; border-radius: 4px; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px; }
.attribution { color: var(--faint); font-size: 11px; line-height: 1.45; margin: 18px 0 0; }

/* ---------- поля ---------- */
label { display: block; margin: 0 0 10px; color: var(--text); }
label > span { color: var(--muted); }
label.row { display: grid; grid-template-columns: 1fr 128px 36px; align-items: center; gap: 10px; }
label.row span { color: var(--text); }
label.row output { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
label.check { display: flex; align-items: center; gap: 8px; }
label.check span { color: var(--text); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.color-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.color-row span { color: var(--text); }

input[type=text], input[type=number], input:not([type]), textarea, select {
  width: 100%; margin-top: 4px; padding: 7px 9px; background: var(--field); color: var(--text);
  border: 1px solid var(--line); border-radius: 8px; font: inherit; outline: none;
}
input[type=text]:focus, input[type=number]:focus, input:not([type]):focus, textarea:focus, select:focus { border-color: var(--line-2); background: #0e1117; }
input.bad { border-color: var(--danger) !important; }
input:disabled { color: var(--faint); }
input[type=number] { -moz-appearance: textfield; }
input[type=number]::-webkit-inner-spin-button { opacity: 0.4; }
input[type=number]:disabled::-webkit-inner-spin-button { display: none; }
textarea { resize: vertical; line-height: 1.45; }
input[type=color] { width: 64px; height: 30px; margin: 0; padding: 2px; background: var(--field); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
input[type=file] { margin-top: 4px; width: 100%; color: var(--muted); font-size: 11px; }
input[type=checkbox] { accent-color: var(--route); width: 15px; height: 15px; margin: 0; }

input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 18px; margin: 0; background: transparent; cursor: pointer; }
input[type=range]::-webkit-slider-runnable-track { height: 4px; border-radius: 2px; background: var(--line-2); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; margin-top: -5px; border-radius: 50%; background: var(--text); box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.28); }
input[type=range]::-moz-range-track { height: 4px; border-radius: 2px; background: var(--line-2); }
input[type=range]::-moz-range-progress { height: 4px; border-radius: 2px; background: var(--route); }
input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: var(--text); }

button { font: inherit; cursor: pointer; border: 1px solid var(--line); background: var(--raised); color: var(--text); padding: 8px 12px; border-radius: 8px; }
button:hover { border-color: var(--line-2); }
button:disabled { opacity: 0.5; cursor: default; }
button.primary { background: var(--route); border-color: transparent; color: #fff; font-weight: 600; width: 100%; }
button.primary:hover { filter: brightness(1.08); }
button.ghost { background: transparent; }
button.small { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; font-size: 12px; color: var(--muted); }
button.small:hover { color: var(--text); }
button.small svg { width: 14px; height: 14px; }
button.danger:hover { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 40%, transparent); }
button.link { background: none; border: 0; padding: 4px 0; color: var(--muted); font-size: 12px; text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; }
button.link:hover { color: var(--text); }

/* ---------- схема маршрута ---------- */
.points { list-style: none; margin: 0; padding: 0; }
.pt { position: relative; }
/* линия маршрута от центра узла до центра следующего */
.pt::before { content: ""; position: absolute; left: 14.5px; top: 23px; bottom: -23px; width: 3px; border-radius: 2px; background: var(--route); }
.pt.last::before { display: none; }
.pt.dragging { opacity: 0.45; }
.pt.drop-before::after, .pt.drop-after::after { content: ""; position: absolute; left: 42px; right: 0; height: 2px; border-radius: 2px; background: var(--text); z-index: 3; }
.pt.drop-before::after { top: -1px; }
.pt.drop-after::after { bottom: -1px; }
.pt.drop-files > .pt-row { outline: 1.5px dashed var(--route); outline-offset: -1px; border-radius: 10px; background: color-mix(in srgb, var(--route) 10%, transparent); }

.pt-row { position: relative; z-index: 1; display: flex; align-items: center; gap: 6px; padding: 7px 0; }
.pt-node {
  width: 32px; height: 32px; flex: none; padding: 0; display: grid; place-items: center; border-radius: 50%;
  border: 2.5px solid color-mix(in oklab, var(--c), white 22%); background: color-mix(in srgb, var(--c) 26%, var(--panel));
  box-shadow: 0 0 0 3px var(--panel); font-size: 15px; line-height: 1;
}
.pt-node:hover { border-color: color-mix(in oklab, var(--c), white 45%); }
.pt.via .pt-node { width: 16px; height: 16px; margin: 0 8px; border-width: 3px; background: var(--panel); font-size: 0; }
.pt.via .pt-name { color: var(--muted); font-weight: 500; }
.pt-name { flex: 1; min-width: 0; margin: 0 !important; padding: 6px 8px !important; background: transparent !important; border-color: transparent !important; font-size: 14px !important; font-weight: 600; text-overflow: ellipsis; }
.pt-name:hover { border-color: var(--line) !important; }
.pt-name:focus { background: var(--field) !important; border-color: var(--line-2) !important; }
.pt-name::placeholder { color: var(--faint); font-weight: 500; }

.pt-state { flex: none; width: 10px; height: 10px; border-radius: 50%; }
.pt-state.pending { border: 1.5px dashed var(--faint); }
.pt-state.busy { border: 2px solid var(--line-2); border-top-color: var(--warn); animation: spin 0.8s linear infinite; width: 14px; height: 14px; }
.pt-state.error { width: 18px; height: 18px; display: grid; place-items: center; background: var(--danger); color: #1a0d0c; font-size: 12px; font-weight: 800; cursor: help; }
@keyframes spin { to { transform: rotate(360deg); } }

.pt-chip { flex: none; display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px 3px 6px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--text); background: var(--raised); }
.pt-chip svg { width: 14px; height: 14px; color: var(--muted); }
.pt-more { flex: none; width: 28px; height: 28px; padding: 0; display: grid; place-items: center; background: none; border: 0; color: var(--muted); border-radius: 7px; }
.pt-more:hover { background: var(--raised); color: var(--text); }
.pt-more svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.pt.open .pt-more svg { transform: rotate(180deg); }
.pt-grip { flex: none; width: 18px; height: 28px; display: grid; place-items: center; color: var(--faint); cursor: grab; opacity: 0; transition: opacity 0.12s; }
.pt-grip svg { width: 14px; height: 14px; }
.pt-row:hover .pt-grip, .pt.dragging .pt-grip { opacity: 1; }
@media (hover: none) { .pt-grip { opacity: 1; } }

.pt-leg { margin-left: 46px; height: 14px; line-height: 14px; font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.pt.last .pt-leg { height: 4px; }

/* меню точки */
.pt-menu { position: relative; z-index: 1; margin: 2px 0 12px 46px; padding: 14px; display: grid; gap: 16px; background: var(--raised); border: 1px solid var(--line); border-radius: 14px; }
.pt-menu.enter { animation: menu-in 0.16s ease-out; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-4px); } }
.fld-label { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; font-size: 12px; font-weight: 600; }
.fld-note { color: var(--muted); font-weight: 500; }

.types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.type { display: flex; align-items: center; gap: 6px; min-width: 0; padding: 5px 7px; font-size: 12px; border-radius: 8px; background: var(--field); border-color: transparent; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.type span { font-size: 14px; line-height: 1; }
.type:hover { border-color: var(--line-2); }
.type.on { border-color: color-mix(in oklab, var(--tc), white 25%); background: color-mix(in srgb, var(--tc) 22%, var(--field)); }

.seg { display: flex; gap: 3px; padding: 3px; background: var(--field); border-radius: 9px; }
.seg button { flex: 1; padding: 5px 6px; font-size: 12px; white-space: nowrap; background: none; border: 0; border-radius: 7px; color: var(--muted); }
.seg button:hover { color: var(--text); }
.seg button.on { background: var(--line-2); color: var(--text); }
.pt-menu .seg + .hint { margin-top: 8px; }

.look { display: grid; grid-template-columns: 1fr 66px; gap: 8px; margin-top: 10px; }
.mini { margin: 0; font-size: 11.5px; }
.mini input { padding: 6px 8px; }
.mini.emoji input { text-align: center; font-size: 15px; padding: 4px; }

.swatches { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 4px; margin-top: 12px; }
.sw { position: relative; width: 22px; height: 22px; padding: 0; margin: 0; border: 0; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16); cursor: pointer; }
.sw:hover { border: 0; transform: scale(1.1); }
.sw.on { box-shadow: 0 0 0 2px var(--raised), 0 0 0 3.5px var(--text); }
.sw.auto { background: radial-gradient(circle, var(--sw) 0 42%, transparent 46%); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.sw.auto.on { box-shadow: inset 0 0 0 1.5px var(--line-2), 0 0 0 2px var(--raised), 0 0 0 3.5px var(--text); }
.sw.pick { background: conic-gradient(#ef4444, #f59e0b, #22c55e, #06b6d4, #6366f1, #ec4899, #ef4444); }
.sw.pick.on { background: var(--sw); }
.sw.pick input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

.photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.ph { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--field); cursor: grab; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.dragging { opacity: 0.35; }
.ph.drop-before { box-shadow: inset 3px 0 0 var(--text); }
.ph.drop-after { box-shadow: inset -3px 0 0 var(--text); }
.ph-x { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(8, 10, 14, 0.75); color: #fff; opacity: 0; }
.ph-x svg { width: 12px; height: 12px; }
.ph:hover .ph-x, .ph-x:focus-visible { opacity: 1; }
@media (hover: none) { .ph-x { opacity: 1; } }
.ph-add { aspect-ratio: 1; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 1.5px dashed var(--line-2); border-radius: 8px; color: var(--muted); font-size: 11px; cursor: pointer; }
.ph-add span { color: inherit; }
.ph-add svg { width: 18px; height: 18px; }
.ph-add:hover { color: var(--text); border-color: var(--muted); }
.ph-add.busy { pointer-events: none; }
.ph-add.busy svg { animation: spin 1s linear infinite; }

.fld.two { display: grid; grid-template-columns: 92px 1fr; gap: 8px; }
.gal-time { display: grid; grid-template-columns: 120px 1fr; align-items: end; gap: 10px; margin-top: 10px; }
.gal-per { padding-bottom: 8px; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.found { margin: -8px 0 0; font-size: 11px; color: var(--faint); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pt-actions { display: flex; justify-content: space-between; gap: 8px; margin-top: -4px; padding-top: 10px; border-top: 1px solid var(--line); }

.points-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.add-point { display: flex; align-items: center; gap: 12px; padding: 4px 8px 4px 0; background: none; border: 0; color: var(--muted); font-weight: 500; }
.add-node { width: 32px; height: 32px; display: grid; place-items: center; border: 1.5px dashed var(--line-2); border-radius: 50%; font-size: 18px; line-height: 1; }
.add-point:hover { color: var(--text); }
.add-point:hover .add-node { border-color: var(--route); color: var(--route); }
.import { margin-top: 10px; padding: 12px; background: var(--raised); border: 1px solid var(--line); border-radius: 12px; }
.import textarea { margin-top: 0; }
.btn-row { display: flex; gap: 8px; margin-top: 10px; }
.btn-row .primary { width: auto; flex: 1; }

.info { margin-top: 12px; font-size: 12px; color: var(--muted); min-height: 1.4em; line-height: 1.45; }
.info.busy { color: var(--warn); }
.info.error { color: var(--danger); }

.odo { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.odo-field { display: flex; align-items: center; gap: 8px; margin: 0; }
.odo-field span { color: var(--text); }
.odo-field input { width: 104px; margin: 0; text-align: right; font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.odo-field em { font-style: normal; color: var(--muted); }
.odo .check { margin: 0; }

/* ---------- карточки выбора ---------- */
.styles, .formats { display: grid; gap: 8px; margin-bottom: 14px; }
.styles { grid-template-columns: 1fr 1fr; }
.formats { grid-template-columns: repeat(3, 1fr); }
.style-card, .fmt { position: relative; margin: 0; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--field); cursor: pointer; }
.style-card input, .fmt input { position: absolute; opacity: 0; pointer-events: none; }
.style-card:hover, .fmt:hover { border-color: var(--line-2); }
.style-card:has(input:checked), .fmt:has(input:checked) { border-color: var(--route); background: color-mix(in srgb, var(--route) 8%, var(--field)); }
.style-card:has(input:focus-visible), .fmt:has(input:focus-visible) { outline: 2px solid var(--route); outline-offset: 2px; }
.style-card b, .fmt b { display: block; font-size: 13px; font-weight: 600; }
.style-card small, .fmt small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.3; }

.style-art { position: relative; display: block; height: 62px; margin-bottom: 8px; border-radius: 8px; overflow: hidden; background: linear-gradient(150deg, #33405a, #1b2130 70%); }
.style-art.stack i { position: absolute; left: 50%; top: 50%; width: 32px; height: 38px; margin: -19px 0 0 -16px; border-radius: 2px; background: #fbfaf6; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45); }
.style-art.stack i::after { content: ""; position: absolute; inset: 3px 3px 9px; background: linear-gradient(170deg, #8fd0f5 0 40%, #4f8f68 42%, #2f5c45); }
.style-art.stack i:nth-child(1) { transform: translate(-15px, 3px) rotate(-11deg); }
.style-art.stack i:nth-child(2) { transform: translate(13px, 2px) rotate(9deg); }
.style-art.stack i:nth-child(3) { transform: translate(-1px, -2px) rotate(-2deg); }
.style-art.slides i { position: absolute; left: 50%; top: 9px; width: 62px; height: 36px; margin-left: -31px; border-radius: 6px; background: linear-gradient(170deg, #f6c08a 0 35%, #c46b5a 55%, #5b3a6e); box-shadow: 0 0 0 1.5px #fff, 0 4px 10px rgba(0, 0, 0, 0.45); }
.style-art.slides em { position: absolute; left: 50%; bottom: 7px; width: 34px; height: 4px; margin-left: -17px; background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1.7px, transparent 2.2px) 0 0 / 7px 4px repeat-x; }
.style-art.slides em::before { content: ""; position: absolute; left: 0; top: 0; width: 11px; height: 4px; border-radius: 2px; background: var(--route); }

.fmt { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px 6px 10px; }
.fmt-art { display: block; width: var(--aw); height: var(--ah); margin: calc((30px - var(--ah)) / 2) 0 calc((30px - var(--ah)) / 2 + 8px); border: 2px solid var(--muted); border-radius: 4px; }
.fmt:has(input:checked) .fmt-art { border-color: var(--route); background: color-mix(in srgb, var(--route) 22%, transparent); }
.fmt small { margin-top: 2px; font-size: 11px; }

.total { display: flex; justify-content: space-between; align-items: baseline; margin: 10px 0 0; padding-top: 12px; border-top: 1px dashed var(--line); color: var(--muted); }
.total b { font-size: 18px; color: var(--text); font-variant-numeric: tabular-nums; }

/* ---------- низ панели ---------- */
.p-foot { padding: 12px 20px 16px; border-top: 1px solid var(--line); background: var(--panel); }
.foot-row { display: flex; align-items: center; gap: 16px; }
.foot-meta { display: grid; line-height: 1.25; min-width: 0; }
.foot-meta b { font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums; }
.foot-meta span { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
#btnExport { flex: 1; padding: 12px; font-size: 14px; }
#exportProgress { margin-bottom: 12px; }
.bar { height: 6px; background: var(--field); border-radius: 3px; overflow: hidden; }
#exportBar { height: 100%; width: 0; background: var(--route); transition: width 0.15s linear; }
.export-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 8px; font-size: 12px; color: var(--muted); }

/* ---------- превью ---------- */
#viewport { flex: 1; min-width: 0; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 24px 84px;
  background: radial-gradient(1200px 700px at 50% 30%, #181c26 0%, var(--ink) 70%); }
#stage-wrap { position: relative; flex: none; overflow: hidden; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px #262b3a; }
#stage { position: absolute; left: 0; top: 0; transform-origin: top left; background: #cfd8dc; cursor: pointer; }
#map { position: absolute; inset: 0; }
#hud { position: absolute; left: 0; top: 0; pointer-events: none; }
.maplibregl-ctrl-bottom-left, .maplibregl-ctrl-bottom-right { display: none; }

#playbar { position: absolute; left: 24px; right: 24px; bottom: 16px; height: 54px; display: flex; align-items: center; gap: 14px; padding: 0 16px 0 10px;
  background: rgba(23, 27, 35, 0.88); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 16px; }
#btnPlay { flex: none; width: 36px; height: 36px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--text); color: var(--ink); }
#btnPlay svg { width: 15px; height: 15px; }
#btnPlay .i-pause, #btnPlay.on .i-play { display: none; }
#btnPlay.on .i-pause { display: block; }
.scrub-wrap { position: relative; flex: 1; align-self: stretch; display: flex; align-items: center; }
#scrub { position: relative; z-index: 1; margin-top: 12px; }
#marks { position: absolute; left: 7px; right: 7px; top: 0; bottom: 0; pointer-events: none; }
.mark { position: absolute; top: 0; bottom: 0; width: var(--w); min-width: 0; padding: 0; border: 0; background: none; pointer-events: none; }
.mark-dot { position: absolute; left: 0; top: 5px; transform: translateX(-50%); font-size: 13px; line-height: 1; pointer-events: auto; cursor: pointer; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6)); }
.mark:hover .mark-dot { transform: translateX(-50%) scale(1.25); }
.mark-span { position: absolute; left: 0; right: 0; top: 23px; height: 3px; border-radius: 2px; background: var(--c); opacity: 0.85; }
#timeLabel { flex: none; min-width: 84px; text-align: right; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }

@media (max-width: 820px) {
  body { flex-direction: column; overflow: auto; }
  #panel { width: 100%; height: auto; max-height: 60vh; border-right: 0; border-bottom: 1px solid var(--line); }
  #viewport { min-height: 60vh; }
}
@media (prefers-reduced-motion: reduce) {
  .pt-menu.enter { animation: none; }
  .pt-state.busy, .ph-add.busy svg { animation-duration: 2.4s; }
}
