/* SuperSplit: dark, violet, card-heavy. Palette echoes slice.bank.in:
   near-black canvas, one vivid purple that does all the work, mint/coral
   only for money direction.

   Type scale: every font-size is in rem, and the root size grows smoothly
   with the viewport, so text is comfortable on a phone and a Mac without
   any breakpoint jumps. Widths work the same way: one container that
   grows with the window and stops at --app-max. */

@font-face {
  font-family: 'Geist';
  src: url('../assets/fonts/geist-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07060d;
  --bg-elev: #0f0d1a;
  --surface: #16132a;
  --surface-2: #1f1b3a;
  --surface-3: #2a2450;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --brand: #7c5cff;
  --brand-soft: #a78bfa;
  --brand-dim: rgba(124, 92, 255, 0.16);
  --brand-grad: linear-gradient(135deg, #7c5cff 0%, #a855f7 52%, #ff5fa2 100%);

  --text: #f5f3ff;
  --text-dim: #b3accf;
  --muted: #8b83ad;

  --good: #3de0a0;
  --good-dim: rgba(61, 224, 160, 0.14);
  --bad: #ff6b81;
  --bad-dim: rgba(255, 107, 129, 0.14);
  --warn: #ffc24b;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* One container for the whole app. The gutter is a constant so the edge
     never shifts as the window resizes: on a phone that means near full
     width, and on a desktop the container simply grows until it caps. */
  --app-max: 1080px;
  --sheet-max: 640px;
  --gutter: 16px;

  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);

  --shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  --shadow-btn: 0 6px 18px rgba(6, 4, 16, 0.5);

  font-size: clamp(15px, 0.42vw + 13.4px, 17.5px);
  color-scheme: dark;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overscroll-behavior-y: none;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(1100px 560px at 12% -12%, rgba(124, 92, 255, 0.22), transparent 62%),
    radial-gradient(820px 440px at 108% 4%, rgba(255, 95, 162, 0.13), transparent 60%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input, button, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--brand-soft); }

.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* ------------------------------------------------------------- app shell */

#app { min-height: 100%; display: flex; flex-direction: column; }

.screen { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }

/* Every full-width band centres its contents on the same grid. */
.wrap {
  width: 100%;
  max-width: var(--app-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.appbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: calc(var(--safe-t) + 11px) 0 11px;
  background: linear-gradient(180deg, rgba(7, 6, 13, 0.94), rgba(7, 6, 13, 0.74));
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.appbar__inner { display: flex; align-items: center; gap: 12px; }
.appbar__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; flex: 1; min-width: 0; }
.appbar__title small { display: block; font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.appbar__title span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.content { flex: 1; padding-top: 16px; padding-bottom: calc(124px + var(--safe-b)); }

.brandmark { display: flex; align-items: center; gap: 10px; }
.brandmark svg { width: 32px; height: 32px; border-radius: 9px; }
.brandmark b { font-size: 1.2rem; letter-spacing: -0.02em; }
.brandmark b i { font-style: normal; color: var(--brand-soft); }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 0.72em 1.2em;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--surface-2);
  color: var(--text);
  transition: transform 0.12s ease, filter 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.45; pointer-events: none; }
.btn svg { flex: none; }
.btn--primary { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-btn); }
.btn--ghost { background: transparent; box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--quiet { background: rgba(255, 255, 255, 0.07); }
.btn--danger { background: var(--bad-dim); color: var(--bad); box-shadow: inset 0 0 0 1px rgba(255, 107, 129, 0.3); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 0.5em 0.9em; font-size: 0.85rem; }
.btn--icon { padding: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); }
.btn--icon svg { width: 20px; height: 20px; display: block; }

.fab {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(22px + var(--safe-b));
  z-index: 45;
  padding: 0.92em 1.6em;
  border: none;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 650;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.fab:active { transform: translateX(-50%) scale(0.96); }
.fab svg { width: 19px; height: 19px; flex: none; }

/* ----------------------------------------------------------------- cards */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
}
.card--tap { width: 100%; text-align: left; display: block; }
.card--tap:active { transform: scale(0.99); }

.stack { display: flex; flex-direction: column; gap: 12px; }
.stack--sm { gap: 8px; }
.row { display: flex; align-items: center; gap: 12px; }
.row--between { justify-content: space-between; }
.row--wrap { flex-wrap: wrap; }
.grow { flex: 1; min-width: 0; }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Card collections use as many columns as the window can hold, so the
   layout fills a desktop without any width jumping around. */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 12px;
  align-items: start;
}
.cards--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr)); }

/* Hero + insights sit side by side once there is room, and the list below
   always spans the full container. */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 12px;
  align-items: start;
}
.span-all { grid-column: 1 / -1; }

.section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 22px 2px 10px;
}
.section-title:first-child { margin-top: 4px; }

