:root {
  color-scheme: dark;
  --bg: #151817;
  --surface: #1e2320;
  --surface-raised: #28302b;
  --surface-soft: #303a33;
  --line: rgba(239, 241, 232, 0.12);
  --text: #f0f1e9;
  --text-muted: #c4c9bf;
  --text-subtle: #98a096;
  --accent: #f0642e;
  --accent-bright: #ff8754;
  --accent-deep: #42251a;
  --ink-on-accent: #24160f;
  --positive: #b9d57d;
  --positive-deep: #293a29;
  --warning: #e3b66e;
  --warning-deep: #3f321f;
  --danger: #e68d82;
  --font-body: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Bahnschrift", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --text-lg: clamp(1.45rem, 2.2vw, 2.15rem);
  --text-xl: clamp(2.25rem, 5vw, 4.6rem);
  --body: 1rem;
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 10px;
  --shadow-panel: 0 20px 48px rgba(7, 10, 8, 0.24);
  --shadow-float: 0 18px 42px rgba(7, 10, 8, 0.4);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

button:disabled {
  cursor: wait;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--ink-on-accent);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  background: var(--accent);
  border-radius: 13px;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.top-nav a {
  padding: 10px 0;
  transition: color 160ms ease, transform 160ms ease;
}

.top-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.read-only-badge,
.connection-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.connection-label--warning {
  color: var(--warning);
}

.connection-label--error {
  color: var(--danger);
}

.update-label {
  color: var(--text-muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--text-subtle);
  border-radius: 50%;
}

.status-dot--ok {
  background: var(--positive);
  box-shadow: 0 0 0 3px rgba(185, 213, 125, 0.13);
}

.status-dot--warning {
  background: var(--warning);
  box-shadow: 0 0 0 3px rgba(227, 182, 110, 0.13);
}

.status-dot--error {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(230, 141, 130, 0.13);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:active:not(:disabled) {
  transform: translateY(1px) scale(0.98);
}

.button--primary {
  background: var(--accent);
  color: var(--ink-on-accent);
}

.button--primary:hover:not(:disabled) {
  background: var(--accent-bright);
}

.button--quiet {
  background: var(--surface-raised);
  color: var(--text-muted);
}

.button--quiet:hover:not(:disabled) {
  background: var(--surface-soft);
  color: var(--text);
}

.button.is-loading {
  opacity: 0.7;
}

.button.is-loading::before {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.main-content {
  display: flex;
  flex-direction: column;
  padding: 58px 0 40px;
}

.metric-grid { order: 1; }
.camera-panel { order: 2; }
.chart-panel { order: 3; }
.traffic-panel { order: 4; }
.records-panel { order: 5; }

.store-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 9px;
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.store-heading h1 {
  max-width: 24ch;
  margin: 0;
  font-size: var(--text-xl);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.store-location {
  max-width: 80ch;
  margin: 17px 0 0;
  color: var(--text-muted);
}

.separator {
  padding: 0 7px;
  color: var(--text-subtle);
}

.sync-block {
  min-width: 280px;
  padding-bottom: 5px;
}

.sync-state {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-badge--warning {
  background: var(--warning-deep);
  color: var(--warning);
}

.status-badge--ok {
  background: var(--positive-deep);
  color: var(--positive);
}

.sync-block > p {
  margin: 13px 0 14px;
  color: var(--text-subtle);
  font-size: 0.86rem;
}

.sync-details {
  display: flex;
  gap: 24px;
  margin: 0;
}

.sync-details div {
  display: grid;
  gap: 2px;
}

.sync-details dt {
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.sync-details dd {
  margin: 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 14px;
}

.metric-card,
.panel {
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.metric-card {
  min-height: 186px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
}

.metric-card--signal {
  background: var(--accent-deep);
}

.metric-card--quiet {
  background: var(--surface-raised);
}

.metric-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-card--signal .metric-label {
  color: #f4c0a5;
}

.metric-tag {
  color: var(--text-subtle);
  font-size: 0.78rem;
  white-space: nowrap;
}

.metric-tag--live {
  color: var(--accent-bright);
}

.metric-tag--warning {
  color: var(--warning);
}

.metric-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 23px;
}

.metric-value strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.08em;
  line-height: 1;
}

.metric-card--signal .metric-value strong {
  color: var(--accent-bright);
}

.people-meter {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.people-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--positive);
  border-radius: inherit;
  transition: width 320ms var(--ease-out);
}

.metric-value > span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.metric-note {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--text-subtle);
  font-size: 0.83rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.8fr);
  gap: 14px;
  margin-bottom: 14px;
}

.panel {
  border-radius: var(--radius-lg);
}

.chart-panel,
.traffic-panel,
.source-panel,
.records-panel,
.camera-panel {
  padding: 24px;
}

.traffic-panel {
  margin-bottom: 14px;
}

.chart-panel {
  margin-bottom: 14px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-header h2 {
  margin: 0;
  font-size: var(--text-lg);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.panel-caption,
.records-meta {
  color: var(--text-subtle);
  font-size: 0.83rem;
}

.records-meta {
  display: flex;
  gap: 16px;
  padding-top: 5px;
}

.range-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-raised);
  border-radius: var(--radius-sm);
}

.range-switch button {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 7px;
  color: var(--text-subtle);
  font-size: 0.78rem;
}

.range-switch button:hover {
  color: var(--text);
}

.range-switch button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--ink-on-accent);
  font-weight: 700;
}

