:root {
  --navy: #121a3a;
  --navy-2: #1d2857;
  --blue: #2f4acd;
  --blue-dark: #263ca9;
  --blue-soft: #eef1ff;
  --mint: #dff7ed;
  --green: #087a55;
  --amber: #9a5b05;
  --amber-soft: #fff5dd;
  --red: #b42318;
  --red-soft: #fff0ee;
  --ink: #26304f;
  --muted: #6b7288;
  --line: #dfe3ee;
  --surface: #ffffff;
  --canvas: #f5f7fb;
  --shadow: 0 18px 50px rgba(18, 26, 58, 0.09);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
  background: var(--canvas);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 74, 205, 0.09), transparent 28rem),
    var(--canvas);
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.manage-tile strong {
  font-family: Nunito, Inter, Arial, sans-serif;
}

h1 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
}

h2 {
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(47, 74, 205, 0.38);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  background: rgba(18, 26, 58, 0.97);
  box-shadow: 0 8px 24px rgba(18, 26, 58, 0.16);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.session-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.session-email {
  max-width: 16rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.security-badge,
.production-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 750;
}

.security-badge.secure {
  border-color: rgba(77, 225, 171, 0.46);
  color: #baf9df;
  background: rgba(8, 122, 85, 0.2);
}

.shell,
.content-shell {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

.dashboard-shell {
  padding: clamp(2rem, 6vw, 5rem) 0 4rem;
}

.hero-card {
  max-width: 850px;
  margin-bottom: 2rem;
}

.hero-card > p:last-child,
.content-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.operator-help {
  flex: 1 0 100%;
  width: min(820px, 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #fff;
}

.operator-help summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.operator-help ol {
  margin: 0.9rem 0 0.65rem;
  padding-left: 1.25rem;
}

.operator-help li,
.operator-help p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.operator-help p {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 0.4rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.manage-tile {
  position: relative;
  display: flex;
  min-height: 325px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.manage-tile::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--tile-accent, var(--blue));
  content: "";
}

.manage-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 74, 205, 0.36);
  box-shadow: 0 24px 60px rgba(18, 26, 58, 0.14);
}

.tile-otap {
  --tile-accent: #7057c7;
}

.tile-live {
  --tile-accent: #0d9b6c;
}

.tile-portal {
  --tile-accent: #e1981a;
}

.tile-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 0.35rem;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--tile-accent, var(--blue));
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.tile-kicker {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manage-tile strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.manage-tile > span:not(.tile-icon, .tile-kicker, .tile-link) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.tile-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.62rem 0.95rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover:not(:disabled) {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}

.button-secondary:hover:not(:disabled) {
  border-color: #b7c0d7;
  background: #f8f9fd;
}

.button-success {
  color: #fff;
  background: var(--green);
}

.button-danger {
  border-color: #f3c6c0;
  color: var(--red);
  background: var(--red-soft);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.button-small {
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  font-size: 0.75rem;
}

.notice {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.notice strong {
  color: var(--navy);
}

.notice-warning {
  margin-top: 1.25rem;
  border-color: #f1d59c;
  background: var(--amber-soft);
}

.notice-error {
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-color: #f1c2bd;
  background: var(--red-soft);
}

.notice-error div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.state-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.state-card p {
  margin: 0.8rem 0;
  color: var(--muted);
}

.state-error {
  border-color: #f1c2bd;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #dfe3f1;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

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

.content-shell {
  padding: 2rem 0 4rem;
}

.content-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.content-intro h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.production-chip {
  flex: none;
  border-color: #e9b5ae;
  color: var(--red);
  background: var(--red-soft);
}

.production-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.1);
}

.mfa-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid #d4cbfa;
  border-radius: var(--radius);
  padding: 1.3rem;
  background: #f5f2ff;
}

.mfa-copy h2 {
  margin-bottom: 0.4rem;
}

.mfa-copy p:last-child,
.mfa-enroll-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mfa-action label,
.field label,
.media-field > label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.inline-action {
  display: flex;
  gap: 0.6rem;
}

.mfa-enroll-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.mfa-qr {
  width: 180px;
  height: 180px;
  border: 8px solid #fff;
  border-radius: 10px;
  object-fit: contain;
}

.mfa-enroll-details code {
  overflow-wrap: anywhere;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  color: var(--navy);
  background: #fff;
  font-size: 0.78rem;
}

.workspace {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.type-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem;
  background: #fafbfe;
}

.type-tab,
.filter-chip {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.type-tab.active {
  color: #fff;
  background: var(--navy);
}

.workspace-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2fr);
}

.content-list-panel {
  border-right: 1px solid var(--line);
  background: #fafbfe;
}

.panel-heading,
.editor-heading,
.editor-actions,
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-heading {
  padding: 1.1rem;
}

.panel-heading h2,
.panel-heading h3,
.editor-heading h2,
.preview-toolbar h2 {
  margin-bottom: 0;
}

.status-filters {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0 0.8rem 0.8rem;
}

.filter-chip {
  border-color: var(--line);
  padding: 0.36rem 0.58rem;
  background: #fff;
  font-size: 0.68rem;
}

.filter-chip.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.content-list {
  display: grid;
  gap: 0.45rem;
  max-height: 650px;
  overflow-y: auto;
  padding: 0 0.7rem 1rem;
}

