/* ============================================
   AirTaxCalc — Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #047857;
  --primary-dark: #065f46;
  --primary-light: #d1fae5;
  --accent: #b45309;
  --danger: #b91c1c;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
  --text-muted: #4b5563;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

/* Keyboard focus ring — WCAG 2.1 AA */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-nav a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); text-decoration: none; }
.header-nav a:hover { color: var(--text); }
.header-nav a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.btn-start-sm {
  background: var(--primary); color: white;
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 99px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-start-sm:hover { background: var(--primary-dark); }
.header-nav a.btn-start-sm,
.header-nav a.btn-start-sm:hover { color: white; }
@media (max-width: 480px) {
  .header-nav a { display: none; }
  .header-nav a.btn-start-sm { display: inline-block; }
}
.header-badge {
  font-size: 0.75rem; font-weight: 500;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 4px 12px; border-radius: 99px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f8fafc 100%);
  padding: 80px 24px 100px;
  text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary-dark);
  background: var(--primary-light); padding: 4px 14px;
  border-radius: 99px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
  color: var(--text);
}
.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 36px; line-height: 1.7;
}
.btn-start {
  display: inline-block;
  background: var(--primary); color: white;
  font-size: 1.1rem; font-weight: 600;
  padding: 16px 40px; border-radius: 99px;
  border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-start:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,0.4);
}
.hero-trust {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.hero-trust span::before { margin-right: 4px; }

/* ============================================
   WIZARD OVERLAY
   ============================================ */
.wizard-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.wizard-overlay.open { display: flex; }

.wizard-card {
  background: var(--card);
  border-radius: var(--radius);
  width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp 0.3s ease;
  position: relative;
  margin: auto;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress Header */
.progress-header {
  padding: 20px 24px 0;
  position: relative;
}
.btn-close {
  position: absolute; top: 12px; right: 12px;
  background: #f1f5f9; border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 0.85rem; cursor: pointer; color: var(--text-muted);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.btn-close:hover { background: #e2e8f0; }
.progress-bar-wrap {
  height: 6px; background: #e2e8f0;
  border-radius: 99px; overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--primary), #34d399);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}
.step-label {
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  margin-bottom: 8px;
}

/* Steps */
.steps-container { position: relative; overflow: hidden; }
.step {
  padding: 28px 28px 24px;
  display: none;
  animation: fadeIn 0.3s ease;
}
.step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step h2 {
  font-size: 1.35rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.step h2 em { font-style: normal; color: var(--primary); }
.step-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

/* Slider */
.slider-group { margin-bottom: 16px; }
.slider-value {
  font-size: 2.8rem; font-weight: 800; color: var(--text);
  margin-bottom: 12px; line-height: 1;
}
.slider-value span { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); }

input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, var(--primary) 0%, #e2e8f0 0%);
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  cursor: grab;
  transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.2); cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  cursor: grab;
}
input[type="range"]::-moz-range-track {
  height: 6px; border-radius: 99px;
  background: #e2e8f0;
}
.slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 6px;
}

.or-divider {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  margin: 16px 0 12px;
  position: relative;
}
.or-divider::before, .or-divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 38%; height: 1px; background: var(--border);
}
.or-divider::before { left: 0; }
.or-divider::after  { right: 0; }

/* Hide number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

/* Text Inputs */
.text-input, .dollar-input {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1.1rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  color: var(--text);
}
.text-input:focus, .dollar-input:focus { border-color: var(--primary); }

