/* [project]/packages/ui/src/styles.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --accent: #166534;
  --accent-soft: #dcfce7;
  --ink: #17211b;
  --muted: #5d6962;
  --surface: #ffffffe6;
  --line: #17211b1f;
  --background: #f4f7f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, var(--accent-soft), transparent 34rem),
    var(--background);
}

.theme-sklad {
  --accent: #1d4ed8;
  --accent-soft: #dbeafe;
}

.theme-admin {
  --accent: #7e22ce;
  --accent-soft: #f3e8ff;
}

main {
  align-content: center;
  width: min(1120px, 100% - 32px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
}

.shell {
  border: 1px solid var(--line);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px #17211b1a;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 12px;
  font-weight: 750;
  display: flex;
}

.brand__mark {
  color: #fff;
  background: var(--accent);
  border-radius: 11px;
  place-items: center;
  width: 36px;
  height: 36px;
  display: grid;
}

.environment {
  color: var(--muted);
  font-size: .875rem;
}

.content-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 40px;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: .8rem;
  font-weight: 800;
}

h1 {
  letter-spacing: -.055em;
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: .98;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.complete {
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 750;
  display: inline-flex;
}

.complete:before {
  content: "✓";
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: .75rem;
  display: grid;
}

.status-card {
  border: 1px solid var(--line);
  background: #ffffffb8;
  border-radius: 20px;
  align-self: end;
  padding: 22px;
}

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

.status-card h2 {
  margin: 0;
  font-size: 1rem;
}

.status-card__content {
  color: var(--muted);
  margin-top: 28px;
  font-size: .925rem;
  line-height: 1.55;
}

.status-badge {
  color: #9f1239;
  background: #ffe4e6;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: .75rem;
  font-weight: 750;
  display: inline-flex;
}

.status-badge > span {
  background: currentColor;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.status-badge--available {
  color: #166534;
  background: #dcfce7;
}

.status-badge--not-configured {
  color: #92400e;
  background: #fef3c7;
}

.error-panel {
  padding: clamp(28px, 6vw, 64px);
}

.error-panel button {
  color: #fff;
  background: var(--accent);
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
  padding: 11px 16px;
  font-weight: 700;
}

@media (max-width: 760px) {
  main {
    width: min(100% - 20px, 620px);
    padding: 10px 0;
  }

  .shell {
    border-radius: 20px;
  }

  .topbar {
    padding: 16px 18px;
  }

  .environment {
    display: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 22px;
  }
}

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

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

.kp-button {
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  font-weight: 700;
  transition: opacity .12s, transform .12s;
  display: inline-flex;
}

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

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

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

.kp-button--danger {
  background: #b42318;
}

.kp-button--ghost {
  color: var(--muted);
  background: none;
}

.kp-input {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8d1;
  border-radius: 10px;
  outline: none;
  padding: 9px 12px;
}

.kp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}

.kp-textarea {
  resize: vertical;
  min-height: 96px;
}

.kp-checkbox {
  cursor: pointer;
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.kp-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.kp-field {
  gap: 7px;
  display: grid;
}

.kp-field__label {
  font-size: .875rem;
  font-weight: 700;
}

.kp-field__message {
  color: var(--muted);
  font-size: .78rem;
}

.kp-field__message.is-error {
  color: #b42318;
}

.kp-dialog {
  border: 1px solid var(--line);
  width: min(520px, 100% - 24px);
  color: var(--ink);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 70px #17211b38;
}

.kp-dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #0e18127a;
}

.kp-dialog header, .kp-dialog footer {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.kp-dialog header {
  border-bottom: 1px solid var(--line);
}

.kp-dialog header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.kp-dialog footer {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.kp-dialog__body {
  color: var(--muted);
  padding: 20px;
  line-height: 1.55;
}

.kp-table-wrap {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow-x: auto;
}

.kp-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.kp-table th, .kp-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.kp-table th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #f7f9f7;
  font-size: .78rem;
}

.kp-table tr:last-child td {
  border-bottom: 0;
}

.kp-pagination {
  color: var(--muted);
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-size: .875rem;
  display: flex;
}

.kp-badge {
  color: #475467;
  background: #f2f4f7;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .75rem;
  font-weight: 750;
  display: inline-flex;
}

.kp-badge--success {
  color: #166534;
  background: #dcfce7;
}

.kp-badge--warning {
  color: #92400e;
  background: #fef3c7;
}

.kp-badge--danger {
  color: #9f1239;
  background: #ffe4e6;
}

.kp-badge--info {
  color: #1e40af;
  background: #dbeafe;
}

.kp-alert {
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 11px;
  gap: 4px;
  padding: 13px 15px;
  display: grid;
}

.kp-alert--success {
  color: #166534;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.kp-alert--warning {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.kp-alert--danger {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.kp-toast {
  z-index: 50;
  border-radius: 11px;
  justify-content: space-between;
  gap: 16px;
  min-width: 280px;
  padding: 13px 15px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 14px 40px #00000029;
}

.kp-toast button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.kp-spinner {
  border: 2px solid;
  border-right-color: #0000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  animation: .65s linear infinite kp-spin;
  display: inline-block;
}

.kp-spinner--small {
  width: 15px;
  height: 15px;
}

.kp-spinner--large {
  border-width: 3px;
  width: 34px;
  height: 34px;
}

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

.kp-state {
  color: var(--muted);
  text-align: center;
  background: #ffffffa6;
  border: 1px dashed #cfd8d1;
  border-radius: 16px;
  justify-items: center;
  gap: 10px;
  padding: 48px 24px;
  display: grid;
}

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

.kp-state h2 {
  color: var(--ink);
  font-size: 1.1rem;
}

.kp-state__icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
  place-items: center;
  font-weight: 800;
  display: grid;
}

.kp-state--error .kp-state__icon {
  color: #b42318;
  background: #fee4e2;
}

.kp-page-header {
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  display: flex;
}

.kp-page-header h1 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.kp-page-header p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 8px;
  font-size: .75rem;
  font-weight: 800;
}

.kp-page-header__description {
  color: var(--muted);
  margin-top: 10px;
}

.kp-page-header__actions {
  gap: 10px;
  display: flex;
}

.kp-upload {
  min-height: 100px;
  color: var(--accent);
  cursor: pointer;
  background: #fff;
  border: 1px dashed #aab8ae;
  border-radius: 12px;
  place-items: center;
  padding: 20px;
  font-weight: 700;
  display: grid;
}

.kp-upload input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}

.kp-upload.is-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.kp-stat {
  border: 1px solid var(--line);
  background: #fff;
  border-left: 4px solid #98a2b3;
  border-radius: 13px;
  gap: 7px;
  padding: 18px;
  display: grid;
}

.kp-stat > span, .kp-stat small {
  color: var(--muted);
}

.kp-stat strong {
  font-size: 1.75rem;
}

.kp-stat--success {
  border-left-color: #16a34a;
}

.kp-stat--warning {
  border-left-color: #d97706;
}

.kp-stat--danger {
  border-left-color: #dc2626;
}

.kp-app-shell {
  background: #f3f6f3;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.kp-sidebar {
  color: #e8f1eb;
  background: #17251c;
  flex-direction: column;
  height: 100vh;
  padding: 18px 14px;
  display: flex;
  position: sticky;
  top: 0;
}

.kp-sidebar__brand {
  color: #fff;
  align-items: center;
  gap: 10px;
  padding: 5px 8px 22px;
  font-weight: 800;
  display: flex;
}

.kp-sidebar__brand > span {
  background: var(--accent);
  border-radius: 10px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.kp-sidebar nav {
  gap: 5px;
  display: grid;
}

.kp-sidebar nav a {
  color: inherit;
  border-radius: 9px;
  padding: 10px 11px;
  text-decoration: none;
}

.kp-sidebar nav a:hover, .kp-sidebar nav a[aria-current="page"] {
  color: #fff;
  background: #ffffff1a;
}

.kp-sidebar__footer {
  color: #aebbb2;
  margin-top: auto;
  padding: 12px 8px 2px;
  font-size: .82rem;
}

.kp-app-shell__main {
  min-width: 0;
}

.kp-topbar {
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffffe0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 12px clamp(18px, 3vw, 32px);
  display: flex;
}

.kp-topbar__actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.kp-app-content {
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: clamp(22px, 4vw, 40px);
  display: block;
}

.kp-auth-page {
  place-items: center;
  min-height: 100vh;
  padding: 20px;
  display: grid;
}

.kp-auth-card {
  border: 1px solid var(--line);
  background: #fffffff0;
  border-radius: 20px;
  width: min(420px, 100%);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: 0 20px 60px #17211b1a;
}

.kp-auth-card h1 {
  letter-spacing: -.035em;
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.kp-auth-card > p {
  color: var(--muted);
  margin: 0 0 24px;
}

.kp-auth-card form {
  gap: 17px;
  display: grid;
}

.kp-auth-card .kp-button {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .kp-app-shell {
    grid-template-columns: 1fr;
  }

  .kp-sidebar {
    height: auto;
    padding-bottom: 10px;
    position: static;
  }

  .kp-sidebar nav {
    display: flex;
    overflow-x: auto;
  }

  .kp-sidebar__footer {
    display: none;
  }

  .kp-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .kp-pagination {
    justify-content: space-between;
  }

  .kp-pagination span {
    font-size: .75rem;
  }
}

/* [project]/apps/wms/app/wms.css [app-client] (css) */
.theme-wms {
  color: #17231d;
  background: #f5f7f6;
}

