@import url("/app-ui/tokens.css?v=danta-tutoriales-v6");

/* Reusable web recreation of the current Danta Flutter UI. */

.danta-app-phone {
  position: relative;
  width: min(360px, 76vw);
  aspect-ratio: 390 / 800;
  container-type: inline-size;
  filter: drop-shadow(0 42px 58px rgba(5, 30, 19, 0.28));
}

.danta-app-device {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 9px solid #0c100e;
  border-radius: 49px;
  background: #0c100e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.danta-app-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 30;
  width: 30%;
  height: 22px;
  border-radius: 999px;
  background: #090c0a;
  transform: translateX(-50%);
}

.danta-app-display {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: var(--danta-app-surface);
}

.danta-app-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 17px 0;
  color: var(--danta-app-ink);
  background: rgba(254, 247, 255, 0.97);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.danta-app-screen {
  position: absolute;
  inset: 34px 0 0;
  z-index: 1;
  overflow: hidden;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.99);
  transition: opacity 0.34s ease, transform 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.danta-app-screen.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.danta-app-screen *,
.danta-app-screen *::before,
.danta-app-screen *::after {
  box-sizing: border-box;
}

/* Login */
.danta-login-screen {
  display: grid;
  height: 100%;
  align-content: center;
  padding: 21px;
  background: #fff;
}

.danta-login-logo {
  width: 106px;
  height: 106px;
  margin: 0 auto 31px;
  object-fit: contain;
}

.danta-field {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 12px 7px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  color: #30343a;
  background: var(--danta-app-card);
  font-size: 10px;
}

.danta-field::before {
  position: absolute;
  top: -7px;
  left: 9px;
  padding: 0 4px;
  color: #555b62;
  background: var(--danta-app-card);
  content: attr(data-label);
  font-size: 8px;
}

.danta-field--focus {
  border-width: 2px;
  border-color: var(--danta-app-primary);
  box-shadow: 0 0 0 4px rgba(103, 80, 164, 0.09);
}

.danta-field--focus::before {
  color: var(--danta-app-primary-strong);
}

.danta-field-value {
  color: #3b4046;
  font-size: 10px;
}

.danta-field-value--muted {
  color: #9aa0a6;
}

.danta-field-action {
  margin-left: auto;
  color: #59636d;
  font-size: 13px;
  font-weight: 700;
}

.danta-login-spacer {
  height: 18px;
}

.danta-btn {
  display: grid;
  width: 100%;
  min-height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--danta-app-primary);
  background: var(--danta-app-soft);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.2);
  font-size: 10px;
  font-weight: 650;
}

.danta-btn--outline {
  border: 1px solid var(--danta-app-outline);
  color: var(--danta-app-primary-strong);
  background: transparent;
  box-shadow: none;
}

.danta-btn--filled {
  color: #fff;
  background: var(--danta-app-primary);
  box-shadow: none;
}

.danta-btn--text {
  color: var(--danta-app-primary-strong);
  background: transparent;
  box-shadow: none;
}

.danta-btn--dark {
  color: #fff;
  background: #050505;
}

.danta-btn.is-highlighted {
  position: relative;
  border-color: var(--danta-app-primary);
  box-shadow: 0 0 0 4px rgba(103, 80, 164, 0.14);
}

.danta-btn.is-highlighted::after {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(103, 80, 164, 0.45);
  border-radius: 999px;
  content: "";
  animation: danta-tap-pulse 1.8s ease-in-out infinite;
}

.danta-login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin: 16px 0 11px;
  color: #697178;
  font-size: 8px;
}

.danta-login-divider::before,
.danta-login-divider::after {
  height: 1px;
  background: #dde1e5;
  content: "";
}

.danta-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.danta-social-row .danta-btn {
  min-height: 40px;
  border-radius: 9px;
  font-size: 8px;
}

.danta-google-mark {
  margin-right: 5px;
  color: #db4437;
  font-weight: 900;
}

/* Registration shell */
.danta-registration-screen {
  display: grid;
  height: 100%;
  grid-template-rows: 48px 1fr;
}

.danta-app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
  box-shadow: 0 1px 0 rgba(29, 27, 32, 0.1);
}

.danta-app-bar span {
  font-size: 19px;
  line-height: 1;
}

.danta-app-bar strong {
  font-size: 13px;
  font-weight: 600;
}

.danta-reg-layout {
  display: grid;
  min-height: 0;
  grid-template-rows: auto 1fr auto;
  padding: 13px 14px 12px;
  background: var(--danta-app-surface);
}

.danta-reg-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 12px;
}

.danta-reg-progress-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #667078;
  font-size: 6.5px;
  font-weight: 500;
}

.danta-reg-progress-item:not(:last-child)::after {
  position: absolute;
  top: 12px;
  left: calc(50% + 13px);
  width: calc(100% - 26px);
  height: 2px;
  background: #d6d9dc;
  content: "";
}

.danta-reg-progress-item.is-complete:not(:last-child)::after {
  background: var(--danta-app-primary);
}

.danta-reg-progress-item b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #53585e;
  background: #d6d9dc;
  font-size: 8px;
}

.danta-reg-progress-item.is-active,
.danta-reg-progress-item.is-complete {
  color: var(--danta-app-primary-strong);
  font-weight: 700;
}

.danta-reg-progress-item.is-active b,
.danta-reg-progress-item.is-complete b {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-reg-content {
  min-height: 0;
  overflow: hidden;
}

.danta-reg-content h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.danta-reg-lead {
  margin: 0 0 13px;
  color: #4f565d;
  font-size: 8.5px;
  line-height: 1.42;
}

.danta-account-list {
  display: grid;
  gap: 8px;
}

.danta-account-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: start;
  padding: 10px;
  border: 1px solid #d6d9dc;
  border-radius: 12px;
  background: #fff;
}

.danta-account-card.is-selected {
  border: 1.5px solid var(--danta-account-selected-border);
  background: var(--danta-account-selected-soft);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.08);
}

.danta-account-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #5d6369;
  background: #eceff1;
  font-size: 9px;
  font-weight: 800;
}

.danta-account-card.is-selected .danta-account-icon {
  color: #fff;
  background: var(--danta-account-selected);
}

.danta-account-card.is-selected .danta-account-copy strong {
  color: var(--danta-account-selected-dark);
}

.danta-account-copy {
  display: grid;
  gap: 3px;
}

.danta-account-copy strong {
  color: #30353a;
  font-size: 9px;
}

.danta-account-copy small {
  color: #667078;
  font-size: 6.8px;
  line-height: 1.35;
}

.danta-account-check {
  color: var(--danta-account-selected);
  font-size: 15px;
}

.danta-form-stack {
  display: grid;
  gap: 9px;
}

.danta-password-checklist,
.danta-info-panel {
  padding: 9px;
  border: 1px solid #d7dadd;
  border-radius: var(--danta-app-radius);
  background: var(--danta-app-soft);
}

.danta-password-checklist > strong,
.danta-info-panel > strong {
  display: block;
  margin-bottom: 6px;
  font-size: 7.5px;
}

.danta-password-checklist ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.danta-password-checklist li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #657068;
  font-size: 6.4px;
}

.danta-password-checklist li::before {
  display: grid;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-success);
  content: "✓";
  font-size: 6px;
}

.danta-referral-field {
  margin-top: 4px;
}

.danta-helper {
  margin: 8px 2px 0;
  color: #6b737a;
  font-size: 7px;
  line-height: 1.4;
}

.danta-info-panel {
  color: #555d64;
  font-size: 7px;
  line-height: 1.4;
}

.danta-info-panel--success {
  border-color: #a5d6a7;
  color: #285a2b;
  background: var(--danta-app-success-soft);
}

.danta-security-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d7dadd;
  border-radius: var(--danta-app-radius);
  background: var(--danta-app-soft);
}

.danta-security-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
}

.danta-security-icon {
  font-size: 17px;
}

.danta-security-copy {
  display: grid;
  gap: 2px;
}

.danta-security-copy strong {
  font-size: 8px;
}

.danta-security-copy small {
  color: #687078;
  font-size: 6.5px;
  line-height: 1.35;
}

.danta-switch {
  position: relative;
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: var(--danta-app-primary);
}

.danta-switch::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  content: "";
}

.danta-reg-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding-top: 10px;
}

.danta-reg-actions--single {
  grid-template-columns: 1fr;
}

.danta-loading-dot {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(103, 80, 164, 0.24);
  border-top-color: var(--danta-app-primary);
  border-radius: 50%;
  animation: danta-spin 0.8s linear infinite;
}

.danta-btn--filled .danta-loading-dot {
  border-color: rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
}

.danta-snackbar {
  position: absolute;
  right: 11px;
  bottom: 12px;
  left: 11px;
  z-index: 5;
  padding: 10px 11px;
  border-radius: 4px;
  color: #fff;
  background: #303030;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.26);
  font-size: 7px;
  line-height: 1.4;
}

/* Email verification gate */
.danta-email-gate {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  padding: 24px 22px;
  text-align: center;
}

.danta-email-icon {
  position: relative;
  width: 58px;
  height: 43px;
  margin-bottom: 15px;
  border: 3px solid #40464b;
  border-radius: 6px;
}

.danta-email-icon::before,
.danta-email-icon::after {
  position: absolute;
  top: 5px;
  width: 31px;
  height: 3px;
  background: #40464b;
  content: "";
}

.danta-email-icon::before {
  left: 2px;
  transform: rotate(34deg);
}

.danta-email-icon::after {
  right: 2px;
  transform: rotate(-34deg);
}

.danta-email-icon span {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 10px;
}

.danta-email-gate h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.danta-email-gate p {
  margin: 0 0 8px;
  color: #454b50;
  font-size: 9px;
  line-height: 1.5;
}

.danta-email-gate p.danta-email-muted {
  margin-bottom: 16px;
  color: #747b81;
  font-size: 8px;
}

.danta-email-actions {
  display: grid;
  width: 100%;
  gap: 8px;
}

/* Persona KYC */
.danta-kyc-screen {
  display: grid;
  height: 100%;
  grid-template-rows: 46px auto minmax(0, 1fr) 45px;
  background: var(--danta-app-surface);
}

.danta-kyc-screen--status {
  grid-template-rows: 46px minmax(0, 1fr) 45px;
}

.danta-kyc-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 7px 6px;
  background: var(--danta-app-surface);
}

.danta-kyc-progress--3 {
  grid-template-columns: repeat(3, 1fr);
}

.danta-company-progress {
  grid-template-columns: repeat(4, 1fr);
}

.danta-kyc-progress-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #757575;
  font-size: 5.7px;
  font-weight: 500;
}

.danta-kyc-progress-item:not(:last-child)::after {
  position: absolute;
  top: 10px;
  left: calc(50% + 11px);
  width: calc(100% - 22px);
  height: 2px;
  background: #e0e0e0;
  content: "";
}

.danta-kyc-progress-item.is-complete:not(:last-child)::after {
  background: #4caf50;
}

.danta-kyc-progress-item b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #bdbdbd;
  font-size: 7px;
}

.danta-kyc-progress-item.is-active {
  color: var(--danta-app-primary);
  font-weight: 700;
}

.danta-kyc-progress-item.is-active b {
  background: var(--danta-app-primary);
}

.danta-kyc-progress-item.is-complete {
  color: #388e3c;
  font-weight: 650;
}

.danta-kyc-progress-item.is-complete b {
  background: #4caf50;
}

.danta-kyc-content {
  min-height: 0;
  padding: 8px 12px 10px;
  overflow: hidden;
}

.danta-kyc-page-copy h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.danta-kyc-page-copy p {
  margin: 0 0 7px;
  color: #49454f;
  font-size: 7.5px;
  line-height: 1.42;
}

.danta-kyc-page-copy--compact p {
  margin-bottom: 8px;
}

.danta-kyc-page-copy p.danta-kyc-section-title {
  color: var(--danta-app-ink);
  font-size: 10px;
  font-weight: 650;
}

.danta-minor-content {
  min-height: 0;
}

.danta-minor-guidance {
  margin-bottom: 8px;
  padding: 7px 8px;
  border: 1px solid rgba(103, 80, 164, 0.16);
  border-radius: 9px;
  color: #554d5b;
  background: rgba(103, 80, 164, 0.07);
  font-size: 6.5px;
  line-height: 1.35;
}

.danta-minor-synthetic-note {
  display: block;
  color: #756e78;
  font-size: 5.3px;
  line-height: 1.3;
}

.danta-minor-ready-card {
  margin-top: 20px;
}

.danta-kyc-card,
.danta-kyc-status-card,
.danta-kyc-ready-card {
  padding: 11px;
  border-radius: 12px;
  background: var(--danta-app-soft);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.16);
}

.danta-kyc-label {
  display: block;
  margin-bottom: 6px;
  font-size: 8px;
}

.danta-date-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.15fr;
  gap: 6px;
}

.danta-mini-field {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 6px 7px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
}

.danta-mini-field small {
  color: #49454f;
  font-size: 6px;
}

.danta-mini-field span {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.danta-kyc-age {
  margin: 7px 0 10px;
  color: #49454f;
  font-size: 7px;
}

.danta-kyc-card--form {
  display: grid;
  gap: 8px;
}

.danta-business-path-list {
  display: grid;
  gap: 8px;
}

.danta-business-path-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #d5cfd8;
  border-radius: 16px;
  background: var(--danta-app-soft);
}

.danta-business-path-card.is-selected {
  border-color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.08);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08);
}

.danta-business-path-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.12);
  font-size: 7px;
  font-weight: 800;
}

.danta-business-path-card > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.danta-business-path-card strong {
  font-size: 8.2px;
}

.danta-business-path-card small {
  color: #615b65;
  font-size: 6.3px;
  line-height: 1.35;
}

.danta-business-radio {
  color: var(--danta-app-primary);
  font-size: 13px;
}

.danta-company-form-note {
  padding: 6px 7px;
  border-radius: 8px;
  color: #625c65;
  background: rgba(230, 224, 233, 0.62);
  font-size: 6.2px;
  line-height: 1.35;
}

.danta-kyc-card--form .danta-field {
  min-height: 40px;
  padding-block: 9px 5px;
}

.danta-padron-banner {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 9px;
  color: #388e3c;
  background: rgba(76, 175, 80, 0.08);
  font-size: 7px;
}

.danta-padron-banner span {
  display: grid;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #388e3c;
}

.danta-padron-banner p {
  margin: 0;
}

.danta-kyc-summary {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px;
  border-radius: 9px;
  background: var(--danta-app-soft);
}

.danta-kyc-summary > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4caf50;
  font-size: 8px;
}

.danta-kyc-summary p,
.danta-kyc-summary strong,
.danta-kyc-summary small {
  display: block;
  margin: 0;
}

.danta-kyc-summary strong {
  font-size: 7.5px;
}

.danta-kyc-summary small {
  margin-top: 1px;
  color: #69636e;
  font-size: 6.2px;
}

.danta-kyc-card--uploads {
  display: grid;
  gap: 7px;
}

.danta-upload-tile {
  padding: 8px;
  border: 1px solid #d5cfd8;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.danta-upload-tile.is-highlighted {
  border-color: var(--danta-app-primary);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.1);
}

.danta-upload-tile > strong {
  display: block;
  font-size: 8px;
}

.danta-upload-tile > p {
  margin: 2px 0 7px;
  color: #6d6870;
  font-size: 6.2px;
  line-height: 1.3;
}

.danta-upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.danta-upload-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #68636a;
  font-size: 6.3px;
  font-weight: 600;
}

.danta-upload-status b {
  font-size: 10px;
}

.danta-upload-status.is-loaded {
  color: #388e3c;
}

.danta-upload-action {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 6.2px;
  font-weight: 650;
}

.danta-submission-id {
  color: #6d6870;
  font-size: 6px;
  text-align: center;
}

.danta-kyc-status-card,
.danta-kyc-ready-card {
  margin-top: 14px;
}

.danta-kyc-status-heading {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 11px;
}

.danta-kyc-status-heading h3,
.danta-kyc-ready-card h3 {
  margin: 0;
  font-size: 14px;
}

.danta-kyc-status-icon,
.danta-ready-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.12);
  font-size: 13px;
}

.danta-kyc-status-card > strong {
  display: block;
  font-size: 9px;
}

.danta-kyc-status-card > p {
  margin: 5px 0 0;
  color: #6d6870;
  font-size: 7px;
}

.danta-kyc-message {
  margin: 10px 0;
  padding: 9px;
  border-radius: 9px;
  color: #49454f;
  background: rgba(230, 224, 233, 0.55);
  font-size: 7px;
  line-height: 1.4;
}

.danta-kyc-status-card > small {
  display: block;
  margin-top: 8px;
  color: #6d6870;
  font-size: 6.5px;
  line-height: 1.35;
}

.danta-kyc-ready-card {
  display: grid;
  justify-items: center;
  padding: 18px 14px;
  text-align: center;
}

.danta-ready-check {
  width: 42px;
  height: 42px;
  margin-bottom: 11px;
  color: #fff;
  background: #4caf50;
  font-size: 18px;
}

.danta-kyc-ready-card p {
  margin: 8px 0 15px;
  color: #49454f;
  font-size: 8px;
  line-height: 1.45;
}

.danta-company-redirect {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--danta-app-primary-strong);
  background: rgba(103, 80, 164, 0.1);
  font-size: 7px;
  font-weight: 700;
}

.danta-company-redirect .danta-loading-dot {
  width: 13px;
  height: 13px;
}

.danta-kyc-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: rgba(44, 153, 102, 0.5);
}

.danta-kyc-nav span {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: rgba(29, 27, 32, 0.68);
}

.danta-kyc-nav span.is-active {
  color: var(--danta-app-primary-dark);
}

.danta-kyc-nav b {
  font-size: 9px;
}

.danta-kyc-nav small {
  font-size: 6px;
  font-weight: 650;
}

/* Tutor ↔ minor paired tutorial screens. */
.danta-family-screen {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: 44px minmax(0, 1fr) 43px;
  overflow: hidden;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
}

.danta-family-screen--minor-funds {
  grid-template-rows: minmax(0, 1fr) 43px;
}

.danta-family-app-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  padding: 0 10px;
  background: var(--danta-app-surface);
  box-shadow: 0 1px 0 rgba(29, 27, 32, 0.1);
}

.danta-family-app-bar-leading,
.danta-family-app-bar-action {
  color: #49454f;
  font-size: 14px;
}

.danta-family-app-bar-action {
  text-align: right;
}

.danta-family-app-bar-title {
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-family-body {
  min-height: 0;
  padding: 9px 10px;
  overflow: hidden;
}

.danta-family-intro {
  margin: 0 0 8px;
  color: #615b65;
  font-size: 6.8px;
  line-height: 1.4;
}

.danta-family-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: rgba(44, 153, 102, 0.5);
}

.danta-family-nav-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: rgba(29, 27, 32, 0.66);
}

.danta-family-nav-item--active {
  color: var(--danta-app-primary-dark);
}

.danta-family-nav-icon {
  font-size: 7px;
}

.danta-family-nav-label {
  font-size: 5px;
  font-weight: 650;
}

.danta-family-profile-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 11px;
}

.danta-family-avatar {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 8px;
  font-weight: 800;
}

.danta-family-avatar--minor {
  background: var(--danta-app-brand);
}