.content-list-empty {
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.content-list-item {
  display: grid;
  width: 100%;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.8rem;
  cursor: pointer;
  color: inherit;
  background: transparent;
  text-align: left;
}

.content-list-item:hover,
.content-list-item.active {
  border-color: #cad1e4;
  background: #fff;
}

.content-list-item.active {
  box-shadow: 0 8px 22px rgba(18, 26, 58, 0.08);
}

.content-list-item strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.editor-panel {
  min-width: 0;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.editor-empty {
  display: grid;
  min-height: 520px;
  place-content: center;
  text-align: center;
}

.editor-empty p {
  max-width: 430px;
  color: var(--muted);
}

.editor-heading {
  margin-bottom: 1.35rem;
}

.editor-status-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.status-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-size: 0.67rem;
  font-weight: 850;
}

.status-draft {
  color: #70520a;
  background: #fff0bd;
}

.status-live {
  color: var(--green);
  background: var(--mint);
}

.status-changes {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.status-archived {
  color: #5f6472;
  background: #e8eaf0;
}

.version-label {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-section {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: 1rem;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0.4rem 0 0;
  padding: 1.2rem 0 0;
}

.form-section legend {
  grid-column: 1 / -1;
  padding: 0 0.45rem 0 0;
  color: var(--navy);
  font-family: Nunito, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 850;
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select,
.mfa-action input {
  width: 100%;
  border: 1px solid #cfd5e4;
  border-radius: 10px;
  padding: 0.7rem 0.78rem;
  color: var(--navy);
  background: #fff;
  font-size: 0.84rem;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}

.field textarea.textarea-large {
  min-height: 210px;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.mfa-action input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(47, 74, 205, 0.11);
}

.field-help {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.4;
}

.required-marker {
  color: var(--red);
}

.check-field,
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-field {
  grid-column: 1 / -1;
  border-radius: 10px;
  padding: 0.85rem;
  background: #f6f7fb;
}

.check-field input,
.check-line input {
  width: 17px;
  height: 17px;
  flex: none;
  margin: 0;
}

.media-field {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 1rem;
  background: #fafbfe;
}

.media-preview {
  display: grid;
  width: 160px;
  height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #c5cbda;
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
  font-size: 0.72rem;
  text-align: center;
}

.media-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-controls {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.media-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.media-file {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.media-meta {
  color: var(--muted);
  font-size: 0.7rem;
}

.editor-actions {
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.primary-actions,
.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.form-message {
  min-height: 1.3rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-message.error {
  color: var(--red);
}

.form-message.success {
  color: var(--green);
}

.history-panel {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
  padding-top: 0.5rem;
}

.history-panel .panel-heading {
  padding-right: 0;
  padding-left: 0;
}

.revision-history {
  display: grid;
  gap: 0.55rem;
}

.revision-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
}

.revision-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.73rem;
  font-weight: 850;
}

.revision-copy {
  display: grid;
  gap: 0.18rem;
}

.revision-copy strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.revision-copy span {
  color: var(--muted);
  font-size: 0.68rem;
}

.revision-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.preview-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(10, 16, 38, 0.5);
  backdrop-filter: blur(2px);
}

.preview-panel {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(760px, 92vw);
  height: 100vh;
  overflow-y: auto;
  padding: 1.4rem;
  background: #fff;
  box-shadow: -24px 0 70px rgba(10, 16, 38, 0.25);
}

.preview-toolbar {
  position: sticky;
  z-index: 2;
  top: -1.4rem;
  border-bottom: 1px solid var(--line);
  margin: -1.4rem -1.4rem 1.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.preview-content {
  display: grid;
  gap: 1.15rem;
}

.preview-content h1 {
  font-size: 2.1rem;
}

.preview-content h2 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.preview-content p,
.preview-content li {
  margin: 0;
  color: #3e4764;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
}

.preview-markdown {
  display: grid;
  gap: 0.8rem;
}

.preview-markdown h2,
.preview-markdown h3,
.preview-markdown p,
.preview-markdown ul,
.preview-markdown ol,
.preview-markdown blockquote {
  margin: 0;
}

.preview-markdown ul,
.preview-markdown ol {
  padding-left: 1.4rem;
}

.preview-markdown blockquote {
  border-left: 4px solid var(--blue);
  padding: 0.4rem 0 0.4rem 1rem;
  background: var(--blue-soft);
}

.preview-markdown a {
  color: var(--blue-dark);
  font-weight: 750;
}

.preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.preview-meta span {
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.preview-deadline {
  font-weight: 750;
}

.preview-content img {
  width: 100%;
  max-height: 420px;
  border-radius: 14px;
  object-fit: contain;
  background: #f4f5f8;
}

.preview-note {
  border-radius: 10px;
  padding: 0.75rem;
  color: var(--amber);
  background: var(--amber-soft);
  font-size: 0.78rem;
}

.toast-region {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: min(390px, calc(100vw - 2rem));
  gap: 0.55rem;
}

.toast {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 11px;
  padding: 0.85rem 1rem;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  line-height: 1.5;
}

.toast.error {
  border-left-color: var(--red);
}

.toast.success {
  border-left-color: var(--green);
}

.toast.warning {
  border-color: #f59e0b;
  background: #fffbeb;
  color: #92400e;
}

@media (max-width: 980px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .manage-tile {
    min-height: 250px;
  }

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

  .content-list-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content-list {
    display: flex;
    max-height: none;
    overflow-x: auto;
  }

  .content-list-item {
    min-width: 230px;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .session-info {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .session-email {
    display: none;
  }

  .security-badge {
    order: 3;
  }

  .content-intro,
  .notice,
  .editor-heading,
  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mfa-panel,
  .form-fields,
  .form-section {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .check-field,
  .media-field,
  .form-section,
  .form-section legend {
    grid-column: 1;
  }

  .media-field {
    grid-template-columns: 1fr;
  }

  .media-preview {
    width: 100%;
    height: 190px;
  }

  .revision-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .revision-row .button {
    grid-column: 1 / -1;
  }

  .revision-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .revision-actions .button {
    flex: 1 1 10rem;
  }
}

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