.muted { color: var(--muted); }
.dim { color: var(--text-dim); }
.small { font-size: 0.87rem; }
.tiny { font-size: 0.8rem; }
.good { color: var(--good); }
.bad { color: var(--bad); }
.center { text-align: center; }

.hero {
  border-radius: var(--r-xl);
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(124, 92, 255, 0.3), rgba(255, 95, 162, 0.14) 60%, transparent),
    var(--surface);
  border: 1px solid var(--line-strong);
}
.hero__amount { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; }

/* --------------------------------------------------------------- avatars */

.avatar { border-radius: 50%; display: block; flex: none; background: var(--surface-2); }
.avatar svg { display: block; border-radius: 50%; }
.avatar--ring { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px var(--brand); }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .avatar { margin-left: -9px; box-shadow: 0 0 0 2.5px var(--surface); }
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar-more {
  margin-left: -9px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--surface-3);
  box-shadow: 0 0 0 2.5px var(--surface);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

/* ---------------------------------------------------------------- inputs */

.field { display: block; }
.field__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.8em 0.9em;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.input:focus { border-color: var(--brand); background: var(--bg-elev); }
.input::placeholder { color: #6c6590; }
textarea.input { resize: vertical; min-height: 74px; }
select.input { appearance: none; background-image: none; }

.input-money {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0 0.9em;
}
.input-money:focus-within { border-color: var(--brand); }
.input-money__sym { color: var(--muted); font-weight: 650; }
.input-money input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  padding: 0.8em 0;
  font-variant-numeric: tabular-nums;
}
.input-money--big { border: none; background: none; padding: 0; }
.input-money--big input { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; padding: 4px 0 10px; }
.input-money--big .input-money__sym { font-size: 1.7rem; font-weight: 700; color: var(--brand-soft); }
.input-money--sm { border-radius: var(--r-sm); padding: 0 0.6em; }
.input-money--sm input { padding: 0.55em 0; font-size: 0.9rem; }
.input-money--err, .input--err { border-color: var(--bad); }

/* --------------------------------------------------------------- segment */

.segment {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.segment button {
  flex: 1;
  border: none;
  background: none;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.5em 0.6em;
  font-size: 0.87rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.segment button[aria-selected='true'] { background: var(--brand); color: #fff; }
.segment--sm button { padding: 0.42em 0.55em; font-size: 0.82rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: border-color 0.14s ease, background 0.14s ease, color 0.14s ease;
}
.chip[aria-pressed='true'] { border-color: var(--brand); background: var(--brand-dim); color: var(--text); }
.chip--plain { padding: 6px 12px; }
.chip:active { transform: scale(0.96); }

/* ----------------------------------------------------------------- lists */

.list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: var(--surface);
  width: 100%;
  text-align: left;
  border: none;
  color: inherit;
  font-size: 1rem;
}
.list__item:active { background: var(--surface-2); }

.expense__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-soft);
  flex: none;
}
.expense__meta { font-size: 0.83rem; color: var(--muted); }
.amount-right { text-align: right; flex: none; }
.amount-right b { display: block; font-weight: 700; }
.amount-right span { font-size: 0.76rem; color: var(--muted); }

.day-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 18px 2px 8px;
}

/* ---------------------------------------------------------------- sheets */

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 10, 0.68);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.scrim--in { opacity: 1; }

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
  width: 100%;
  max-width: var(--sheet-max);
  z-index: 100;
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border-top: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.sheet--in { transform: translateY(0); }
.sheet--full { top: 0; max-height: none; border-radius: 0; }
.sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px var(--gutter) 12px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.sheet--full .sheet__head { padding-top: calc(var(--safe-t) + 14px); }
.sheet__title { font-size: 1.05rem; font-weight: 700; flex: 1; min-width: 0; }
.sheet__body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 16px var(--gutter) 22px; flex: 1; }
.sheet__foot {
  flex: none;
  padding: 12px var(--gutter) calc(12px + var(--safe-b));
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
  display: flex;
  gap: 10px;
}
.sheet__grab { width: 38px; height: 4px; border-radius: 2px; background: var(--line-strong); margin: 8px auto 0; }

/* --------------------------------------------------------------- toaster */

