:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #101820;
  background: #f1f7fa;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --background: #f1f7fa;
  --surface: #ffffff;
  --surface-raised: #f6fafc;
  --border: #d6e1e8;
  --border-strong: #c2d2dc;
  --text: #101820;
  --secondary: #65737e;
  --muted: #7e8b96;
  --cyan: #00b8f0;
  --cyan-soft: #e7f7fc;
  --lime: #93e83d;
  --vk: #0077ff;
  --error: #d63f5a;
  --error-soft: #fff0f3;
  --warning: #9a6800;
  --warning-soft: #fff7dc;
  --success: #397e13;
  --success-soft: #effbe8;
  --shadow: 0 14px 38px rgb(38 71 87 / 8%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(0 184 240 / 30%);
  outline-offset: 2px;
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 244px;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.brand {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__wordmark {
  width: 146px;
  max-width: calc(100% - 52px);
  height: 34px;
  object-fit: contain;
}

.sidebar__nav {
  display: grid;
  gap: 6px;
  padding: 18px 12px;
}

.nav-button {
  display: grid;
  min-height: 46px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
}

.nav-button:hover {
  background: var(--surface-raised);
  color: var(--text);
}

.nav-button[aria-current="page"] {
  border-color: #b7e8f6;
  background: var(--cyan-soft);
  color: #006c8f;
  font-weight: 700;
}

.nav-button svg,
.icon-button svg,
.button svg,
.inline-icon svg,
.mobile-nav__button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.panel__header > svg,
.segmented__button > svg,
.banner > svg,
.empty-state__icon > svg,
.history-item__type > svg,
.context-panel svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.panel__header > svg {
  color: #0081a7;
}

.sidebar__footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--border);
}

.account-chip {
  display: grid;
  min-width: 0;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface-raised);
  color: #00799d;
  font-weight: 800;
}

.account-chip__copy {
  min-width: 0;
}

.account-chip__name,
.account-chip__meta {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-chip__name {
  font-size: 14px;
  font-weight: 700;
}

.account-chip__meta {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-shell {
  min-height: 100vh;
  margin-left: 244px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 30px;
  border-bottom: 1px solid var(--border);
  background: rgb(241 247 250 / 92%);
  backdrop-filter: blur(16px);
}

.topbar__title {
  min-width: 0;
}

.topbar h1,
.screen-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 760;
}

.topbar p {
  margin: 5px 0 0;
  color: var(--secondary);
  font-size: 14px;
}

.limit-badge {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #c9e8ba;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.limit-badge--muted {
  border-color: var(--border);
  background: var(--surface);
  color: var(--muted);
}

.limit-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.content {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 32px 30px 54px;
}

.content--narrow {
  width: min(820px, 100%);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 22px;
  align-items: start;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel__body {
  padding: 24px;
}

.panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.panel__header h2,
.panel__header h3 {
  margin: 0;
  font-size: 17px;
}

.panel__header p {
  margin: 5px 0 0;
  color: var(--secondary);
  font-size: 13px;
}

.field-stack {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label,
.section-label {
  color: #41515d;
  font-size: 13px;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--text);
  transition: border-color 120ms ease, background 120ms ease;
}

.input {
  min-height: 48px;
  padding: 0 46px 0 14px;
}

.textarea {
  min-height: 220px;
  resize: vertical;
  padding: 13px 46px 30px 14px;
  line-height: 1.55;
}

.input:hover,
.textarea:hover,
.input:focus,
.textarea:focus {
  border-color: #76cee6;
  background: #ffffff;
}

.input::placeholder,
.textarea::placeholder {
  color: #92a0aa;
}

.input-action {
  position: absolute;
  top: 7px;
  right: 7px;
}

.textarea + .input-action {
  top: 8px;
}

.character-count {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  pointer-events: none;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
}

.segmented__button {
  display: inline-flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
}

.segmented__button[aria-pressed="true"] {
  border-color: #aeddEB;
  background: var(--surface);
  color: #00789d;
  box-shadow: 0 2px 7px rgb(38 71 87 / 8%);
}

.format-option {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  text-align: left;
}

.format-option small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-actions {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

.button--primary {
  background: #101820;
  color: #ffffff;
}

.button--primary:hover:not(:disabled) {
  background: #25313a;
}

.button--vk {
  background: var(--vk);
  color: #ffffff;
}

.button--secondary {
  border-color: var(--border-strong);
  background: var(--surface);
  color: #31414d;
}

.button--secondary:hover:not(:disabled) {
  border-color: #94b5c6;
  background: var(--surface-raised);
}

.button--danger {
  border-color: #efafba;
  background: var(--surface);
  color: var(--error);
}

.button--wide {
  width: 100%;
}

.button--grow {
  flex: 1;
}

.icon-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--secondary);
  cursor: pointer;
}

.icon-button:hover:not(:disabled) {
  border-color: #9fc4d5;
  color: #006f91;
}

.context-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-left: 3px solid var(--cyan);
}