.danta-family-profile-copy,
.danta-family-management-copy,
.danta-family-minor-identity,
.danta-family-transaction-copy,
.danta-family-warning-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-family-profile-copy strong {
  font-size: 9px;
}

.danta-family-profile-copy > span {
  color: #6b6570;
  font-size: 6px;
}

.danta-family-synthetic-note {
  display: block;
  color: #756e78;
  font-size: 5.2px;
  line-height: 1.25;
}

.danta-family-ready-card,
.danta-family-tutorial-reference,
.danta-family-management-card,
.danta-family-link-card,
.danta-family-request-card,
.danta-family-minor-card,
.danta-family-linked-card,
.danta-family-transaction-card,
.danta-family-balance-card,
.danta-family-kyc-card,
.danta-family-recharge-card,
.danta-family-autonomy-note {
  border-radius: 12px;
  background: var(--danta-app-soft);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.14);
}

.danta-family-ready-card {
  padding: 11px;
  text-align: center;
}

.danta-family-ready-icon,
.danta-family-linked-icon,
.danta-family-request-icon,
.danta-family-kyc-icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0 auto 7px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 12px;
}

.danta-family-ready-card h3,
.danta-family-link-card h3,
.danta-family-request-card h3,
.danta-family-linked-card h3,
.danta-family-kyc-card h3,
.danta-family-recharge-card h3 {
  margin: 0 0 6px;
  font-size: 9px;
}

.danta-family-ready-card p,
.danta-family-link-card p,
.danta-family-request-card p,
.danta-family-linked-card p,
.danta-family-kyc-card p {
  margin: 5px 0;
  color: #5f5963;
  font-size: 6.2px;
  line-height: 1.35;
}

.danta-family-check-list {
  display: grid;
  gap: 4px;
  margin: 7px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.danta-family-check-list li {
  color: #4f4953;
  font-size: 6.2px;
}

.danta-family-check-list b {
  color: #388e3c;
}

.danta-family-tutorial-reference {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(43, 152, 102, 0.22);
  color: #315b46;
  background: rgba(43, 152, 102, 0.07);
}

.danta-family-tutorial-reference strong,
.danta-family-tutorial-reference span {
  display: block;
  font-size: 6px;
  line-height: 1.35;
}

.danta-family-section-title {
  margin: 5px 0 7px;
  font-size: 8px;
}

.danta-family-management-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: var(--danta-app-card);
}

.danta-family-management-card--highlighted {
  border: 1px solid var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.08);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.09);
}

.danta-family-management-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #6a1b9a;
  background: #f3e5f5;
  font-size: 9px;
}

.danta-family-management-copy strong {
  font-size: 7.5px;
}

.danta-family-management-copy small {
  color: #6d6670;
  font-size: 5.7px;
  line-height: 1.3;
}

.danta-family-chevron {
  color: #6d6670;
  font-size: 15px;
}

.danta-family-link-card,
.danta-family-request-card,
.danta-family-kyc-card {
  padding: 10px;
}

.danta-family-link-card--qr {
  text-align: left;
}

.danta-family-button {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--danta-app-primary);
  font-size: 6.3px;
  font-weight: 700;
}

.danta-family-button--filled {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-family-button--tonal {
  color: var(--danta-app-primary-dark);
  background: var(--danta-app-secondary-container);
}

.danta-family-button--outlined {
  border: 1px solid var(--danta-app-outline);
  background: transparent;
}

.danta-family-button--text {
  background: transparent;
}

.danta-family-qr-shell {
  width: min(142px, 76%);
  margin: 8px auto;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9px;
  background: #fff;
}

.danta-family-qr {
  --danta-qr-size: 128px;
  margin: 0 auto;
}

.danta-family-share-label {
  display: block;
  margin: 6px 0 4px;
  font-size: 6px;
  text-align: left;
}

.danta-family-code-row,
.danta-family-expiry-row {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

.danta-family-code-row {
  padding: 5px 6px;
  border: 1px solid #d6d0d9;
  border-radius: 7px;
  background: rgba(230, 224, 233, 0.4);
}

.danta-family-code {
  overflow: hidden;
  color: #49454f;
  font-size: 4.8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-family-share-button {
  color: var(--danta-app-primary);
  font-size: 10px;
}

.danta-family-expiry-row {
  margin-top: 5px;
  color: #53606a;
  font-size: 5.6px;
}

.danta-family-text-button {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  color: var(--danta-app-primary);
  font-size: 6px;
  font-weight: 700;
}

.danta-family-empty-state {
  margin: 7px 0 0;
  color: #777079;
  font-size: 5.8px;
  text-align: center;
}

.danta-family-empty-state--large {
  display: grid;
  min-height: 145px;
  place-items: center;
  border: 1px dashed #cfc8d2;
  border-radius: 12px;
}

.danta-family-request-card {
  margin-top: 12px;
  text-align: center;
}

.danta-family-request-actions,
.danta-family-dialog-actions,
.danta-family-minor-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.danta-family-request-number {
  display: block;
  margin-top: 6px;
  color: #777079;
  font-size: 5.3px;
}

.danta-family-scanner-view {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: #111814;
}

.danta-family-camera-scene,
.danta-family-background-screen {
  position: absolute;
  inset: 0;
}

.danta-family-camera-scene {
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, #54705f, #121d17 70%);
}

.danta-family-camera-shape {
  position: absolute;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(4px);
}

.danta-family-camera-shape--one { inset: 12% 55% 58% 7%; }
.danta-family-camera-shape--two { inset: 47% 5% 16% 54%; }
.danta-family-camera-shape--three { inset: 68% 52% 4% 12%; }

.danta-family-scan-frame {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 76%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.danta-family-scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #fff;
  border-style: solid;
}

.danta-family-scan-corner--one { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 13px 0 0; }
.danta-family-scan-corner--two { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 13px 0 0; }
.danta-family-scan-corner--three { right: -2px; bottom: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 13px; }
.danta-family-scan-corner--four { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 13px; }

.danta-family-scan-line {
  position: absolute;
  top: 20%;
  right: 10%;
  left: 10%;
  height: 2px;
  background: #8fffc5;
  box-shadow: 0 0 12px rgba(143, 255, 197, 0.9);
  animation: none;
}

.danta-app-screen.is-active .danta-family-scan-line {
  animation: danta-family-scan 1.5s ease-in-out infinite;
}

.danta-family-scan-instruction,
.danta-family-scan-banner {
  position: absolute;
  right: 8px;
  left: 8px;
  z-index: 2;
  border-radius: 9px;
  font-size: 6px;
  line-height: 1.35;
  text-align: center;
}

.danta-family-scan-instruction {
  bottom: 43px;
  margin: 0;
  padding: 7px;
  background: rgba(0, 0, 0, 0.48);
}

.danta-family-scan-banner {
  top: 0;
  display: grid;
  gap: 2px;
  padding: 8px;
  color: #fff;
  background: rgba(46, 125, 50, 0.95);
}

.danta-family-scan-banner strong {
  font-size: 6.8px;
}

.danta-family-scanner-tools {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 13px;
  font-size: 5.5px;
}

.danta-family-scanner-tools span {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.danta-family-minor-card {
  padding: 9px;
}

.danta-family-minor-card--success {
  border: 1px solid rgba(76, 175, 80, 0.38);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.08);
}

.danta-family-minor-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.danta-family-minor-identity strong {
  font-size: 7.5px;
}

.danta-family-minor-identity small {
  color: #706971;
  font-size: 5.3px;
}

.danta-family-settings-button {
  color: #5e5862;
  font-size: 11px;
}

.danta-family-balance {
  margin: 8px 0 0;
  font-size: 6.3px;
}

.danta-family-balance strong {
  font-size: 8px;
}

.danta-family-linked-card {
  display: grid;
  justify-items: center;
  margin-top: 35px;
  padding: 18px 12px;
  text-align: center;
}

.danta-family-linked-icon {
  background: #4caf50;
}

.danta-family-balance-card {
  display: grid;
  gap: 3px;
  padding: 13px;
  color: #fff;
  background: linear-gradient(140deg, var(--danta-app-primary-dark), var(--danta-app-primary));
}

.danta-family-balance-card small {
  font-size: 6px;
}

.danta-family-balance-card > strong {
  font-size: 16px;
}

.danta-family-transaction-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 9px;
}

.danta-family-transaction-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #388e3c;
}

.danta-family-transaction-copy strong,
.danta-family-transaction-amount {
  font-size: 6.7px;
}

.danta-family-transaction-copy small {
  color: #706971;
  font-size: 5.2px;
}

.danta-family-transaction-amount {
  color: #388e3c;
  white-space: nowrap;
}

.danta-family-snackbar {
  position: absolute;
  right: 8px;
  bottom: 50px;
  left: 8px;
  z-index: 6;
  padding: 8px;
  border-radius: 4px;
  color: #fff;
  background: #303030;
  font-size: 6px;
}

.danta-family-background-screen {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr) 43px;
  filter: saturate(0.75);
}

.danta-family-dialog-backdrop,
.danta-family-sheet-backdrop {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  padding: 8px;
  background: rgba(29, 27, 32, 0.34);
}

.danta-family-dialog-backdrop {
  place-items: center;
}

.danta-family-dialog {
  width: 100%;
  padding: 12px;
  border-radius: 17px;
  background: var(--danta-app-surface);
  box-shadow: 0 18px 44px rgba(29, 27, 32, 0.3);
}

.danta-family-dialog h3 {
  margin: 0 0 6px;
  font-size: 10px;
}

.danta-family-dialog > p {
  margin: 5px 0 9px;
  color: #5e5862;
  font-size: 6.3px;
  line-height: 1.35;
}

.danta-family-field {
  position: relative;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding: 8px 9px 5px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  font-size: 7px;
}

.danta-family-field::before {
  position: absolute;
  top: -6px;
  left: 7px;
  padding: 0 3px;
  color: #5f5963;
  background: var(--danta-app-surface);
  content: attr(data-label);
  font-size: 5.2px;
}

.danta-family-field--focused {
  border: 2px solid var(--danta-app-primary);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08);
}

.danta-family-available {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  color: #615b65;
}

.danta-family-available small {
  font-size: 5.5px;
}

.danta-family-available strong {
  font-size: 7px;
}

.danta-family-sheet-backdrop {
  align-items: end;
  padding: 0;
}

.danta-family-bottom-sheet {
  padding: 9px 11px 13px;
  border-radius: 18px 18px 0 0;
  background: var(--danta-app-surface);
  box-shadow: 0 -12px 32px rgba(29, 27, 32, 0.22);
}

.danta-family-sheet-handle {
  display: block;
  width: 31px;
  height: 3px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: #79747e;
}

.danta-family-sheet-person {
  display: grid;
  gap: 2px;
  margin-bottom: 7px;
}

.danta-family-sheet-person strong {
  font-size: 8px;
}

.danta-family-sheet-person small {
  color: #6d6670;
  font-size: 5.4px;
}

.danta-family-sheet-option {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  font-size: 7px;
}

.danta-family-sheet-option > span:last-child {
  display: grid;
  gap: 2px;
}

.danta-family-sheet-option small {
  color: #6d6670;
  font-size: 5.5px;
}

.danta-family-sheet-option--release {
  color: var(--danta-app-primary-dark);
}

.danta-family-sheet-divider {
  height: 1px;
  background: #e3dde5;
}

.danta-family-dialog--release {
  padding: 10px;
}

.danta-family-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(245, 124, 0, 0.32);
  border-radius: 10px;
  color: #5e5146;
  background: rgba(245, 124, 0, 0.1);
}

.danta-family-warning-icon {
  color: #f57c00;
  font-size: 11px;
}

.danta-family-warning-copy strong {
  font-size: 6.3px;
}

.danta-family-warning p,
.danta-family-warning li {
  margin: 0;
  font-size: 5.5px;
  line-height: 1.3;
}

.danta-family-warning ul {
  display: grid;
  gap: 2px;
  margin: 4px 0 0;
  padding-left: 11px;
}

.danta-family-warning--compact {
  margin: 8px 0;
}

.danta-family-document-row {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 8px 0;
  padding: 7px;
  border-radius: 9px;
  background: rgba(230, 224, 233, 0.58);
}

.danta-family-document-row > span:last-child {
  display: grid;
  gap: 2px;
}

.danta-family-document-row strong {
  font-size: 6.5px;
}

.danta-family-document-row small {
  color: #6d6670;
  font-size: 5.3px;
}

.danta-family-funds {
  min-height: 0;
  padding: 8px 9px;
  overflow: hidden;
}

.danta-family-funds-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.danta-family-funds-logo {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--danta-app-brand);
  font-size: 8px;
  font-weight: 900;
}

.danta-family-funds-heading h2 {
  margin: 0 0 0 6px;
  font-size: 10px;
}

.danta-family-funds-notifications {
  font-size: 11px;
}

.danta-family-funds-heading > small,
.danta-family-funds-heading > strong,
.danta-family-funds-heading > .danta-family-synthetic-note {
  grid-column: 1 / -1;
}

.danta-family-funds-heading > small {
  margin-top: 6px;
  color: #6d6670;
  font-size: 5.5px;
}

.danta-family-funds-heading > strong {
  font-size: 15px;
}

.danta-family-funds-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 7px 0;
  border-bottom: 1px solid #d8d2da;
}

.danta-family-funds-tab {
  padding: 5px;
  color: #706971;
  font-size: 6px;
  text-align: center;
}

.danta-family-funds-tab--active {
  border-bottom: 2px solid var(--danta-app-primary);
  color: var(--danta-app-primary);
}

.danta-family-recharge-card {
  padding: 8px;
}

.danta-family-recharge-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 7px;
}

.danta-family-recharge-method {
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 6px 3px;
  border: 1px solid #d6d0d9;
  border-radius: 8px;
  color: #615b65;
  font-size: 5.3px;
  text-align: center;
}

.danta-family-recharge-method--selected {
  border-color: var(--danta-app-primary);
  color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.07);
}

.danta-family-recharge-card .danta-family-button {
  width: 100%;
  margin-top: 7px;
}

.danta-family-autonomy-note {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  padding: 7px;
  color: #285a2b;
  background: rgba(76, 175, 80, 0.1);
}

.danta-family-autonomy-note strong {
  font-size: 6px;
}

.danta-family-autonomy-note span {
  font-size: 5.2px;
  line-height: 1.3;
}

@keyframes danta-family-scan {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(105px); }
}

/* Account activation — shared by personal and business tutorials. */
.danta-activation-screen {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) 45px;
  background: var(--danta-app-surface);
}

.danta-activation-scroll {
  min-height: 0;
  padding: 12px;
  overflow: hidden;
}

.danta-activation-header {
  display: grid;
  justify-items: center;
  margin-bottom: 10px;
}

.danta-activation-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.danta-activation-title {
  margin: 4px 0 0;
  font-size: 15px;
}

.danta-activation-content {
  display: grid;
  gap: 8px;
}

.danta-activation-card {
  padding: 11px;
  border-radius: 12px;
  background: var(--danta-app-soft);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.16);
}

.danta-activation-card-title {
  margin: 0 0 7px;
  font-size: 10px;
  line-height: 1.25;
}

.danta-activation-card-copy {
  margin: 0 0 7px;
  color: #49454f;
  font-size: 7px;
  line-height: 1.4;
}

.danta-activation-list {
  display: grid;
  gap: 5px;
  margin: 7px 0 10px;
  padding: 0;
  list-style: none;
}

.danta-activation-list li {
  position: relative;
  padding-left: 15px;
  color: #49454f;
  font-size: 6.8px;
  line-height: 1.35;
}

.danta-activation-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 11px;
  height: 11px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  content: "✓";
  font-size: 5.5px;
}

.danta-activation-button {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: var(--danta-app-primary);
  font-size: 7.5px;
  font-weight: 700;
}

.danta-activation-button--filled {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-activation-button--text {
  background: transparent;
}

.danta-activation-button--highlighted {
  position: relative;
  box-shadow: 0 0 0 4px rgba(103, 80, 164, 0.13);
}

.danta-activation-button--highlighted::after {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(103, 80, 164, 0.42);
  border-radius: 999px;
  content: "";
  animation: danta-tap-pulse 1.8s ease-in-out infinite;
}

.danta-activation-button--disabled {
  opacity: 0.55;
}

.danta-activation-device-note,
.danta-activation-synthetic-note {
  display: block;
  margin-top: 8px;
  color: #6d6870;
  font-size: 6px;
  line-height: 1.35;
  text-align: center;
}

.danta-activation-card--important {
  border: 1px solid rgba(245, 124, 0, 0.28);
  background: rgba(245, 124, 0, 0.07);
}

.danta-activation-important-title {
  color: #a04e00;
  font-size: 7.5px;
}

.danta-activation-card--important p {
  margin: 4px 0 0;
  color: #66584c;
  font-size: 6.2px;
  line-height: 1.35;
}

.danta-activation-dialog-backdrop {
  position: absolute;
  inset: 0 0 45px;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(29, 27, 32, 0.32);
}

.danta-activation-dialog {
  width: 100%;
  padding: 15px;
  border-radius: 18px;
  background: var(--danta-app-surface);
  box-shadow: 0 18px 45px rgba(29, 27, 32, 0.28);
}

.danta-activation-dialog-title {
  margin: 0 0 6px;
  font-size: 11px;
}

.danta-activation-dialog-copy {
  margin: 0 0 13px;
  color: #49454f;
  font-size: 6.7px;
  line-height: 1.4;
}

.danta-activation-field {
  position: relative;
  display: flex;
  min-height: 41px;
  align-items: center;
  margin-top: 9px;
  padding: 9px 10px 5px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  background: var(--danta-app-surface);
}

.danta-activation-field::before {
  position: absolute;
  top: -7px;
  left: 8px;
  padding: 0 4px;
  color: #55505a;
  background: var(--danta-app-surface);
  content: attr(data-label);
  font-size: 6px;
}

.danta-activation-field--focused {
  border: 2px solid var(--danta-app-primary);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08);
}

.danta-activation-field-value {
  font-size: 8px;
  letter-spacing: 0.08em;
}

.danta-activation-field-action {
  margin-left: auto;
  font-size: 10px;
}

.danta-activation-check-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  color: #49454f;
  font-size: 6.3px;
  line-height: 1.35;
}

.danta-activation-checkbox {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1.5px solid #79747e;
  border-radius: 2px;
  color: transparent;
  background: transparent;
  font-size: 8px;
}

.danta-activation-checkbox--checked {
  border-color: var(--danta-app-primary);
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-activation-visibility {
  color: var(--danta-app-primary);
  font-size: 10px;
}

.danta-activation-progress {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--danta-app-primary-strong);
  background: rgba(103, 80, 164, 0.08);
  font-size: 6.5px;
  font-weight: 650;
}

.danta-activation-spinner {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: danta-spin 0.8s linear infinite;
}

.danta-activation-progress .danta-activation-spinner {
  border-color: rgba(103, 80, 164, 0.2);
  border-top-color: var(--danta-app-primary);
}

.danta-activation-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 11px;
}

.danta-activation-card--complete {
  display: grid;
  justify-items: center;
  margin-top: 30px;
  padding: 22px 14px;
  text-align: center;
}

.danta-activation-complete-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 11px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4caf50;
  font-size: 20px;
}

.danta-activation-ready-banner {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 3px 0 11px;
  padding: 7px 9px;
  border-radius: 9px;
  color: #2e6d31;
  background: rgba(76, 175, 80, 0.1);
  font-size: 6.5px;
}

