.wiz-body {
  background: #fff;
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
}

.wiz-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
}

.wiz-top {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  min-height: 56px;
  padding: 6px 8px 6px 4px;
}

.wiz-back {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  color: #111;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.wiz-back:hover {
  background: var(--bg-soft);
}

.wiz-kicker {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.wiz-help {
  justify-self: end;
}

.wiz-progress {
  display: flex;
  gap: 6px;
  padding: 4px 20px 0;
}

.wiz-progress span {
  flex: 1;
  min-width: 0;
  height: 4px;
  border-radius: 99px;
  background: #ececec;
  overflow: hidden;
  position: relative;
}

.wiz-progress span.is-on {
  background: var(--red);
}

.wiz-progress span.is-on.is-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left;
  animation: fillSeg 0.45s var(--ease) both;
}

.wiz-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px;
  position: relative;
  overflow: hidden;
}

.wiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: stepIn 0.5s var(--ease) both;
}

.wiz-step[hidden] {
  display: none;
}

.wiz-step.is-out {
  animation: stepOut 0.28s ease both;
}

.wiz-icon-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 8px 0 28px;
}

.wiz-icon-bg {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 14px 34px rgba(16, 19, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
}

.wiz-icon-wrap--flag .wiz-icon-bg {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
}

.wiz-icon-poland {
  width: 62px;
  height: 66px;
}

.wiz-icon-wrap--id .wiz-icon-bg {
  background: linear-gradient(145deg, #f8fbff 0%, #e8f1ff 55%, #dbeafe 100%);
}

.wiz-icon-wrap--car .wiz-icon-bg {
  background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 55%, #e2e8f0 100%);
}

.wiz-icon-wrap--route .wiz-icon-bg {
  background: linear-gradient(145deg, #fffaf5 0%, #ffedd5 55%, #fed7aa 100%);
}

.wiz-icon-wrap--income .wiz-icon-bg {
  background: linear-gradient(145deg, #f7fdf9 0%, #dcfce7 55%, #bbf7d0 100%);
}

.wiz-icon-wrap--people .wiz-icon-bg {
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 55%, #e9d5ff 100%);
}

.wiz-icon-wrap--fail .wiz-icon-bg {
  background: linear-gradient(145deg, #fff5f5 0%, #ffe4e6 55%, #fecdd3 100%);
}

.wiz-icon-wrap--consent .wiz-icon-bg {
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 55%, #bae6fd 100%);
}

.wiz-icon {
  width: 72px;
  height: 72px;
  display: block;
}

.wiz-icon-bg--photo {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.wiz-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wiz-icon-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(17, 24, 39, 0.08);
  pointer-events: none;
}

.wiz-badge {
  position: absolute;
  right: 6px;
  bottom: 8px;
  min-width: 36px;
  height: 36px;
  padding: 0 7px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px #fff;
  animation: popIn 0.45s var(--ease) 0.25s both;
}

.wiz-step h1 {
  font-size: clamp(22px, 5.6vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 20ch;
}

.wiz-step p {
  margin-top: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.45;
  max-width: 34ch;
}

.wiz-actions {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.btn-yes,
.btn-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background 0.18s, border-color 0.18s;
}

.btn-yes {
  background: var(--red);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.22);
}

.btn-yes:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-yes:active,
.btn-no:active {
  transform: scale(0.985);
}

.btn-no {
  background: #fff;
  color: #111;
  border: 1px solid #e5e7eb;
}

.btn-no:hover {
  border-color: #d1d5db;
  background: #fafafa;
}

.wiz-actions--stack {
  gap: 8px;
}

.wiz-choice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.wiz-choice:hover {
  border-color: #d1d5db;
  background: #fafafa;
}

.wiz-choice:active {
  transform: scale(0.985);
}

.wiz-choice--primary {
  border-color: rgba(225, 6, 0, 0.25);
  background: #fff5f5;
  color: #9f0712;
}

.wiz-choice--primary:hover {
  border-color: rgba(225, 6, 0, 0.45);
  background: #ffecec;
}

.wiz-choice--muted {
  color: #6b7280;
}

.wiz-consent-step {
  align-items: stretch;
  text-align: left;
  width: 100%;
}

.wiz-consent-step .wiz-icon-wrap {
  align-self: center;
}

.wiz-consent-step h1 {
  max-width: none;
  text-align: left;
}

.wiz-consent-lead {
  margin-top: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
}

.wiz-consent-list {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 22px;
}

.wiz-consent-item {
  display: grid;
  gap: 8px;
}

.wiz-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e8ebf0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.wiz-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.wiz-consent-text {
  font-size: 14px;
  line-height: 1.5;
  color: #101317;
}

.wiz-consent-toggle {
  justify-self: start;
  margin-left: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #0452a8;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wiz-consent-detail {
  margin: 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e8ebf0;
  color: #5f6772;
  font-size: 13px;
  line-height: 1.55;
}

.wiz-consent-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 13px;
  line-height: 1.45;
}

.wiz-fail-note {
  margin-top: 12px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
}

.wiz-safe {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-align: left;
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

.wiz-safe svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #111;
  margin-top: 2px;
}

.wiz-safe strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.wiz-safe p {
  color: #4b5563;
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0;
  max-width: none;
}

/* Verify */
.verify-top {
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid transparent;
}

.verify-top .logo {
  justify-self: start;
}

.verify-top .wiz-help {
  justify-self: end;
}

.verify-top .logo-img {
  height: 32px;
  width: auto;
  max-width: none;
}

.verify-top .logo-eagle {
  height: 24px;
  max-width: none;
}

.verify-top .logo-wordmark {
  height: 18px;
  max-width: none;
}

.verify-top .logo-mark {
  width: auto;
  height: 22px;
}

.verify-top .logo-word {
  font-size: 18px;
}

.verify-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.verify-main {
  padding: 28px 20px 24px;
  animation: stepIn 0.5s var(--ease) both;
}

@media (max-width: 768px) {
  .verify-main,
  .wiz-main {
    padding-bottom: calc(24px + var(--support-fab-offset, 72px));
  }
}

.verify-h1 {
  text-align: center;
  font-size: clamp(22px, 5.5vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.verify-lead {
  text-align: center;
  color: #6b7280;
  font-size: 14.5px;
  line-height: 1.45;
  margin-bottom: 22px;
}

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

.verify-list--featured {
  margin-bottom: 18px;
}

.verify-section-label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
}

.verify-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #e3e7ee;
  border-radius: 12px;
  padding: 14px 14px;
  min-height: 64px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}

.verify-item--featured {
  align-items: start;
  background: #eef3f8;
  border-color: #d8e1ec;
  padding: 16px 14px;
}

.verify-item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  width: 100%;
}

.verify-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.verify-item-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #101317;
  line-height: 1.25;
}

.verify-item-sub {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #5f6772;
  line-height: 1.4;
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: #0452a8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.verify-system-error {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  font-size: 13px;
  line-height: 1.45;
}

.verify-system-error strong {
  display: block;
  margin-bottom: 2px;
}

.verify-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0452a8;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  text-align: left;
}

.verify-info-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.verify-info-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  max-width: none;
}

