:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0e0d;
  --surface: #121715;
  --surface-2: #181f1c;
  --surface-3: #202824;
  --sidebar: #0e1210;
  --topbar: rgba(11, 14, 13, .88);
  --input: #0e1311;
  --line: #2a332f;
  --text: #f2f7f4;
  --text-soft: #d6dfda;
  --label: #c5d0ca;
  --muted: #91a099;
  --accent: #64e39a;
  --accent-hover: #83edac;
  --accent-2: #2cbf75;
  --on-accent: #07130c;
  --brand-text: #07130c;
  --brand-end: #b8f7d0;
  --danger: #ff6b6b;
  --on-danger: #1d0707;
  --danger-soft: #ff9393;
  --warning: #f2be5c;
  --info: #70a5ff;
  --subtle-fill: rgba(255, 255, 255, .012);
  --row-hover: rgba(255, 255, 255, .018);
  --hero-glow: rgba(100, 227, 154, .15);
  --focus-ring: rgba(100, 227, 154, .14);
  --login-card: rgba(18, 23, 21, .94);
  --backdrop: rgba(0, 0, 0, .72);
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --panel-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f3f7f5;
  --surface: #ffffff;
  --surface-2: #f3f7f5;
  --surface-3: #e8f0eb;
  --sidebar: #fbfdfc;
  --topbar: rgba(243, 247, 245, .9);
  --input: #ffffff;
  --line: #d7e2dc;
  --text: #14231b;
  --text-soft: #2c4035;
  --label: #344b3f;
  --muted: #66786e;
  --accent: #18794e;
  --accent-hover: #126840;
  --accent-2: #168a4d;
  --on-accent: #ffffff;
  --brand-text: #07130c;
  --brand-end: #78dca1;
  --danger: #d94444;
  --on-danger: #ffffff;
  --danger-soft: #b12f2f;
  --warning: #a96808;
  --info: #316bc2;
  --subtle-fill: rgba(20, 35, 27, .025);
  --row-hover: rgba(24, 121, 78, .045);
  --hero-glow: rgba(24, 121, 78, .12);
  --focus-ring: rgba(24, 121, 78, .14);
  --login-card: rgba(255, 255, 255, .95);
  --backdrop: rgba(19, 34, 26, .48);
  --shadow: 0 24px 70px rgba(31, 58, 43, .17);
  --panel-shadow: 0 10px 34px rgba(31, 58, 43, .07);
}

* { box-sizing: border-box; }
html { min-width: 300px; min-height: 100%; background: var(--bg); }
html, body { margin: 0; }
body { min-height: 100vh; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; overflow-x: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .6; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(1.4rem, 2vw, 2rem); letter-spacing: -.04em; }
h2 { margin-bottom: 0; font-size: 1.25rem; letter-spacing: -.025em; }
h3 { margin-bottom: 0; font-size: 1rem; }
.muted { color: var(--muted); }
.eyebrow { margin: 0 0 4px; color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hidden { display: none !important; }
.small-text { font-size: .8rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

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

.app-shell { display: grid; grid-template-columns: 248px minmax(0, 1fr); min-height: 100vh; }
.sidebar { position: sticky; top: 0; z-index: 30; height: 100vh; padding: max(24px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom)); border-right: 1px solid var(--line); background: var(--sidebar); display: flex; flex-direction: column; }
.sidebar nav { display: grid; gap: 6px; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.sidebar-scrim { display: none; }
.brand { display: flex; align-items: center; gap: 12px; padding: 4px 8px 28px; }
.brand strong, .brand span { display: block; }
.brand strong { font-size: 1.02rem; }
.brand span { color: var(--muted); font-size: .78rem; }
.brand-mark { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--brand-end)); color: var(--brand-text); font-weight: 900; font-size: 1.25rem; box-shadow: 0 12px 34px color-mix(in srgb, var(--accent) 22%, transparent); }
.brand-mark.small { width: 38px; height: 38px; border-radius: 12px; font-size: .95rem; }
.nav-item { width: 100%; min-height: 44px; border: 0; border-radius: 12px; padding: 11px 13px; background: transparent; color: var(--muted); text-align: left; display: flex; align-items: center; gap: 12px; font-weight: 650; }
.nav-item span { width: 18px; color: inherit; font-size: 1.12rem; }
.nav-item:hover { color: var(--text); background: var(--surface-2); }
.nav-item.active { color: var(--on-accent); background: var(--accent); }
.sidebar-foot { margin-top: auto; padding: 14px 12px; color: var(--muted); display: flex; align-items: center; gap: 9px; font-size: .8rem; border-top: 1px solid var(--line); }
.status-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 0 4px var(--focus-ring); }