.danta-activation-snackbar {
  position: absolute;
  right: 10px;
  bottom: 53px;
  left: 10px;
  padding: 9px;
  border-radius: 4px;
  color: #fff;
  background: #303030;
  font-size: 6.8px;
}

.danta-activation-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: rgba(44, 153, 102, 0.5);
}

.danta-activation-nav-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: rgba(29, 27, 32, 0.68);
}

.danta-activation-nav-item--active {
  color: var(--danta-app-primary-dark);
}

.danta-activation-nav-icon {
  font-size: 8px;
}

.danta-activation-nav-item small {
  font-size: 6px;
  font-weight: 650;
}

@keyframes danta-tap-pulse {
  0%, 100% { opacity: 0; transform: scale(0.96); }
  45% { opacity: 1; transform: scale(1); }
}

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

@container (max-width: 290px) {
  .danta-app-device {
    border-width: 7px;
    border-radius: 39px;
  }

  .danta-app-display {
    border-radius: 31px;
  }

  .danta-login-screen {
    padding: 16px;
  }

  .danta-login-logo {
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
  }

  .danta-login-spacer {
    height: 11px;
  }

  .danta-login-divider {
    margin-block: 11px 8px;
  }

  .danta-reg-layout {
    padding: 9px 10px;
  }

  .danta-reg-progress {
    margin-bottom: 8px;
  }

  .danta-reg-progress-item b {
    width: 21px;
    height: 21px;
  }

  .danta-reg-progress-item:not(:last-child)::after {
    top: 10px;
  }

  .danta-reg-content h3 {
    font-size: 12px;
  }

  .danta-reg-lead {
    margin-bottom: 9px;
    font-size: 7.5px;
  }

  .danta-account-list {
    gap: 6px;
  }

  .danta-account-card {
    padding: 7px;
  }

  .danta-field {
    min-height: 39px;
    padding-block: 9px 5px;
  }

  .danta-form-stack {
    gap: 6px;
  }

  .danta-password-checklist {
    padding: 6px;
  }

  .danta-security-card {
    padding: 8px;
  }

  .danta-reg-actions {
    padding-top: 7px;
  }

  .danta-btn {
    min-height: 32px;
  }

  .danta-company-screen .danta-kyc-content {
    padding-inline: 9px;
  }

  .danta-minor-guidance {
    margin-bottom: 5px;
    padding: 5px 6px;
    font-size: 5.3px;
  }

  .danta-minor-content--1217 .danta-minor-guidance {
    display: none;
  }

  .danta-minor-card {
    gap: 5px;
    padding: 8px;
  }

  .danta-minor-card .danta-field {
    min-height: 32px;
    padding-block: 7px 4px;
  }

  .danta-minor-summary {
    padding: 5px;
  }

  .danta-minor-synthetic-note {
    display: none;
  }

  .danta-minor-ready-card {
    margin-top: 8px;
  }

  .danta-business-path-card {
    padding: 7px;
  }

  .danta-company-screen .danta-kyc-card--uploads {
    gap: 5px;
    padding: 8px;
  }

  .danta-company-screen .danta-upload-tile {
    padding: 6px;
  }

  .danta-activation-scroll {
    padding: 8px;
  }

  .danta-activation-header {
    margin-bottom: 6px;
  }

  .danta-activation-logo {
    width: 38px;
    height: 38px;
  }

  .danta-activation-card {
    padding: 8px;
  }

  .danta-activation-list {
    gap: 3px;
    margin-block: 5px 7px;
  }

  .danta-activation-dialog {
    padding: 11px;
  }

  .danta-family-screen {
    grid-template-rows: 35px minmax(0, 1fr) 34px;
  }

  .danta-family-screen--minor-funds {
    grid-template-rows: minmax(0, 1fr) 34px;
  }

  .danta-family-app-bar {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
    padding: 0 6px;
  }

  .danta-family-app-bar-title {
    font-size: 8px;
  }

  .danta-family-body,
  .danta-family-funds {
    padding: 5px 6px;
  }

  .danta-family-nav-label {
    font-size: 4px;
  }

  .danta-family-profile-heading {
    margin-bottom: 6px;
  }

  .danta-family-avatar {
    width: 25px;
    height: 25px;
    font-size: 6px;
  }

  .danta-family-ready-card,
  .danta-family-link-card,
  .danta-family-request-card,
  .danta-family-minor-card,
  .danta-family-dialog,
  .danta-family-kyc-card {
    padding: 6px;
  }

  .danta-family-ready-icon,
  .danta-family-linked-icon,
  .danta-family-request-icon,
  .danta-family-kyc-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
    font-size: 9px;
  }

  .danta-family-check-list {
    gap: 2px;
    margin: 4px 0;
  }

  .danta-family-tutorial-reference {
    margin-top: 4px;
    padding: 4px;
  }

  .danta-family-screen--guardian-ready .danta-family-ready-card p,
  .danta-family-screen--guardian-ready .danta-family-tutorial-reference span {
    display: none;
  }

  .danta-family-synthetic-note {
    display: none;
  }

  .danta-family-ready-card p,
  .danta-family-link-card p,
  .danta-family-request-card p,
  .danta-family-linked-card p,
  .danta-family-kyc-card p {
    font-size: 5px;
  }

  .danta-family-qr-shell {
    width: min(104px, 72%);
    padding: 4px;
    border-radius: 6px;
  }

  .danta-family-qr {
    --danta-qr-size: 94px;
  }

  .danta-family-management-card {
    padding: 6px;
  }

  .danta-family-request-card {
    margin-top: 5px;
  }

  .danta-family-button {
    min-height: 23px;
    padding: 3px 5px;
    font-size: 5px;
  }

  .danta-family-background-screen {
    grid-template-rows: 35px minmax(0, 1fr) 34px;
  }

  .danta-family-dialog-backdrop {
    padding: 5px;
  }

  .danta-family-dialog--release {
    padding: 6px;
  }

  .danta-family-warning {
    gap: 4px;
    padding: 5px;
  }

  .danta-family-linked-card {
    margin-top: 14px;
    padding: 10px 7px;
  }

  .danta-family-bottom-sheet {
    padding: 6px;
  }

  .danta-family-scan-instruction {
    bottom: 32px;
  }

  .danta-family-scanner-tools {
    bottom: 5px;
    gap: 7px;
  }

  .danta-family-funds-heading > strong {
    font-size: 11px;
  }

  .danta-family-recharge-card,
  .danta-family-autonomy-note {
    padding: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .danta-app-screen,
  .danta-btn.is-highlighted::after,
  .danta-activation-button--highlighted::after,
  .danta-activation-spinner,
  .danta-family-scan-line {
    animation: none !important;
    transition: none !important;
  }
}

/* Empresa · puntos de cobro tutorial screens. */
.danta-point-of-sale-screen {
  --danta-point-of-sale-purple: var(--danta-app-primary, #6750a4);
  --danta-point-of-sale-purple-dark: var(--danta-app-primary-dark, #4f378b);
  --danta-point-of-sale-purple-soft: rgba(103, 80, 164, 0.1);
  --danta-point-of-sale-green: var(--danta-app-success, #2e7d32);
  --danta-point-of-sale-green-soft: var(--danta-app-success-soft, #e8f5e9);
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.danta-point-of-sale-screen--management,
.danta-point-of-sale-screen--detail {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr);
}

.danta-point-of-sale-screen--profile {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr) 43px;
}

.danta-point-of-sale-screen--sheet,
.danta-point-of-sale-screen--qr {
  display: block;
}

.danta-point-of-sale-app-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 44px;
  padding: 0 9px;
  background: var(--danta-app-surface);
  box-shadow: 0 1px 0 rgba(29, 27, 32, 0.1);
}

.danta-point-of-sale-app-bar > strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-leading {
  color: #49454f;
  font-size: 22px;
  line-height: 1;
}

.danta-point-of-sale-app-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: #49454f;
  font-size: 13px;
  line-height: 1;
}

.danta-point-of-sale-management-body {
  min-height: 0;
  padding: 9px 10px 54px;
  overflow: hidden;
}

.danta-point-of-sale-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 8px;
}

.danta-point-of-sale-selector > span {
  display: flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid #d5ced8;
  border-radius: 10px;
  color: #665f69;
  background: rgba(255, 251, 254, 0.72);
  font-size: 5.8px;
  font-weight: 650;
  text-align: center;
}

.danta-point-of-sale-selector > span b {
  color: currentColor;
  font-size: 8px;
}

.danta-point-of-sale-selector > span.is-selected {
  border-color: var(--danta-point-of-sale-purple);
  color: var(--danta-point-of-sale-purple-dark);
  background: var(--danta-point-of-sale-purple-soft);
  box-shadow: inset 0 0 0 1px rgba(103, 80, 164, 0.05);
}

.danta-point-of-sale-view-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 13px;
  background: var(--danta-app-card);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.13);
}

.danta-point-of-sale-view-heading > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--danta-point-of-sale-purple);
  background: #f1edf3;
  font-size: 9px;
}

.danta-point-of-sale-view-heading > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-point-of-sale-view-heading strong {
  font-size: 7px;
}

.danta-point-of-sale-view-heading small {
  overflow: hidden;
  color: #6d6670;
  font-size: 5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-view-heading > b {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--danta-point-of-sale-purple);
  background: var(--danta-point-of-sale-purple-soft);
  font-size: 5px;
  white-space: nowrap;
}

.danta-point-of-sale-collaborator {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-radius: 13px;
  background: var(--danta-app-card);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.13);
}

.danta-point-of-sale-collaborator > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-point-of-sale-collaborator strong {
  overflow: hidden;
  font-size: 7.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-collaborator small {
  overflow: hidden;
  color: #6d6670;
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-collaborator > b {
  padding: 4px 6px;
  border-radius: 999px;
  color: #23662b;
  background: #e5f5e7;
  font-size: 5px;
}

.danta-point-of-sale-collaborator--compact {
  padding: 7px;
}

.danta-point-of-sale-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-point-of-sale-purple);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-size: 7.5px;
  font-weight: 850;
}

.danta-point-of-sale-avatar--person {
  color: #315b46;
  background: #d9f0e3;
}

.danta-point-of-sale-avatar--large {
  width: 43px;
  height: 43px;
  font-size: 10px;
}

.danta-point-of-sale-avatar--company {
  width: 55px;
  height: 55px;
  color: #155b3c;
  background: #d7f2e4;
  font-size: 13px;
}

.danta-point-of-sale-avatar--profile {
  width: 46px;
  height: 46px;
  font-size: 11px;
}

.danta-point-of-sale-empty {
  display: grid;
  min-height: 104px;
  margin: 0;
  place-items: center;
  border: 1px dashed #d0c9d3;
  border-radius: 13px;
  color: #756e78;
  background: rgba(255, 251, 254, 0.62);
  font-size: 6px;
}

.danta-point-of-sale-fab {
  position: absolute;
  right: 10px;
  bottom: 11px;
  z-index: 5;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 13px;
  color: #fff;
  background: var(--danta-point-of-sale-purple);
  box-shadow: 0 5px 13px rgba(79, 55, 139, 0.3);
  font-size: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.danta-point-of-sale-fab > b {
  font-size: 8px;
}

.danta-point-of-sale-card {
  padding: 9px;
  border: 1px solid rgba(121, 116, 126, 0.13);
  border-radius: 14px;
  background: var(--danta-app-card);
  box-shadow: 0 2px 6px rgba(29, 27, 32, 0.13);
}

.danta-point-of-sale-card > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 6px;
  align-items: center;
}

.danta-point-of-sale-card > header > strong {
  overflow: hidden;
  font-size: 7.4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-default,
.danta-point-of-sale-qr-default {
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--danta-point-of-sale-purple-dark);
  background: var(--danta-point-of-sale-purple-soft);
  font-size: 4.7px;
  font-weight: 750;
  white-space: nowrap;
}

.danta-point-of-sale-edit {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #5f5962;
  background: #f0ebf1;
  font-size: 8px;
}

.danta-point-of-sale-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.danta-point-of-sale-pills > span {
  padding: 4px 6px;
  border-radius: 999px;
  color: #554f58;
  background: #f0ebf1;
  font-size: 4.8px;
  font-weight: 650;
  white-space: nowrap;
}

.danta-point-of-sale-pills > .is-active {
  color: #23662b;
  background: #e5f5e7;
}

.danta-point-of-sale-pills > .is-assigned {
  color: #155b86;
  background: #e7f3fa;
}

.danta-point-of-sale-pills > .is-default {
  color: var(--danta-point-of-sale-purple-dark);
  background: var(--danta-point-of-sale-purple-soft);
}

.danta-point-of-sale-card > small {
  display: block;
  margin-top: 8px;
  color: #6d6670;
  font-size: 5px;
  font-weight: 650;
}

.danta-point-of-sale-assigned-chip {
  display: inline-flex;
  margin-top: 5px;
  padding: 4px 7px;
  border: 1px solid #d7d0d9;
  border-radius: 999px;
  color: #514b54;
  background: #f7f2f8;
  font-size: 5px;
}

.danta-point-of-sale-background {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  filter: saturate(0.78);
}

.danta-point-of-sale-screen--sheet .danta-point-of-sale-background {
  grid-template-rows: 44px minmax(0, 1fr);
}

.danta-point-of-sale-screen--qr .danta-point-of-sale-background {
  grid-template-rows: 44px minmax(0, 1fr) 43px;
}

.danta-point-of-sale-sheet-backdrop {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: flex-end;
  background: rgba(20, 17, 22, 0.5);
  backdrop-filter: blur(0.8px);
}

.danta-point-of-sale-sheet,
.danta-point-of-sale-qr-sheet {
  width: 100%;
  max-height: 94%;
  padding: 8px 14px 15px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--danta-app-card);
  box-shadow: 0 -8px 25px rgba(29, 27, 32, 0.24);
}

.danta-point-of-sale-sheet-handle {
  display: block;
  width: 38px;
  height: 4px;
  margin: 0 auto 9px;
  border-radius: 999px;
  background: #a9a2ac;
}

.danta-point-of-sale-sheet h3,
.danta-point-of-sale-qr-sheet h3 {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  text-align: center;
}

.danta-point-of-sale-field {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-top: 13px;
  padding: 10px 9px 6px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  background: var(--danta-app-card);
}

.danta-point-of-sale-field::before {
  position: absolute;
  top: -6px;
  left: 8px;
  padding: 0 4px;
  color: #5e5861;
  background: var(--danta-app-card);
  content: attr(data-label);
  font-size: 5.4px;
}

.danta-point-of-sale-field strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-field.is-highlighted {
  border-width: 2px;
  border-color: var(--danta-point-of-sale-purple);
  box-shadow: 0 0 0 4px rgba(103, 80, 164, 0.1);
}

.danta-point-of-sale-field.is-highlighted::before {
  color: var(--danta-point-of-sale-purple-dark);
}

.danta-point-of-sale-settings,
.danta-point-of-sale-assignment {
  margin-top: 7px;
  padding: 2px 8px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.danta-point-of-sale-settings.is-highlighted,
.danta-point-of-sale-assignment.is-highlighted {
  border-color: var(--danta-point-of-sale-purple);
  background: rgba(103, 80, 164, 0.055);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08);
}

.danta-point-of-sale-switch-row {
  display: grid;
  min-height: 42px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(121, 116, 126, 0.13);
}

.danta-point-of-sale-switch-row:last-child {
  border-bottom: 0;
}

.danta-point-of-sale-switch-row > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-point-of-sale-switch-row strong {
  font-size: 6.6px;
}

.danta-point-of-sale-switch-row small {
  overflow: hidden;
  color: #6d6670;
  font-size: 4.9px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-switch-row > i {
  position: relative;
  display: block;
  width: 29px;
  height: 17px;
  border: 1px solid #79747e;
  border-radius: 999px;
  background: #e6e0e9;
}

.danta-point-of-sale-switch-row > i b {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #79747e;
  transform: translateY(-50%);
}

.danta-point-of-sale-switch-row > i.is-checked {
  border-color: var(--danta-point-of-sale-purple);
  background: var(--danta-point-of-sale-purple);
}

.danta-point-of-sale-switch-row > i.is-checked b {
  left: 14px;
  background: #fff;
}

.danta-point-of-sale-assignment {
  padding-top: 7px;
  padding-bottom: 7px;
}

.danta-point-of-sale-assignment > strong {
  display: block;
  font-size: 6.6px;
}

.danta-point-of-sale-check-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: 6px;
}

.danta-point-of-sale-check-row > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-point-of-sale-check-row b {
  font-size: 6px;
}

.danta-point-of-sale-check-row small {
  overflow: hidden;
  color: #6d6670;
  font-size: 4.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-checkbox {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 3px;
  color: #fff;
  background: var(--danta-point-of-sale-purple);
  font-size: 8px;
  font-weight: 800;
}

.danta-point-of-sale-synthetic-note {
  display: block;
  margin-top: 5px;
  color: #756e78;
  font-size: 4.8px;
  line-height: 1.25;
  text-align: center;
}

.danta-point-of-sale-button {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--danta-point-of-sale-purple);
  box-shadow: 0 2px 4px rgba(79, 55, 139, 0.22);
  font-size: 6.2px;
  font-weight: 750;
}

.danta-point-of-sale-button.is-highlighted {
  outline: 2px solid rgba(103, 80, 164, 0.22);
  outline-offset: 2px;
  box-shadow: 0 5px 14px rgba(79, 55, 139, 0.3);
}

.danta-point-of-sale-detail-body {
  min-height: 0;
  padding: 8px 10px 12px;
  overflow: auto;
  scrollbar-width: none;
}

.danta-point-of-sale-detail-body::-webkit-scrollbar {
  display: none;
}

.danta-point-of-sale-detail-card,
.danta-point-of-sale-modules {
  margin-bottom: 8px;
  border: 1px solid rgba(121, 116, 126, 0.1);
  border-radius: 14px;
  background: var(--danta-app-card);
  box-shadow: 0 1px 4px rgba(29, 27, 32, 0.12);
}

.danta-point-of-sale-detail-card {
  padding: 9px;
}

.danta-point-of-sale-detail-header > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 7px;
  align-items: center;
}

.danta-point-of-sale-detail-header > header > strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-detail-header > header > span:not(.danta-point-of-sale-avatar) {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #5f5962;
  background: #f0ebf1;
  font-size: 8px;
}

.danta-point-of-sale-detail-card h3 {
  margin: 0 0 7px;
  font-size: 7.4px;
}

.danta-point-of-sale-detail-card dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.danta-point-of-sale-detail-card dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 8px;
  align-items: start;
}

.danta-point-of-sale-detail-card dt,
.danta-point-of-sale-detail-card dd {
  margin: 0;
  font-size: 5.2px;
  line-height: 1.25;
}

.danta-point-of-sale-detail-card dt {
  color: #6d6670;
  font-weight: 600;
}

.danta-point-of-sale-detail-card dd {
  font-weight: 750;
}

.danta-point-of-sale-detail-assigned > span {
  display: inline-flex;
  padding: 4px 7px;
  border: 1px solid #d7d0d9;
  border-radius: 999px;
  color: #514b54;
  background: #f7f2f8;
  font-size: 5px;
}

.danta-point-of-sale-modules {
  overflow: hidden;
}