.dollar-input-wrap {
  display: flex; align-items: center;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.dollar-input-wrap:focus-within { border-color: var(--primary); }
.dollar-sign {
  padding: 14px 14px 14px 16px;
  font-size: 1.1rem; font-weight: 600; color: var(--text-muted);
  background: #f8fafc;
  border-right: 1px solid var(--border);
}
.dollar-input-wrap .dollar-input {
  border: none; flex: 1; padding: 14px 16px;
  font-size: 1.1rem;
}
.dollar-input-wrap .dollar-input:focus { border: none; outline: none; }

.income-hint {
  margin-top: 12px; font-size: 0.85rem; color: var(--text-muted);
  background: #f8fafc; padding: 10px 14px; border-radius: 8px;
}

/* Step tip */
.step-tip {
  font-size: 0.85rem; margin-top: 12px;
  border-radius: 8px; padding: 0;
  transition: all 0.2s;
}
.step-tip.info {
  background: #eff6ff; color: #1d4ed8;
  padding: 10px 14px;
}
.step-tip.success {
  background: var(--primary-light); color: var(--primary-dark);
  padding: 10px 14px;
}

/* Rule Alert */
.rule-alert {
  font-size: 0.85rem; border-radius: 8px;
  margin-top: 12px; transition: all 0.2s;
}
.rule-alert.free-zone {
  background: #f0fdf4; color: #15803d;
  padding: 12px 14px; border: 1px solid #bbf7d0;
}
.rule-alert.warn {
  background: #fffbeb; color: #92400e;
  padding: 12px 14px; border: 1px solid #fde68a;
}

/* Card Select */
.card-select-group {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 24px;
}
.card-option {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 12px; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.card-option:hover { border-color: var(--primary); background: #f0fdf4; }
.card-option.selected {
  border-color: var(--primary); background: var(--primary-light);
}
.card-icon { display: block; font-size: 1.6rem; margin-bottom: 6px; }
.card-label { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.other-income-wrap label {
  display: block; font-size: 0.9rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}

/* Expenses */
.expense-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.expense-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.expense-item:has(.expense-body.open) { border-color: var(--primary); }
.expense-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; cursor: pointer;
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.15s;
  width: 100%; text-align: left;
  background: none; border: none; font-family: inherit; color: inherit;
}
.expense-header:hover { background: #f8fafc; }
.expense-badge {
  font-size: 0.7rem; font-weight: 600; padding: 2px 8px;
  border-radius: 99px; margin-left: auto;
}
.expense-badge.prorated { background: #fef3c7; color: #92400e; }
.expense-badge.full { background: var(--primary-light); color: var(--primary-dark); }
.expand-icon {
  font-size: 1.2rem; color: var(--text-muted);
  transition: transform 0.2s; flex-shrink: 0;
}
.expense-body {
  display: none; padding: 0 16px 16px;
}
.expense-body.open { display: block; }
.expense-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }

.deduction-preview {
  background: var(--primary-light); border-radius: 10px;
  padding: 0; transition: all 0.3s; overflow: hidden;
  max-height: 0; font-size: 0.9rem; color: var(--primary-dark);
}
.deduction-preview.show {
  max-height: 60px; padding: 12px 16px;
}

/* Buttons */
.btn-next, .btn-calculate {
  width: 100%; padding: 15px;
  background: var(--primary); color: white;
  font-size: 1rem; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
  margin-top: 20px;
}
.btn-next:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-calculate { background: linear-gradient(90deg, var(--primary), #34d399); font-size: 1.05rem; }
.btn-calculate:hover { opacity: 0.92; transform: translateY(-1px); }

.nav-back {
  padding: 0 28px 20px;
}
.nav-back button {
  background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: var(--text-muted);
  font-family: inherit; padding: 0;
}
.nav-back button:hover { color: var(--text); }
#navBack { display: none; }

/* ============================================
   RESULTS OVERLAY
   ============================================ */
.results-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 16px; overflow-y: auto;
}
.results-overlay.open { display: flex; }

.results-card {
  background: var(--card);
  border-radius: var(--radius);
  width: 100%; max-width: 580px;
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  position: relative;
  animation: slideUp 0.35s ease;
  margin: auto;
}
.results-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.btn-close-results {
  background: #f1f5f9; border: none;
  padding: 8px 16px; border-radius: 99px;
  font-size: 0.82rem; cursor: pointer; color: var(--text-muted);
  font-family: inherit; font-weight: 500;
  transition: background 0.2s;
}
.btn-close-results:hover { background: #e2e8f0; }
.btn-recalc {
  background: none; border: none; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; color: var(--primary);
  font-family: inherit; padding: 8px 0;
}
.btn-recalc:hover { text-decoration: underline; }

/* Free Zone Result */
.free-zone-result { text-align: center; padding: 16px 0; }
.result-icon { font-size: 3rem; margin-bottom: 16px; }
.free-zone-result h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.free-zone-result p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.result-rule-box {
  background: var(--primary-light); border-radius: 10px;
  padding: 16px; font-size: 0.88rem; color: var(--primary-dark);
  text-align: left; line-height: 1.6;
}

/* Main Results */
.results-top { text-align: center; margin-bottom: 32px; }
.results-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; }
.results-amount {
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 800; color: var(--text);
  line-height: 1; margin-bottom: 8px;
}
.results-amount.low    { color: var(--primary); }
.results-amount.medium { color: var(--accent); }
.results-amount.high   { color: var(--danger); }
.results-rate { font-size: 0.95rem; color: var(--text-muted); }

/* Breakdown */
.results-breakdown h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
  color: var(--text);
}
.breakdown-table { display: flex; flex-direction: column; gap: 0; }
.breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.breakdown-row:last-child { border-bottom: none; }
.breakdown-row.total {
  font-weight: 700; font-size: 1rem;
  border-top: 2px solid var(--border);
  border-bottom: none;
  margin-top: 4px; padding-top: 14px;
}
.breakdown-label { color: var(--text-muted); min-width: 0; overflow-wrap: break-word; flex: 1; }
.breakdown-label.indent { padding-left: 14px; font-size: 0.85rem; }
.breakdown-value { font-weight: 600; flex-shrink: 0; margin-left: 12px; }
.breakdown-value.deduction { color: var(--primary); }
.breakdown-value.tax { color: var(--danger); }
.breakdown-row.section-header {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
  margin-top: 6px; padding-bottom: 4px;
}

.results-disclaimer {
  background: #fefce8; border: 1px solid #fef08a;
  border-radius: 8px; padding: 12px 14px;
  font-size: 0.82rem; color: #78350f;
  margin: 24px 0; line-height: 1.6;
}

.results-cta {
  text-align: center; background: var(--bg);
  border-radius: 10px; padding: 16px;
}
.results-cta p { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.results-cta .cta-sub { font-weight: 400; font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 80px 24px;
  background: white;
}
.section-inner { max-width: 1000px; margin: 0 auto; }
.how-section h2, .faq-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  margin-bottom: 48px; font-size: 1rem;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.how-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 28px 24px;
}
.how-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.how-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 80px 24px; background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white; border-radius: var(--radius-sm);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.15s;
  width: 100%; text-align: left;
  background: none; border: none; font-family: inherit; color: inherit;
}
.faq-q:hover { background: #f8fafc; }
.faq-q span { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); display: inline-block; }

/* State select */
.state-select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  color: var(--text); background: white; cursor: pointer;
}
.state-select:focus { border-color: var(--primary); }

/* Platform fee input */
.fee-input-wrap {
  display: flex; align-items: center;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s; max-width: 160px;
}
.fee-input-wrap:focus-within { border-color: var(--primary); }
.fee-input-wrap .dollar-input { border: none; }
.fee-pct-sign {
  padding: 14px 14px 14px 4px;
  font-size: 1.1rem; font-weight: 600; color: var(--text-muted);
  background: #f8fafc; border-left: 1px solid var(--border);
}

/* Tax split display */
.tax-split {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 12px; flex-wrap: wrap;
}
.tax-split-item {
  text-align: center;
}
.tax-split-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; }
.tax-split-value { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.tax-split-value.federal { color: #1d4ed8; }
.tax-split-value.state   { color: #7c3aed; }
.tax-split-value.notax   { color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1e293b; color: #94a3b8;
  padding: 48px 24px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 12px; }
.site-footer p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: white; }
.footer-small { font-size: 0.78rem; color: #64748b; margin: 0; }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 600px) {
  .hero { padding: 56px 20px 72px; }
  .hero p { font-size: 1rem; }
  .btn-start { padding: 14px 32px; font-size: 1rem; }
  .hero-trust { gap: 10px; }

  .wizard-card { border-radius: 20px 20px 0 0; max-height: 90vh; overflow-y: auto; }
  .wizard-overlay { align-items: flex-end; padding: 0; }
  .progress-header { position: sticky; top: 0; background: white; z-index: 10; }

  .step { padding: 22px 20px 20px; }
  .step h2 { font-size: 1.2rem; }
  .slider-value { font-size: 2.2rem; }
  .card-select-group { grid-template-columns: 1fr 1fr; }
  .card-label { font-size: 0.75rem; }

  .results-card { border-radius: 20px 20px 0 0; padding: 28px 20px; }
  .results-overlay { align-items: flex-end; padding: 0; }

  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .card-select-group { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .hero, .how-section, .faq-section, .site-footer,
  .wizard-overlay, .results-nav, .results-cta { display: none !important; }

  /* Only print results if they are currently visible */
  .results-overlay { display: none !important; }
  .results-overlay.open {
    display: block !important;
    position: static !important;
    background: none !important;
    padding: 0 !important;
  }
  .results-card {
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }
  .results-amount { font-size: 2.5rem !important; }
  .results-disclaimer { background: none !important; border: 1px solid #ccc !important; }
  body { background: white !important; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