.workspace { min-width: 0; }
.topbar { min-height: 92px; position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px clamp(20px, 3vw, 44px); border-bottom: 1px solid var(--line); background: var(--topbar); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.topbar-title { min-width: 0; }
.topbar-title h1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 0; }
.admin-chip { max-width: 180px; padding: 8px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); }
.content { width: 100%; max-width: 1720px; margin: 0 auto; padding: 30px clamp(20px, 3vw, 44px) max(64px, env(safe-area-inset-bottom)); }
.view { display: none; animation: rise .22s ease; }
.view.active { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(5px); } }

.theme-picker { position: relative; min-width: 116px; height: 40px; padding: 0 9px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-2); color: var(--muted); }
.theme-picker:focus-within { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--focus-ring); }
.theme-picker .theme-icon { color: var(--accent); font-size: 1rem; }
.theme-picker select { width: 78px; min-width: 0; height: 100%; padding: 0 3px; border: 0; background: transparent; color: var(--text); font-size: .78rem; font-weight: 750; box-shadow: none; }
.theme-picker select:focus { box-shadow: none; }

.panel, .hero-panel { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--panel-shadow); overflow: hidden; }
.panel-head { min-height: 74px; padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-head p { margin-bottom: 0; }
.panel-head.responsive { flex-wrap: wrap; }
.padded { padding: 22px; }
.danger-accent { border-color: color-mix(in srgb, var(--danger) 30%, var(--line)); }
.hero-panel { padding: 30px; margin-bottom: 22px; display: flex; justify-content: space-between; align-items: center; gap: 30px; background: radial-gradient(circle at 90% 0%, var(--hero-glow), transparent 34%), var(--surface); }
.hero-panel p:last-child { max-width: 640px; margin: 10px 0 0; color: var(--muted); }
.toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }

.grid { display: grid; gap: 20px; margin-top: 20px; }
.grid.equal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.two-thirds { grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-grid { grid-template-columns: 320px minmax(0, 1fr); margin-top: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); gap: 14px; margin-bottom: 20px; }
.stat-grid.compact { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
.stat-card { min-width: 0; min-height: 132px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); display: flex; flex-direction: column; justify-content: space-between; }
.stat-card span { color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.stat-card strong { overflow-wrap: anywhere; font-size: clamp(1.45rem, 2.5vw, 2.15rem); letter-spacing: -.05em; }
.stat-card small { color: var(--accent); }

.button, .icon-button { min-height: 40px; border: 1px solid transparent; border-radius: 11px; transition: transform .16s ease, background-color .16s ease, border-color .16s ease; font-weight: 750; }
.button { padding: 10px 15px; }
.button:hover, .icon-button:hover { transform: translateY(-1px); }
.button.primary { color: var(--on-accent); background: var(--accent); }
.button.primary:hover { background: var(--accent-hover); }
.button.secondary { color: var(--text); background: var(--surface-3); border-color: var(--line); }
.button.ghost { color: var(--muted); background: transparent; border-color: var(--line); }
.button.danger { color: var(--on-danger); background: var(--danger); }
.button.tiny { min-height: 34px; padding: 6px 9px; border-radius: 8px; font-size: .75rem; }
.button.wide { width: 100%; }
.icon-button { width: 40px; height: 40px; padding: 0; color: var(--muted); background: var(--surface-2); border-color: var(--line); font-size: 1rem; }
.mobile-only { display: none; }

input, select, textarea { width: 100%; color: var(--text); background: var(--input); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--focus-ring); }
textarea { max-width: 100%; resize: vertical; }
label { display: grid; gap: 7px; color: var(--label); font-size: .8rem; font-weight: 700; }
.stack { display: grid; gap: 15px; }
.inline-form { display: flex; align-items: center; gap: 9px; min-width: 0; }
.inline-form input { min-width: 220px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.span-all { grid-column: 1 / -1; }
.check-row { display: flex; flex-wrap: wrap; gap: 18px; padding: 4px 0; }
.check-row label { display: flex; align-items: center; gap: 8px; }
.check-row input { width: auto; }

.menu-command-list, .reply-menu-editor { display: grid; gap: 10px; }
.menu-command { min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); display: grid; grid-template-columns: 150px minmax(0, 1fr); align-items: center; gap: 12px; }
.menu-check { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: .86rem; }
.menu-check input { width: auto; }
.menu-check span { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; overflow-wrap: anywhere; }
.reply-menu-row { padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); display: grid; gap: 10px; }
.reply-menu-row-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.reply-menu-button { display: grid; grid-template-columns: minmax(150px, 1fr) minmax(150px, .8fr) auto; align-items: end; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }

.table-wrap { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; scrollbar-gutter: stable; }
table { width: 100%; min-width: max-content; border-collapse: collapse; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
th { color: var(--muted); background: var(--subtle-fill); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
td { color: var(--text-soft); }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--row-hover); }
.wrap { white-space: normal; min-width: 220px; overflow-wrap: anywhere; }
.actions { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 99px; background: var(--surface-3); color: var(--muted); font-size: .72rem; font-weight: 750; text-transform: capitalize; }
.badge.good { background: color-mix(in srgb, var(--accent) 13%, transparent); color: var(--accent); }
.badge.bad { background: color-mix(in srgb, var(--danger) 13%, transparent); color: var(--danger-soft); }
.badge.warn { background: color-mix(in srgb, var(--warning) 13%, transparent); color: var(--warning); }
.empty { padding: 40px 20px; color: var(--muted); text-align: center; }

.rank-list, .timeline, .campaign-list, .compact-list, .ticket-list { padding: 10px 18px 18px; }
.rank-item, .timeline-item, .campaign-item, .compact-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 4px; border-bottom: 1px solid var(--line); }
.rank-item:last-child, .timeline-item:last-child, .campaign-item:last-child, .compact-item:last-child { border-bottom: 0; }
.rank-item strong, .compact-item strong { display: block; overflow-wrap: anywhere; }
.rank-item span, .timeline-item span, .timeline-item time, .campaign-item span, .compact-item span { color: var(--muted); font-size: .78rem; overflow-wrap: anywhere; }
.rank-number { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-3); color: var(--accent); font-weight: 800; }
.rank-copy { flex: 1; min-width: 0; }
.timeline-item { align-items: flex-start; justify-content: flex-start; gap: 12px; }
.timeline-mark { margin-top: 7px; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 99px; background: var(--accent); }
.timeline-copy { min-width: 0; display: grid; gap: 3px; }
.timeline-copy strong { line-height: 1.25; overflow-wrap: anywhere; }
.timeline-copy time { display: block; font-variant-numeric: tabular-nums; }
.timezone-chip { flex: 0 0 auto; padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); background: var(--surface-2); font-size: .7rem; font-weight: 750; letter-spacing: .03em; }
.ticket { margin: 10px 0; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); }
.ticket-head { display: flex; justify-content: space-between; gap: 16px; }
.ticket-message { color: var(--text-soft); white-space: pre-wrap; overflow-wrap: anywhere; }
.ticket form { display: flex; gap: 10px; margin-top: 14px; }

.bar-chart { min-height: 280px; padding: 24px; display: flex; align-items: end; gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; }
.bar-column { min-width: 42px; flex: 1; height: 220px; display: flex; flex-direction: column; justify-content: end; align-items: center; gap: 8px; }
.bar { width: min(34px, 80%); min-height: 3px; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--brand-end), var(--accent-2)); box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-2) 18%, transparent); }
.bar-column small, .bar-column span { color: var(--muted); font-size: .65rem; }

.modal { width: min(820px, calc(100vw - 28px)); max-height: calc(100dvh - 28px); padding: 0; border: 1px solid var(--line); border-radius: 20px; color: var(--text); background: var(--surface); box-shadow: var(--shadow); }
.modal::backdrop { background: var(--backdrop); backdrop-filter: blur(6px); }
.modal-card { max-height: calc(100dvh - 30px); padding: 24px; display: grid; gap: 20px; overflow-y: auto; overscroll-behavior: contain; }
.modal-card.narrow { max-width: 520px; }
.modal-head, .modal-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.modal-actions { justify-content: flex-end; padding-top: 4px; }

.toast-region { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 100; display: grid; gap: 9px; pointer-events: none; }
.toast { min-width: 270px; max-width: min(420px, calc(100vw - 30px)); padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-3); color: var(--text); box-shadow: var(--shadow); animation: toast-in .2s ease; }
.toast.error { border-color: color-mix(in srgb, var(--danger) 50%, var(--line)); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

.login-page { min-height: 100dvh; background: radial-gradient(circle at 50% 5%, var(--hero-glow), transparent 32%), var(--bg); }
.login-shell { min-height: 100dvh; display: grid; place-items: center; padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); }
.login-card { width: min(430px, 100%); padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: var(--login-card); box-shadow: var(--shadow); }
.login-card .brand-mark { margin-bottom: 26px; }
.login-card h1 { margin-bottom: 9px; font-size: 2.1rem; }
.login-form { margin-top: 28px; }
.login-theme-picker { position: fixed; top: max(18px, env(safe-area-inset-top)); right: max(18px, env(safe-area-inset-right)); z-index: 10; }
.security-note { margin: 22px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }
.alert { margin-top: 20px; padding: 11px 13px; border: 1px solid color-mix(in srgb, var(--danger) 40%, var(--line)); border-radius: 10px; color: var(--danger-soft); background: color-mix(in srgb, var(--danger) 8%, transparent); }