.danta-point-of-sale-modules > span {
  display: grid;
  min-height: 38px;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-content: center;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(121, 116, 126, 0.13);
}

.danta-point-of-sale-modules > span:last-child {
  border-bottom: 0;
}

.danta-point-of-sale-modules > span > b {
  display: grid;
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 8px;
  color: var(--danta-point-of-sale-purple-dark);
  background: var(--danta-point-of-sale-purple-soft);
  font-size: 8px;
}

.danta-point-of-sale-modules > span > strong {
  align-self: end;
  font-size: 6px;
}

.danta-point-of-sale-modules > span > small {
  overflow: hidden;
  align-self: start;
  color: #6d6670;
  font-size: 4.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-point-of-sale-modules > span > i {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: #777079;
  font-size: 11px;
  font-style: normal;
}

.danta-point-of-sale-profile-body {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  padding: 12px 11px 10px;
  overflow: hidden;
}

.danta-point-of-sale-account-chip {
  position: absolute;
  top: 9px;
  right: 11px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #155b3c;
  background: #dff3e8;
  font-size: 5px;
  font-weight: 750;
}

.danta-point-of-sale-profile-body > strong {
  margin-top: 7px;
  font-size: 9px;
}

.danta-point-of-sale-profile-body > small {
  margin-top: 2px;
  color: #6d6670;
  font-size: 5.4px;
}

.danta-point-of-sale-profile-points {
  width: 100%;
  margin-top: 13px;
  padding: 9px;
  border: 1px solid rgba(121, 116, 126, 0.1);
  border-radius: 15px;
  background: var(--danta-app-card);
  box-shadow: 0 2px 6px rgba(29, 27, 32, 0.12);
}

.danta-point-of-sale-profile-points > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(121, 116, 126, 0.12);
}

.danta-point-of-sale-profile-points > header strong {
  color: #3f3942;
  font-size: 7px;
}

.danta-point-of-sale-profile-points > header strong span {
  margin-right: 3px;
  color: var(--danta-point-of-sale-purple);
}

.danta-point-of-sale-profile-points > header > span {
  color: #625c66;
  font-size: 10px;
}

.danta-point-of-sale-profile-points > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 0 6px;
}

.danta-point-of-sale-profile-points p {
  margin: 5px 0;
  color: #6d6670;
  font-size: 5.2px;
  font-weight: 650;
}

.danta-point-of-sale-profile-points > small {
  display: block;
  color: #6d6670;
  font-size: 4.8px;
}

.danta-point-of-sale-profile-button {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid #d0c8d4;
  border-radius: 999px;
  color: var(--danta-point-of-sale-purple-dark);
  background: #fff;
  font-size: 5.4px;
  font-weight: 700;
}

.danta-point-of-sale-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: var(--danta-app-green-nav);
}

.danta-point-of-sale-nav > span {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  color: rgba(29, 27, 32, 0.65);
}

.danta-point-of-sale-nav b {
  font-size: 7px;
  line-height: 1;
}

.danta-point-of-sale-nav small {
  font-size: 4.6px;
  font-weight: 650;
}

.danta-point-of-sale-nav > span.is-active {
  color: #155b3c;
}

.danta-point-of-sale-qr-sheet {
  display: grid;
  justify-items: center;
  padding-bottom: 13px;
}

.danta-point-of-sale-qr-default {
  margin-top: 7px;
}

.danta-point-of-sale-qr-shell {
  display: grid;
  width: 184px;
  max-width: 72%;
  aspect-ratio: 1;
  margin-top: 8px;
  padding: 11px;
  place-items: center;
  border: 1px solid #ebe4ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(29, 27, 32, 0.14);
}

.danta-point-of-sale-qr-code {
  display: block;
  width: 100%;
  height: 100%;
}

.danta-point-of-sale-qr-shell + strong {
  margin-top: 8px;
  font-size: 7.5px;
}

.danta-point-of-sale-qr-sheet > small:not(.danta-point-of-sale-synthetic-note) {
  margin-top: 3px;
  color: #6d6670;
  font-size: 5.2px;
}

.danta-point-of-sale-qr-actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.danta-point-of-sale-qr-actions > span {
  display: flex;
  min-width: 0;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 4px;
  border: 1px solid #d0c8d4;
  border-radius: 999px;
  color: var(--danta-point-of-sale-purple-dark);
  background: transparent;
  font-size: 5px;
  font-weight: 700;
  white-space: nowrap;
}

.danta-point-of-sale-qr-actions > span:first-child {
  border-color: var(--danta-point-of-sale-purple);
  color: #fff;
  background: var(--danta-point-of-sale-purple);
}

.danta-point-of-sale-snackbar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 12;
  padding: 8px 10px;
  border-radius: 6px;
  color: #fff;
  background: #303033;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  font-size: 6px;
  font-weight: 650;
  text-align: left;
}

@container (max-width: 290px) {
  .danta-point-of-sale-screen--management,
  .danta-point-of-sale-screen--detail {
    grid-template-rows: 34px minmax(0, 1fr);
  }

  .danta-point-of-sale-screen--profile,
  .danta-point-of-sale-screen--qr .danta-point-of-sale-background {
    grid-template-rows: 34px minmax(0, 1fr) 36px;
  }

  .danta-point-of-sale-screen--sheet .danta-point-of-sale-background {
    grid-template-rows: 34px minmax(0, 1fr);
  }

  .danta-point-of-sale-app-bar {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    min-height: 34px;
    padding: 0 6px;
  }

  .danta-point-of-sale-app-bar > strong {
    font-size: 7px;
  }

  .danta-point-of-sale-leading {
    font-size: 15px;
  }

  .danta-point-of-sale-app-actions {
    gap: 6px;
    font-size: 8px;
  }

  .danta-point-of-sale-management-body,
  .danta-point-of-sale-detail-body {
    padding: 6px 6px 42px;
  }

  .danta-point-of-sale-selector {
    gap: 4px;
    margin-bottom: 5px;
  }

  .danta-point-of-sale-selector > span {
    min-height: 26px;
    gap: 3px;
    padding: 4px;
    border-radius: 8px;
    font-size: 4.4px;
  }

  .danta-point-of-sale-selector > span b {
    font-size: 6px;
  }

  .danta-point-of-sale-view-heading {
    gap: 5px;
    margin-bottom: 5px;
    padding: 6px;
    border-radius: 10px;
  }

  .danta-point-of-sale-view-heading > span:first-child {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    font-size: 7px;
  }

  .danta-point-of-sale-view-heading strong,
  .danta-point-of-sale-collaborator strong,
  .danta-point-of-sale-card > header > strong {
    font-size: 5.4px;
  }

  .danta-point-of-sale-view-heading small,
  .danta-point-of-sale-collaborator small,
  .danta-point-of-sale-card > small {
    font-size: 3.9px;
  }

  .danta-point-of-sale-view-heading > b,
  .danta-point-of-sale-collaborator > b,
  .danta-point-of-sale-default {
    padding: 3px 4px;
    font-size: 3.8px;
  }

  .danta-point-of-sale-collaborator,
  .danta-point-of-sale-card {
    gap: 5px;
    padding: 6px;
    border-radius: 10px;
  }

  .danta-point-of-sale-avatar {
    width: 24px;
    height: 24px;
    font-size: 5.6px;
  }

  .danta-point-of-sale-avatar--large {
    width: 32px;
    height: 32px;
    font-size: 7px;
  }

  .danta-point-of-sale-avatar--company {
    width: 39px;
    height: 39px;
    font-size: 9px;
  }

  .danta-point-of-sale-avatar--profile {
    width: 34px;
    height: 34px;
    font-size: 8px;
  }

  .danta-point-of-sale-empty {
    min-height: 72px;
    border-radius: 10px;
    font-size: 4.5px;
  }

  .danta-point-of-sale-fab {
    right: 6px;
    bottom: 7px;
    min-height: 27px;
    gap: 4px;
    padding: 5px 7px;
    border-radius: 10px;
    font-size: 4.5px;
  }

  .danta-point-of-sale-fab > b,
  .danta-point-of-sale-edit {
    font-size: 6px;
  }

  .danta-point-of-sale-card > header {
    gap: 4px;
  }

  .danta-point-of-sale-edit {
    width: 16px;
    height: 16px;
  }

  .danta-point-of-sale-pills {
    gap: 3px;
    margin-top: 5px;
  }

  .danta-point-of-sale-pills > span,
  .danta-point-of-sale-assigned-chip,
  .danta-point-of-sale-detail-assigned > span {
    padding: 3px 4px;
    font-size: 3.7px;
  }

  .danta-point-of-sale-card > small,
  .danta-point-of-sale-assigned-chip {
    margin-top: 4px;
  }

  .danta-point-of-sale-sheet,
  .danta-point-of-sale-qr-sheet {
    padding: 6px 10px 10px;
    border-radius: 14px 14px 0 0;
  }

  .danta-point-of-sale-sheet-handle {
    width: 28px;
    height: 3px;
    margin-bottom: 6px;
  }

  .danta-point-of-sale-sheet h3,
  .danta-point-of-sale-qr-sheet h3 {
    font-size: 7px;
  }

  .danta-point-of-sale-field {
    min-height: 31px;
    margin-top: 9px;
    padding: 7px 6px 4px;
  }

  .danta-point-of-sale-field::before {
    top: -5px;
    font-size: 4px;
  }

  .danta-point-of-sale-field strong {
    font-size: 5px;
  }

  .danta-point-of-sale-settings,
  .danta-point-of-sale-assignment {
    margin-top: 5px;
    padding-inline: 5px;
    border-radius: 9px;
  }

  .danta-point-of-sale-switch-row {
    min-height: 31px;
    gap: 6px;
  }

  .danta-point-of-sale-switch-row strong,
  .danta-point-of-sale-assignment > strong {
    font-size: 4.8px;
  }

  .danta-point-of-sale-switch-row small,
  .danta-point-of-sale-check-row small {
    font-size: 3.6px;
  }

  .danta-point-of-sale-switch-row > i {
    width: 23px;
    height: 14px;
  }

  .danta-point-of-sale-switch-row > i b {
    left: 2px;
    width: 9px;
    height: 9px;
  }

  .danta-point-of-sale-switch-row > i.is-checked b {
    left: 11px;
  }

  .danta-point-of-sale-assignment {
    padding-block: 5px;
  }

  .danta-point-of-sale-check-row {
    gap: 5px;
    margin-top: 4px;
  }

  .danta-point-of-sale-check-row b {
    font-size: 4.5px;
  }

  .danta-point-of-sale-checkbox {
    width: 13px;
    height: 13px;
    font-size: 6px;
  }

  .danta-point-of-sale-synthetic-note {
    margin-top: 4px;
    font-size: 3.6px;
  }

  .danta-point-of-sale-button {
    min-height: 23px;
    margin-top: 6px;
    font-size: 4.7px;
  }

  .danta-point-of-sale-detail-body {
    padding-bottom: 7px;
  }

  .danta-point-of-sale-detail-card,
  .danta-point-of-sale-modules {
    margin-bottom: 5px;
    border-radius: 10px;
  }

  .danta-point-of-sale-detail-card {
    padding: 6px;
  }

  .danta-point-of-sale-detail-header > header {
    gap: 5px;
  }

  .danta-point-of-sale-detail-header > header > strong {
    font-size: 5.8px;
  }

  .danta-point-of-sale-detail-header > header > span:not(.danta-point-of-sale-avatar) {
    width: 17px;
    height: 17px;
    font-size: 6px;
  }

  .danta-point-of-sale-detail-card h3 {
    margin-bottom: 5px;
    font-size: 5.4px;
  }

  .danta-point-of-sale-detail-card dl {
    gap: 3px;
  }

  .danta-point-of-sale-detail-card dt,
  .danta-point-of-sale-detail-card dd {
    font-size: 3.9px;
  }

  .danta-point-of-sale-modules > span {
    min-height: 29px;
    grid-template-columns: 19px minmax(0, 1fr) auto;
    column-gap: 5px;
    padding: 4px 6px;
  }

  .danta-point-of-sale-modules > span > b {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    font-size: 6px;
  }

  .danta-point-of-sale-modules > span > strong {
    font-size: 4.6px;
  }

  .danta-point-of-sale-modules > span > small {
    font-size: 3.4px;
  }

  .danta-point-of-sale-modules > span > i {
    font-size: 8px;
  }

  .danta-point-of-sale-profile-body {
    padding: 8px 7px 6px;
  }

  .danta-point-of-sale-account-chip {
    top: 6px;
    right: 7px;
    padding: 3px 5px;
    font-size: 3.8px;
  }

  .danta-point-of-sale-profile-body > strong {
    margin-top: 5px;
    font-size: 6.5px;
  }

  .danta-point-of-sale-profile-body > small {
    font-size: 4px;
  }

  .danta-point-of-sale-profile-points {
    margin-top: 9px;
    padding: 6px;
    border-radius: 11px;
  }

  .danta-point-of-sale-profile-points > header {
    padding-bottom: 5px;
  }

  .danta-point-of-sale-profile-points > header strong {
    font-size: 5px;
  }

  .danta-point-of-sale-profile-points > header > span {
    font-size: 7px;
  }

  .danta-point-of-sale-profile-points > div {
    padding: 6px 0 4px;
  }

  .danta-point-of-sale-profile-points p,
  .danta-point-of-sale-profile-points > small {
    font-size: 3.8px;
  }

  .danta-point-of-sale-profile-button {
    min-height: 20px;
    padding: 4px 7px;
    font-size: 4px;
  }

  .danta-point-of-sale-nav {
    min-height: 36px;
  }

  .danta-point-of-sale-nav b {
    font-size: 5.5px;
  }

  .danta-point-of-sale-nav small {
    font-size: 3.5px;
  }

  .danta-point-of-sale-qr-default {
    margin-top: 5px;
    padding: 3px 5px;
    font-size: 3.8px;
  }

  .danta-point-of-sale-qr-shell {
    width: 126px;
    margin-top: 6px;
    padding: 8px;
    border-radius: 10px;
  }

  .danta-point-of-sale-qr-shell + strong {
    margin-top: 6px;
    font-size: 5.5px;
  }

  .danta-point-of-sale-qr-sheet > small:not(.danta-point-of-sale-synthetic-note) {
    font-size: 3.9px;
  }

  .danta-point-of-sale-qr-actions {
    gap: 4px;
    margin-top: 7px;
  }

  .danta-point-of-sale-qr-actions > span {
    min-height: 21px;
    padding: 4px 2px;
    font-size: 3.7px;
  }

  .danta-point-of-sale-snackbar {
    right: 6px;
    bottom: 7px;
    left: 6px;
    padding: 6px 7px;
    font-size: 4.5px;
  }
}

/* Empresa · Movilidad · creación de ruta. */
.danta-route-screen {
  --danta-route-purple: var(--danta-app-primary, #6750a4);
  --danta-route-purple-dark: var(--danta-app-primary-dark, #4f378b);
  --danta-route-purple-soft: rgba(103, 80, 164, 0.1);
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.danta-route-screen--point,
.danta-route-screen--mobility,
.danta-route-screen--configured {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr);
}

.danta-route-screen--dialog,
.danta-route-screen--map {
  display: block;
}

.danta-route-app-bar {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 44px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  padding: 0 9px;
  background: var(--danta-app-surface);
  box-shadow: 0 1px 0 rgba(29, 27, 32, 0.1);
}

.danta-route-app-bar > strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-leading {
  font-size: 23px;
  line-height: 1;
}

.danta-route-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  font-size: 13px;
}

.danta-route-point-body,
.danta-route-mobility-body {
  min-height: 0;
  overflow: hidden;
  padding: 12px;
}

.danta-route-point-body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.danta-route-mobility-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.danta-route-card {
  border: 1px solid rgba(121, 116, 126, 0.18);
  border-radius: 15px;
  background: var(--danta-app-card);
  box-shadow: 0 3px 10px rgba(29, 27, 32, 0.045);
}

.danta-route-point-header {
  padding: 13px;
}

.danta-route-point-header > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.danta-route-point-header > header > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.danta-route-point-header strong,
.danta-route-point-header small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-point-header strong {
  font-size: 10px;
}

.danta-route-point-header small {
  color: var(--danta-app-muted);
  font-size: 7px;
}

.danta-route-point-header > header > b {
  padding: 4px 7px;
  border-radius: 999px;
  color: #1b5e20;
  background: var(--danta-app-success-soft);
  font-size: 6px;
}

.danta-route-point-header > p {
  margin: 9px 0 0;
  color: var(--danta-app-muted);
  font-size: 7px;
}

.danta-route-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-route-purple);
  font-size: 8px;
  font-weight: 900;
}

.danta-route-service-summary {
  padding: 12px;
}

.danta-route-service-summary h3,
.danta-route-current h3 {
  margin: 0 0 8px;
  font-size: 9px;
}

.danta-route-service-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.danta-route-service-summary > div > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.danta-route-service-summary strong {
  font-size: 8px;
}

.danta-route-service-summary small {
  color: var(--danta-app-muted);
  font-size: 6px;
}

.danta-route-service-summary > div > b {
  color: var(--danta-route-purple-dark);
  font-size: 10px;
}

.danta-route-modules {
  padding: 3px 11px;
}

.danta-route-module {
  display: grid;
  min-height: 49px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(121, 116, 126, 0.15);
}

.danta-route-module:last-child {
  border-bottom: 0;
}

.danta-route-module > b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  color: var(--danta-route-purple-dark);
  background: var(--danta-route-purple-soft);
  font-size: 10px;
}

.danta-route-module > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.danta-route-module strong {
  font-size: 8px;
}

.danta-route-module small {
  overflow: hidden;
  color: var(--danta-app-muted);
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-module > i {
  color: var(--danta-app-muted);
  font-size: 13px;
  font-style: normal;
}

.danta-route-synthetic-note {
  display: block;
  color: #756c79;
  font-size: 5.8px;
  line-height: 1.35;
  text-align: center;
}

.danta-route-status {
  display: grid;
  min-height: 53px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid #bbdefb;
  border-radius: 14px;
  color: #0d47a1;
  background: #e3f2fd;
}

.danta-route-status.is-configured {
  border-color: #c8e6c9;
  color: #1b5e20;
  background: var(--danta-app-success-soft);
}

.danta-route-status > b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}

.danta-route-status > p {
  margin: 0;
  font-size: 6.5px;
  font-weight: 650;
  line-height: 1.35;
}

.danta-route-current {
  padding: 10px;
}

.danta-route-current dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 10px;
  margin: 0;
}

.danta-route-current dl > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 4px;
}