.wms-nav {
  gap: .28rem;
  display: grid;
}

.wms-nav a {
  color: inherit;
  border-radius: .6rem;
  padding: .65rem .8rem;
  text-decoration: none;
}

.wms-nav a:hover, .wms-nav a[aria-current="page"] {
  color: #10633f;
  background: #1c7c531f;
}

.wms-seller {
  justify-content: flex-end;
  margin-bottom: 1rem;
  display: flex;
}

.wms-seller label {
  gap: .3rem;
  min-width: min(100%, 320px);
  display: grid;
}

.wms-seller select, .wms-form select, .wms-form input, .wms-form textarea, .wms-filters input {
  width: 100%;
  color: inherit;
  background: #fff;
  border: 1px solid #ccd6d0;
  border-radius: .55rem;
  padding: .68rem .75rem;
}

.wms-kpis {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  display: grid;
}

.wms-kpi {
  min-height: 120px;
  color: inherit;
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 8px;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  display: grid;
  box-shadow: 0 2px 8px #17231d0a;
}

.wms-kpi b {
  color: #16734b;
  align-self: end;
}

.wms-filters {
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1rem 0;
  display: flex;
}

.wms-filters input {
  max-width: 320px;
}

.wms-poll {
  background: #e8f2ed;
  border-radius: .6rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: .8rem 0;
  padding: .65rem .8rem;
  font-size: .9rem;
  display: flex;
}