.chart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  color: var(--text-subtle);
  font-size: 0.82rem;
}

.chart-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.legend-line {
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
}

.legend-line--traffic {
  width: 9px;
  height: 12px;
  background: var(--positive);
  border-radius: 3px 3px 2px 2px;
}

.chart-wrap {
  position: relative;
  min-height: 300px;
  margin-top: 10px;
}

.people-chart {
  width: 100%;
  height: auto;
  min-height: 300px;
  overflow: visible;
}

.traffic-chart {
  width: 100%;
  height: auto;
  min-height: 280px;
  overflow: visible;
}

.chart-grid-line {
  stroke: var(--line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-axis-label {
  fill: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-point {
  fill: var(--surface);
  stroke: var(--accent-bright);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.traffic-area {
  fill: url(#traffic-area-fill);
}

.traffic-line {
  fill: none;
  stroke: var(--positive);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.traffic-point {
  fill: var(--surface);
  stroke: var(--positive);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.traffic-point--peak {
  fill: var(--positive);
  stroke: var(--surface);
  stroke-width: 3;
}

.traffic-column {
  fill: var(--positive);
  opacity: 0.78;
}

.traffic-column:hover {
  opacity: 1;
}

.traffic-column--peak {
  fill: var(--accent-bright);
  opacity: 1;
}

.traffic-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 15px 0 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.traffic-insights div {
  display: grid;
  gap: 5px;
}

.traffic-insights span {
  color: var(--text-subtle);
  font-size: 0.78rem;
}

.traffic-insights strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.traffic-table-wrap {
  max-height: 355px;
  margin-top: 15px;
  overflow: auto;
}

.section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 2px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: left;
}

.section-toggle:hover {
  color: var(--text);
}

.section-toggle__state {
  color: var(--accent-bright);
  font-size: 0.78rem;
}

.traffic-table {
  min-width: 540px;
}

.traffic-table th,
.traffic-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.traffic-table td {
  font-size: 0.84rem;
}

.traffic-table tr.is-peak td {
  color: var(--text);
}

.traffic-table tr.is-peak td:first-child {
  color: var(--positive);
  font-weight: 700;
}

.traffic-bar-track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: 99px;
}

.traffic-bar {
  height: 100%;
  min-width: 3px;
  background: var(--positive);
  border-radius: inherit;
}

.chart-summary {
  min-height: 25px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.state-box {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 24px;
  color: var(--text-muted);
  text-align: center;
}

.state-box strong {
  color: var(--text);
  font-size: 1.05rem;
}

.state-box span {
  max-width: 52ch;
  color: var(--text-subtle);
  font-size: 0.88rem;
}

.state-box--wide {
  min-height: 170px;
  background: var(--surface-raised);
  border-radius: var(--radius-md);
}

.source-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.source-list li:last-child {
  border-bottom: 0;
}

.source-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--surface-raised);
  border-radius: 9px;
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 700;
}

.source-icon--climate {
  color: var(--positive);
}

.source-icon--traffic {
  color: var(--warning);
}

.source-icon--camera {
  color: var(--text-muted);
}

.source-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.source-copy strong {
  font-size: 0.91rem;
}

.source-copy code {
  overflow: hidden;
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-state {
  color: var(--text-subtle);
  font-size: 0.78rem;
  white-space: nowrap;
}

.source-state--ok {
  color: var(--positive);
}

.source-state--stale,
.source-state--no_data {
  color: var(--warning);
}

.source-state--error {
  color: var(--danger);
}

.source-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.source-note strong {
  font-size: 0.9rem;
}

.source-note p {
  margin: 7px 0 0;
  color: var(--text-subtle);
  font-size: 0.84rem;
}

.records-panel {
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 23px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  color: var(--text-subtle);
  font-size: 0.78rem;
  font-weight: 600;
}

td {
  color: var(--text-muted);
  font-size: 0.88rem;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: rgba(240, 100, 46, 0.05);
}

.table-number,
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.table-number {
  color: var(--text);
}

.record-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.table-state td {
  padding: 30px 0;
  color: var(--text-subtle);
  text-align: center;
}

.camera-panel {
  margin-bottom: 14px;
}

.camera-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 22px;
}

.camera-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface-raised);
  border-radius: var(--radius-md);
}

.camera-media {
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
}

.camera-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-card figcaption {
  padding: 12px 14px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.camera-media img {
  cursor: zoom-in;
  transition: transform 220ms var(--ease-out), filter 220ms var(--ease-out);
}

.camera-media img:hover,
.camera-media img:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid var(--accent-bright);
  outline-offset: -2px;
}

.image-viewer {
  width: min(94vw, 1180px);
  max-width: none;
  max-height: 92vh;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-float);
}

.image-viewer::backdrop {
  background: rgba(7, 10, 8, 0.86);
}

.image-viewer figure {
  display: grid;
  place-items: center;
  gap: 10px;
  margin: 0;
}

.image-viewer img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.image-viewer figcaption {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.image-viewer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface-raised);
  font-size: 1.7rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 35px;
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  max-width: min(380px, calc(100vw - 32px));
  padding: 13px 16px;
  transform: translateY(16px);
  background: var(--surface-soft);
  box-shadow: var(--shadow-float);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.noscript-note {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .site-shell {
    width: min(100% - 36px, 900px);
  }

  .top-nav {
    margin-left: auto;
  }

  .read-only-badge {
    display: none;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 600px);
  }

  .topbar {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .top-actions {
    gap: 7px;
  }

  .button {
    min-height: 39px;
    padding: 0 11px;
    font-size: 0.84rem;
  }

  .main-content {
    padding-top: 38px;
  }

  .store-header {
    display: grid;
    gap: 28px;
    padding-bottom: 30px;
  }

  .store-heading h1 {
    font-size: clamp(2.3rem, 12vw, 3.9rem);
  }

  .store-location {
    font-size: 0.91rem;
  }

  .sync-block {
    min-width: 0;
  }

  .metric-card,
  .chart-panel,
  .traffic-panel,
  .source-panel,
  .records-panel,
  .camera-panel {
    padding: 19px;
  }

  .metric-card {
    min-height: 168px;
  }

  .metric-value {
    margin-top: 18px;
  }

  .metric-note {
    margin-top: 13px;
  }

  .panel-header {
    align-items: flex-start;
  }

  .range-switch {
    align-self: flex-end;
  }

  .range-switch button {
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .chart-wrap,
  .people-chart,
  .traffic-chart {
    min-height: 230px;
  }

  .traffic-insights strong {
    font-size: 0.9rem;
  }

  .camera-grid {
    grid-template-columns: 1fr;
  }

  .records-meta {
    display: grid;
    gap: 2px;
    text-align: right;
  }

  .site-footer {
    display: grid;
    gap: 6px;
    padding-bottom: 24px;
  }
}

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