.danta-route-current dt,
.danta-route-current dd {
  overflow: hidden;
  margin: 0;
  font-size: 5.8px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-current dt {
  color: var(--danta-app-muted);
  font-weight: 650;
}

.danta-route-current dd {
  font-weight: 800;
}

.danta-route-form {
  display: grid;
  gap: 7px;
  padding: 10px;
}

.danta-route-public-name,
.danta-route-base,
.danta-route-visibility {
  border: 1px solid transparent;
  border-radius: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.danta-route-public-name.is-highlighted,
.danta-route-base.is-highlighted,
.danta-route-visibility.is-highlighted {
  border-color: var(--danta-route-purple);
  box-shadow: 0 0 0 3px var(--danta-route-purple-soft);
}

.danta-route-field {
  position: relative;
  display: flex;
  min-height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 10px 8px 5px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  background: var(--danta-app-card);
}

.danta-route-field::before {
  position: absolute;
  top: -5px;
  left: 7px;
  padding: 0 3px;
  color: #5f5962;
  background: var(--danta-app-card);
  content: attr(data-label);
  font-size: 5.5px;
}

.danta-route-field strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-field small {
  overflow: hidden;
  color: var(--danta-app-muted);
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-base {
  display: grid;
  gap: 6px;
  padding: 4px;
}

.danta-route-field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.danta-route-switch-row {
  display: grid;
  min-height: 35px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 4px;
}

.danta-route-switch-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.danta-route-switch-row strong {
  font-size: 6.5px;
}

.danta-route-switch-row small {
  overflow: hidden;
  color: var(--danta-app-muted);
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-switch-row > i {
  position: relative;
  width: 29px;
  height: 17px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 999px;
  background: var(--danta-app-container);
}

.danta-route-switch-row > i b {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--danta-app-outline);
}

.danta-route-switch-row > i.is-checked {
  border-color: var(--danta-route-purple);
  background: var(--danta-route-purple);
}

.danta-route-switch-row > i.is-checked b {
  left: 15px;
  background: #fff;
}

.danta-route-visibility {
  padding: 2px 4px;
}

.danta-route-primary-button,
.danta-route-secondary-button,
.danta-route-small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.danta-route-primary-button {
  min-height: 28px;
  padding: 6px 11px;
  color: #fff;
  background: var(--danta-route-purple);
  font-size: 6.5px;
  justify-self: end;
}

.danta-route-primary-button.is-highlighted,
.danta-route-small-button.is-highlighted,
.danta-route-secondary-button.is-highlighted,
.danta-route-coordinate-row > span.is-highlighted,
.danta-route-dialog footer > b.is-highlighted {
  box-shadow: 0 0 0 4px rgba(103, 80, 164, 0.2), 0 7px 14px rgba(79, 55, 139, 0.2);
}

.danta-route-trajectories,
.danta-route-services {
  padding: 10px;
}

.danta-route-trajectories > header,
.danta-route-services > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.danta-route-trajectories > header > span:first-child,
.danta-route-services > header > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.danta-route-trajectories > header b,
.danta-route-services > header b {
  color: var(--danta-route-purple-dark);
  font-size: 9px;
}

.danta-route-trajectories > header strong,
.danta-route-services > header strong {
  font-size: 8px;
}

.danta-route-small-button {
  min-height: 23px;
  padding: 4px 8px;
  color: var(--danta-route-purple-dark);
  font-size: 5.8px;
}

.danta-route-trajectories > p,
.danta-route-services > p {
  margin: 7px 0;
  color: var(--danta-app-muted);
  font-size: 5.4px;
  line-height: 1.35;
}

.danta-route-trajectories--empty > div {
  padding: 9px;
  border-radius: 10px;
  color: #455a64;
  background: #eceff1;
  font-size: 5.7px;
  line-height: 1.35;
}

.danta-route-screen--mobility.is-saved .danta-route-current,
.danta-route-screen--mobility.is-saved .danta-route-form {
  display: none;
}

.danta-route-screen--mobility.is-saved .danta-route-mobility-body {
  justify-content: flex-start;
  padding-top: 20px;
}

.danta-route-snackbar {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 12;
  padding: 9px 11px;
  border-radius: 10px;
  color: #fff;
  background: #323033;
  box-shadow: 0 7px 22px rgba(29, 27, 32, 0.25);
  font-size: 7px;
  font-weight: 700;
}

.danta-route-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.48;
  filter: saturate(0.8);
}

.danta-route-dialog-backdrop,
.danta-route-map-backdrop {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(29, 27, 32, 0.5);
}

.danta-route-dialog {
  width: min(100%, 302px);
  padding: 14px;
  border-radius: 19px;
  background: var(--danta-app-card);
  box-shadow: 0 18px 45px rgba(29, 27, 32, 0.32);
}

.danta-route-dialog > h3 {
  margin: 0 0 9px;
  font-size: 10px;
}

.danta-route-journey-preview {
  display: flex;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid var(--danta-app-border);
  border-radius: 11px;
  background: var(--danta-app-soft);
}

.danta-route-journey-preview.is-highlighted {
  border-color: var(--danta-route-purple);
  box-shadow: 0 0 0 3px var(--danta-route-purple-soft);
}

.danta-route-journey-preview small {
  color: var(--danta-app-muted);
  font-size: 5.5px;
  font-weight: 800;
}

.danta-route-journey-preview strong {
  font-size: 8px;
}

.danta-route-dialog-field {
  margin-top: 7px;
}

.danta-route-coordinate-row {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 4px 2px;
}

.danta-route-coordinate-row > small {
  overflow: hidden;
  color: var(--danta-app-muted);
  font-size: 5.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-coordinate-row > span {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--danta-route-purple-dark);
  font-size: 5.8px;
  font-weight: 800;
  white-space: nowrap;
}

.danta-route-dialog-divider {
  height: 1px;
  margin: 4px 0;
  background: var(--danta-app-border);
}

.danta-route-notes {
  min-height: 31px;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  color: var(--danta-app-muted);
  font-size: 5.8px;
}

.danta-route-notes > span {
  float: right;
  font-size: 5px;
}

.danta-route-dialog > footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 10px;
  color: var(--danta-route-purple-dark);
  font-size: 6px;
  font-weight: 800;
}

.danta-route-dialog > footer > b {
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--danta-route-purple);
}

.danta-route-map-dialog {
  display: grid;
  width: min(100%, 325px);
  grid-template-rows: 38px minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 19px;
  background: var(--danta-app-card);
  box-shadow: 0 18px 45px rgba(29, 27, 32, 0.32);
}

.danta-route-map-dialog > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
}

.danta-route-map-dialog > header strong {
  font-size: 9px;
}

.danta-route-map-dialog > header span {
  font-size: 15px;
}

.danta-route-map-dialog > .danta-route-synthetic-note {
  padding: 7px 9px;
}

.danta-route-map {
  position: relative;
  height: 430px;
  overflow: hidden;
  background-color: #e9eee6;
  background-image:
    linear-gradient(28deg, transparent 46%, rgba(255, 255, 255, 0.9) 47%, rgba(255, 255, 255, 0.9) 52%, transparent 53%),
    linear-gradient(105deg, transparent 48%, rgba(214, 222, 209, 0.8) 49%, rgba(214, 222, 209, 0.8) 51%, transparent 52%);
}

.danta-route-map-instruction {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(29, 27, 32, 0.14);
  font-size: 6px;
  font-weight: 650;
}

.danta-route-map-instruction > b {
  font-size: 10px;
}

.danta-route-road {
  position: absolute;
  z-index: 1;
  display: block;
  height: 10px;
  border: 2px solid #fff;
  border-right: 0;
  border-left: 0;
  background: #c9c6bd;
  transform-origin: center;
}

.danta-route-road--one {
  top: 46%;
  left: -12%;
  width: 130%;
  transform: rotate(-18deg);
}

.danta-route-road--two {
  top: 57%;
  left: -14%;
  width: 128%;
  transform: rotate(23deg);
}

.danta-route-road--three {
  top: 40%;
  left: 13%;
  width: 93%;
  height: 6px;
  transform: rotate(73deg);
}

.danta-route-map-label {
  position: absolute;
  top: 33%;
  left: 22%;
  z-index: 2;
  color: #526052;
  font-size: 7px;
  font-weight: 800;
}

.danta-route-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--danta-route-purple);
  box-shadow: 0 5px 13px rgba(29, 27, 32, 0.25);
  font-size: 0;
  transform: translate(-50%, -70%) rotate(-45deg);
}

.danta-route-map-pin::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.danta-route-map-controls {
  position: absolute;
  top: 75px;
  right: 10px;
  z-index: 4;
  display: grid;
  gap: 6px;
}

.danta-route-map-controls > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(29, 27, 32, 0.18);
  font-size: 11px;
  font-weight: 800;
}

.danta-route-map-footer {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 14px rgba(29, 27, 32, 0.14);
  font-size: 5.5px;
}

.danta-route-map-footer > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-map-footer > span {
  color: var(--danta-route-purple-dark);
  font-weight: 800;
}

.danta-route-map-footer > b {
  padding: 7px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--danta-route-purple);
  white-space: nowrap;
}

.danta-route-screen--configured .danta-route-status {
  min-height: 45px;
}

.danta-route-screen--configured .danta-route-current {
  padding: 8px 10px;
}

.danta-route-screen--configured .danta-route-current dl {
  gap: 3px 10px;
}

.danta-route-trajectory-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--danta-route-purple);
  border-radius: 11px;
}

.danta-route-radio {
  color: var(--danta-route-purple);
  font-size: 10px;
}

.danta-route-trajectory-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.danta-route-trajectory-card strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-route-trajectory-card small {
  color: var(--danta-app-muted);
  font-size: 5.2px;
}

.danta-route-trajectory-card > b {
  color: var(--danta-route-purple-dark);
  font-size: 10px;
}

.danta-route-secondary-button {
  min-height: 24px;
  margin-top: 7px;
  padding: 5px 8px;
  border: 1px solid var(--danta-route-purple);
  color: var(--danta-route-purple-dark);
  font-size: 5.4px;
  float: right;
}

.danta-route-services.is-highlighted {
  border-color: var(--danta-route-purple);
  box-shadow: 0 0 0 3px var(--danta-route-purple-soft);
}

.danta-route-services > header > i {
  color: var(--danta-route-purple-dark);
  font-size: 9px;
  font-style: normal;
}

.danta-route-services > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.danta-route-services > div > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.danta-route-services > div strong {
  font-size: 7px;
}

.danta-route-services > div small {
  color: var(--danta-app-muted);
  font-size: 5.5px;
}

.danta-route-checkbox {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid var(--danta-app-outline);
  border-radius: 3px;
  color: #fff;
  font-size: 8px;
}

.danta-route-checkbox.is-checked {
  border-color: var(--danta-route-purple);
  background: var(--danta-route-purple);
}

.danta-route-services .danta-route-primary-button {
  min-height: 24px;
  padding: 5px 8px;
  font-size: 5.4px;
}

.danta-route-stage--trajectory .danta-route-current,
.danta-route-stage--main .danta-route-current,
.danta-route-stage--services .danta-route-current {
  display: none;
}

.danta-route-stage--trajectory .danta-route-services,
.danta-route-stage--main .danta-route-services {
  opacity: 0.7;
}

.danta-route-stage--final .danta-route-trajectories,
.danta-route-stage--final .danta-route-services {
  padding-top: 8px;
  padding-bottom: 8px;
}

@container (max-width: 290px) {
  .danta-route-screen--point,
  .danta-route-screen--mobility,
  .danta-route-screen--configured {
    grid-template-rows: 36px minmax(0, 1fr);
  }

  .danta-route-app-bar {
    min-height: 36px;
    grid-template-columns: 33px minmax(0, 1fr) 33px;
    padding: 0 7px;
  }

  .danta-route-app-bar > strong {
    font-size: 7px;
  }

  .danta-route-leading {
    font-size: 15px;
  }

  .danta-route-actions {
    gap: 5px;
    font-size: 8px;
  }

  .danta-route-point-body,
  .danta-route-mobility-body {
    gap: 5px;
    padding: 8px;
  }

  .danta-route-card {
    border-radius: 11px;
  }

  .danta-route-point-header,
  .danta-route-service-summary,
  .danta-route-trajectories,
  .danta-route-services {
    padding: 7px;
  }

  .danta-route-avatar {
    width: 25px;
    height: 25px;
    font-size: 5px;
  }

  .danta-route-point-header strong,
  .danta-route-service-summary h3,
  .danta-route-current h3 {
    font-size: 6px;
  }

  .danta-route-point-header small,
  .danta-route-point-header > p,
  .danta-route-service-summary strong,
  .danta-route-module strong {
    font-size: 4.3px;
  }

  .danta-route-point-header > header > b,
  .danta-route-service-summary small,
  .danta-route-module small,
  .danta-route-synthetic-note {
    font-size: 3.5px;
  }

  .danta-route-module {
    min-height: 34px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 5px;
  }

  .danta-route-module > b {
    width: 19px;
    height: 19px;
    border-radius: 6px;
    font-size: 6px;
  }

  .danta-route-status {
    min-height: 38px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 6px 7px;
  }

  .danta-route-status > b {
    width: 19px;
    height: 19px;
    font-size: 6px;
  }

  .danta-route-status > p,
  .danta-route-current dt,
  .danta-route-current dd,
  .danta-route-switch-row strong,
  .danta-route-primary-button,
  .danta-route-trajectories > header strong,
  .danta-route-services > header strong,
  .danta-route-trajectory-card strong,
  .danta-route-services > div strong {
    font-size: 4px;
  }

  .danta-route-current,
  .danta-route-form {
    padding: 6px;
  }

  .danta-route-current dl {
    gap: 2px 5px;
  }

  .danta-route-current dl > div {
    grid-template-columns: 29px minmax(0, 1fr);
  }

  .danta-route-field {
    min-height: 27px;
    padding: 7px 5px 3px;
  }

  .danta-route-field::before,
  .danta-route-field strong,
  .danta-route-small-button,
  .danta-route-secondary-button,
  .danta-route-coordinate-row > span,
  .danta-route-dialog > footer,
  .danta-route-services .danta-route-primary-button {
    font-size: 3.7px;
  }

  .danta-route-field small,
  .danta-route-switch-row small,
  .danta-route-trajectories > p,
  .danta-route-services > p,
  .danta-route-trajectory-card small,
  .danta-route-services > div small {
    font-size: 3.2px;
  }

  .danta-route-switch-row {
    min-height: 23px;
    padding: 2px;
  }

  .danta-route-switch-row > i {
    width: 21px;
    height: 12px;
  }

  .danta-route-switch-row > i b {
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
  }

  .danta-route-switch-row > i.is-checked b {
    left: 11px;
  }

  .danta-route-primary-button {
    min-height: 20px;
    padding: 4px 7px;
  }

  .danta-route-trajectories--empty > div,
  .danta-route-snackbar {
    font-size: 3.7px;
  }

  .danta-route-dialog-backdrop,
  .danta-route-map-backdrop {
    padding: 8px;
  }

  .danta-route-dialog {
    width: min(100%, 218px);
    padding: 9px;
    border-radius: 13px;
  }

  .danta-route-dialog > h3,
  .danta-route-map-dialog > header strong {
    font-size: 6px;
  }

  .danta-route-journey-preview {
    min-height: 31px;
    margin-bottom: 6px;
    padding: 5px 7px;
  }

  .danta-route-journey-preview small,
  .danta-route-coordinate-row > small,
  .danta-route-notes {
    font-size: 3.4px;
  }

  .danta-route-journey-preview strong {
    font-size: 5px;
  }

  .danta-route-coordinate-row {
    min-height: 18px;
  }

  .danta-route-notes {
    min-height: 22px;
    padding: 5px;
  }

  .danta-route-map-dialog {
    width: min(100%, 235px);
    grid-template-rows: 28px minmax(0, 1fr) auto;
    border-radius: 13px;
  }

  .danta-route-map {
    height: 330px;
  }

  .danta-route-map-instruction,
  .danta-route-map-footer {
    font-size: 3.7px;
  }

  .danta-route-map-controls > span {
    width: 21px;
    height: 21px;
    font-size: 7px;
  }

  .danta-route-map-pin {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .danta-route-trajectory-card {
    gap: 4px;
    padding: 5px;
  }

  .danta-route-checkbox {
    width: 11px;
    height: 11px;
    font-size: 5px;
  }

  .danta-route-snackbar {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 6px 7px;
  }
}

/* Empresa ↔ subcuenta tutorial screens. */
.danta-subaccount-screen,
.danta-subaccount-activation-screen {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: 44px minmax(0, 1fr) 43px;
  overflow: hidden;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
}

.danta-subaccount-screen--management {
  grid-template-rows: 44px minmax(0, 1fr);
}

.danta-subaccount-screen--gate,
.danta-subaccount-screen--linked {
  grid-template-rows: 44px minmax(0, 1fr) 43px;
}

.danta-subaccount-screen--sheet {
  display: block;
}

.danta-subaccount-app-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  padding: 0 10px;
  background: var(--danta-app-surface);
  box-shadow: 0 1px 0 rgba(29, 27, 32, 0.1);
}

.danta-subaccount-app-bar-leading,
.danta-subaccount-app-bar-action {
  color: #49454f;
  font-size: 14px;
  line-height: 1;
}

.danta-subaccount-app-bar-action {
  text-align: right;
}

.danta-subaccount-app-bar-title {
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-body {
  min-height: 0;
  padding: 9px 10px;
  overflow: hidden;
}

.danta-subaccount-body--management,
.danta-subaccount-body--gate {
  padding-top: 8px;
}

.danta-subaccount-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  min-height: 0;
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: var(--danta-app-green-nav);
}

.danta-subaccount-nav--gate {
  grid-auto-columns: minmax(0, 92px);
  justify-content: space-around;
}

.danta-subaccount-nav-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: rgba(29, 27, 32, 0.66);
}

.danta-subaccount-nav-item b {
  font-size: 7px;
  line-height: 1;
}

.danta-subaccount-nav-item small {
  font-size: 5px;
  font-weight: 650;
}

.danta-subaccount-nav-item--active {
  color: var(--danta-app-primary-dark);
}

.danta-subaccount-synthetic-note {
  display: block;
  margin-top: 4px;
  color: #756e78;
  font-size: 5.2px;
  line-height: 1.25;
}

.danta-subaccount-profile-heading {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 2px 0 9px;
}

.danta-subaccount-profile-heading > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-subaccount-profile-heading strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-profile-heading small {
  color: #6b6570;
  font-size: 5.8px;
}

.danta-subaccount-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 8px;
  font-weight: 800;
}

.danta-subaccount-avatar--operator {
  width: 31px;
  height: 31px;
  color: #315b46;
  background: #d9f0e3;
}

.danta-subaccount-avatar--large {
  width: 54px;
  height: 54px;
  font-size: 13px;
}

.danta-subaccount-section-title {
  margin: 11px 0 7px;
  font-size: 8px;
}

.danta-subaccount-section-title span {
  color: var(--danta-app-primary);
}

.danta-subaccount-management-card,
.danta-subaccount-collection-intro,
.danta-subaccount-list-card,
.danta-subaccount-claim-card,
.danta-subaccount-ready-card,
.danta-subaccount-qr-card,
.danta-subaccount-request-card,
.danta-subaccount-linked-profile,
.danta-subaccount-linked-note {
  border-radius: 13px;
  background: var(--danta-app-card);
  box-shadow: 0 1px 3px rgba(29, 27, 32, 0.14);
}

.danta-subaccount-management-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
}

.danta-subaccount-management-card > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-subaccount-management-card strong {
  font-size: 7.7px;
}

.danta-subaccount-management-card small {
  color: #6d6670;
  font-size: 5.6px;
  line-height: 1.3;
}

.danta-subaccount-management-card > b {
  color: #6d6670;
  font-size: 15px;
}

.danta-subaccount-management-card--highlighted {
  border: 1px solid var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.08);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.09);
}

.danta-subaccount-management-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #1565c0;
  background: #e8f0fe;
  font-size: 10px;
}

.danta-subaccount-view-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 8px;
}

