:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fafc;
  --surface-strong: #eef0f6;
  --text: #151722;
  --muted: #767b8f;
  --faint: #a7abba;
  --border: #e7e9f0;
  --accent: #6d5dfc;
  --accent-dark: #5848ee;
  --accent-soft: #eeebff;
  --danger: #e5484d;
  --danger-soft: #fff0f0;
  --success: #17a673;
  --warning: #f59e0b;
  --shadow: 0 16px 42px rgba(33, 38, 58, .08);
  --shadow-soft: 0 8px 24px rgba(33, 38, 58, .06);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --sidebar-width: 260px;
}

[data-theme="dark"] {
  --bg: #0f1118;
  --surface: #171a23;
  --surface-soft: #1c202b;
  --surface-strong: #222633;
  --text: #f5f6fa;
  --muted: #9da3b6;
  --faint: #6f7589;
  --border: #2a2f3d;
  --accent-soft: #29244d;
  --danger-soft: #362125;
  --shadow: 0 18px 46px rgba(0,0,0,.28);
  --shadow-soft: 0 10px 26px rgba(0,0,0,.2);
}

* { box-sizing: border-box; }

html { color-scheme: light; }

html[data-theme="dark"] { color-scheme: dark; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% -10%, rgba(109,93,252,.08), transparent 30%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, .file-btn { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(109,93,252,.2);
  outline-offset: 2px;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-shell { min-height: 100vh; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.78);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(20px);
  z-index: 40;
}

[data-theme="dark"] .sidebar { background: rgba(23,26,35,.88); }

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px 22px;
}

