/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[1].use[2]!./src/styles.css ***!
  \********************************************************************************************************************************************************************************************************/
:root {
  --customer-bg: #f5f0ef;
  --customer-surface: #fffdfc;
  --customer-panel: rgba(255, 255, 255, 0.94);
  --customer-panel-strong: rgba(255, 255, 255, 0.98);
  --customer-text: #161616;
  --customer-muted: #6c6a6a;
  --customer-line: rgba(22, 22, 22, 0.09);
  --customer-accent: #e9262a;
  --customer-accent-dark: #b31c21;
  --customer-warning: #d9912b;
  --customer-danger: #d4574f;
  --customer-success: #1b8d61;
  --customer-shadow: 0 24px 60px rgba(17, 25, 34, 0.12);
}

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

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #161616;
  color: var(--customer-text);
  background:
    radial-gradient(circle at top left, rgba(233, 38, 42, 0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(22, 22, 22, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7f6 0%, #f5f0ef 100%);
  background:
    radial-gradient(circle at top left, rgba(233, 38, 42, 0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(22, 22, 22, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7f6 0%, var(--customer-bg) 100%);
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
}

.customer-page-shell {
  padding: 12px 0 24px;
}

.customer-card {
  background: rgba(255, 255, 255, 0.94);
  background: var(--customer-panel);
  border: 1px solid rgba(22, 22, 22, 0.09);
  border: 1px solid var(--customer-line);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17, 25, 34, 0.12);
  box-shadow: var(--customer-shadow);
}

.brand-logo {
  display: block;
  max-width: 100%;
}

.page-head {
  margin-bottom: 22px;
}

.page-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.1;
}

.page-head p {
  margin: 10px 0 0;
  max-width: 48rem;
  color: #6c6a6a;
  color: var(--customer-muted);
}

.customer-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.customer-status.is-success {
  color: #1b8d61;
  color: var(--customer-success);
  background: rgba(21, 148, 110, 0.12);
}

.customer-status.is-warning {
  color: #a56a0d;
  background: rgba(229, 154, 45, 0.16);
}

.customer-status.is-danger {
  color: #d4574f;
  color: var(--customer-danger);
  background: rgba(212, 87, 79, 0.12);
}

.customer-status.is-neutral {
  color: #6c6a6a;
  color: var(--customer-muted);
  background: rgba(25, 33, 38, 0.06);
}

.customer-empty {
  padding: 40px;
  text-align: center;
  color: #6c6a6a;
  color: var(--customer-muted);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.list-card {
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  grid-gap: 16px;
  gap: 16px;
  align-items: flex-start;
}

.card-head p {
  margin: 6px 0 0;
  color: #6c6a6a;
  color: var(--customer-muted);
}

dl {
  margin: 0;
}

dt {
  color: #6c6a6a;
  color: var(--customer-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.page-loader,
.state-loader {
  padding: 28px;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.state-loader {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.skeleton-block,
.skeleton-line,
.skeleton-pill {
  position: relative;
  overflow: hidden;
  background: rgba(22, 22, 22, 0.06);
}

.skeleton-block::after,
.skeleton-line::after,
.skeleton-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: skeleton-wave 1.4s infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 999px;
}

.skeleton-line.short {
  width: 42%;
}

.skeleton-line.medium {
  width: 64%;
}

.skeleton-pill {
  width: 92px;
  height: 34px;
  border-radius: 999px;
}

.skeleton-block {
  min-height: 180px;
  border-radius: 24px;
}

.button-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.button-spinner.is-dark {
  color: #e9262a;
  color: var(--customer-accent);
  border-color: rgba(233, 38, 42, 0.18);
}

.btn-inline-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  gap: 10px;
}

.btn-inline-loader[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.app-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(245, 240, 239, 0.7);
  backdrop-filter: blur(8px);
}

.app-overlay__panel {
  min-width: 180px;
  padding: 18px 22px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  grid-gap: 12px;
  gap: 12px;
  background: rgba(18, 18, 18, 0.94);
  color: white;
  box-shadow: 0 24px 60px rgba(17, 25, 34, 0.12);
  box-shadow: var(--customer-shadow);
}

.text-button {
  border: 0;
  background: transparent;
  color: #e9262a;
  color: var(--customer-accent);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

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

.customer-confirm-window .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(17, 25, 34, 0.18);
  background: transparent;
}

.customer-draft-window .modal-content {
  border: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(17, 25, 34, 0.18);
  background: transparent;
}

.customer-confirm-window .modal-body {
  padding: 0;
}

.customer-draft-window .modal-body {
  padding: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
}

.modal-dialog-centered {
  min-height: calc(100% - 3.5rem);
  display: flex;
  align-items: center;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
}

.customer-confirm-dialog {
  width: min(100% - 24px, 560px);
}

.customer-draft-dialog {
  width: min(100% - 24px, 1040px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(15, 18, 22, 0.48);
  backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

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

@keyframes skeleton-wave {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 720px) {
  .customer-page-shell {
    padding: 8px 0 20px;
  }

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

  .list-card,
  .customer-empty,
  .page-loader {
    padding: 18px;
  }

  .card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-dialog {
    margin: 12px auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 24px);
  }
}