.danta-subaccount-view-selector > * {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid #d5ced8;
  border-radius: 10px;
  color: #665f69;
  font-size: 5.8px;
}

.danta-subaccount-view-selector > strong {
  border-color: var(--danta-app-primary);
  color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.09);
}

.danta-subaccount-collection-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px;
}

.danta-subaccount-collection-intro > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--danta-app-primary);
  background: #f1edf3;
  font-size: 9px;
}

.danta-subaccount-collection-intro > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-subaccount-collection-intro strong {
  font-size: 7px;
}

.danta-subaccount-collection-intro small {
  color: #6d6670;
  font-size: 5px;
  line-height: 1.25;
}

.danta-subaccount-collection-intro > b {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--danta-app-primary);
  background: rgba(103, 80, 164, 0.1);
  font-size: 5px;
  white-space: nowrap;
}

.danta-subaccount-empty {
  display: grid;
  min-height: 94px;
  margin: 0;
  place-items: center;
  border: 1px dashed #d0c9d3;
  border-radius: 13px;
  color: #756e78;
  background: rgba(255, 251, 254, 0.6);
  font-size: 6px;
}

.danta-subaccount-fab {
  position: absolute;
  right: 10px;
  bottom: 11px;
  z-index: 4;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 13px;
  color: #fff;
  background: var(--danta-app-primary);
  box-shadow: 0 4px 10px rgba(79, 55, 139, 0.28);
  font-size: 6px;
  font-weight: 750;
}

.danta-subaccount-list-card {
  padding: 9px;
}

.danta-subaccount-list-card > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.danta-subaccount-list-card > header > strong {
  overflow: hidden;
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-state {
  padding: 4px 6px;
  border-radius: 999px;
  font-size: 5px;
  white-space: nowrap;
}

.danta-subaccount-state.is-pending {
  color: #49454f;
  background: #eee9ef;
}

.danta-subaccount-state.is-claimed {
  color: #9a4f00;
  background: #fff3df;
}

.danta-subaccount-state.is-linked {
  color: #23662b;
  background: #e5f5e7;
}

.danta-subaccount-card-meta {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}

.danta-subaccount-card-meta span {
  overflow: hidden;
  padding: 4px 6px;
  border-radius: 999px;
  color: #554f58;
  background: #f0ebf1;
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-card-meta small,
.danta-subaccount-list-card > p {
  color: #6f6872;
  font-size: 5px;
}

.danta-subaccount-list-card > p {
  margin: 6px 0 0;
  line-height: 1.3;
}

.danta-subaccount-card-actions {
  display: flex;
  gap: 6px;
  margin-top: 7px;
}

.danta-subaccount-card-actions span {
  padding: 5px 7px;
  border: 1px solid #d4cdd7;
  border-radius: 9px;
  color: #5b5560;
  font-size: 5px;
  font-weight: 700;
}

.danta-subaccount-card-actions span:last-child {
  color: var(--danta-app-error);
}

.danta-subaccount-background {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr);
  overflow: hidden;
  filter: saturate(0.8);
}

.danta-subaccount-sheet-backdrop {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: flex-end;
  background: rgba(20, 17, 22, 0.48);
}

.danta-subaccount-sheet {
  width: 100%;
  padding: 8px 14px 15px;
  border-radius: 18px 18px 0 0;
  background: var(--danta-app-card);
  box-shadow: 0 -7px 22px rgba(29, 27, 32, 0.22);
}

.danta-subaccount-sheet-handle {
  display: block;
  width: 38px;
  height: 4px;
  margin: 0 auto 9px;
  border-radius: 999px;
  background: #a9a2ac;
}

.danta-subaccount-sheet h3 {
  margin: 0;
  font-size: 10px;
  text-align: center;
}

.danta-subaccount-sheet > p {
  margin: 6px 0 12px;
  color: #615a64;
  font-size: 6px;
  line-height: 1.35;
  text-align: center;
}

.danta-subaccount-field {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-top: 10px;
  padding: 11px 10px 7px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  background: var(--danta-app-card);
}

.danta-subaccount-field::before {
  position: absolute;
  top: -7px;
  left: 8px;
  padding: 0 4px;
  color: #5d5660;
  background: var(--danta-app-card);
  content: attr(data-label);
  font-size: 5.5px;
}

.danta-subaccount-field strong {
  overflow: hidden;
  font-size: 6.5px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-field--focused {
  border-width: 2px;
  border-color: var(--danta-app-primary);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08);
}

.danta-subaccount-field--focused::before {
  color: var(--danta-app-primary);
}

.danta-subaccount-button {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--danta-app-primary);
  font-size: 6px;
  font-weight: 750;
  text-align: center;
}

.danta-subaccount-sheet > .danta-subaccount-button {
  width: 100%;
  margin-top: 10px;
}

.danta-subaccount-button--filled {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-subaccount-button--outlined {
  border: 1px solid var(--danta-app-outline);
  background: transparent;
}

.danta-subaccount-activation-screen {
  grid-template-rows: minmax(0, 1fr) 43px;
}

.danta-subaccount-activation-scroll {
  min-height: 0;
  padding: 11px 10px;
  overflow: hidden;
}

.danta-subaccount-activation-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.danta-subaccount-activation-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #42b77d, #23744f);
  box-shadow: 0 5px 12px rgba(35, 116, 79, 0.22);
  font-size: 19px;
  font-weight: 900;
}

.danta-subaccount-activation-heading h3 {
  margin: 0;
  font-size: 10px;
}

.danta-subaccount-claim-card {
  padding: 10px;
  border: 1px solid rgba(103, 80, 164, 0.1);
}

.danta-subaccount-claim-card.is-claimed {
  border-color: rgba(46, 125, 50, 0.3);
  background: #fbfffb;
}

.danta-subaccount-claim-card > header,
.danta-subaccount-ready-card > header {
  display: flex;
  gap: 7px;
  align-items: center;
}

.danta-subaccount-claim-card > header > span,
.danta-subaccount-ready-card > header > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 9px;
}

.danta-subaccount-claim-card.is-claimed > header > span,
.danta-subaccount-ready-card > header > span {
  background: var(--danta-app-success);
}

.danta-subaccount-claim-card > header strong,
.danta-subaccount-ready-card > header strong {
  font-size: 7.2px;
}

.danta-subaccount-claim-card p,
.danta-subaccount-ready-card p {
  margin: 6px 0;
  color: #5f5963;
  font-size: 5.7px;
  line-height: 1.35;
}

.danta-subaccount-claim-card dl {
  display: grid;
  gap: 4px;
  margin: 7px 0;
  padding: 7px;
  border-radius: 9px;
  background: #f4eff6;
}

.danta-subaccount-claim-card dl > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px;
}

.danta-subaccount-claim-card dt,
.danta-subaccount-claim-card dd {
  margin: 0;
  font-size: 5.4px;
}

.danta-subaccount-claim-card dt {
  color: #746d77;
  font-weight: 700;
}

.danta-subaccount-claim-card dd {
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-claim-actions,
.danta-subaccount-request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.danta-subaccount-snackbar {
  position: absolute;
  right: 9px;
  bottom: 49px;
  left: 9px;
  z-index: 9;
  padding: 8px 10px;
  border-radius: 9px;
  color: #fff;
  background: #323034;
  box-shadow: 0 5px 15px rgba(29, 27, 32, 0.25);
  font-size: 5.7px;
  font-weight: 650;
  text-align: center;
}

.danta-subaccount-gate-intro {
  margin: 0 0 7px;
  color: #615b65;
  font-size: 5.7px;
  line-height: 1.35;
}

.danta-subaccount-ready-card {
  padding: 8px;
  border: 1px solid rgba(46, 125, 50, 0.22);
  background: #fbfffb;
}

.danta-subaccount-qr-card {
  margin-top: 7px;
  padding: 8px;
}

.danta-subaccount-qr-card h3,
.danta-subaccount-request-card h3,
.danta-subaccount-linked-profile h3 {
  margin: 0;
  font-size: 8px;
}

.danta-subaccount-request-card h3 + h3 {
  display: none;
}

.danta-subaccount-qr-card > strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 5.5px;
}

.danta-subaccount-qr-shell {
  width: min(150px, 67%);
  margin: 7px auto;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
}

.danta-subaccount-qr {
  --danta-qr-size: 136px;
  margin: 0 auto;
}

.danta-subaccount-code-row,
.danta-subaccount-expiry {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

.danta-subaccount-code-row {
  padding: 5px 6px;
  border: 1px solid #d6d0d9;
  border-radius: 8px;
  color: #49454f;
  background: rgba(230, 224, 233, 0.4);
}

.danta-subaccount-code-row code {
  overflow: hidden;
  font-size: 4.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-subaccount-code-row span {
  color: var(--danta-app-primary);
  font-size: 9px;
}

.danta-subaccount-expiry {
  margin-top: 5px;
  color: #53606a;
  font-size: 5.2px;
}

.danta-subaccount-expiry b {
  color: var(--danta-app-primary);
}

.danta-subaccount-request-card {
  margin-top: 26px;
  padding: 13px 11px;
  text-align: center;
}

.danta-subaccount-request-icon {
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0 auto 7px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 12px;
}

.danta-subaccount-request-card p {
  margin: 6px 0;
  color: #5f5963;
  font-size: 6px;
  line-height: 1.4;
}

.danta-subaccount-request-card > small {
  display: block;
  margin-top: 7px;
  color: #777079;
  font-size: 5px;
}

.danta-subaccount-body--linked {
  display: grid;
  align-content: start;
  justify-items: center;
}

.danta-subaccount-account-chip {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  color: #315b46;
  background: #dff2e7;
  font-size: 5.5px;
  font-weight: 700;
}

.danta-subaccount-linked-profile {
  display: grid;
  width: 100%;
  justify-items: center;
  margin-top: 20px;
  padding: 16px 10px;
  text-align: center;
}

.danta-subaccount-linked-profile h3 {
  margin-top: 7px;
}

.danta-subaccount-linked-profile p {
  margin: 4px 0 0;
  color: #5f5963;
  font-size: 6px;
}

.danta-subaccount-linked-profile > small:not(.danta-subaccount-synthetic-note) {
  margin-top: 7px;
  color: #756e78;
  font-size: 5.5px;
}

.danta-subaccount-profile-qr {
  min-width: 116px;
  margin-top: 9px;
}

.danta-subaccount-linked-note {
  display: grid;
  width: 100%;
  gap: 3px;
  margin-top: 9px;
  padding: 9px;
  border: 1px solid rgba(46, 125, 50, 0.22);
  color: #315b46;
  background: #eff9f1;
}

.danta-subaccount-linked-note strong {
  font-size: 6.5px;
}

.danta-subaccount-linked-note span {
  font-size: 5.3px;
  line-height: 1.35;
}

@container (max-width: 290px) {
  .danta-subaccount-screen {
    grid-template-rows: 35px minmax(0, 1fr) 34px;
  }

  .danta-subaccount-screen--management {
    grid-template-rows: 35px minmax(0, 1fr);
  }

  .danta-subaccount-screen--sheet {
    display: block;
  }

  .danta-subaccount-app-bar {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }

  .danta-subaccount-background {
    grid-template-rows: 35px minmax(0, 1fr);
  }

  .danta-subaccount-app-bar {
    padding: 0 6px;
  }

  .danta-subaccount-app-bar-title {
    font-size: 8px;
  }

  .danta-subaccount-body,
  .danta-subaccount-activation-scroll {
    padding: 5px 6px;
  }

  .danta-subaccount-nav-item small {
    font-size: 4px;
  }

  .danta-subaccount-profile-heading {
    margin-bottom: 5px;
  }

  .danta-subaccount-avatar {
    width: 26px;
    height: 26px;
    font-size: 6px;
  }

  .danta-subaccount-avatar--operator {
    width: 24px;
    height: 24px;
  }

  .danta-subaccount-avatar--large {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .danta-subaccount-section-title {
    margin: 6px 0 4px;
  }

  .danta-subaccount-management-card,
  .danta-subaccount-collection-intro,
  .danta-subaccount-list-card,
  .danta-subaccount-claim-card,
  .danta-subaccount-ready-card,
  .danta-subaccount-qr-card,
  .danta-subaccount-request-card,
  .danta-subaccount-linked-note {
    padding: 6px;
  }

  .danta-subaccount-management-icon,
  .danta-subaccount-collection-intro > span:first-child {
    width: 23px;
    height: 23px;
  }

  .danta-subaccount-view-selector {
    gap: 4px;
    margin-bottom: 4px;
  }

  .danta-subaccount-view-selector > * {
    min-height: 26px;
    padding: 3px;
    font-size: 4.7px;
  }

  .danta-subaccount-collection-intro {
    margin-bottom: 4px;
  }

  .danta-subaccount-empty {
    min-height: 62px;
  }

  .danta-subaccount-fab {
    right: 6px;
    bottom: 7px;
    min-height: 28px;
    padding: 5px 7px;
    font-size: 5px;
  }

  .danta-subaccount-card-meta,
  .danta-subaccount-list-card > p,
  .danta-subaccount-card-actions {
    margin-top: 4px;
  }

  .danta-subaccount-sheet {
    padding: 6px 9px 10px;
  }

  .danta-subaccount-sheet > p {
    margin: 4px 0 7px;
    font-size: 5px;
  }

  .danta-subaccount-field {
    min-height: 34px;
    margin-top: 8px;
    padding: 9px 7px 5px;
  }

  .danta-subaccount-button {
    min-height: 23px;
    padding: 3px 5px;
    font-size: 5px;
  }

  .danta-subaccount-activation-screen {
    grid-template-rows: minmax(0, 1fr) 34px;
  }

  .danta-subaccount-activation-heading {
    gap: 3px;
    margin-bottom: 5px;
  }

  .danta-subaccount-activation-heading > span {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 13px;
  }

  .danta-subaccount-claim-card dl {
    gap: 2px;
    margin: 4px 0;
    padding: 4px;
  }

  .danta-subaccount-synthetic-note {
    display: none;
  }

  .danta-subaccount-gate-intro {
    margin-bottom: 4px;
    font-size: 4.7px;
  }

  .danta-subaccount-ready-card p {
    margin: 3px 0;
    font-size: 4.8px;
  }

  .danta-subaccount-claim-card > header > span,
  .danta-subaccount-ready-card > header > span {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }

  .danta-subaccount-qr-card {
    margin-top: 4px;
  }

  .danta-subaccount-qr-shell {
    width: min(106px, 62%);
    margin: 4px auto;
    padding: 4px;
    border-radius: 7px;
  }

  .danta-subaccount-qr {
    --danta-qr-size: 96px;
  }

  .danta-subaccount-qr-card > strong {
    margin: 3px 0;
  }

  .danta-subaccount-code-row {
    padding: 3px 4px;
  }

  .danta-subaccount-expiry {
    margin-top: 3px;
  }

  .danta-subaccount-request-card {
    margin-top: 10px;
  }

  .danta-subaccount-request-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    font-size: 9px;
  }

  .danta-subaccount-request-card p {
    margin: 4px 0;
    font-size: 5px;
  }

  .danta-subaccount-linked-profile {
    margin-top: 10px;
    padding: 10px 7px;
  }

  .danta-subaccount-linked-note {
    margin-top: 5px;
  }

  .danta-subaccount-snackbar {
    right: 6px;
    bottom: 39px;
    left: 6px;
    padding: 6px;
    font-size: 4.8px;
  }
}

/* Tutorial 05: recarga bancaria — Danta + banco neutral de demostración. */
.danta-recharge-screen,
.bank-demo-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.danta-recharge-screen {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 43px;
  color: var(--danta-app-ink);
  background: var(--danta-app-surface);
}

.danta-recharge-screen--depositor,
.danta-recharge-screen--copy,
.danta-recharge-screen--proof,
.danta-recharge-screen--app-switch {
  display: block;
}

.danta-recharge-screen--funds-entry,
.danta-recharge-screen--setup,
.danta-recharge-screen--review,
.danta-recharge-screen--settled,
.bank-demo-screen--home,
.bank-demo-screen--recipient,
.bank-demo-screen--transfer,
.bank-demo-screen--review,
.bank-demo-screen--receipt {
  isolation: isolate;
}

.danta-recharge-scroll {
  min-height: 0;
  padding: 8px 9px;
  overflow: hidden;
}

.danta-recharge-app-bar {
  display: grid;
  min-height: 34px;
  grid-template-columns: 22px minmax(0, 1fr) 22px;
  align-items: center;
  margin: -2px -2px 5px;
  padding: 0 5px;
  border-bottom: 1px solid rgba(29, 27, 32, 0.09);
}

.danta-recharge-app-bar-leading,
.danta-recharge-app-bar-action {
  color: #49454f;
  font-size: 12px;
}

.danta-recharge-app-bar-action {
  text-align: right;
}

.danta-recharge-app-bar-title {
  overflow: hidden;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-recharge-nav {
  position: relative;
  z-index: 8;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border-top: 1px solid rgba(29, 27, 32, 0.09);
  background: var(--danta-app-green-nav);
}

.danta-recharge-nav-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: rgba(29, 27, 32, 0.64);
}

.danta-recharge-nav-item--active {
  color: var(--danta-app-primary-dark);
}

.danta-recharge-nav-icon {
  font-size: 7px;
}

.danta-recharge-nav-label {
  font-size: 5px;
  font-weight: 700;
}

.danta-recharge-funds-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 3px 2px 0;
}

.danta-recharge-logo,
.danta-recharge-loader-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(145deg, var(--danta-app-brand), #206f4c);
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(43, 152, 102, 0.22);
}

.danta-recharge-notifications {
  display: grid;
  grid-column: 3;
  justify-self: end;
  width: 22px;
  place-items: center;
}

.danta-recharge-notification-bell {
  position: relative;
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: #49454f;
}

.danta-recharge-notification-bell svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.danta-recharge-notification-count {
  position: absolute;
  top: -4px;
  right: -5px;
  display: grid;
  min-width: 11px;
  height: 11px;
  place-items: center;
  padding-inline: 3px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #ba1a1a;
  font-size: 5px;
  line-height: 1;
}

.danta-recharge-funds-heading h2 {
  grid-column: 1 / -1;
  margin: 7px 0 5px;
  font-size: 11px;
  text-align: center;
}

.danta-recharge-funds-heading > .danta-recharge-balance,
.danta-recharge-funds-heading > .danta-recharge-synthetic-note {
  grid-column: 1 / -1;
}

.danta-recharge-balance {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.danta-recharge-wallet-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--danta-app-primary);
  background: var(--danta-app-primary-soft);
}

.danta-recharge-wallet-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.danta-recharge-balance > span:last-child {
  display: grid;
  gap: 1px;
}

.danta-recharge-balance small {
  color: #6c6570;
  font-size: 5.5px;
}

.danta-recharge-balance strong {
  font-size: 16px;
}

.danta-recharge-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 7px 0;
  border-bottom: 1px solid #d8d2da;
}

.danta-recharge-tab {
  padding: 5px;
  color: #706971;
  font-size: 6px;
  text-align: center;
}

.danta-recharge-tab--active {
  border-bottom: 2px solid var(--danta-app-primary);
  color: var(--danta-app-primary);
}