.verify-info-text {
  display: block;
  text-align: left;
}

.verify-info-link:hover .verify-info-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gov-methods-lead {
  margin-bottom: 18px;
}

.gov-accordion {
  border-top: 1px solid #e5e7eb;
}

.gov-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.gov-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: #101317;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.gov-accordion-trigger:hover {
  color: #0452a8;
}

.gov-accordion-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #0452a8;
  transition: transform 0.2s ease;
}

.gov-accordion-trigger[aria-expanded="true"] .gov-accordion-chev {
  transform: rotate(180deg);
}

.gov-accordion-panel {
  padding: 0 0 16px;
}

.gov-accordion-panel[hidden] {
  display: none;
}

.gov-accordion-panel p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: #4b5563;
}

.gov-accordion-panel p:last-child {
  margin-bottom: 0;
}

.gov-accordion-panel ul {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
}

.gov-accordion-panel li + li {
  margin-top: 4px;
}

.gov-accordion-subhead {
  font-weight: 700 !important;
  color: #101317 !important;
}

.gov-accordion-panel a {
  color: #0452a8;
  text-decoration: underline;
}

.verify-item:hover {
  transform: translateY(-2px);
  border-color: #f0d0ce;
  box-shadow: var(--shadow);
}

.verify-item:active {
  transform: scale(0.99);
}