@media (max-width: 1180px) {
  .stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.three > :last-child { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body.nav-open { overflow: hidden; touch-action: none; }
  .app-shell { display: block; }
  .sidebar { position: fixed; left: 0; width: min(290px, calc(100vw - 54px)); transform: translateX(-105%); visibility: hidden; transition: transform .2s ease, visibility .2s ease; box-shadow: var(--shadow); }
  .sidebar.open { transform: translateX(0); visibility: visible; }
  .sidebar-scrim { position: fixed; inset: 0; z-index: 25; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: var(--backdrop); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
  body.nav-open .sidebar-scrim { opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-only { display: inline-grid; place-items: center; flex: 0 0 40px; }
  .topbar { min-height: 82px; padding: 14px max(15px, env(safe-area-inset-right)) 14px max(15px, env(safe-area-inset-left)); gap: 12px; }
  .topbar-title { flex: 1; }
  .topbar-actions { gap: 7px; }
  .content { padding: 22px max(15px, env(safe-area-inset-right)) max(48px, env(safe-area-inset-bottom)) max(15px, env(safe-area-inset-left)); }
  .admin-chip { display: none; }
  .grid.equal, .grid.two-thirds, .grid.three { grid-template-columns: 1fr; }
  .grid.three > :last-child { grid-column: auto; }
  .stat-grid, .stat-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .span-all { grid-column: auto; }
  .panel-head.responsive .inline-form { flex: 1 1 100%; }
  .inline-form { width: 100%; }
  .inline-form input { min-width: 0; }
  .hero-panel { align-items: flex-start; flex-direction: column; }
  .hero-panel .button { width: 100%; }
  .button, .icon-button, .nav-item { min-height: 44px; }
  input, select, textarea { font-size: 16px; }
  .theme-picker select { font-size: .78rem; }
  .table-wrap { border-top: 1px solid transparent; }
}

@media (max-width: 620px) {
  .toolbar { align-items: stretch; flex-direction: column; }
  .toolbar .button { width: 100%; }
  .panel-head { min-height: 0; padding: 17px 16px; }
  .padded { padding: 18px 16px; }
  .rank-list, .timeline, .campaign-list, .compact-list, .ticket-list { padding: 8px 14px 14px; }
  .rank-item, .campaign-item, .compact-item { align-items: flex-start; flex-wrap: wrap; }
  .compact-item > .actions { width: 100%; }
  .ticket { padding: 15px; }
  .ticket form, .inline-form { align-items: stretch; flex-direction: column; }
  .inline-form .button, .inline-form select { width: 100%; }
  .check-row { align-items: stretch; flex-direction: column; gap: 12px; }
  .menu-command, .reply-menu-button { grid-template-columns: 1fr; }
  .reply-menu-row-head { align-items: stretch; flex-direction: column; }
  .modal { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); border-radius: 16px; }
  .modal-card { max-height: calc(100dvh - 18px); padding: 18px 16px; }
  .modal-actions { align-items: stretch; flex-direction: column-reverse; }
  .modal-actions .button { width: 100%; }
  .toast-region { right: 15px; left: 15px; bottom: max(15px, env(safe-area-inset-bottom)); }
  .toast { width: 100%; min-width: 0; max-width: none; }
}

@media (max-width: 520px) {
  .stat-grid, .stat-grid.compact { grid-template-columns: 1fr; }
  .button.ghost#logout { display: none; }
  .login-shell { padding: 82px 14px 20px; }
  .login-card { padding: 28px 22px; border-radius: 20px; }
  .login-card h1 { font-size: 1.8rem; }
  .login-theme-picker { top: max(14px, env(safe-area-inset-top)); right: max(14px, env(safe-area-inset-right)); }
  .bar-chart { padding: 18px 14px; }
}

@media (max-width: 390px) {
  .topbar { gap: 8px; }
  .topbar-actions { gap: 5px; }
  .topbar .theme-picker { min-width: 102px; padding-inline: 7px; }
  .topbar .theme-picker select { width: 66px; }
  .topbar .eyebrow { display: none; }
  h1 { font-size: 1.25rem; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .sidebar { padding-top: 12px; padding-bottom: 10px; }
  .brand { padding-bottom: 12px; }
  .nav-item { min-height: 38px; padding-block: 8px; }
  .login-shell { align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