.danta-recharge-entry-card,
.danta-recharge-card,
.danta-recharge-copy-card,
.danta-recharge-depositor-card,
.danta-recharge-status-card,
.danta-recharge-settled-hero,
.danta-recharge-activity-card,
.danta-recharge-settled-note {
  border: 1px solid rgba(121, 116, 126, 0.16);
  border-radius: 12px;
  background: var(--danta-app-card);
  box-shadow: 0 2px 6px rgba(29, 27, 32, 0.1);
}

.danta-recharge-entry-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding: 11px;
}

.danta-recharge-entry-card--highlighted,
.danta-recharge-control--highlighted {
  border-color: rgba(103, 80, 164, 0.5);
  background: rgba(234, 221, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.08), 0 5px 12px rgba(79, 55, 139, 0.11);
}

.danta-recharge-entry-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--danta-app-primary);
  font-size: 12px;
  font-weight: 900;
}

.danta-recharge-entry-copy,
.danta-recharge-activity-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-recharge-entry-copy strong {
  font-size: 8px;
}

.danta-recharge-entry-copy small {
  color: #625b66;
  font-size: 5.6px;
  line-height: 1.3;
}

.danta-recharge-chevron {
  color: var(--danta-app-primary);
  font-size: 16px;
}

.danta-recharge-card--setup {
  padding: 9px;
}

.danta-recharge-card h3,
.danta-recharge-status-card h3,
.danta-recharge-settled-hero h3 {
  margin: 0;
  font-size: 9px;
}

.danta-recharge-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 7px 0 8px;
}

.danta-recharge-method {
  display: grid;
  min-width: 0;
  min-height: 46px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  padding: 6px;
  border: 1px solid #d6d0d9;
  border-radius: 9px;
  color: #615b65;
  background: var(--danta-app-card);
}

.danta-recharge-method > b {
  font-size: 9px;
}

.danta-recharge-method > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-recharge-method strong {
  font-size: 6px;
  line-height: 1.15;
}

.danta-recharge-method small {
  color: #756f78;
  font-size: 4.8px;
  line-height: 1.2;
}

.danta-recharge-method--selected {
  border-color: var(--danta-app-primary-border);
  color: var(--danta-app-primary-dark);
  background: rgba(234, 221, 255, 0.5);
}

.danta-recharge-field {
  position: relative;
  display: grid;
  min-height: 39px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  align-items: center;
  margin-top: 9px;
  padding: 9px 9px 5px;
  border: 1px solid var(--danta-app-outline);
  border-radius: 4px;
  background: var(--danta-app-card);
}

.danta-recharge-field::before,
.bank-demo-field::before {
  position: absolute;
  top: -6px;
  left: 7px;
  max-width: calc(100% - 14px);
  padding: 0 3px;
  overflow: hidden;
  background: inherit;
  content: attr(data-label);
  font-size: 5.5px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-recharge-field > span,
.danta-recharge-field > strong,
.danta-recharge-field > code {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 7px;
}

.danta-recharge-field > small {
  padding: 2px 4px;
  border-radius: 999px;
  color: #655e68;
  background: var(--danta-app-container);
  font-size: 4.5px;
}

.danta-recharge-field-placeholder {
  color: #908993;
  font-style: italic;
}

.danta-recharge-field--focused {
  border: 2px solid var(--danta-app-primary);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.09);
}

.danta-recharge-field--focused::before {
  color: var(--danta-app-primary-dark);
}

.danta-recharge-limits {
  margin: 5px 1px 0;
  color: #6f6872;
  font-size: 5px;
  line-height: 1.3;
}

.danta-recharge-synthetic-note {
  display: block;
  margin-top: 5px;
  color: #766f79;
  font-size: 4.8px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.danta-recharge-button,
.bank-demo-button {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
}

.danta-recharge-card > .danta-recharge-button,
.danta-recharge-intention-zone > .danta-recharge-button,
.danta-recharge-copy .danta-recharge-dialog > .danta-recharge-button,
.danta-recharge-status-card > .danta-recharge-button,
.bank-demo-body > .bank-demo-button {
  width: 100%;
  margin-top: 8px;
}

.danta-recharge-button--filled {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-recharge-button--outlined {
  border-color: var(--danta-app-outline);
  color: var(--danta-app-primary-dark);
  background: transparent;
}

.danta-recharge-button--text,
.danta-recharge-text-button {
  color: var(--danta-app-primary-dark);
  background: transparent;
}

.danta-recharge-button--available {
  border-color: rgba(103, 80, 164, 0.5);
  background: rgba(234, 221, 255, 0.3);
}

.danta-recharge-button--disabled {
  opacity: 0.42;
}

.danta-recharge-button--highlighted,
.bank-demo-button--highlighted {
  position: relative;
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.16);
}

.danta-recharge-button--highlighted::after,
.bank-demo-button--highlighted::after {
  position: absolute;
  inset: -5px;
  border: 1.5px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: danta-recharge-pulse 1.8s ease-in-out infinite;
}

.danta-recharge-button--loading {
  opacity: 0.82;
}

.danta-recharge-spinner {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: danta-recharge-spin 0.8s linear infinite;
}

.danta-recharge-loader {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  color: var(--danta-app-primary-dark);
  background: rgba(254, 247, 255, 0.9);
  backdrop-filter: blur(5px);
}

.danta-recharge-loader .danta-recharge-spinner {
  border-color: rgba(103, 80, 164, 0.2);
  border-top-color: var(--danta-app-primary);
}

.danta-recharge-loader strong {
  font-size: 7px;
}

.danta-recharge-background {
  position: absolute;
  inset: 0;
  padding: 8px;
  opacity: 0.56;
  background: var(--danta-app-surface);
}

.danta-recharge-dialog-backdrop {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(29, 27, 32, 0.34);
}

.danta-recharge-dialog-backdrop--solid {
  background: var(--danta-app-surface);
}

.danta-recharge-dialog {
  width: min(100%, 320px);
  max-height: 100%;
  padding: 10px;
  overflow: hidden;
  border-radius: 17px;
  color: var(--danta-app-ink);
  background: var(--danta-app-card);
  box-shadow: 0 18px 44px rgba(29, 27, 32, 0.28);
}

.danta-recharge-dialog-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.danta-recharge-dialog-heading h3 {
  margin: 0;
  font-size: 9px;
}

.danta-recharge-text-button {
  font-size: 5.8px;
  font-weight: 750;
}

.danta-recharge-dialog h4 {
  margin: 8px 0 4px;
  font-size: 7px;
}

.danta-recharge-dialog > p,
.danta-recharge-copy-card p {
  margin: 4px 0;
  color: #5f5963;
  font-size: 5.3px;
  line-height: 1.35;
}

.danta-recharge-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 7px;
}

.danta-recharge-progress-item {
  display: grid;
  min-width: 0;
  min-height: 25px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px;
  align-items: center;
  padding: 3px 4px;
  border: 1px solid rgba(121, 116, 126, 0.35);
  border-radius: 999px;
  color: #6d6670;
  background: var(--danta-app-card);
}

.danta-recharge-progress-item b {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  font-size: 5px;
}

.danta-recharge-progress-item small {
  overflow: hidden;
  font-size: 4.6px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-recharge-progress-item--active {
  border-color: rgba(103, 80, 164, 0.42);
  color: var(--danta-app-primary-dark);
  background: rgba(234, 221, 255, 0.45);
}

.danta-recharge-progress-item--complete b {
  color: #fff;
  background: var(--danta-app-primary);
}

.danta-recharge-summary {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}

.danta-recharge-summary small,
.danta-recharge-copy-progress {
  padding: 2px 5px;
  border-radius: 999px;
  color: #5e5862;
  background: var(--danta-app-container);
  font-size: 4.5px;
}

.danta-recharge-depositor-card {
  padding: 8px;
}

.danta-recharge-depositor-card > strong,
.danta-recharge-depositor-card > small,
.danta-recharge-copy-card > strong,
.danta-recharge-copy-card > small {
  display: block;
  font-size: 5.5px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.danta-recharge-choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 6px 0;
}

.danta-recharge-choice {
  padding: 5px;
  border: 1px solid #d2ccd5;
  border-radius: 999px;
  color: #625b66;
  font-size: 5.5px;
  font-weight: 700;
  text-align: center;
}

.danta-recharge-choice--selected {
  border-color: var(--danta-app-primary);
  color: var(--danta-app-primary-dark);
  background: rgba(234, 221, 255, 0.55);
}

.danta-recharge-masked-value {
  margin-top: 4px;
  padding: 6px;
  border-radius: 8px;
  color: var(--danta-app-primary-dark);
  background: rgba(234, 221, 255, 0.45);
  font-size: 6px;
  font-weight: 800;
}

.danta-recharge-dialog-actions {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  margin-top: 7px;
}

.danta-recharge-dialog-actions .danta-recharge-button {
  min-width: 74px;
}

.danta-recharge-copy-progress {
  display: inline-flex;
  margin-bottom: 2px;
}

.danta-recharge-copy-progress--complete {
  color: #1d6329;
  background: var(--danta-app-success-soft);
}

.danta-recharge-copy-card {
  margin-top: 6px;
  padding: 7px;
}

.danta-recharge-copy-card--copied {
  border-color: rgba(46, 125, 50, 0.38);
  background: rgba(232, 245, 233, 0.6);
}

.danta-recharge-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  align-items: center;
  margin-top: 5px;
  padding: 5px 6px;
  border-radius: 8px;
  background: rgba(103, 80, 164, 0.08);
}

.danta-recharge-copy-row code,
.danta-recharge-proof-title + p + .danta-recharge-field code,
.danta-recharge-status-card code,
.bank-demo-screen code,
.bank-demo-screen [class*="iban"],
.bank-demo-screen [class*="receipt"] {
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 5.8px;
  font-weight: 750;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.danta-recharge-copy-button {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--danta-app-primary-dark);
  background: var(--danta-app-primary-soft);
  font-size: 7px;
  font-weight: 900;
}

.danta-recharge-proof-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  align-items: start;
  margin-top: 7px;
}

.danta-recharge-proof-title h4 {
  margin: 0;
}

.danta-recharge-proof-title > span {
  color: var(--danta-app-primary-dark);
  font-size: 8px;
}

.danta-recharge-proof-actions {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}

.danta-recharge-proof-actions .danta-recharge-button {
  min-height: 24px;
}

.danta-recharge-intention-zone,
.danta-recharge-proof-zone,
.danta-recharge-settled-result,
.bank-demo-recipient-flow,
.bank-demo-transfer-fields {
  position: relative;
}

.danta-recharge-switch-stage {
  --switch-shift: -66px;
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  color: #263238;
  background:
    radial-gradient(circle at 15% 14%, rgba(179, 157, 219, 0.82), transparent 31%),
    radial-gradient(circle at 85% 82%, rgba(128, 203, 196, 0.8), transparent 35%),
    linear-gradient(155deg, #ece7f6, #dff3f3 58%, #f7f8fb);
}

.danta-recharge-screen--app-switch-danta .danta-recharge-switch-stage {
  --switch-shift: 66px;
}

.danta-recharge-switch-heading {
  position: relative;
  z-index: 8;
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px 6px;
  color: rgba(35, 36, 44, 0.75);
}

.danta-recharge-switch-heading small {
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.danta-recharge-switch-heading span {
  font-size: 8px;
  letter-spacing: 0.08em;
}

.danta-recharge-switch-viewport {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 0;
  place-items: center;
}

.danta-recharge-switch-track {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(0);
}

.danta-recharge-switch-preview {
  position: relative;
  display: grid;
  width: min(118px, 35cqw);
  aspect-ratio: 0.56;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(37, 39, 52, 0.16);
  transform: translateY(0) scale(0.96);
  transform-origin: 50% 48%;
  backdrop-filter: blur(15px) saturate(125%);
}

.danta-recharge-switch-preview.is-source {
  opacity: 1;
  transform: scale(1);
}

.danta-recharge-switch-preview-window {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 7px;
  padding: 8px;
  overflow: hidden;
  background: #fff9ff;
}

.danta-recharge-switch-preview--bank .danta-recharge-switch-preview-window {
  color: #12343b;
  background: #f3fbfc;
}

.danta-recharge-switch-mini-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.danta-recharge-switch-mini-status i {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(72, 66, 75, 0.28);
}

.danta-recharge-switch-mini-status i:last-child {
  width: 10px;
}

.danta-recharge-switch-mini-brand {
  display: flex;
  align-items: center;
  gap: 5px;
}

.danta-recharge-switch-mini-brand b,
.danta-recharge-switch-preview > footer b {
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--danta-app-brand);
  font-weight: 900;
}

.danta-recharge-switch-preview--bank .danta-recharge-switch-mini-brand b,
.danta-recharge-switch-preview--bank > footer b {
  background: linear-gradient(145deg, #087f8c, #0b5f75);
}

.danta-recharge-switch-mini-brand b {
  width: 21px;
  height: 21px;
  font-size: 7px;
}

.danta-recharge-switch-mini-brand small {
  overflow: hidden;
  font-size: 4.4px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-recharge-switch-preview-window > strong {
  margin-top: 6px;
  font-size: 7px;
  line-height: 1.15;
}

.danta-recharge-switch-mini-field,
.danta-recharge-switch-mini-button {
  display: grid;
  min-height: 27px;
  align-items: center;
  padding: 5px;
  border-radius: 7px;
  font-size: 4.3px;
  overflow-wrap: anywhere;
}

.danta-recharge-switch-mini-field {
  border: 1px solid rgba(103, 80, 164, 0.22);
  color: #51475e;
  background: rgba(234, 221, 255, 0.4);
}

.danta-recharge-switch-preview--bank .danta-recharge-switch-mini-field {
  border-color: rgba(8, 127, 140, 0.23);
  color: #315a61;
  background: rgba(188, 233, 238, 0.4);
}

.danta-recharge-switch-mini-button {
  min-height: 23px;
  place-items: center;
  color: #fff;
  background: var(--danta-app-primary);
  font-weight: 850;
}

.danta-recharge-switch-preview--bank .danta-recharge-switch-mini-button {
  background: #0b5f75;
}

.danta-recharge-switch-preview > footer {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  color: #363742;
  background: rgba(255, 255, 255, 0.88);
}

.danta-recharge-switch-preview > footer b {
  width: 18px;
  height: 18px;
  font-size: 6px;
}

.danta-recharge-switch-preview > footer small {
  max-width: 72px;
  overflow: hidden;
  font-size: 4.6px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.danta-recharge-switch-opening {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 126px;
  justify-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  opacity: 0;
  color: #fff;
  background: rgba(26, 29, 38, 0.74);
  box-shadow: 0 10px 26px rgba(24, 27, 35, 0.18);
  transform: translate(-50%, 8px);
  backdrop-filter: blur(13px);
}

.danta-recharge-switch-opening span {
  font-size: 4.6px;
  text-transform: uppercase;
}

.danta-recharge-switch-opening strong {
  font-size: 6px;
}

.danta-recharge-switch-demo-note {
  position: relative;
  z-index: 8;
  justify-self: center;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #4b555b;
  background: rgba(255, 255, 255, 0.68);
  font-size: 4.4px;
  font-weight: 750;
}

.danta-recharge-switch-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 12;
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 34, 43, 0.72);
  transform: translateX(-50%);
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-track {
  animation: danta-switch-select 1.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-preview.is-target {
  z-index: 6;
  animation: danta-switch-open 1.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-preview.is-source {
  animation: danta-switch-recede 1.7s ease both;
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-preview.is-target > footer {
  animation: danta-switch-preview-footer-away 1.7s ease both;
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-opening {
  animation: danta-switch-opening-label 1.7s ease both;
}

.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-heading,
.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-demo-note,
.tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-home-indicator {
  animation: danta-switch-chrome-away 1.7s ease both;
}

.danta-recharge-status-card {
  margin-top: 10px;
  padding: 10px;
}

.danta-recharge-status-card--review {
  border-color: rgba(245, 124, 0, 0.28);
  background: rgba(255, 248, 225, 0.64);
}

.danta-recharge-status-card > header {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.danta-recharge-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 5px;
  border-radius: 999px;
  color: #8a4b00;
  background: #fff1d0;
  font-size: 4.8px;
  font-weight: 800;
}

.danta-recharge-status-card > strong,
.danta-recharge-status-card > small,
.danta-recharge-created-at {
  display: block;
  margin-top: 6px;
  font-size: 5.7px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.danta-recharge-status-card > small,
.danta-recharge-created-at {
  color: #6c6570;
  font-size: 4.8px;
}

.danta-recharge-status-card p {
  margin: 7px 0 0;
  color: #5f5963;
  font-size: 5.5px;
  line-height: 1.35;
}

.danta-recharge-snackbar {
  position: absolute;
  right: 9px;
  bottom: 49px;
  left: 9px;
  z-index: 12;
  padding: 8px;
  border-radius: 5px;
  color: #fff;
  background: #303030;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
  font-size: 5.8px;
}

.danta-recharge-settled-hero {
  display: grid;
  justify-items: center;
  margin-top: 8px;
  padding: 13px 10px;
  text-align: center;
}

.danta-recharge-settled-icon,
.bank-demo-success-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-success);
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.2);
}

.danta-recharge-settled-hero > small {
  margin-top: 7px;
  color: #6b6570;
  font-size: 4.8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.danta-recharge-settled-hero > strong {
  margin-top: 6px;
  color: var(--danta-app-success);
  font-size: 13px;
}

.danta-recharge-settled-hero > span:not(.danta-recharge-settled-icon) {
  color: #6b6570;
  font-size: 4.8px;
}

.danta-recharge-settled-hero p {
  margin: 6px 0 0;
  color: #4f5c52;
  font-size: 5.5px;
}

.danta-recharge-activity-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  padding: 8px;
}

.danta-recharge-activity-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #1d6329;
  background: var(--danta-app-success-soft);
  font-size: 9px;
}

.danta-recharge-activity-copy strong,
.danta-recharge-activity-amount {
  font-size: 6px;
}

.danta-recharge-activity-copy small {
  color: #6c6570;
  font-size: 4.7px;
}

.danta-recharge-activity-amount {
  color: var(--danta-app-success);
  white-space: nowrap;
}

.danta-recharge-settled-note {
  display: grid;
  gap: 2px;
  margin-top: 7px;
  padding: 7px;
  border-color: rgba(46, 125, 50, 0.24);
  color: #28582e;
  background: rgba(232, 245, 233, 0.68);
}

.danta-recharge-settled-note strong {
  font-size: 5.5px;
}

.danta-recharge-settled-note span {
  font-size: 4.8px;
  line-height: 1.3;
}

.danta-recharge-complete-notification {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid rgba(46, 125, 50, 0.26);
  border-radius: 11px;
  color: #28582e;
  background: rgba(232, 245, 233, 0.74);
}

.danta-recharge-complete-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-success);
  font-size: 11px;
  box-shadow: 0 5px 12px rgba(46, 125, 50, 0.2);
}

.danta-recharge-complete-notification > span:last-child,
.danta-recharge-history-copy,
.danta-recharge-history-copy > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.danta-recharge-complete-notification strong {
  font-size: 6px;
}

.danta-recharge-complete-notification small {
  color: #4f6a53;
  font-size: 4.8px;
  line-height: 1.3;
}

.danta-recharge-complete-notification--approved {
  border-color: rgba(103, 80, 164, 0.28);
  color: #49386f;
  background: rgba(234, 221, 255, 0.66);
}

.danta-recharge-complete-icon--approved {
  background: var(--danta-app-primary);
  box-shadow: 0 5px 12px rgba(103, 80, 164, 0.22);
}

.danta-recharge-complete-notification--approved strong {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
}

.danta-recharge-complete-notification--approved strong em {
  padding: 2px 4px;
  border-radius: 999px;
  color: #65558f;
  background: rgba(255, 255, 255, 0.72);
  font-size: 4px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.danta-recharge-complete-notification--approved small {
  color: #625477;
}

.danta-recharge-settlement-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  margin-top: 6px;
  padding: 6px 7px;
  border: 1px solid rgba(121, 116, 126, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.74);
}

.danta-recharge-settlement-path > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1px 4px;
  align-items: center;
}

.danta-recharge-settlement-path b {
  display: grid;
  width: 14px;
  height: 14px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danta-app-success);
  font-size: 6px;
}

