/* Barista's Gold — booth sign-up
   Two themes: "milk" (light) and "espresso" (dark). The stage (logo band)
   stays black in both, because the logo is drawn on black. */

:root {
  --font-display: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Commissioner", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gold: #D2BE7E;          /* sampled from the logo */
  --gold-hover: #C3AD69;
  --on-gold: #0E0C08;
  --stage: #000000;
  --on-stage: #FFFFFF;
  --on-stage-soft: #B8B0A0;

  /* milk */
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --surface-2: #F1EDE3;
  --ink: #17140F;
  --ink-soft: #5E574B;
  --line: #DCD5C5;
  --line-strong: #B9B09C;
  --accent: #7A6530;         /* gold, darkened to read on milk */
  --danger: #B3261E;
  --focus: #7A6530;
  --shadow: 0 1px 2px rgba(23, 20, 15, .06), 0 12px 32px rgba(23, 20, 15, .08);
  --backdrop: rgba(12, 10, 7, .55);

  --radius: 4px;
  --gutter: 16px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #000000;
  --surface: #121110;
  --surface-2: #1B1916;
  --ink: #F3EFE6;
  --ink-soft: #A9A193;
  --line: #2E2A24;
  --line-strong: #4A443A;
  --accent: #D2BE7E;
  --danger: #F2877A;
  --focus: #D2BE7E;
  --shadow: 0 0 0 1px #2E2A24, 0 16px 40px rgba(0, 0, 0, .6);
  --backdrop: rgba(0, 0, 0, .72);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #000000;
    --surface: #121110;
    --surface-2: #1B1916;
    --ink: #F3EFE6;
    --ink-soft: #A9A193;
    --line: #2E2A24;
    --line-strong: #4A443A;
    --accent: #D2BE7E;
    --danger: #F2877A;
    --focus: #D2BE7E;
    --shadow: 0 0 0 1px #2E2A24, 0 16px 40px rgba(0, 0, 0, .6);
    --backdrop: rgba(0, 0, 0, .72);
    color-scheme: dark;
  }
}

/* ------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html:has(dialog[open]) { overflow: hidden; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}

img, svg { display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

svg path, svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

/* ------------------------------------------------------------ stage (logo band) */

.stage {
  background: var(--stage);
  color: var(--on-stage);
  border-bottom: 1px solid var(--line);
  --focus: var(--gold);
}

.stage__bar {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 8px;
  padding: max(12px, env(safe-area-inset-top)) var(--gutter) 12px;
}
.stage__bar > :last-child { justify-self: end; }

.stage__logo {
  justify-self: center;
  height: clamp(40px, 10vw, 54px);
  width: auto;
}

.stage--tall {
  display: flex;
  flex-direction: column;
  border-bottom: 0;
  min-height: min(56dvh, 520px);
  padding-bottom: 72px;
}
.stage--tall .stage__bar { grid-template-columns: 1fr auto; }

.stage__logo--large {
  height: auto;
  width: min(76vw, 380px);
  margin: auto auto 0;
  animation: rise .7s cubic-bezier(.2, .7, .2, 1) both;
}

.stage__event {
  margin: 18px auto auto;
  padding: 0 var(--gutter);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-stage-soft);
  text-align: center;
  animation: rise .7s .12s cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -4px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}
.icon-btn:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

/* ------------------------------------------------------------ theme switch */

.theme-switch {
  padding: 8px 0;
  border: 0;
  background: none;
}
.theme-switch__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: #1C1A17;
}
.theme-switch__icon { width: 15px; height: 15px; color: var(--on-stage-soft); }
.theme-switch__icon circle, .theme-switch__icon path { stroke-width: 2; }
.theme-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform .25s cubic-bezier(.3, .7, .2, 1);
}
.theme-switch[aria-checked="true"] .theme-switch__thumb { transform: translateX(28px); }

/* ------------------------------------------------------------ fields */

.field { display: flex; flex-direction: column; min-width: 0; }

.field__label {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.field__input {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 1.0625rem;   /* ≥16px keeps iOS from zooming on focus */
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field__input::placeholder { color: var(--ink-soft); opacity: .7; }
.field__input:hover { border-color: var(--ink-soft); }
.field__input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 45%, transparent);
}
textarea.field__input { resize: vertical; min-height: 84px; }
select.field__input {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.field__input[aria-invalid="true"] { border-color: var(--danger); }
.field__input[aria-invalid="true"]:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 30%, transparent); }

.field__error, .form-error {
  margin: 6px 0 0;
  font-size: .875rem;
  font-weight: 500;
  color: var(--danger);
}
.form-error { margin: 0; }

/* ------------------------------------------------------------ gold band (primary action) */

.band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: 0;           /* square, like the bar in the logo */
  background: var(--gold);
  color: var(--on-gold);
  transition: background-color .15s ease, transform .1s ease;
}
.band:hover { background: var(--gold-hover); }
.band:active { transform: translateY(1px); }
.band:disabled { cursor: progress; }

.band__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.band__arrow {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  transition: transform .2s ease;
}
.band:hover .band__arrow { transform: translateX(4px); }