.wms-list {
  gap: .7rem;
  margin: 1rem 0;
  display: grid;
}

.wms-card {
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 8px;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.wms-card-problem {
  background: snow;
  border-left: 5px solid #c83d3d;
}

.wms-card h3, .wms-card p {
  margin: 0 0 .3rem;
}

.wms-card a {
  color: #126b45;
}

.wms-card small {
  color: #66756d;
  word-break: break-all;
}

.wms-card-meta {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  display: flex;
}

.wms-card-meta span:not([class]) {
  background: #f1f4f2;
  border-radius: .4rem;
  padding: .35rem .5rem;
}

.wms-danger {
  color: #a62222;
  font-weight: 700;
}

.wms-form-panel {
  background: #fff;
  border: 1px solid #d6dfda;
  border-radius: 8px;
  margin: .8rem 0;
}

.wms-form-panel summary {
  cursor: pointer;
  color: #126b45;
  padding: .8rem 1rem;
  font-weight: 700;
}

.wms-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: end;
  gap: .8rem;
  padding: 0 1rem 1rem;
  display: grid;
}

.wms-form label {
  gap: .3rem;
  font-size: .9rem;
  display: grid;
}

.wms-form textarea {
  resize: vertical;
  font-family: inherit;
}

.wms-form > [role="alert"] {
  grid-column: 1 / -1;
}

.wms-pagination {
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  display: flex;
}

.wms-back {
  color: #126b45;
  margin-bottom: .8rem;
  display: inline-block;
}

.wms-detail {
  gap: .3rem;
  margin: 1rem 0;
  display: grid;
}

.wms-detail > div {
  background: #fff;
  border-bottom: 1px solid #e3e9e5;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1rem;
  padding: .65rem .8rem;
  display: grid;
}

.wms-detail dt {
  color: #526159;
  font-weight: 700;
}

.wms-detail dd {
  min-width: 0;
  margin: 0;
}