.danta-recharge-settlement-path strong {
  font-size: 5.4px;
}

.danta-recharge-settlement-path small {
  color: #6c6570;
  font-size: 4px;
}

.danta-recharge-settlement-path i {
  color: var(--danta-app-primary);
  font-size: 8px;
  font-style: normal;
}

.danta-recharge-history-card {
  margin-top: 7px;
  overflow: hidden;
  border: 1px solid rgba(121, 116, 126, 0.16);
  border-radius: 11px;
  background: var(--danta-app-card);
  box-shadow: 0 2px 6px rgba(29, 27, 32, 0.1);
}

.danta-recharge-history-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(121, 116, 126, 0.14);
}

.danta-recharge-history-card h3 {
  margin: 0;
  font-size: 7px;
}

.danta-recharge-history-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 8px;
}

.danta-recharge-history-copy > span {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.danta-recharge-history-copy strong {
  min-width: 0;
  font-size: 5.7px;
  overflow-wrap: anywhere;
}

.danta-recharge-history-copy small {
  color: #6c6570;
  font-size: 4.5px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.danta-recharge-status-chip--settled {
  color: #1d6329;
  background: var(--danta-app-success-soft);
  white-space: nowrap;
}

/* Banco externo de ejemplo: identidad azul/teal deliberadamente neutral. */
.bank-demo-screen {
  --bank-demo-accent: #087f8c;
  --bank-demo-accent-dark: #0b5f75;
  --bank-demo-ink: #12343b;
  --bank-demo-muted: #5d7277;
  --bank-demo-border: #b8d5d9;
  --bank-demo-soft: #e7f7f8;
  display: flex;
  flex-direction: column;
  color: var(--bank-demo-ink);
  background: #f7fcfc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.danta-app-display:has(.danta-app-screen.is-active .bank-demo-screen) .danta-app-status {
  color: #12343b;
  background: rgba(231, 247, 248, 0.98);
}

.bank-demo-header {
  display: grid;
  min-height: 40px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 6px 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--bank-demo-accent), var(--bank-demo-accent-dark));
}

.bank-demo-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 9px;
  font-weight: 900;
}

.bank-demo-heading-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.bank-demo-heading-copy strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bank-demo-heading-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 4.7px;
}

.bank-demo-profile {
  font-size: 8px;
}

.bank-demo-disclaimer {
  display: grid;
  flex: 0 0 auto;
  gap: 1px;
  padding: 5px 9px;
  border-bottom: 1px solid var(--bank-demo-border);
  color: #24545e;
  background: #dff3f5;
}

.bank-demo-disclaimer strong {
  font-size: 5.3px;
}

.bank-demo-disclaimer span {
  font-size: 4.6px;
  line-height: 1.25;
}

.bank-demo-body {
  min-height: 0;
  flex: 1 1 auto;
  padding: 8px 9px;
  overflow: hidden;
}

.bank-demo-body h3 {
  margin: 7px 0 6px;
  font-size: 8px;
}

.bank-demo-body > p {
  margin: 5px 0 7px;
  color: var(--bank-demo-muted);
  font-size: 5.5px;
  line-height: 1.35;
}

.bank-demo-body--centered {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.bank-demo-balance-card,
.bank-demo-recipient-card,
.bank-demo-destination-summary,
.bank-demo-review-card,
.bank-demo-receipt-card {
  border: 1px solid var(--bank-demo-border);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(11, 95, 117, 0.08);
}

.bank-demo-balance-card {
  display: grid;
  gap: 2px;
  padding: 10px;
  color: #fff;
  background: linear-gradient(145deg, #0b7180, #0b5f75);
}

.bank-demo-balance-card small,
.bank-demo-balance-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 4.8px;
}

.bank-demo-balance-card strong {
  font-size: 13px;
}

.bank-demo-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.bank-demo-action {
  display: grid;
  min-height: 57px;
  justify-items: start;
  align-content: center;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--bank-demo-border);
  border-radius: 10px;
  color: var(--bank-demo-ink);
  background: #fff;
}

.bank-demo-action > b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  color: var(--bank-demo-accent-dark);
  background: var(--bank-demo-soft);
  font-size: 8px;
}

.bank-demo-action strong {
  font-size: 5.8px;
}

.bank-demo-action small {
  color: var(--bank-demo-muted);
  font-size: 4.6px;
  line-height: 1.2;
}

.bank-demo-action--highlighted {
  border-color: var(--bank-demo-accent);
  background: var(--bank-demo-soft);
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.1);
}

.bank-demo-guidance,
.bank-demo-warning {
  display: grid;
  gap: 2px;
  margin-top: 7px;
  padding: 7px;
  border-radius: 9px;
  color: #24545e;
  background: var(--bank-demo-soft);
}

.bank-demo-guidance strong,
.bank-demo-guidance span {
  font-size: 5.1px;
  line-height: 1.3;
}

.bank-demo-guidance--important {
  border-left: 3px solid var(--bank-demo-accent);
}

.bank-demo-back-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: center;
}

.bank-demo-back-title > span {
  color: var(--bank-demo-accent-dark);
  font-size: 13px;
}

.bank-demo-back-title h3 {
  margin: 0;
}

.bank-demo-field {
  position: relative;
  display: grid;
  min-height: 39px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  align-items: center;
  margin-top: 9px;
  padding: 9px 9px 5px;
  border: 1px solid #67838a;
  border-radius: 5px;
  background: #fff;
}

.bank-demo-field::before {
  color: #45656c;
}

.bank-demo-field > span,
.bank-demo-field > strong,
.bank-demo-field > code,
.bank-demo-destination-summary > span,
.bank-demo-recipient-copy small,
.bank-demo-review-card span {
  min-width: 0;
  font-size: 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bank-demo-field--focused {
  border: 2px solid var(--bank-demo-accent);
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.1);
}

.bank-demo-field--focused::before {
  color: var(--bank-demo-accent-dark);
}

.bank-demo-pasted-indicator {
  padding: 2px 5px;
  border-radius: 999px;
  color: #116053;
  background: #ddf4ec;
  font-size: 4.5px !important;
  font-weight: 800;
}

.bank-demo-field-placeholder {
  color: var(--bank-demo-muted);
  font-style: italic;
}

.bank-demo-recipient-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  padding: 8px;
}

.bank-demo-recipient-card--selected {
  border-color: var(--bank-demo-accent);
  background: var(--bank-demo-soft);
}

.bank-demo-recipient-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--bank-demo-accent-dark);
  font-size: 8px;
  font-weight: 900;
}

.bank-demo-recipient-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.bank-demo-recipient-copy strong {
  font-size: 5.8px;
}

.bank-demo-recipient-copy small {
  color: var(--bank-demo-muted);
  font-size: 4.7px;
}

.bank-demo-selected-check {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bank-demo-accent);
  font-size: 7px;
}

.bank-demo-warning {
  grid-template-columns: auto 1fr;
  color: #6d4b00;
  background: #fff4d6;
}

.bank-demo-warning > span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b56a00;
  font-size: 7px;
  font-weight: 900;
}

.bank-demo-warning p {
  margin: 0;
  font-size: 5px;
  line-height: 1.3;
}

.bank-demo-button--filled {
  color: #fff;
  background: var(--bank-demo-accent-dark);
}

.bank-demo-button--outlined {
  border-color: var(--bank-demo-accent);
  color: var(--bank-demo-accent-dark);
  background: transparent;
}

.bank-demo-button--highlighted {
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.16);
}

.bank-demo-destination-summary {
  display: grid;
  gap: 2px;
  margin-top: 7px;
  padding: 7px;
}

.bank-demo-destination-summary small,
.bank-demo-destination-summary span {
  color: var(--bank-demo-muted);
  font-size: 4.7px;
}

.bank-demo-destination-summary strong {
  font-size: 6px;
}

.bank-demo-review-card {
  margin-top: 7px;
  overflow: hidden;
}

.bank-demo-review-card > div {
  display: grid;
  gap: 1px;
  padding: 6px 7px;
  border-bottom: 1px solid #dcebed;
}

.bank-demo-review-card > div:last-child {
  border-bottom: 0;
}

.bank-demo-review-card small,
.bank-demo-review-card span {
  color: var(--bank-demo-muted);
  font-size: 4.6px;
}

.bank-demo-review-card strong,
.bank-demo-review-card code {
  font-size: 5.6px;
}

.bank-demo-review-card em {
  color: var(--bank-demo-muted);
  font-size: 4.3px;
  font-style: normal;
  font-weight: 500;
}

.bank-demo-check-list {
  display: grid;
  gap: 3px;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.bank-demo-check-list li {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  color: #36575e;
  font-size: 4.9px;
  line-height: 1.3;
}

.bank-demo-check-list b {
  color: #187652;
}

.bank-demo-success-icon {
  background: var(--bank-demo-accent);
  box-shadow: 0 6px 14px rgba(8, 127, 140, 0.22);
}

.bank-demo-body--centered h3 {
  margin: 8px 0 2px;
}

.bank-demo-receipt-card {
  display: grid;
  width: 100%;
  gap: 5px;
  margin-top: 8px;
  padding: 9px;
}

.bank-demo-receipt-card small {
  color: var(--bank-demo-muted);
  font-size: 5px;
}

.bank-demo-receipt-card code {
  color: var(--bank-demo-accent-dark);
  font-size: 9px;
}

.bank-demo-copy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 24px;
  border-radius: 999px;
  color: var(--bank-demo-accent-dark);
  background: var(--bank-demo-soft);
  font-size: 5.4px;
  font-weight: 800;
}

.bank-demo-receipt-reminder {
  padding: 5px 7px;
  border-radius: 8px;
  color: #6d4b00 !important;
  background: #fff4d6;
  font-weight: 700;
}

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

@keyframes danta-recharge-pulse {
  0%, 100% { opacity: 0; transform: scale(0.96); }
  48% { opacity: 0.55; transform: scale(1); }
}

@keyframes danta-recharge-nudge {
  0%, 100% { opacity: 0.5; transform: translateX(-2px); }
  50% { opacity: 1; transform: translateX(2px); }
}

@keyframes danta-switch-select {
  0%, 18% { transform: translateX(0); }
  48%, 100% { transform: translateX(var(--switch-shift)); }
}

@keyframes danta-switch-open {
  0%, 38% {
    border-radius: 18px;
    opacity: 0.9;
    box-shadow: 0 14px 32px rgba(37, 39, 52, 0.16);
    transform: translateY(0) scale(0.96);
  }
  56% {
    border-radius: 16px;
    opacity: 1;
    box-shadow: 0 24px 48px rgba(25, 30, 40, 0.26);
    transform: translateY(-7px) scale(1.06);
  }
  100% {
    border-radius: 8px;
    opacity: 1;
    box-shadow: 0 0 0 rgba(25, 30, 40, 0);
    transform: translateY(0) scale(3.05);
  }
}

@keyframes danta-switch-recede {
  0%, 22% { opacity: 1; transform: scale(1); }
  58%, 100% { opacity: 0; transform: scale(0.82); }
}

@keyframes danta-switch-preview-footer-away {
  0%, 44% {
    min-height: 31px;
    max-height: 31px;
    padding: 5px;
    opacity: 1;
  }
  72%, 100% {
    min-height: 0;
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}

@keyframes danta-switch-opening-label {
  0%, 32% { opacity: 0; transform: translate(-50%, 8px); }
  45%, 64% { opacity: 1; transform: translate(-50%, 0); }
  82%, 100% { opacity: 0; transform: translate(-50%, -8px); }
}

@keyframes danta-switch-chrome-away {
  0%, 42% { opacity: 1; }
  70%, 100% { opacity: 0; }
}

@container (max-width: 290px) {
  .danta-recharge-screen {
    grid-template-rows: minmax(0, 1fr) 34px;
  }

  .danta-recharge-scroll,
  .bank-demo-body {
    padding: 5px 6px;
  }

  .danta-recharge-app-bar {
    min-height: 28px;
    margin-bottom: 3px;
  }

  .danta-recharge-app-bar-title {
    font-size: 7px;
  }

  .danta-recharge-nav-label {
    font-size: 4px;
  }

  .danta-recharge-logo,
  .danta-recharge-loader-mark {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    font-size: 7px;
  }

  .danta-recharge-wallet-icon {
    width: 22px;
    height: 22px;
  }

  .danta-recharge-wallet-icon svg {
    width: 12px;
    height: 12px;
  }

  .danta-recharge-funds-heading h2 {
    margin-block: 4px 2px;
    font-size: 8px;
  }

  .danta-recharge-balance strong {
    font-size: 12px;
  }

  .danta-recharge-tabs {
    margin: 4px 0;
  }

  .danta-recharge-tab {
    padding: 3px;
    font-size: 5px;
  }

  .danta-recharge-entry-card,
  .danta-recharge-card--setup,
  .danta-recharge-status-card,
  .danta-recharge-settled-hero {
    margin-top: 5px;
    padding: 6px;
  }

  .danta-recharge-entry-icon {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    font-size: 9px;
  }

  .danta-recharge-methods {
    gap: 3px;
    margin: 4px 0 5px;
  }

  .danta-recharge-method {
    min-height: 34px;
    gap: 3px;
    padding: 4px;
  }

  .danta-recharge-method strong {
    font-size: 4.8px;
  }

  .danta-recharge-method small {
    font-size: 3.8px;
  }

  .danta-recharge-field,
  .bank-demo-field {
    min-height: 31px;
    margin-top: 7px;
    padding: 7px 6px 4px;
  }

  .danta-recharge-field::before,
  .bank-demo-field::before {
    font-size: 4.4px;
  }

  .danta-recharge-button,
  .bank-demo-button {
    min-height: 22px;
    padding: 4px 6px;
    font-size: 4.8px;
  }

  .danta-recharge-dialog-backdrop {
    padding: 4px;
  }

  .danta-recharge-dialog {
    padding: 6px;
    border-radius: 12px;
  }

  .danta-recharge-dialog-heading h3 {
    font-size: 7px;
  }

  .danta-recharge-progress {
    gap: 2px;
    margin-top: 4px;
  }

  .danta-recharge-progress-item {
    min-height: 19px;
    padding: 2px 3px;
  }

  .danta-recharge-progress-item b {
    width: 10px;
    height: 10px;
    font-size: 4px;
  }

  .danta-recharge-progress-item small {
    font-size: 3.7px;
  }

  .danta-recharge-dialog h4 {
    margin-top: 5px;
    font-size: 5.8px;
  }

  .danta-recharge-dialog > p,
  .danta-recharge-copy-card p {
    margin: 2px 0;
    font-size: 4.4px;
  }

  .danta-recharge-depositor-card,
  .danta-recharge-copy-card {
    margin-top: 4px;
    padding: 5px;
  }

  .danta-recharge-choice-row {
    margin: 4px 0;
  }

  .danta-recharge-copy-row {
    margin-top: 3px;
    padding: 3px 4px;
  }

  .danta-recharge-copy-row code,
  .bank-demo-screen code {
    font-size: 4.7px;
  }

  .danta-recharge-copy-button {
    width: 16px;
    height: 16px;
    font-size: 5px;
  }

  .danta-recharge-dialog-actions {
    margin-top: 4px;
  }

  .danta-recharge-dialog-actions .danta-recharge-button {
    min-width: 57px;
  }

  .danta-recharge-switch-heading {
    min-height: 32px;
    padding: 6px 9px 4px;
  }

  .danta-recharge-switch-track {
    gap: 10px;
  }

  .danta-recharge-switch-preview {
    border-radius: 14px;
  }

  .danta-recharge-switch-preview-window {
    gap: 5px;
    padding: 6px;
  }

  .danta-recharge-switch-opening {
    bottom: 38px;
  }

  .danta-recharge-snackbar {
    right: 6px;
    bottom: 39px;
    left: 6px;
    padding: 6px;
    font-size: 4.8px;
  }

  .danta-recharge-settled-icon,
  .bank-demo-success-icon {
    width: 27px;
    height: 27px;
    font-size: 11px;
  }

  .danta-recharge-complete-icon {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .danta-recharge-complete-notification,
  .danta-recharge-history-tile {
    gap: 5px;
    margin-top: 4px;
    padding: 5px;
  }

  .danta-recharge-history-card {
    margin-top: 4px;
  }

  .danta-recharge-history-card > header {
    padding: 5px 6px;
  }

  .bank-demo-header {
    min-height: 32px;
    gap: 5px;
    padding: 4px 6px;
  }

  .bank-demo-mark {
    width: 21px;
    height: 21px;
    border-radius: 7px;
    font-size: 7px;
  }

  .bank-demo-heading-copy strong {
    font-size: 5.8px;
  }

  .bank-demo-heading-copy small {
    font-size: 3.9px;
  }

  .bank-demo-disclaimer {
    padding: 3px 6px;
  }

  .bank-demo-disclaimer strong {
    font-size: 4.5px;
  }

  .bank-demo-disclaimer span {
    font-size: 3.9px;
  }

  .bank-demo-balance-card,
  .bank-demo-recipient-card,
  .bank-demo-destination-summary,
  .bank-demo-receipt-card {
    padding: 6px;
  }

  .bank-demo-body h3 {
    margin-block: 4px;
    font-size: 6.5px;
  }

  .bank-demo-body > p {
    margin: 3px 0 4px;
    font-size: 4.6px;
  }

  .bank-demo-action {
    min-height: 42px;
    padding: 5px;
  }

  .bank-demo-guidance,
  .bank-demo-warning {
    gap: 1px;
    margin-top: 4px;
    padding: 4px;
  }

  .bank-demo-review-card,
  .bank-demo-receipt-card {
    margin-top: 4px;
  }

  .bank-demo-review-card > div {
    padding: 4px 5px;
  }

  .bank-demo-check-list {
    gap: 2px;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .danta-recharge-button--highlighted::after,
  .bank-demo-button--highlighted::after,
  .danta-recharge-spinner,
  .danta-recharge-switch-track,
  .danta-recharge-switch-preview,
  .danta-recharge-switch-preview > footer,
  .danta-recharge-switch-opening,
  .danta-recharge-switch-heading,
  .danta-recharge-switch-demo-note,
  .danta-recharge-switch-home-indicator {
    animation: none !important;
    transition: none !important;
  }

  .tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-track {
    transform: translateX(var(--switch-shift));
  }

  .tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-preview.is-source {
    opacity: 0.4;
    transform: scale(0.9);
  }

  .tutorial-player-root[data-active-phase="detail"] .danta-app-screen.is-active .danta-recharge-switch-preview.is-target {
    opacity: 1;
    box-shadow: 0 15px 34px rgba(37, 39, 52, 0.2);
    transform: scale(1.06);
  }
}