.toaster {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(96px + var(--safe-b));
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  padding-inline: var(--gutter);
}
.toast {
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 550;
  text-align: center;
  box-shadow: var(--shadow);
  animation: toast-in 0.22s ease;
  max-width: min(92vw, 460px);
}
.toast--bad { background: #43172a; border-color: rgba(255, 107, 129, 0.4); }
.toast--good { background: #10402f; border-color: rgba(61, 224, 160, 0.35); }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

/* -------------------------------------------------------------- settling */

.debt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.debt__arrow { color: var(--muted); flex: none; display: flex; align-items: center; }
.debt__body { flex: 1; min-width: 0; }
.debt__amount { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.debt__actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.debt__actions .btn { flex: 1 1 auto; }

.breakdown { border-top: 1px dashed var(--line-strong); margin-top: 12px; padding-top: 10px; }
.breakdown__row { display: flex; justify-content: space-between; gap: 10px; padding: 5px 0; font-size: 0.9rem; }
.breakdown__row span:first-child { color: var(--text-dim); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.breakdown__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 700; }
.breakdown__row--total span:first-child { color: var(--text); }
.breakdown__row--sub { border-top: 1px solid var(--line); margin-top: 2px; padding-top: 6px; }
.breakdown__row--sub span { color: var(--muted); }
.breakdown__head { font-size: 0.8rem; font-weight: 700; color: var(--brand-soft); margin: 12px 0 4px; }
.breakdown__head:first-child { margin-top: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-dim);
}
.pill--good { background: var(--good-dim); color: var(--good); }
.pill--bad { background: var(--bad-dim); color: var(--bad); }
.pill--brand { background: var(--brand-dim); color: var(--brand-soft); }

/* ---------------------------------------------------------------- splits */

.split-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.split-row[data-off='1'] { opacity: 0.45; }
.split-row__input { width: 96px; flex: none; }
.split-row__value { font-variant-numeric: tabular-nums; font-size: 0.87rem; color: var(--muted); flex: none; }
.split-check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex: none;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
}
.split-check[aria-pressed='true'] { background: var(--brand); border-color: var(--brand); }
.split-check svg { width: 13px; height: 13px; opacity: 0; }
.split-check[aria-pressed='true'] svg { opacity: 1; }

.tax-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px; }
.tax-card + .tax-card { margin-top: 8px; }

.banner {
  border-radius: var(--r-md);
  padding: 10px 13px;
  font-size: 0.87rem;
  font-weight: 550;
  background: var(--bad-dim);
  color: var(--bad);
  border: 1px solid rgba(255, 107, 129, 0.28);
}
.banner ul { margin: 4px 0 0; padding-left: 18px; }
.banner li { margin: 2px 0; }
.banner--info { background: var(--brand-dim); color: var(--brand-soft); border-color: rgba(124, 92, 255, 0.3); }
.banner--good { background: var(--good-dim); color: var(--good); border-color: rgba(61, 224, 160, 0.3); }

/* ---------------------------------------------------------------- charts */

.legend { display: flex; flex-direction: column; gap: 7px; }
.legend__item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; }
.legend__dot { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.legend__name { flex: 1; min-width: 0; color: var(--text-dim); }
.legend__pct { color: var(--muted); font-size: 0.78rem; min-width: 38px; text-align: right; }

.donut { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.donut > svg { flex: none; }

.statrow { display: flex; border-top: 1px solid var(--line); margin-top: 12px; padding-top: 10px; }
.statrow__cell { flex: 1; min-width: 0; padding-right: 10px; }
.statrow__cell + .statrow__cell { border-left: 1px solid var(--line); padding-left: 12px; }
.statrow__cell b { font-size: 0.95rem; }

.chart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.chart-head h4 { margin: 0; font-size: 0.95rem; font-weight: 650; }

/* -------------------------------------------------- boot splash / no-js */

/* Shown in the HTML before the app takes over, so the page says what it is
   even to a reader that never runs the script. */
.boot {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px var(--gutter);
}
.boot__mark { border-radius: 18px; }
.boot__name { margin: 4px 0 0; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; }
.boot__tag { margin: 0; max-width: 44ch; color: var(--text-dim); font-size: 0.95rem; }
.boot__spin { margin-top: 8px; }

.noscript {
  max-width: 62ch;
  margin: 0 auto;
  padding: 40px var(--gutter);
  color: var(--text-dim);
}
.noscript h2 { color: var(--text); margin: 0 0 10px; }
.noscript h3 { color: var(--text); margin: 26px 0 8px; font-size: 1rem; }
.noscript li { margin: 6px 0; }

/* Keyboard users get a clear ring; pointer users see nothing extra. */
:focus-visible {
  outline: 2px solid var(--brand-soft);
  outline-offset: 2px;
  border-radius: 6px;
}
.btn:focus-visible, .chip:focus-visible, .fab:focus-visible { outline-offset: 3px; }

/* ------------------------------------------------------------ empty/misc */

.empty { text-align: center; padding: 46px 20px; color: var(--muted); }
.empty > svg { width: 68px; height: 68px; opacity: 0.75; margin-bottom: 14px; }
.empty h3 { color: var(--text); margin: 0 0 6px; font-size: 1.15rem; }
.empty p { margin: 0 auto; max-width: 36ch; font-size: 0.95rem; }

.share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.share-opt {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}
.share-opt[aria-selected='true'] { border-color: var(--brand); background: var(--brand-dim); color: var(--text); }
.share-opt svg { width: 24px; height: 24px; }

.preview {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0913;
  max-height: 46vh;
  overflow-y: auto;
}
.preview img { display: block; width: 100%; }
.preview pre {
  margin: 0;
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-dim);
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