/* The "pour": a lighter layer fills the band while the entry is saved. */
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .38);
  transform: scaleX(0);
  transform-origin: left;
}
.band.is-sending::after { animation: pour 1.6s cubic-bezier(.2, .6, .2, 1) forwards; }
.band.is-done::after { transform: scaleX(1); animation: pour-out .6s .15s ease forwards; }

@keyframes pour { to { transform: scaleX(.85); } }
@keyframes pour-out { from { transform: scaleX(1); opacity: 1; } to { transform: scaleX(1); opacity: 0; } }

/* ------------------------------------------------------------ sign in */

.view--login { min-height: 100dvh; display: flex; flex-direction: column; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.login {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: calc(100% - 2 * var(--gutter));
  max-width: 420px;
  margin: -44px auto 48px;
  padding: 28px 22px 24px;
  animation: rise .6s .2s cubic-bezier(.2, .7, .2, 1) both;
}
.login__title {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.1;
}
.login .field__label { font-size: .9375rem; }
.login .band { margin-top: 6px; }

/* ------------------------------------------------------------ customer form */

.sheet { padding: 36px var(--gutter) max(64px, env(safe-area-inset-bottom)); }

.customer { max-width: 780px; margin: 0 auto; }

.eyebrow {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-wrap: balance;
}

.customer__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-wrap: balance;
}

.customer__lede {
  margin: 12px 0 32px;
  color: var(--ink-soft);
}

.customer__grid {
  display: grid;
  gap: 22px;
}

.consent {
  margin: 32px 0 24px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--surface-2);
}
.consent__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px 14px;
}
.consent__box {
  appearance: none;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 2px solid var(--line-strong);
  border-radius: 3px;
  background: var(--surface) center / 18px no-repeat;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.consent__box:hover { border-color: var(--accent); }
.consent__box:checked {
  border-color: var(--gold);
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%230E0C08' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.consent__box[aria-invalid="true"] { border-color: var(--danger); }
.consent__label { padding-top: 2px; cursor: pointer; line-height: 1.45; }

.chip {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chip:hover { background: color-mix(in srgb, var(--gold) 18%, transparent); }

.consent .field__error { margin-left: 42px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--on-gold); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--gold:disabled { opacity: .45; cursor: not-allowed; }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink-soft); background: var(--surface-2); }

/* ------------------------------------------------------------ dialogs */

dialog {
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: var(--surface);
  color: var(--ink);
}
dialog::backdrop { background: var(--backdrop); backdrop-filter: blur(2px); }

.modal[open] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  animation: modal-in .22s cubic-bezier(.2, .7, .2, 1);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px); } }

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(12px, env(safe-area-inset-top)) var(--gutter) 12px;
  border-bottom: 1px solid var(--line);
}
.modal__kicker {
  margin: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal__body { flex: 1; overflow: auto; overscroll-behavior: contain; }
.modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px var(--gutter) max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

/* consent document */
.doc {
  padding: 24px var(--gutter) 32px;
  font-size: .96875rem;
  line-height: 1.65;
}
.doc > * { max-width: 38rem; margin-left: auto; margin-right: auto; }
.doc p { margin-top: 0; margin-bottom: 1em; text-align: justify; hyphens: auto; }
.doc__title {
  margin-top: 0;
  margin-bottom: .35em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}
.doc p.doc__to {
  margin-bottom: 1.8em;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-align: center;
  color: var(--accent);
}
.doc h3 {
  margin-top: 1.8em;
  margin-bottom: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.25;
}
.doc__sign {
  margin-top: 2.5em;
  padding-top: 1em;
  text-align: right;
}
.doc__sign p { margin-bottom: .25em; text-align: right; }
.doc p.doc__sign-name {
  margin: .6em 0 0 auto;
  padding-bottom: .15em;
  border-bottom: 1px solid var(--line-strong);
  width: fit-content;
  min-width: 16ch;
  font-family: var(--font-display);
  font-size: 1.375rem;
}
.doc p.doc__sign-hint { font-size: .8125rem; color: var(--ink-soft); }

/* PIN — a small card at every screen size */
.modal--pin[open] {
  width: min(380px, calc(100% - 2 * var(--gutter)));
  height: fit-content;   /* "auto" would stretch: a modal dialog is pinned top and bottom */
  margin: auto;
  box-shadow: var(--shadow);
}
.pin { display: flex; flex-direction: column; gap: 14px; padding: 18px 20px 20px; }
.pin__head { display: flex; align-items: center; justify-content: space-between; }
.pin__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.1;
}
.pin__hint { margin: -6px 0 4px; font-size: .9375rem; color: var(--ink-soft); }
.pin__input {
  min-height: 60px;
  font-size: 1.75rem;
  letter-spacing: .5em;
  text-indent: .5em;          /* balances the trailing letter-spacing */
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* drawer */
.drawer[open] {
  display: flex;
  flex-direction: column;
  width: min(86vw, 340px);
  height: 100%;
  margin: 0 auto 0 0;
  background: var(--stage);
  color: var(--on-stage);
  border-right: 1px solid #2E2A24;
  --focus: var(--gold);
  animation: drawer-in .26s cubic-bezier(.2, .7, .2, 1);
}
@keyframes drawer-in { from { transform: translateX(-100%); } }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(16px, env(safe-area-inset-top)) var(--gutter) 16px;
  border-bottom: 1px solid #2E2A24;
}
.drawer__logo { height: 40px; width: auto; }
.drawer__nav { display: flex; flex-direction: column; padding: 12px 0; }
.drawer__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 var(--gutter);
  border: 0;
  border-left: 4px solid transparent;
  background: none;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
}
.drawer__item svg { color: var(--gold); flex: none; }
.drawer__item:hover { background: #151412; border-left-color: var(--gold); }

/* data table modal */
.modal__head--data { flex-wrap: wrap; row-gap: 10px; }
.data-head { flex: 1 1 auto; min-width: 0; }
.data-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
}
.data-head__count { margin: 2px 0 0; font-size: .8125rem; color: var(--ink-soft); }
.btn--download { order: 3; flex: 1 1 100%; }

.filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 12px var(--gutter) 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.filters__field { display: flex; flex-direction: column; min-width: 0; }
.filters__field--search { grid-column: 1 / -1; }
.filters__label {
  margin-bottom: 4px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.filters .field__input { min-height: 44px; padding-top: 9px; padding-bottom: 9px; font-size: 1rem; }
.filters__clear { grid-column: 1 / -1; }

.data-state {
  margin: 0;
  padding: 48px var(--gutter);
  text-align: center;
  color: var(--ink-soft);
}

.data-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }

/* Phones: every entry is a card. */
.data-table thead { display: none; }
.data-table tbody { display: block; padding: 12px var(--gutter) 24px; }
.data-table tr {
  display: block;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.data-table td {
  display: grid;
  grid-template-columns: minmax(0, 40%) 1fr;
  gap: 10px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.data-table td::before {
  content: attr(data-label);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 2px;
  white-space: normal;
  overflow-wrap: normal;
}
.data-table td.cell-num {
  display: flex;
  justify-content: space-between;
  border-top: 0;
  background: var(--surface-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
}
.data-table td.cell-num::before { content: none; }
.data-table td.cell-num span { font-family: var(--font-body); font-weight: 400; font-size: .8125rem; color: var(--ink-soft); }
.data-table td.cell-date { display: none; }   /* shown in the card header instead */

/* ------------------------------------------------------------ toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 2 * var(--gutter));
  padding: 14px 18px 14px 16px;
  border-left: 5px solid var(--gold);
  background: var(--stage);
  color: var(--on-stage);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  font-weight: 500;
  transform: translateX(-50%);
  animation: toast-in .3s cubic-bezier(.2, .7, .2, 1);
}
.toast--error { border-left-color: #F2877A; }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px); } }

/* ------------------------------------------------------------ wider screens */

@media (min-width: 720px) {
  :root { --gutter: 28px; }

  .customer__grid { grid-template-columns: 1fr 1fr; gap: 26px 24px; }
  .field--wide { grid-column: 1 / -1; }
  .sheet { padding-top: 56px; }

  .consent { padding: 20px 22px; }
  .consent__row { grid-template-columns: auto 1fr auto; align-items: center; }
  .chip { grid-column: auto; }

  .band--submit { min-height: 72px; }
  .band--submit .band__label { font-size: 1.875rem; }

  .modal--doc[open] {
    width: min(760px, calc(100% - 48px));
    height: fit-content;
    max-height: calc(100dvh - 64px);
    margin: auto;
    box-shadow: var(--shadow);
  }
  .modal--data[open] {
    width: min(1400px, calc(100% - 48px));
    height: calc(100dvh - 48px);
    margin: auto;
    box-shadow: var(--shadow);
  }

  .btn--download { order: 0; flex: 0 0 auto; }
  .filters { grid-template-columns: minmax(220px, 2fr) 1fr 1fr auto; align-items: end; }
  .filters__field--search { grid-column: auto; }
  .filters__clear { grid-column: auto; }
}

/* Tablets and up: a real table. */
@media (min-width: 900px) {
  .data-table { min-width: 1180px; }
  .data-table thead { display: table-header-group; }
  .data-table tbody { display: table-row-group; padding: 0; }
  .data-table tr { display: table-row; margin: 0; border: 0; background: none; }
  .data-table tbody tr:nth-child(even) { background: var(--surface-2); }
  .data-table tbody tr:hover { background: color-mix(in srgb, var(--gold) 14%, transparent); }
  .data-table th, .data-table td {
    display: table-cell;
    padding: 12px 14px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
  }
  .data-table td { overflow-wrap: normal; }
  .data-table td::before { content: none; }
  .data-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--surface);
    box-shadow: inset 0 -2px 0 var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: pre-line;
  }
  .data-table td.cell-num {
    display: table-cell;
    background: none;
    font-size: 1rem;
    color: var(--ink-soft);
    white-space: nowrap;
  }
  .data-table td.cell-nowrap { white-space: nowrap; }
  .data-table td.cell-num span { display: none; }
  .data-table td.cell-long { min-width: 240px; }
  .data-table td.cell-date { display: table-cell; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink-soft); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
  }
}