.v-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.v-ico img {
  width: 40px;
  height: 40px;
  display: block;
}

.verify-item--featured .v-ico {
  margin-top: 2px;
}

.verify-item .chev {
  width: 18px;
  height: 18px;
  color: #0452a8;
  align-self: center;
}

.verify-item--featured .chev {
  align-self: center;
  margin-top: 8px;
}

.verify-safe {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #f3f4f6;
  border-radius: 12px;
}

.verify-safe svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #374151;
  margin-top: 2px;
}

.verify-safe p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.45;
}

.redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  animation: fade 0.25s ease both;
}

.redirect-overlay[hidden] {
  display: none;
}

.redirect-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.redirect-card p {
  font-weight: 700;
  font-size: 16px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #ececec;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.gov-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.gov-modal[hidden] {
  display: none;
}

.gov-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 23, 0.52);
  backdrop-filter: blur(6px);
  animation: fade 0.25s ease both;
}

.gov-modal-card {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  box-shadow: 0 16px 48px rgba(16, 19, 23, 0.18);
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gov-modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  color: #0452a8;
  cursor: pointer;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.gov-modal-x:hover {
  background: #f4f6fb;
}

.gov-modal-card h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #101317;
  margin: 0 40px 16px 0;
}

.gov-modal-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #34383f;
  margin: 0 0 12px;
}

.gov-modal-card a {
  color: #0452a8;
  text-decoration: underline;
}

.gov-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.gov-modal-close {
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 6px;
  background: #0452a8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.gov-modal-close:hover {
  background: #063477;
}

@keyframes fillSeg {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes stepOut {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateX(-24px);
  }
}

@keyframes stepInBack {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.dane-shell .wiz-kicker {
  font-size: 15px;
}

.dane-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 20px 24px;
  gap: 20px;
}

.dane-intro {
  text-align: left;
}

.dane-step-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dane-intro h1 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #101317;
}

.dane-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5f6772;
}

.dane-form {
  display: grid;
  gap: 16px;
  padding: 20px 18px;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 19, 23, 0.04);
}

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

.dane-label {
  font-size: 14px;
  font-weight: 700;
  color: #101317;
}

.dane-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: #101317;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dane-field input:focus {
  outline: none;
  border-color: #0452a8;
  box-shadow: 0 0 0 3px rgba(4, 82, 168, 0.12);
}

.dane-phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dane-phone:focus-within {
  border-color: #0452a8;
  box-shadow: 0 0 0 3px rgba(4, 82, 168, 0.12);
}

.dane-phone-prefix {
  display: grid;
  place-items: center;
  padding: 0 14px;
  background: #f3f5f8;
  border-right: 1px solid #d8dee8;
  font-size: 16px;
  font-weight: 700;
  color: #101317;
  user-select: none;
}

.dane-phone input {
  min-height: 48px;
  padding: 12px 14px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dane-phone input:focus {
  box-shadow: none;
}

.dane-hint {
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
}

.dane-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 13px;
  line-height: 1.45;
}

.dane-submit {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(225, 6, 0, 0.18);
}

.dane-submit:hover {
  background: #c90500;
}

.dane-submit:active {
  transform: scale(0.99);
}

.email-verify-main {
  align-items: center;
}

.email-verify-intro {
  text-align: center;
}

.email-verify-intro h1,
.email-verify-intro p {
  text-align: center;
}

.email-verify-intro p strong {
  color: #101317;
}

.email-verify-form {
  width: 100%;
}

.email-verify-form #email-code {
  letter-spacing: 0.28em;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.email-resend {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #0452a8;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-resend:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

html.verify-access-lock body {
  visibility: hidden;
}

html.verify-access-lock::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
}

.dane-safe {
  margin-top: auto;
}

@media (min-width: 768px) {
  .wiz-body {
    background: #f6f7f8;
  }

  .wiz-shell {
    min-height: 100dvh;
    box-shadow: 0 0 0 1px #ececec, var(--shadow-lg);
  }
}

@media (max-width: 380px) {
  .verify-title {
    font-size: 12px;
  }

  .wiz-help span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wiz-step,
  .verify-main,
  .wiz-badge,
  .wiz-progress span.is-on.is-new::after {
    animation: none !important;
  }
}