.context-panel h3,
.context-panel p {
  margin: 0;
}

.context-panel h3 {
  font-size: 15px;
}

.context-panel p,
.context-list {
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.55;
}

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

.context-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
}

.context-list__number {
  color: #0080a7;
  font-weight: 800;
}

.banner {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.5;
}

.banner--warning {
  border-color: #ead594;
  background: var(--warning-soft);
  color: #775207;
}

.banner--error {
  border-color: #efb6c0;
  background: var(--error-soft);
  color: #9f2e43;
}

.banner--success {
  border-color: #c8e8ba;
  background: var(--success-soft);
  color: #326f14;
}

.banner strong {
  color: inherit;
}

.empty-state {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 38px 24px;
  text-align: center;
}

.empty-state__inner {
  display: grid;
  width: min(420px, 100%);
  justify-items: center;
  gap: 12px;
}

.empty-state__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #b8e5f2;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: #007b9f;
}

.empty-state__icon svg {
  width: 25px;
  height: 25px;
}

.empty-state h2,
.empty-state p {
  margin: 0;
}

.empty-state h2 {
  font-size: 19px;
}

.empty-state p {
  color: var(--secondary);
  line-height: 1.55;
}

.history-list {
  display: grid;
  gap: 10px;
}

.history-item {
  display: grid;
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.history-item:hover {
  border-color: #a7cedd;
  background: #fbfdfe;
}

.history-item__type {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: #00799d;
}

.history-item__copy {
  min-width: 0;
}

.history-item__title,
.history-item__meta {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item__title {
  font-size: 15px;
  font-weight: 750;
}

.history-item__meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--surface-raised);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 750;
}

.status-pill--completed {
  background: var(--success-soft);
  color: var(--success);
}

.status-pill--failed {
  background: var(--error-soft);
  color: var(--error);
}

.result-shell {
  display: grid;
  gap: 16px;
}

.result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-toolbar__left,
.result-toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.result-copy {
  padding: 28px;
}

.summary-content {
  color: #1c2a34;
  font-size: 16px;
  line-height: 1.72;
}

.summary-content h2,
.summary-content h3,
.summary-content h4 {
  margin: 1.6em 0 0.55em;
  line-height: 1.3;
}

.summary-content h2:first-child,
.summary-content h3:first-child,
.summary-content h4:first-child {
  margin-top: 0;
}

.summary-content p {
  margin: 0 0 0.9em;
}

.summary-bullet {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 7px;
  margin-bottom: 0.6em;
}

.summary-bullet__mark {
  color: #00a7d6;
  font-weight: 900;
}

.summary-quote {
  margin: 1em 0;
  padding: 4px 0 4px 14px;
  border-left: 3px solid var(--cyan);
  color: var(--secondary);
}

.processing {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
}

.processing__inner {
  display: grid;
  width: min(460px, 100%);
  justify-items: center;
  gap: 16px;
}

.processing__signal {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 5px;
}

.processing__signal span {
  width: 7px;
  border-radius: 999px;
  background: var(--cyan);
  animation: signal 1.1s ease-in-out infinite;
}