.wms-detail pre {
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  margin: 0;
}

.wms-actions {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: .7rem;
  margin: 1rem 0;
  display: flex;
}

.wms-actions .wms-form-panel, .wms-actions > [role="alert"] {
  flex: 100%;
}

.wms-image-placeholder {
  color: #607068;
  text-align: center;
  background: #f1f4f2;
  border: 1px dashed #aebdb5;
  border-radius: 8px;
  flex: 100%;
  place-items: center;
  min-height: 150px;
  display: grid;
}

@media (max-width: 760px) {
  .kp-sidebar {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .kp-sidebar > nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
  }

  .kp-sidebar > nav > .wms-nav {
    width: max-content;
    min-width: 100%;
    display: flex;
  }

  .wms-nav a {
    flex: none;
  }

  .kp-app-shell__main, .kp-topbar, .kp-app-content {
    min-width: 0;
    max-width: 100%;
  }

  .wms-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .wms-seller {
    justify-content: stretch;
  }

  .wms-seller label, .wms-filters input {
    width: 100%;
    max-width: none;
  }

  .wms-card, .wms-poll {
    flex-direction: column;
    align-items: stretch;
  }

  .wms-card-meta {
    justify-content: flex-start;
  }

  .wms-detail > div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .wms-pagination {
    flex-wrap: wrap;
  }
}

.theme-seller {
  color: #17211c;
  background: #f4f6f5;
}

.seller-auth, .seller-onboarding, .seller-state {
  min-height: 100vh;
  padding: 32px 20px;
}

.seller-auth {
  background: #eef2f0;
  place-items: center;
  display: grid;
}

.seller-auth__panel {
  background: #fff;
  border: 1px solid #d8e0dc;
  border-radius: 8px;
  width: min(100%, 520px);
  padding: 28px;
  box-shadow: 0 16px 40px #1c30261a;
}

.seller-auth__panel form {
  gap: 14px;
  margin: 22px 0;
  display: grid;
}

.seller-auth__brand {
  color: #176b4b;
  font-size: 20px;
  font-weight: 800;
}

.seller-invite-success {
  margin: 20px 0;
}

.seller-login-registration {
  color: #64716a;
  text-align: center;
  border-top: 1px solid #d8e0dc;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
}

.seller-login-registration .kp-button {
  width: 100%;
}

:is(.kp-dialog:has(.seller-application-form), .kp-dialog:has(.seller-application-success)) {
  width: min(680px, 100% - 24px);
  max-height: calc(100vh - 32px);
}

.kp-dialog:has(.seller-application-form) .kp-dialog__body {
  overflow-y: auto;
}

.seller-application-form {
  gap: 18px;
  display: grid;
}

.seller-application-form__intro {
  color: #64716a;
  margin: 0;
}

.seller-application-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.seller-application-form__wide {
  grid-column: 1 / -1;
}

.seller-application-form > .kp-button {
  justify-self: start;
}

.seller-application-form > small {
  color: #64716a;
  line-height: 1.5;
}

.seller-application-success {
  text-align: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 4px;
  display: grid;
}

.seller-application-success__mark {
  color: #166534;
  background: #dcfce7;
  border-radius: 50%;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  font-weight: 800;
  display: grid;
}

.seller-application-success h2, .seller-application-success p {
  margin: 0;
}

.seller-application-success p {
  color: #526159;
  max-width: 520px;
  line-height: 1.6;
}

.seller-registration-panel {
  width: min(100%, 760px);
}

.seller-registration-back {
  margin-bottom: 0;
}

.seller-onboarding {
  max-width: 900px;
  margin: 0 auto;
}

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

.seller-steps li {
  background: #fff;
  border: 1px solid #d8e0dc;
  border-radius: 6px;
  grid-template-columns: minmax(180px, 1fr) 2fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  display: grid;
}

.seller-steps span {
  color: #64716a;
}

@media (max-width: 760px) {
  .seller-auth, .seller-onboarding, .seller-state {
    padding: 16px;
  }

  .seller-auth__panel {
    padding: 20px;
  }

  .seller-steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seller-application-form__grid {
    grid-template-columns: 1fr;
  }

  .seller-application-form__wide {
    grid-column: auto;
  }

  .wms-filters, .wms-card {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=_1d1gsv9._.css.map*/