.brand {
  border: 0;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(145deg, #897bff, #5c49ee);
  box-shadow: 0 8px 18px rgba(109,93,252,.28);
}

.brand-name { font-weight: 780; font-size: 20px; letter-spacing: -.6px; }

.primary-action, .secondary-btn, .danger-btn {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: .2s ease;
}

.primary-action {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(109,93,252,.2);
}

.primary-action:hover { background: var(--accent-dark); transform: translateY(-1px); }
.primary-action svg { width: 18px; }

.nav-section { margin-top: 28px; }
.folders-section { min-height: 0; overflow: auto; }

.nav-label-row { display: flex; align-items: center; justify-content: space-between; }

.nav-label {
  margin: 0 12px 9px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-item {
  width: 100%;
  min-height: 43px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-weight: 640;
  transition: .18s ease;
}

.nav-item:hover { color: var(--text); background: var(--surface-soft); }
.nav-item.active { color: var(--accent); background: var(--accent-soft); }
.nav-icon { width: 22px; height: 22px; display: grid; place-items: center; }
.nav-icon svg { width: 19px; height: 19px; }
.nav-icon.spark svg { fill: currentColor; stroke: none; }

.count-pill {
  margin-left: auto;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.nav-item.active .count-pill { background: rgba(109,93,252,.15); color: var(--accent); }

.tiny-btn, .icon-btn {
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 10px;
  color: var(--muted);
}
.tiny-btn { width: 30px; height: 30px; margin-right: 4px; }
.tiny-btn:hover, .icon-btn:hover { background: var(--surface-strong); color: var(--text); }

.folder-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
}
.folder-remove {
  margin-left: auto;
  opacity: 0;
  width: 25px;
  height: 25px;
  border: 0;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  border-radius: 7px;
}
.folder-remove svg { width: 14px; }
.nav-item:hover .folder-remove { opacity: 1; }
.folder-remove:hover { background: var(--danger-soft); color: var(--danger); }

.sidebar-bottom { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.live-dot {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(23,166,115,.1);
}

.main-content {
  margin-left: var(--sidebar-width);
  padding: 26px 34px 60px;
  max-width: 1480px;
}

.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left { display: flex; align-items: center; gap: 12px; }
.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(28px, 3vw, 38px); letter-spacing: -1.2px; }
h2 { letter-spacing: -.6px; }

.topbar-actions { display: flex; align-items: center; gap: 10px; }
.search-box {
  width: min(280px, 30vw);
  height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}
.search-box svg { width: 18px; color: var(--faint); }
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.search-box input::placeholder { color: var(--faint); }

.icon-btn { width: 42px; height: 42px; }
.topbar .icon-btn { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
.sun-icon { display: none; }

.smart-strip {
  margin-top: 20px;
  min-height: 76px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(109,93,252,.14);
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(109,93,252,.10), rgba(109,93,252,.03)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.smart-strip.hidden { display: none; }

.smart-strip-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-soft);
}
.smart-strip-icon svg { fill: currentColor; stroke: none; }
.smart-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.smart-copy strong { font-size: 14px; }
.smart-copy span { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.text-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 9px;
}
.text-btn:hover { color: var(--text); background: var(--surface-strong); }
.smart-strip .text-btn { margin-left: auto; }

.summary-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.summary-card {
  min-height: 126px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.summary-label { color: var(--muted); font-size: 12px; font-weight: 750; }
.summary-card strong { margin: 9px 0 5px; font-size: 30px; letter-spacing: -1px; }
.summary-foot { color: var(--faint); font-size: 12px; }

.task-panel {
  margin-top: 16px;
  padding: 0 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.task-panel-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.view-tabs { display: flex; gap: 4px; }
.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 9px;
  font-weight: 700;
  cursor: pointer;
}
.tab.active { color: var(--text); background: var(--surface-strong); }
.task-panel-actions .text-btn { display: flex; align-items: center; gap: 7px; }
.task-panel-actions svg { width: 16px; }

.quick-add {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.quick-plus {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--accent);
  cursor: pointer;
}
.quick-plus:hover { background: var(--accent-soft); border-color: transparent; }
.quick-plus svg { width: 15px; }
.quick-add input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.quick-add input::placeholder { color: var(--faint); }
.quick-date {
  border: 0;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.quick-date.active { background: var(--accent-soft); color: var(--accent); }

.task-list { min-height: 10px; }
.task-item {
  min-height: 74px;
  padding: 12px 2px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--border);
  transition: .18s ease;
}
.task-item:hover { background: var(--surface-soft); margin: 0 -10px; padding-left: 12px; padding-right: 12px; border-radius: 12px; }
.task-check {
  width: 23px;
  height: 23px;
  border-radius: 8px;
  border: 1.7px solid #c8ccd8;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .18s ease;
}
.task-check svg { width: 14px; opacity: 0; color: white; stroke-width: 2.4; }
.task-check:hover { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(109,93,252,.09); }
.task-item.completed .task-check { background: var(--success); border-color: var(--success); }
.task-item.completed .task-check svg { opacity: 1; }
.task-item.completed .task-name { text-decoration: line-through; color: var(--faint); }

.task-main { min-width: 0; cursor: pointer; }
.task-name-row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.task-name { margin: 0; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.priority-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.priority-dot.low { background: #0ea5e9; }
.priority-dot.medium { background: #f59e0b; }
.priority-dot.high { background: #ef4444; }
.task-meta { margin-top: 6px; display: flex; align-items: center; gap: 10px; color: var(--faint); font-size: 11px; }
.task-meta span { display: flex; align-items: center; gap: 4px; }
.task-meta svg { width: 13px; }
.task-meta .overdue { color: var(--danger); }
.task-folder-chip {
  max-width: 140px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.task-due {
  min-width: 76px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.task-due.overdue { color: var(--danger); }
.task-menu {
  width: 34px; height: 34px;
  border: 0;
  background: transparent;
  color: var(--faint);
  border-radius: 9px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.task-menu:hover { background: var(--surface-strong); color: var(--text); }
.task-menu svg { width: 17px; }

.empty-state {
  padding: 64px 20px 44px;
  text-align: center;
  display: none;
}
.empty-state.show { display: block; }
.empty-illustration {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
}
.empty-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px var(--surface-soft);
}
.empty-illustration svg { width: 54px; height: 54px; color: var(--accent); stroke-width: 2; z-index: 1; }
.empty-state h2 { margin-bottom: 7px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }

.secondary-btn, .danger-btn {
  min-height: 41px;
  padding: 0 15px;
  background: var(--surface-strong);
  color: var(--text);
}
.secondary-btn:hover { transform: translateY(-1px); filter: brightness(.98); }
.danger-btn { background: var(--danger-soft); color: var(--danger); }
.danger-btn:hover { filter: saturate(1.1); }

.modal {
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.small-modal { width: min(480px, calc(100vw - 28px)); }
.modal::backdrop { background: rgba(12,14,22,.45); backdrop-filter: blur(6px); }
.modal form { padding: 24px; }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}
.modal-header h2 { margin: 0; font-size: 24px; }
.close-modal { margin-top: -6px; margin-right: -6px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.field > span, .field-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 12px 13px;
  outline: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(109,93,252,.1);
}
.field textarea { resize: vertical; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.priority-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.priority-picker button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.priority-picker button.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.priority-picker i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }
.priority-picker [data-priority="low"] i { background:#0ea5e9; }
.priority-picker [data-priority="medium"] i { background:#f59e0b; }
.priority-picker [data-priority="high"] i { background:#ef4444; }

.switch-row {
  position: relative;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.switch-row > div { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.switch-row strong { font-size: 13px; }
.switch-row span:not(.switch) { color: var(--muted); font-size: 12px; }
.switch-row input { position: absolute; opacity: 0; pointer-events: none; }
.switch {
  width: 44px; height: 25px;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface-strong);
  transition: .2s;
}
.switch::after {
  content: "";
  display: block;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: .2s;
}
.switch-row input:checked + .switch { background: var(--accent); }
.switch-row input:checked + .switch::after { transform: translateX(19px); }

.modal-actions { display: flex; align-items: center; gap: 9px; margin-top: 24px; }
.modal-spacer { flex: 1; }
.modal-save { width: auto; min-width: 118px; }
.hidden { display: none !important; }

.color-picker { display: flex; gap: 10px; }
.color-picker button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: var(--pick);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--border);
}
.color-picker button.active { border-color: var(--surface); box-shadow: 0 0 0 2px var(--pick); }

.settings-section { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.settings-buttons { display: flex; gap: 9px; margin-top: 10px; }
.file-btn { display: inline-flex; align-items: center; justify-content: center; }
.file-btn input { display: none; }
.small-note { margin: 10px 0 0; color: var(--faint); font-size: 11px; }
.danger-zone { margin-bottom: 4px; }

.smart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 92vw);
  padding: 24px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
  transform: translateX(105%);
  transition: transform .28s ease;
  z-index: 80;
  overflow: auto;
}
.smart-drawer.open { transform: translateX(0); }
.drawer-overlay, .sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,14,22,.4);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 70;
}
.drawer-overlay.show, .sidebar-overlay.show { opacity: 1; pointer-events: auto; }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; }
.drawer-header h2 { margin: 0; font-size: 24px; }
.assistant-orb {
  width: 114px; height: 114px;
  margin: 42px auto 25px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,93,252,.2), rgba(109,93,252,.03) 65%, transparent 66%);
  animation: breathe 4s ease-in-out infinite;
}
.orb-core {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #c5beff, #6d5dfc 54%, #3e2cc5);
  box-shadow: 0 10px 30px rgba(109,93,252,.35), inset 0 1px 8px rgba(255,255,255,.4);
}
@keyframes breathe { 50% { transform: scale(1.04); } }
.assistant-intro { color: var(--muted); font-size: 13px; line-height: 1.6; text-align: center; }
.suggestion-list { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.suggestion-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}
.suggestion-card strong { display: block; margin-bottom: 5px; font-size: 13px; }
.suggestion-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.suggestion-card button { margin-top: 10px; padding-left: 0; color: var(--accent); }
.assistant-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: var(--faint);
  font-size: 11px;
}
.privacy-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

.toast-region {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.toast {
  min-width: 240px;
  max-width: 360px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  background: var(--text);
  color: var(--surface);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 650;
  animation: toastIn .2s ease;
}
.toast button { margin-left: auto; border: 0; background: transparent; color: inherit; opacity: .7; cursor: pointer; }
@keyframes toastIn { from { transform: translateY(8px); opacity: 0; } }

.mobile-only { display: none; }

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-105%);
    transition: transform .25s ease;
    z-index: 100;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay { z-index: 90; }
  .main-content { margin-left: 0; padding: 18px 18px 50px; }
  .mobile-only { display: grid; }
  .summary-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 650px) {
  .main-content { padding: 14px 12px 40px; }
  .topbar { align-items: flex-start; }
  .topbar-actions { gap: 6px; }
  .search-box {
    width: 44px;
    padding: 0 12px;
    overflow: hidden;
    transition: width .2s;
  }
  .search-box:focus-within { position: absolute; left: 12px; right: 62px; width: auto; z-index: 20; }
  .search-box input { min-width: 180px; }
  .smart-strip { align-items: flex-start; }
  .smart-copy span { white-space: normal; }
  .smart-strip .text-btn { display: none; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-card { min-height: 96px; }
  .task-panel { padding: 0 12px 16px; }
  .task-panel-header { overflow-x: auto; }
  .task-item { grid-template-columns: auto minmax(0,1fr) auto; }
  .task-due { display: none; }
  .task-folder-chip { max-width: 95px; }
  .field-grid { grid-template-columns: 1fr; }
  .priority-picker { grid-template-columns: 1fr 1fr; }
  .settings-buttons { flex-direction: column; }
  .modal-actions { flex-wrap: wrap; }
  .modal-spacer { display: none; }
  .modal-actions .secondary-btn, .modal-actions .modal-save { flex: 1; }
}

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