.processing__signal span:nth-child(1) { height: 20px; animation-delay: -0.45s; }
.processing__signal span:nth-child(2) { height: 35px; animation-delay: -0.30s; }
.processing__signal span:nth-child(3) { height: 52px; animation-delay: -0.15s; }
.processing__signal span:nth-child(4) { height: 30px; background: #28dcbc; }
.processing__signal span:nth-child(5) { height: 18px; background: var(--lime); animation-delay: 0.15s; }

@keyframes signal {
  0%, 100% { transform: scaleY(0.62); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

.progress-track {
  width: min(340px, 100%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce9ee;
}

.progress-track__fill {
  width: var(--progress, 30%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #2eddbf, var(--lime));
  transition: width 300ms ease;
}

.processing h2,
.processing p {
  margin: 0;
}

.processing p {
  color: var(--secondary);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.profile-identity {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.profile-identity .avatar {
  width: 58px;
  height: 58px;
  font-size: 20px;
}

.profile-identity h2,
.profile-identity p {
  margin: 0;
}

.profile-identity p {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 13px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}

.detail-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.detail-row__label {
  color: var(--muted);
}

.detail-row__value {
  min-width: 0;
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.balance-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.balance-total strong {
  font-size: 38px;
  line-height: 1;
}

.balance-total span {
  color: var(--secondary);
  font-size: 13px;
}

.balance-breakdown {
  display: grid;
  gap: 12px;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--secondary);
  font-size: 13px;
}

.balance-row strong {
  color: var(--text);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(7 17 23 / 58%);
  backdrop-filter: blur(5px);
}

.modal {
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 26px 70px rgb(0 0 0 / 24%);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 14px;
}

.modal__header h2,
.modal__header p {
  margin: 0;
}

.modal__header h2 {
  font-size: 20px;
}

.modal__header p {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 13px;
}

.modal__body {
  display: grid;
  gap: 16px;
  padding: 8px 22px 22px;
}

.legal-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.5;
}

.legal-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #101820;
}

.legal-check a,
.text-link {
  color: #007a9f;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal__actions {
  display: flex;
  gap: 10px;
}

.toast-region {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: grid;
  width: min(380px, calc(100vw - 40px));
  gap: 8px;
}

.toast {
  padding: 13px 15px;
  border: 1px solid #b8ccd7;
  border-radius: 8px;
  background: #101820;
  color: #ffffff;
  box-shadow: 0 14px 40px rgb(0 0 0 / 20%);
  font-size: 13px;
  line-height: 1.45;
}

.loading-lines {
  display: grid;
  gap: 10px;
}

.loading-line {
  height: 62px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eaf1f4 0%, #f8fbfc 48%, #eaf1f4 100%);
  background-size: 220% 100%;
  animation: shimmer 1.3s linear infinite;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

.mobile-header,
.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .workspace-grid,
  .profile-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .sidebar,
  .topbar {
    display: none;
  }

  .main-shell {
    margin-left: 0;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: max(8px, env(safe-area-inset-top)) 16px 8px;
    border-bottom: 1px solid var(--border);
    background: rgb(255 255 255 / 94%);
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
  }

  .mobile-brand .brand__mark {
    width: 34px;
    height: 34px;
  }

  .mobile-brand .brand__wordmark {
    width: 116px;
    height: 28px;
  }

  .mobile-limit {
    color: var(--success);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
  }

  .content,
  .content--narrow {
    width: 100%;
    padding: 18px 14px calc(92px + env(safe-area-inset-bottom));
  }

  .screen-mobile-title {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.2;
  }

  .panel__body {
    padding: 18px;
  }

  .panel__header {
    padding: 17px 18px;
  }

  .context-panel {
    padding: 16px;
  }

  .textarea {
    min-height: 200px;
  }

  .form-actions,
  .modal__actions {
    flex-direction: column;
  }

  .button {
    min-height: 46px;
  }

  .mobile-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(16px);
  }

  .mobile-nav__button {
    display: grid;
    min-width: 0;
    min-height: 52px;
    justify-items: center;
    align-content: center;
    gap: 3px;
    padding: 3px 2px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-size: 10px;
    cursor: pointer;
  }

  .mobile-nav__button[aria-current="page"] {
    background: var(--cyan-soft);
    color: #00789d;
    font-weight: 750;
  }

  .history-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .history-item__type {
    width: 38px;
    height: 38px;
  }

  .history-item .status-pill {
    grid-column: 2;
    width: max-content;
  }

  .result-toolbar {
    align-items: flex-start;
  }

  .result-toolbar__right .button span {
    display: none;
  }

  .result-copy {
    padding: 20px 18px;
  }

  .summary-content {
    font-size: 15px;
  }

  .detail-row {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    padding: 10px 0;
  }

  .detail-row__value {
    grid-column: 1;
    grid-row: 2;
  }

  .detail-row .icon-button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal {
    width: 100%;
    max-height: calc(100vh - max(14px, env(safe-area-inset-top)));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .toast-region {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: calc(100vw - 28px);
  }
}

@media (max-width: 380px) {
  .mobile-brand .brand__wordmark {
    width: 102px;
  }

  .mobile-limit {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .segmented__button {
    font-size: 13px;
  }

  .panel__body {
    padding: 16px 14px;
  }
}

@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;
  }
}
