.yogin-assistant-page {
  --assistant-line: var(--customer-line, #82cdcb);
  --assistant-ink: var(--customer-ink, #4f6985);
  --assistant-ink-strong: var(--customer-ink-strong, #334c65);
  --assistant-muted: var(--customer-muted, #6b7280);
  --assistant-accent: var(--customer-teal, #789b91);
  --assistant-soft: rgba(130, 205, 203, 0.14);
  --assistant-user: rgba(239, 183, 165, 0.28);
  --assistant-card: rgba(255, 255, 255, 0.96);
  width: 100%;
  min-height: min(680px, calc(100dvh - 250px));
  height: min(760px, calc(100dvh - 220px));
  color: var(--assistant-ink);
  background: var(--assistant-card);
  border: 1px solid rgba(130, 205, 203, 0.5);
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto auto;
  isolation: isolate;
}

.yogin-assistant-page *,
.yogin-assistant-page *::before,
.yogin-assistant-page *::after {
  box-sizing: border-box;
}

.yogin-assistant-header {
  min-height: 76px;
  padding: 14px clamp(16px, 3vw, 28px);
  border-block-end: 1px solid rgba(130, 205, 203, 0.42);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.yogin-assistant-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.yogin-assistant-heading-icon,
.yogin-assistant-empty-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--assistant-ink-strong);
  background: var(--assistant-soft);
  display: inline-grid;
  place-items: center;
}

.yogin-assistant-heading-icon svg,
.yogin-assistant-empty-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.yogin-assistant-name {
  max-width: min(54vw, 560px);
  color: var(--assistant-ink-strong);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yogin-assistant-heading h2 {
  margin: 2px 0 0;
  color: var(--assistant-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.yogin-assistant-new {
  min-height: 44px;
  padding: 8px 14px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.yogin-assistant-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yogin-assistant-continue {
  min-height: 44px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.yogin-assistant-new svg,
.yogin-assistant-continue svg {
  width: 18px;
  height: 18px;
  display: block;
}

.yogin-assistant-channel-dialog {
  width: min(520px, calc(100vw - 32px));
  max-width: none;
  max-height: min(760px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  color: var(--assistant-ink, #4f6985);
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 43, 62, 0.28);
  direction: inherit;
}

.yogin-assistant-channel-dialog::backdrop {
  background: rgba(25, 40, 55, 0.48);
  backdrop-filter: blur(2px);
}

.yogin-assistant-channel-panel {
  max-height: min(760px, calc(100dvh - 32px));
  padding: clamp(20px, 4vw, 28px);
  overflow-y: auto;
}

.yogin-assistant-channel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.yogin-assistant-channel-eyebrow {
  margin: 0 0 5px;
  color: var(--assistant-muted, #6b7280);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.yogin-assistant-channel-header h3 {
  margin: 0;
  color: var(--assistant-ink-strong, #334c65);
  font-size: clamp(21px, 4vw, 26px);
  line-height: 1.2;
}

.yogin-assistant-channel-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(130, 205, 203, 0.55);
  border-radius: 50%;
  color: var(--assistant-ink-strong, #334c65);
  background: #fff;
  box-shadow: none;
  display: inline-grid;
  place-items: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.yogin-assistant-channel-description,
.yogin-assistant-channel-instructions {
  color: var(--assistant-muted, #6b7280);
  font-size: 14px;
  line-height: 1.55;
}

.yogin-assistant-channel-description {
  margin: 12px 0 20px;
}

.yogin-assistant-channel-form {
  margin: 0;
  display: grid;
  gap: 9px;
}

.yogin-assistant-channel-form label,
.yogin-assistant-channel-result > label {
  color: var(--assistant-ink-strong, #334c65);
  font-size: 14px;
  font-weight: 750;
}

.yogin-assistant-channel-form select {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(130, 205, 203, 0.72);
  border-radius: 13px;
  color: var(--assistant-ink-strong, #334c65);
  background: #fff;
  font: inherit;
}

.yogin-assistant-channel-create {
  min-height: 48px;
  margin-block-start: 5px;
}

.yogin-assistant-channel-error {
  padding: 9px 11px;
  border-radius: 11px;
  color: #8b2531;
  background: #fde8eb;
  font-size: 13px;
  line-height: 1.4;
}

.yogin-assistant-channel-result {
  margin-block-start: 20px;
  padding: 16px;
  border: 1px solid rgba(130, 205, 203, 0.52);
  border-radius: 16px;
  background: rgba(130, 205, 203, 0.09);
}

.yogin-assistant-channel-code-row {
  margin-block-start: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.yogin-assistant-channel-code-row input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(130, 205, 203, 0.72);
  border-radius: 11px;
  color: var(--assistant-ink-strong, #334c65);
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  text-align: left;
}

.yogin-assistant-channel-code-row button {
  min-width: 82px;
  min-height: 46px;
}

.yogin-assistant-channel-expiry {
  margin: 10px 0 0;
  color: var(--assistant-ink-strong, #334c65);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  unicode-bidi: plaintext;
}

.yogin-assistant-channel-instructions {
  margin: 9px 0 0;
}

.yogin-assistant-channel-copy-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--assistant-muted, #6b7280);
  font-size: 13px;
  line-height: 1.4;
}

.yogin-assistant-channel-copy-status[data-mode="success"] {
  color: #195f4d;
}

.yogin-assistant-channel-copy-status[data-mode="error"] {
  color: #8b2531;
}

.yogin-assistant-connections {
  margin-block-start: 24px;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(130, 205, 203, 0.42);
  display: grid;
  gap: 12px;
}

.yogin-assistant-connections-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.yogin-assistant-connections-header h4 {
  margin: 0;
  color: var(--assistant-ink-strong, #334c65);
  font-size: 17px;
  line-height: 1.3;
}

.yogin-assistant-connections-header p,
.yogin-assistant-connections-empty,
.yogin-assistant-connections-status,
.yogin-assistant-connections-error {
  margin: 5px 0 0;
  line-height: 1.4;
}

.yogin-assistant-connections-header p,
.yogin-assistant-connections-empty {
  color: var(--assistant-muted, #6b7280);
  font-size: 13px;
}

.yogin-assistant-connections-refresh,
.yogin-assistant-connection-disconnect {
  min-height: 44px;
  flex: 0 0 auto;
}

.yogin-assistant-connections-status,
.yogin-assistant-connections-error {
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 13px;
}

.yogin-assistant-connections-status {
  color: #195f4d;
  background: #e1f5ec;
}

.yogin-assistant-connections-error {
  color: #8b2531;
  background: #fde8eb;
}

.yogin-assistant-connections-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.yogin-assistant-connection-item {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(130, 205, 203, 0.42);
  border-radius: 14px;
  background: rgba(130, 205, 203, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.yogin-assistant-connection-identity {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.yogin-assistant-connection-identity strong {
  color: var(--assistant-ink-strong, #334c65);
  font-size: 14px;
}

.yogin-assistant-connection-identity bdi {
  color: var(--assistant-muted, #6b7280);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.yogin-assistant-connection,
.yogin-assistant-error {
  margin: 10px clamp(16px, 3vw, 28px) 0;
  padding: 9px 12px;
  border-radius: 13px;
  font-size: 14px;
  line-height: 1.35;
}

.yogin-assistant-connection {
  color: var(--assistant-ink-strong);
  background: var(--assistant-soft);
}

.yogin-assistant-connection[data-mode="reconnecting"],
.yogin-assistant-connection[data-mode="fallback"],
.yogin-assistant-connection[data-mode="delayed"] {
  color: #6b4f0c;
  background: #fff5d6;
}

.yogin-assistant-connection[data-mode="connected"] {
  color: #195f4d;
  background: #e1f5ec;
}

.yogin-assistant-error {
  color: #8b2531;
  background: #fde8eb;
}

.yogin-assistant-transcript-wrap {
  position: relative;
  min-height: 0;
  display: grid;
}

.yogin-assistant-transcript {
  min-height: 0;
  padding: 22px clamp(16px, 4vw, 42px) 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

.yogin-assistant-transcript:focus-visible {
  outline: 3px solid var(--assistant-ink-strong, #334c65);
  outline-offset: -4px;
}

.yogin-assistant-empty {
  width: min(580px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(24px, 6vh, 64px) 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yogin-assistant-empty-icon {
  width: 68px;
  height: 68px;
  margin-block-end: 18px;
}

.yogin-assistant-empty-icon svg {
  width: 38px;
  height: 38px;
}

.yogin-assistant-empty h3 {
  margin: 0;
  color: var(--assistant-ink-strong);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
}

.yogin-assistant-empty p {
  max-width: 500px;
  margin: 10px 0 0;
  color: var(--assistant-muted);
  font-size: 16px;
  line-height: 1.55;
}

.yogin-assistant-empty-name {
  margin-block-start: 10px;
  color: var(--assistant-ink);
  font-size: 14px;
  font-weight: 700;
}

.yogin-assistant-suggestions {
  width: 100%;
  margin-block-start: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.yogin-assistant-suggestion {
  min-height: 44px;
  max-width: 100%;
  padding: 9px 15px;
  border: 1px solid rgba(130, 205, 203, 0.7);
  border-radius: 999px;
  color: var(--assistant-ink-strong);
  background: #fff;
  box-shadow: none;
  line-height: 1.35;
  white-space: normal;
}

.yogin-assistant-message {
  width: min(82%, 700px);
  margin-block-end: 18px;
  display: grid;
  gap: 5px;
}

.yogin-assistant-message.is-assistant {
  margin-inline-end: auto;
}

.yogin-assistant-message.is-user {
  margin-inline-start: auto;
}

.yogin-assistant-message-meta {
  padding-inline: 8px;
  color: var(--assistant-muted);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  line-height: 1.25;
}

.yogin-assistant-message.is-user .yogin-assistant-message-meta {
  justify-content: flex-end;
}

.yogin-assistant-message-meta bdi {
  color: var(--assistant-ink);
  font-weight: 700;
}

.yogin-assistant-message-meta time {
  unicode-bidi: isolate;
}

.yogin-assistant-bubble {
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(130, 205, 203, 0.48);
  border-radius: 20px 20px 20px 7px;
  background: #fff;
}

[dir="rtl"] .yogin-assistant-message.is-assistant .yogin-assistant-bubble {
  border-radius: 20px 20px 7px 20px;
}

.yogin-assistant-message.is-user .yogin-assistant-bubble {
  border-color: rgba(239, 183, 165, 0.7);
  border-radius: 20px 20px 7px 20px;
  background: var(--assistant-user);
}

[dir="rtl"] .yogin-assistant-message.is-user .yogin-assistant-bubble {
  border-radius: 20px 20px 20px 7px;
}

.yogin-assistant-message.is-pending {
  opacity: 0.78;
}

.yogin-assistant-message.is-failed .yogin-assistant-bubble {
  border-color: rgba(185, 28, 28, 0.45);
}

.yogin-assistant-message-text {
  color: var(--assistant-ink-strong);
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  unicode-bidi: plaintext;
}

.yogin-assistant-message-actions {
  margin-block-start: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yogin-assistant-action {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--assistant-line);
  border-radius: 999px;
  color: var(--assistant-ink-strong);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.yogin-assistant-message-delivery {
  min-height: 24px;
  margin-block-start: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--assistant-muted);
  font-size: 12px;
}

.yogin-assistant-message-status.is-error {
  color: #8b2531;
}

.yogin-assistant-retry {
  min-width: 44px;
  min-height: 44px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 28, 28, 0.4);
  color: #8b2531;
  background: #fff;
  box-shadow: none;
  font-size: 13px;
}

.yogin-assistant-new-messages {
  position: absolute;
  z-index: 2;
  inset-inline-start: 50%;
  bottom: 12px;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--assistant-line);
  color: var(--assistant-ink-strong);
  background: #fff;
  box-shadow: 0 8px 22px rgba(51, 76, 101, 0.16);
  transform: translateX(-50%);
}

[dir="rtl"] .yogin-assistant-new-messages {
  transform: translateX(50%);
}

.yogin-assistant-typing {
  min-height: 36px;
  padding: 5px clamp(18px, 4vw, 42px);
  color: var(--assistant-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.yogin-assistant-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.yogin-assistant-typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: yogin-assistant-dot 1.1s ease-in-out infinite;
}

.yogin-assistant-typing-dots i:nth-child(2) {
  animation-delay: 0.14s;
}

.yogin-assistant-typing-dots i:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes yogin-assistant-dot {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.yogin-assistant-composer {
  position: sticky;
  z-index: 3;
  bottom: 0;
  margin: 0;
  padding: 12px clamp(14px, 3vw, 28px);
  border-block-start: 1px solid rgba(130, 205, 203, 0.45);
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: end;
  gap: 10px;
}

.yogin-assistant-composer textarea {
  min-height: 48px;
  max-height: 132px;
  margin: 0;
  padding: 13px 15px;
  resize: none;
  overflow-y: auto;
  line-height: 1.45;
}

.yogin-assistant-send {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.yogin-assistant-send svg {
  width: 22px;
  height: 22px;
}

[dir="rtl"] .yogin-assistant-send svg {
  transform: scaleX(-1);
}

.yogin-assistant-scope {
  margin: 0;
  padding: 0 clamp(18px, 3vw, 28px) 12px;
  color: var(--assistant-muted);
  background: rgba(255, 255, 255, 0.98);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.yogin-assistant-page button,
.yogin-assistant-page a,
.yogin-assistant-page input,
.yogin-assistant-page select,
.yogin-assistant-page textarea,
.yogin-assistant-transcript {
  -webkit-tap-highlight-color: transparent;
}

.yogin-assistant-page button:focus-visible,
.yogin-assistant-page a:focus-visible,
.yogin-assistant-page input:focus-visible,
.yogin-assistant-page select:focus-visible,
.yogin-assistant-page h2:focus-visible,
.yogin-assistant-page textarea:focus-visible {
  outline: 3px solid var(--assistant-ink-strong, #334c65);
  outline-offset: 2px;
}

.customer-navbar a:focus-visible {
  outline: 3px solid var(--customer-ink-strong, #334c65);
  outline-offset: 3px;
  border-radius: 8px;
}

.yogin-assistant-page button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.yogin-assistant-page .hidden {
  display: none !important;
}

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

.yogin-assistant-page.is-disabled {
  min-height: 420px;
  height: auto;
  place-items: center;
}

.yogin-assistant-disabled {
  width: min(520px, 100%);
  padding: 40px 24px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.yogin-assistant-disabled h2 {
  margin: 0;
  color: var(--assistant-ink-strong);
}

.yogin-assistant-disabled p {
  margin: 0;
  color: var(--assistant-muted);
}

@media (max-width: 780px) {
  .customer-route-assistant.customer-shell {
    min-height: 100dvh;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .customer-route-assistant .customer-surface {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .customer-route-assistant .customer-navbar {
    min-height: calc(72px + env(safe-area-inset-bottom, 0px));
    padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
  }

  .customer-navbar a {
    min-width: 0;
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .customer-navbar {
    padding-inline: clamp(4px, 2vw, 12px);
  }

  .customer-navbar a > span:last-child {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .yogin-assistant-page {
    width: 100%;
    min-height: 0;
    height: calc(100dvh - 76px - 72px - env(safe-area-inset-bottom, 0px));
    border: 0;
    border-radius: 0;
  }

  .yogin-assistant-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .yogin-assistant-heading-icon {
    width: 44px;
    height: 44px;
  }

  .yogin-assistant-name {
    max-width: 42vw;
    font-size: 16px;
  }

  .yogin-assistant-heading h2 {
    font-size: 13px;
  }

  .yogin-assistant-new {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .yogin-assistant-continue {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .yogin-assistant-new > span:last-child,
  .yogin-assistant-continue > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .yogin-assistant-channel-dialog {
    width: 100%;
    max-height: min(88dvh, 760px);
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .yogin-assistant-channel-panel {
    max-height: min(88dvh, 760px);
    padding: 20px 18px max(22px, env(safe-area-inset-bottom, 0px));
  }

  .yogin-assistant-connection,
  .yogin-assistant-error {
    margin: 8px 12px 0;
  }

  .yogin-assistant-transcript {
    padding: 18px 14px 22px;
    scrollbar-gutter: auto;
  }

  .yogin-assistant-empty {
    padding-block-start: clamp(24px, 7vh, 52px);
  }

  .yogin-assistant-empty p {
    font-size: 15px;
  }

  .yogin-assistant-suggestions {
    margin-block-start: 22px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .yogin-assistant-suggestion {
    width: 100%;
  }

  .yogin-assistant-message {
    width: min(90%, 620px);
    margin-block-end: 15px;
  }

  .yogin-assistant-bubble {
    padding: 12px 14px;
  }

  .yogin-assistant-message-text {
    font-size: 16px;
  }

  .yogin-assistant-action {
    flex: 1 1 auto;
  }

  .yogin-assistant-typing {
    padding-inline: 16px;
  }

  .yogin-assistant-composer {
    padding: 10px 12px;
  }

  .yogin-assistant-scope {
    padding: 0 14px 9px;
  }
}

@media (max-width: 420px) {
  .yogin-assistant-message {
    width: 94%;
  }

  .yogin-assistant-heading {
    gap: 9px;
  }

  .yogin-assistant-name {
    max-width: 30vw;
  }

  .yogin-assistant-header-actions {
    gap: 5px;
  }

  .yogin-assistant-channel-code-row {
    grid-template-columns: 1fr;
  }

  .yogin-assistant-channel-code-row button {
    width: 100%;
  }

  .yogin-assistant-connections-header,
  .yogin-assistant-connection-item {
    grid-template-columns: 1fr;
  }

  .yogin-assistant-connections-header {
    display: grid;
  }

  .yogin-assistant-connections-refresh,
  .yogin-assistant-connection-disconnect {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yogin-assistant-transcript {
    scroll-behavior: auto;
  }

  .yogin-assistant-typing-dots i {
    animation: none;
  }
}
