@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/**
 * TrustPay Design Tokens
 * 
 * This file defines all design tokens used throughout the application.
 * It extends the antd-mobile theme and provides a centralized location
 * for managing design values.
 */
:root:root {
  /* 
   * Base Color Palette
   * Define semantic color roles based on antd-mobile theme 
   */
  --tp-color-primary: var(--adm-color-primary);
  --tp-color-secondary: var(--adm-button-color-secondary);
  --tp-color-tertiary: var(--adm-button-color-tertiary);
  --tp-color-neutral: var(--adm-button-color-secondary-neutral);
  --tp-color-success: var(--adm-color-success);
  --tp-color-warning: var(--adm-color-warning);
  --tp-color-danger: var(--adm-color-danger);
  --tp-color-info: var(--adm-color-wathet);

  /* Background Colors */
  --tp-bg-primary: var(--adm-color-background);
  --tp-bg-secondary: var(--adm-color-box);
  --tp-bg-tertiary: var(--adm-color-background-neutral);
  --tp-bg-card: var(--adm-color-background);
  --tp-bg-overlay: rgba(0, 0, 0, 0.5);

  /* Text Colors */
  --tp-text-primary: var(--adm-color-text);
  --tp-text-secondary: var(--adm-color-text-secondary);
  --tp-text-tertiary: var(--adm-color-weak);
  --tp-text-disabled: var(--adm-color-light);
  --tp-text-link: var(--adm-color-link);
  --tp-text-on-primary: var(--adm-interactive-color-primary);
  --tp-text-on-light: var(--adm-color-text-dark-solid);
  --tp-text-on-dark: var(--adm-color-text-light-solid);

  /* Border Colors */
  --tp-border-primary: var(--adm-color-border);
  --tp-border-secondary: var(--adm-color-light);
  --tp-border-focus: var(--adm-interactive-color-primary);

  /* 
   * Typography Scale
   * Mapping antd-mobile font sizes to more semantic names
   */
  --tp-text-xs: var(--adm-font-size-3);
  --tp-text-sm: var(--adm-font-size-5);
  --tp-text-md: var(--adm-font-size-7);
  --tp-text-lg: var(--adm-font-size-8);
  --tp-text-xl: var(--adm-font-size-9);
  --tp-text-2xl: var(--adm-font-size-10);

  /* Font Weights */
  --tp-font-weight-normal: 400;
  --tp-font-weight-medium: 500;
  --tp-font-weight-semibold: 600;
  --tp-font-weight-bold: 700;

  /* Line Heights */
  --tp-line-height-tight: 1.2;
  --tp-line-height-normal: 1.5;
  --tp-line-height-loose: 1.8;

  /* 
   * Spacing Scale
   * Consistent spacing throughout the application
   */
  --tp-space-2xs: 4px;
  --tp-space-xs: 8px;
  --tp-space-sm: 12px;
  --tp-space-md: 16px;
  --tp-space-lg: 24px;
  --tp-space-xl: 32px;
  --tp-space-2xl: 48px;
  --tp-space-3xl: 64px;

  /* 
   * Border Radius
   * Map antd-mobile radius variables to our tokens
   */
  --tp-radius-sm: var(--adm-radius-s);
  --tp-radius-md: var(--adm-radius-m);
  --tp-radius-lg: var(--adm-radius-l);
  --tp-radius-full: var(
    --button-radius
  ); /* Using the button radius for rounded elements */

  /* 
   * Shadows
   * Consistent shadow system
   */
  --tp-shadow-sm: 0px 1px 2px rgba(0, 0, 0, 0.05);
  --tp-shadow-md: 0px 4px 6px rgba(0, 0, 0, 0.1);
  --tp-shadow-lg: 0px 10px 15px rgba(0, 0, 0, 0.1);
  --tp-shadow-xl: 0px 20px 25px rgba(0, 0, 0, 0.15);

  /* 
   * Layout
   * Common layout values
   */
  --tp-container-padding: var(--tp-space-md);
  --tp-navbar-height: 80px;
  --tp-bottom-bar-height: 84px;
  --tp-inner-container-height: calc(
    100% - var(--tp-navbar-height) - var(--tp-bottom-bar-height)
  );
  --tp-inner-container-height-without-bottom-bar: calc(
    100% - var(--tp-navbar-height)
  );

  /* 
   * Component-specific tokens
   */
  /* Buttons */
  --tp-button-height: var(--button-height);
  --tp-button-radius: var(--button-radius);
  --tp-button-padding: 0 var(--tp-space-lg);

  /* Forms */
  --tp-input-height: 48px;
  --tp-input-radius: var(--tp-radius-md);
  --tp-input-border: 1px solid var(--tp-border-primary);
  --tp-input-padding: 0 var(--tp-space-md);
  --tp-label-gap: var(--tp-space-xs);

  /* Cards */
  --tp-card-padding: var(--tp-space-md);
  --tp-card-radius: var(--tp-radius-md);
  --tp-card-shadow: var(--tp-shadow-md);

  /* Transitions */
  --tp-transition-fast: 150ms ease;
  --tp-transition-normal: 250ms ease;
  --tp-transition-slow: 350ms ease;
}
/* Dark mode overrides can be added here */
html[data-prefers-color-scheme='dark'] {
  /* Dark-specific tokens can be defined here */
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
/* Buttons */
/* Cards */
/* Form elements */
/* Typography */
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.-right-0\.5{
  right: -0.125rem;
}
.-top-0\.5{
  top: -0.125rem;
}
.m-0{
  margin: 0px;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.block{
  display: block;
}
.\!flex{
  display: flex !important;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.hidden{
  display: none;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-20{
  height: 5rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-6{
  height: 1.5rem;
}
.h-\[36px\]{
  height: 36px;
}
.h-full{
  height: 100%;
}
.min-h-\[120px\]{
  min-height: 120px;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-20{
  width: 5rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-full{
  width: 100%;
}
.flex-1{
  flex: 1 1 0%;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
  cursor: pointer;
}
.resize-none{
  resize: none;
}
.list-inside{
  list-style-position: inside;
}
.list-disc{
  list-style-type: disc;
}
.\!flex-row-reverse{
  flex-direction: row-reverse !important;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-full{
  border-radius: var(--tp-radius-full);
}
.rounded-lg{
  border-radius: var(--tp-radius-lg);
}
.rounded-md{
  border-radius: var(--tp-radius-md);
}
.border{
  border-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.object-cover{
  object-fit: cover;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-8{
  padding: 2rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: var(--tp-text-lg);
}
.text-md{
  font-size: var(--tp-text-md);
}
.text-sm{
  font-size: var(--tp-text-sm);
}
.text-xl{
  font-size: var(--tp-text-xl);
}
.text-xs{
  font-size: var(--tp-text-xs);
}
.font-bold{
  font-weight: var(--tp-font-weight-bold);
}
.font-medium{
  font-weight: var(--tp-font-weight-medium);
}
.font-semibold{
  font-weight: var(--tp-font-weight-semibold);
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.leading-relaxed{
  line-height: 1.625;
}
.text-\[\#9fe870\]{
  --tw-text-opacity: 1;
  color: rgb(159 232 112 / var(--tw-text-opacity, 1));
}
.text-amber-500{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-danger{
  color: var(--tp-color-danger);
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.opacity-50{
  opacity: 0.5;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
/* Base body styles */
html {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#root {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}
code {
  font-family:
    source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
/* 
 * Add standardized component classes using design tokens and Tailwind
 * These can be used in combination with Tailwind utility classes
 */
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hover\:text-red-600:hover{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
:root:root {
  --adm-radius-s: 10px;
  --adm-radius-m: 16px;
  --adm-radius-l: 24px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #9fe870;
  --adm-interactive-color-primary: #163300;
  --adm-color-success: #2f5711;
  --adm-color-warning: #edc843;
  --adm-color-danger: #a8200d;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #0e0f0c;
  --adm-color-text-secondary: #454745;
  --adm-color-weak: #6a6c6a;
  --adm-color-light: #cccccc;
  --adm-color-border: #0e0f0c1f;
  --adm-color-background: #ffffff;
  --adm-color-background-neutral: rgba(22, 51, 0, 0.08);
  --adm-color-link: #163300;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-8);
  --adm-font-family:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  --adm-border-color: var(--adm-color-border);
  --button-height: 52px; /* Match radio button height */
  --button-radius: 50px; /* Match radio button radius */
  --adm-button-color-primary: var(--adm-color-primary);
  --adm-button-color-secondary: #ddf7d2;
  --adm-button-color-danger: var(--adm-color-danger);
  --adm-button-color-secondary-neutral: #edefeb;
  --adm-button-color-tertiary: transparent;
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-link);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

#root .adm-step-status-process .adm-step-title {
  color: var(--adm-interactive-color-primary);
}

#root .adm-step-status-wait {
  --icon-color: var(--adm-button-color-secondary-neutral);
  z-index: 99;
}

#root .adm-step-icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: currentColor;
  border-radius: 6px;
}

.adm-error-message {
  color: var(--adm-color-danger);
}

.adm-text {
  color: var(--adm-color-text);
}

.adm-text-light {
  color: var(--adm-color-text-secondary);
}

.adm-text-screen-h2 {
  margin-top: 0;
  color: var(--adm-color-text);
  font-weight: 700;
}

.adm-card-background-dark {
  background-color: var(--adm-button-color-secondary-neutral);
}

#root
  .adm-passcode-input:not(
    .adm-passcode-input-seperated
  ).adm-passcode-input-focused {
  border-color: var(--adm-interactive-color-primary);
  box-shadow: 0 0 0 2px var(--adm-interactive-color-primary);
  outline: none;
}

.adm-passcode-input.full-width-passcode {
  width: 100%;
}

.toast-text-wrap {
  max-width: 250px !important;
  width: auto !important;
  text-align: center !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  line-height: 1.5 !important;
  font-size: 16px !important;
  padding: 8px 0 !important;
  margin: 0 auto !important;
}
/*:root:root {*/
/*  --adm-color-primary: #9FE870;*/
/*  --adm-color-success: #00b578;*/
/*  --adm-color-warning: #ff8f1f;*/
/*  --adm-color-danger: #ff3141;*/
/*  --adm-color-white: #ffffff;*/
/*  --adm-color-text: #333333;*/
/*  --adm-color-text-secondary: #666666;*/
/*  --adm-color-weak: #999999;*/
/*  --adm-color-light: #cccccc;*/
/*  --adm-color-border: #eeeeee;*/
/*  --adm-color-box: #f5f5f5;*/
/*  --adm-color-background: #ffffff;*/
/*  --adm-font-size-main: var(--adm-font-size-5);*/
/*  --adm-navbar-height: 80px;*/
/*  --adm-button-height: 60px;*/
/*  --button-height: 52px;  !* Match radio button height *!*/
/*  --button-radius: 50px;  !* Match radio button radius *!*/
/*  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',*/
/*  helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',*/
/*  'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;*/
/*}*/
/* Error Boundary Component with design tokens */
.error-boundary-container {
  padding: var(--tp-space-md);
  text-align: center;
  background-color: var(--tp-bg-primary);
  border-radius: var(--tp-radius-md);
  box-shadow: var(--tp-shadow-sm);
  margin: var(--tp-space-md);
}

.error-boundary-title {
  color: var(--tp-color-danger);
  font-size: var(--tp-text-xl);
  font-weight: var(--tp-font-weight-bold);
  margin-bottom: var(--tp-space-sm);
}

.error-boundary-message {
  margin-top: var(--tp-space-xs);
  color: var(--tp-text-secondary);
  font-size: var(--tp-text-md);
  line-height: var(--tp-line-height-normal);
}
:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}
.adm-popup {
  --z-index: var(--adm-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}
.adm-popup-body {
  position: fixed;
  background-color: var(--adm-color-background);
  z-index: calc(var(--z-index) + 10);
}
.adm-popup-body .adm-popup-close-icon {
  position: absolute;
  z-index: 100;
}
.adm-popup-body-position-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}
.adm-popup-body-position-bottom .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-top {
  width: 100%;
  top: 0;
  left: 0;
}
.adm-popup-body-position-top .adm-popup-close-icon {
  right: 8px;
  bottom: 8px;
}
.adm-popup-body-position-left {
  height: 100%;
  top: 0;
  left: 0;
}
.adm-popup-body-position-left .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-right {
  height: 100%;
  top: 0;
  right: 0;
}
.adm-popup-body-position-right .adm-popup-close-icon {
  left: 8px;
  top: 8px;
}
.adm-popup-close-icon {
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  color: var(--adm-color-weak);
}
.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}
.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.adm-mask-content {
  z-index: 1;
}
.adm-safe-area {
  --multiple: var(--adm-safe-area-multiple, 1);
  display: block;
  width: 100%;
}
.adm-safe-area-position-top {
  padding-top: calc(env(safe-area-inset-top) * var(--multiple));
}
.adm-safe-area-position-bottom {
  padding-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
}
.adm-auto-center {
  display: flex;
  justify-content: center;
}
.adm-auto-center-content {
  flex: 0 1 auto;
}
.adm-image {
  --width: var(--adm-image-width, auto);
  --height: var(--adm-image-height, auto);
  width: var(--width);
  height: var(--height);
  display: block;
  overflow: hidden;
}
.adm-image-img {
  width: 100%;
  height: 100%;
}
.adm-image-tip {
  position: relative;
  background-color: var(--adm-color-fill-content);
  height: 100%;
  min-height: 24px;
  min-width: 24px;
}
.adm-image-tip > svg {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--adm-color-weak);
}
.adm-badge-wrapper {
  display: inline-block;
  position: relative;
}
.adm-badge {
  display: inline-flex;
  vertical-align: middle;
  box-sizing: content-box;
  border-radius: 100px;
  background-color: var(--color);
  --right: 0;
  --top: 0;
  --color: var(--adm-badge-color, var(--adm-color-highlight));
}
.adm-badge-content {
  color: var(--adm-color-text-light-solid);
  box-sizing: border-box;
  min-width: 8px;
  padding: 1px 4px;
  font-size: var(--adm-font-size-1);
  line-height: 12px;
  white-space: nowrap;
  font-weight: normal;
  text-align: center;
}
.adm-badge-fixed {
  position: absolute;
  right: var(--right);
  top: var(--top);
  transform: translate(50%, -50%);
}
.adm-badge-dot {
  min-width: 10px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.adm-badge-bordered {
  border: solid 1px var(--adm-color-text-light-solid);
}
.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 7px 12px;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
          user-select: none;
}
.adm-button:focus {
  outline: none;
}
.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  background-color: var(--adm-color-text-dark-solid);
  border: var(--border-width) var(--border-style) var(--adm-color-text-dark-solid);
  border-radius: var(--border-radius);
  opacity: 0;
  content: ' ';
  box-sizing: content-box;
}
.adm-button:active::before {
  opacity: 0.08;
}
.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}
.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}
.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}
.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button-primary {
  --color: var(--adm-color-primary);
}
.adm-button-success {
  --color: var(--adm-color-success);
}
.adm-button-danger {
  --color: var(--adm-color-danger);
}
.adm-button-warning {
  --color: var(--adm-color-warning);
}
.adm-button-block {
  display: block;
  width: 100%;
}
.adm-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adm-button-disabled:active::before {
  display: none;
}
.adm-button.adm-button-mini {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-main);
}
.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}
.adm-button.adm-button-small {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-7);
}
.adm-button.adm-button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: var(--adm-font-size-10);
}
.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}
.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}
.adm-button-loading {
  vertical-align: bottom;
}
.adm-button-loading-wrapper {
  display: flex;
  height: 1.4em;
  align-items: center;
  justify-content: center;
}
.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}
.adm-dot-loading {
  display: inline-block;
}
.adm-card {
  background: var(--adm-color-background);
  border-radius: var(--adm-card-border-radius, 8px);
  padding: 0 var(--adm-card-padding-inline, 12px);
}
.adm-card-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--adm-card-header-gap, 8px);
  box-sizing: border-box;
  padding: var(--adm-card-header-padding-block, 12px) 0;
}
.adm-card-header:not(:last-child) {
  border-bottom: solid var(--adm-card-header-border-width, 0.5px) var(--adm-card-header-border-color, var(--adm-color-border));
}
.adm-card-header-title {
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  font-weight: bold;
}
.adm-card-body {
  padding: var(--adm-card-body-padding-block, 12px) 0;
}
.adm-picker {
  --header-button-font-size: var(--adm-font-size-7);
  --title-font-size: var(--adm-font-size-7);
  --item-font-size: var(--adm-font-size-8);
  --item-height: 34px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  ---item-font-size: var(--item-font-size);
  ---item-height: var(--item-height);
}
.adm-picker .adm-picker-view.adm-picker-view {
  --item-font-size: var(---item-font-size);
  --item-height: var(---item-height);
}
.adm-picker-header {
  flex-shrink: 0;
  border-bottom: solid 1px var(--adm-color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px;
}
.adm-picker-header-button {
  font-size: var(--header-button-font-size);
  display: inline-block;
  padding: 8px 8px;
}
.adm-picker-header-button-disabled,
.adm-picker-header-button-disabled:active {
  opacity: 0.4;
  cursor: not-allowed;
}
.adm-picker-header-title {
  padding: 4px 4px;
  font-size: var(--title-font-size);
  color: var(--adm-color-text);
  text-align: center;
  flex: 1;
}
.adm-picker-body {
  flex: 1;
  width: 100%;
  height: 100%;
}
.adm-picker-body > .adm-picker-view {
  --height: 100%;
}
.adm-picker-popup .adm-popup-body {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  width: var(--size);
  height: var(--size);
}
.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  animation: adm-spin-loading-rotate 0.8s infinite linear;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.adm-picker-view {
  --height: 240px;
  --item-height: 34px;
  --item-font-size: var(--adm-font-size-8);
  height: var(--height);
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--adm-color-background);
}
.adm-picker-view-column {
  height: 100%;
  flex: 1;
  -webkit-user-select: none;
          user-select: none;
  touch-action: none;
  position: relative;
  z-index: 0;
}
.adm-picker-view-column-wheel {
  width: 100%;
  cursor: grab;
  position: absolute;
  top: calc(50% - var(--item-height) / 2);
  left: 0;
}
.adm-picker-view-column-wheel::before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -100vh;
}
.adm-picker-view-column-wheel::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: -100vh;
}
.adm-picker-view-column-item {
  font-size: var(--item-font-size);
  padding: 0 6px;
  height: var(--item-height);
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-picker-view-column-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adm-picker-view-column-accessible {
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  top: calc(var(--item-height) * -1);
  z-index: 0;
  padding-bottom: 1px;
}
.adm-picker-view-column-accessible > * {
  flex: 1;
  text-overflow: ellipsis;
}
.adm-picker-view-column-accessible-current {
  position: absolute;
  width: 100%;
  height: 100%;
}
.adm-picker-view-column-accessible-button {
  width: 100%;
  height: 100%;
}
.adm-picker-view-mask {
  position: absolute;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.adm-picker-view-mask-top,
.adm-picker-view-mask-bottom {
  flex: auto;
}
.adm-picker-view-mask-middle {
  height: var(--item-height);
  box-sizing: border-box;
  flex: none;
  border-top: solid 1px var(--adm-color-border);
  border-bottom: solid 1px var(--adm-color-border);
}
.adm-picker-view-mask-top {
  background: var(--adm-color-background);
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
.adm-picker-view-mask-bottom {
  background: var(--adm-color-background);
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
.adm-picker-view-loading-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-picker-view-item-height-measure {
  position: relative;
  left: 0;
  top: 0;
  height: var(--item-height);
  width: 0;
  pointer-events: none;
}
.adm-list {
  --header-font-size: var(--adm-font-size-7);
  --prefix-width: 'auto';
  --prefix-padding-right: 12px;
  --align-items: center;
  --active-background-color: var(--adm-color-border);
  --border-inner: solid 1px var(--adm-color-border);
  --border-top: solid 1px var(--adm-color-border);
  --border-bottom: solid 1px var(--adm-color-border);
  --padding-left: 12px;
  --padding-right: 12px;
  --font-size: var(--adm-font-size-9);
  --extra-max-width: 70%;
}
.adm-list-header {
  color: var(--adm-color-weak);
  font-size: var(--header-font-size);
  padding: 8px var(--padding-right) 8px var(--padding-left);
}
.adm-list-body {
  background-color: var(--adm-color-background);
  overflow: hidden;
  font-size: var(--font-size);
}
.adm-list-body-inner {
  margin-top: -1px;
}
.adm-list-default .adm-list-body {
  border-top: var(--border-top);
  border-bottom: var(--border-bottom);
}
.adm-list-card {
  margin: 12px;
}
.adm-list-card .adm-list-body {
  border-radius: 8px;
}
.adm-list-card .adm-list-header {
  padding-left: 0;
}
.adm-list-item {
  display: block;
  padding-left: var(--padding-left);
  position: relative;
  background-color: var(--adm-color-background);
  line-height: 1.5;
}
.adm-list-item-title,
.adm-list-item-description {
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-main);
}
.adm-list-item-content {
  display: flex;
  align-items: var(--align-items);
  justify-content: flex-start;
  border-top: var(--border-inner);
  padding-right: var(--padding-right);
}
.adm-list-item-content-prefix {
  width: var(--prefix-width);
  flex: none;
  padding-right: var(--prefix-padding-right);
}
.adm-list-item-content-main {
  flex: auto;
  padding: 12px 0;
}
.adm-list-item-content-extra {
  flex: none;
  padding-left: 12px;
  font-size: var(--adm-font-size-7);
  color: var(--adm-color-weak);
  max-width: var(--extra-max-width);
}
.adm-list-item-content-arrow {
  flex: none;
  display: flex;
  align-items: center;
  margin-left: 4px;
  color: var(--adm-color-light);
  font-size: 19px;
}
.adm-list-item-disabled {
  cursor: not-allowed;
}
.adm-list-item-disabled.adm-list-item-disabled > .adm-list-item-content > * {
  opacity: 0.4;
  pointer-events: none;
}
a.adm-list-item:active:not(.adm-list-item-disabled) {
  background-color: var(--active-background-color);
}
a.adm-list-item:active:not(.adm-list-item-disabled)::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  border-bottom: var(--border-inner);
}
.adm-center-popup {
  --background-color: var(--adm-center-popup-background-color, var(--adm-color-background));
  --border-radius: var(--adm-center-popup-border-radius, 8px);
  --max-width: var(--adm-center-popup-max-width, 75vw);
  --min-width: var(--adm-center-popup-min-width, 280px);
  --z-index: var(--adm-center-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}
.adm-center-popup .adm-center-popup-mask {
  z-index: 0;
}
.adm-center-popup-wrap {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: var(--min-width);
  max-width: var(--max-width);
  transform: translate(-50%, -50%);
}
.adm-center-popup-body {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
}
.adm-center-popup-close {
  position: absolute;
  z-index: 100;
  right: 8px;
  top: 8px;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  color: var(--adm-color-weak);
}
.adm-dialog {
  --z-index: var(--adm-dialog-z-index, 1000);
  ---z-index: var(--z-index);
}
.adm-dialog .adm-center-popup {
  --z-index: var(---z-index);
}
.adm-dialog-body {
  width: 100%;
  max-height: 70vh;
  font-size: var(--adm-font-size-6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.adm-dialog-body > * {
  flex: none;
}
.adm-dialog-body > .adm-dialog-content {
  flex: auto;
}
.adm-dialog-body:not(.adm-dialog-with-image) {
  padding-top: 20px;
}
.adm-dialog-image-container {
  margin-bottom: 12px;
  max-height: 40vh;
}
.adm-dialog-header {
  margin-bottom: 8px;
  padding: 0 12px;
}
.adm-dialog-title {
  margin-bottom: 8px;
  padding: 0 12px;
  font-weight: bold;
  font-size: var(--adm-font-size-10);
  line-height: 25px;
  text-align: center;
}
.adm-dialog-content {
  padding: 0 12px 20px;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  color: var(--adm-color-text);
}
.adm-dialog-content-empty {
  padding: 0;
  height: 12px;
}
.adm-dialog-footer {
  -webkit-user-select: none;
          user-select: none;
}
.adm-dialog-footer .adm-dialog-action-row {
  display: flex;
  align-items: stretch;
  border-top: 0.5px solid var(--adm-color-border);
}
.adm-dialog-footer .adm-dialog-action-row > * {
  flex: 1;
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button {
  padding: 10px;
  font-size: var(--adm-font-size-10);
  line-height: 25px;
  border-radius: 0;
  border-right: solid 0.5px var(--adm-color-border);
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button-bold {
  font-weight: bold;
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button:last-child {
  border-right: none;
}
.adm-dialog-image-container {
  overflow-y: auto;
}
.adm-grid {
  --gap: 0;
  --gap-horizontal: var(--gap);
  --gap-vertical: var(--gap);
  display: grid;
  grid-gap: 10px;
  column-gap: var(--gap-horizontal);
  row-gap: var(--gap-vertical);
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  align-items: stretch;
}
.adm-grid-item {
  grid-column-end: span var(--item-span);
}
.adm-image-viewer-content {
  width: 100vw;
  height: 100vh;
  touch-action: none;
  -webkit-user-select: none;
          user-select: none;
}
.adm-image-viewer-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.adm-image-viewer-slides {
  height: 100%;
  position: relative;
  z-index: 1;
  cursor: grab;
  touch-action: none;
}
.adm-image-viewer-slides-inner {
  height: 100%;
  white-space: nowrap;
}
.adm-image-viewer-slides-inner > * {
  margin-right: 16px;
}
.adm-image-viewer-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.adm-image-viewer-control {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}
.adm-image-viewer-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-image-viewer-image-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.adm-image-viewer-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  color: var(--adm-color-border);
  font-size: var(--adm-font-size-6);
}
.adm-space-item {
  flex: none;
}
.adm-space {
  display: inline-flex;
  --gap: 8px;
  --gap-vertical: var(--gap);
  --gap-horizontal: var(--gap);
}
.adm-space-vertical {
  flex-direction: column;
}
.adm-space-vertical > .adm-space-item {
  margin-bottom: var(--gap-vertical);
}
.adm-space-vertical > .adm-space-item:last-child {
  margin-bottom: 0;
}
.adm-space-horizontal {
  flex-direction: row;
}
.adm-space-horizontal > .adm-space-item {
  margin-right: var(--gap-horizontal);
}
.adm-space-horizontal > .adm-space-item:last-child {
  margin-right: 0;
}
.adm-space-horizontal.adm-space-wrap {
  flex-wrap: wrap;
  margin-bottom: calc(var(--gap-vertical) * -1);
}
.adm-space-horizontal.adm-space-wrap > .adm-space-item {
  padding-bottom: var(--gap-vertical);
}
.adm-space.adm-space-block {
  display: flex;
}
.adm-space-align-center {
  align-items: center;
}
.adm-space-align-start {
  align-items: flex-start;
}
.adm-space-align-end {
  align-items: flex-end;
}
.adm-space-align-baseline {
  align-items: baseline;
}
.adm-space-justify-center {
  justify-content: center;
}
.adm-space-justify-start {
  justify-content: flex-start;
}
.adm-space-justify-end {
  justify-content: flex-end;
}
.adm-space-justify-between {
  justify-content: space-between;
}
.adm-space-justify-around {
  justify-content: space-around;
}
.adm-space-justify-evenly {
  justify-content: space-evenly;
}
.adm-space-justify-stretch {
  justify-content: stretch;
}
.adm-image-uploader {
  --cell-size: 80px;
  --gap: 12px;
  ---gap: var(--gap);
  ---gap-horizontal: var(--gap-horizontal, var(--gap));
  ---gap-vertical: var(--gap-vertical, var(--gap));
}
.adm-image-uploader-grid,
.adm-image-uploader-space {
  --gap: var(---gap);
  --gap-horizontal: var(---gap-horizontal);
  --gap-vertical: var(---gap-vertical);
}
.adm-image-uploader-cell {
  position: relative;
  width: var(--cell-size);
  height: var(--cell-size);
  border-radius: 4px;
  overflow: hidden;
}
.adm-image-uploader-cell-fail {
  border: red solid 1px;
  box-sizing: border-box;
}
.adm-image-uploader-cell-delete {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 0 12px;
  font-size: 8px;
  color: var(--adm-color-white);
  cursor: pointer;
}
.adm-image-uploader-cell-delete-icon {
  position: absolute;
  left: 4px;
  top: 3px;
}
.adm-image-uploader-cell-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--adm-color-white);
  background-color: rgba(50, 50, 51, 0.88);
}
.adm-image-uploader-cell-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  padding-top: 8px;
}
.adm-image-uploader-cell-mask-message {
  display: inline-block;
  padding: 6px 4px;
  font-size: var(--adm-font-size-4);
}
.adm-image-uploader-cell-image {
  width: var(--cell-size);
  height: var(--cell-size);
}
.adm-image-uploader-upload-button-wrap {
  position: relative;
}
.adm-image-uploader-upload-button-wrap .adm-image-uploader-upload-button {
  background-color: var(--adm-color-box);
  text-align: center;
  line-height: var(--cell-size);
  display: block;
}
.adm-image-uploader-upload-button-wrap .adm-image-uploader-upload-button-icon {
  color: var(--adm-color-weak);
  font-size: 32px;
}
.adm-image-uploader-upload-button-wrap .adm-image-uploader-input {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.adm-image-uploader .adm-image-uploader-gap-measure {
  position: absolute;
  left: 0;
  top: 0;
  height: var(--gap-horizontal);
  width: 0;
}
.adm-input {
  --font-size: var(--adm-font-size-9);
  --color: var(--adm-color-text);
  --placeholder-color: var(--adm-color-light);
  --text-align: left;
  --background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 24px;
  background-color: var(--background-color);
}
.adm-input-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.adm-input-element {
  flex: auto;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  color: var(--color);
  font-size: var(--font-size);
  line-height: 1.5;
  background: transparent;
  border: 0;
  outline: none;
  appearance: none;
  min-height: 1.5em;
  text-align: var(--text-align);
}
.adm-input-element::placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-input-element:-webkit-autofill {
  background-color: transparent;
}
.adm-input-element:read-only {
  cursor: default;
}
.adm-input-element:invalid {
  box-shadow: none;
}
.adm-input-element::-ms-clear {
  display: none;
}
.adm-input-element::-ms-reveal {
  display: none;
}
.adm-input-element::-webkit-search-cancel-button {
  display: none;
}
.adm-input-element::-webkit-search-decoration {
  display: none;
}
.adm-input-element:disabled {
  opacity: 1;
}
.adm-input-element[type='date'],
.adm-input-element[type='time'],
.adm-input-element[type='datetime-local'] {
  min-height: 1.5em;
}
.adm-input-element[type='search'] {
  -webkit-appearance: none;
}
.adm-input-element[readonly] {
  pointer-events: none;
}
.adm-input-clear {
  flex: none;
  margin-left: 8px;
  color: var(--adm-color-light);
  padding: 4px;
  cursor: pointer;
}
.adm-input-clear:active {
  color: var(--adm-color-weak);
}
.adm-input-clear .antd-mobile-icon {
  display: block;
  font-size: var(--adm-font-size-7);
}
.adm-passcode-input {
  position: relative;
  display: inline-block;
  --cell-size: 40px;
  --cell-gap: 6px;
  --dot-size: 10px;
  --border-color: var(--adm-color-border);
  --border-radius: 8px;
}
.adm-passcode-input-cell-container {
  display: inline-flex;
  vertical-align: top;
}
.adm-passcode-input-cell {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: var(--adm-font-size-10);
  width: var(--cell-size);
  height: var(--cell-size);
  background: var(--adm-color-background);
}
.adm-passcode-input:not(.adm-passcode-input-seperated) {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.adm-passcode-input:not(.adm-passcode-input-seperated) .adm-passcode-input-cell:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.adm-passcode-input:not(.adm-passcode-input-seperated).adm-passcode-input-focused {
  border-color: var(--adm-color-primary);
  box-shadow: 0 0 2px 0 var(--adm-color-primary);
  outline: none;
}
.adm-passcode-input:not(.adm-passcode-input-seperated).adm-passcode-input-error {
  border-color: var(--adm-color-danger);
  box-shadow: 0 0 2px 0 var(--adm-color-danger);
  animation: 100ms ease-in-out 0s 3 normal none running adm-shake-horizontal;
}
.adm-passcode-input.adm-passcode-input-seperated .adm-passcode-input-cell {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.adm-passcode-input.adm-passcode-input-seperated .adm-passcode-input-cell:not(:last-child) {
  margin-right: var(--cell-gap);
}
.adm-passcode-input.adm-passcode-input-seperated .adm-passcode-input-cell-focused {
  border-color: var(--adm-color-primary);
  box-shadow: 0 0 2px 0 var(--adm-color-primary);
}
.adm-passcode-input-seperated.adm-passcode-input-focused {
  outline: none;
}
.adm-passcode-input.adm-passcode-input-seperated.adm-passcode-input-error {
  animation: 100ms ease-in-out 0s 3 normal none running adm-shake-horizontal;
}
.adm-passcode-input.adm-passcode-input-seperated.adm-passcode-input-error .adm-passcode-input-cell {
  border-color: var(--adm-color-danger);
  box-shadow: 0 0 2px 0 var(--adm-color-danger);
}
.adm-passcode-input-cell-dot::before {
  content: '';
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 100%;
  background: var(--adm-color-text);
}
.adm-passcode-input-cell-caret::after {
  content: '';
  width: 2px;
  height: 1.1em;
  margin-left: 1px;
  background: var(--adm-color-primary);
  animation: 1s linear infinite adm-caret-blink;
}
.adm-passcode-input > .adm-passcode-input-native-input {
  position: absolute;
  left: -200vw;
  top: 0;
  display: block;
  width: 50px;
  height: 20px;
  opacity: 0.5;
}
@keyframes adm-shake-horizontal {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-4px);
  }
  20% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-1px);
  }
  40% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(-8px);
  }
  70% {
    transform: translateX(1px);
  }
  80% {
    transform: translateX(-5px);
  }
  90% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes adm-caret-blink {
  from {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.adm-radio {
  --icon-size: 22px;
  --font-size: var(--adm-font-size-9);
  --gap: 8px;
  display: inline-flex;
  vertical-align: text-bottom;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.adm-radio input[type='radio'] {
  display: none;
}
.adm-radio .adm-radio-icon {
  flex: none;
  border: 1px solid var(--adm-color-light);
  border-radius: var(--icon-size);
  box-sizing: border-box;
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--adm-color-text-light-solid);
}
.adm-radio .adm-radio-icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.adm-radio.adm-radio-block {
  display: flex;
}
.adm-radio.adm-radio-checked .adm-radio-icon {
  border-color: var(--adm-color-primary);
  background-color: var(--adm-color-primary);
}
.adm-radio.adm-radio-disabled {
  cursor: not-allowed;
}
.adm-radio.adm-radio-disabled .adm-radio-content {
  opacity: 0.4;
}
.adm-radio.adm-radio-disabled .adm-radio-icon {
  color: var(--adm-color-light);
  border-color: var(--adm-color-light);
  background-color: var(--adm-color-fill-content);
}
.adm-radio .adm-radio-custom-icon {
  font-size: var(--icon-size);
}
.adm-radio-content {
  flex: 0 1 auto;
  font-size: var(--font-size);
  padding-left: var(--gap);
}
.adm-segmented {
  --segmented-background: var(--adm-color-fill-content);
  --segmented-item-color: var(--adm-color-text-secondary);
  --segmented-item-selected-background: var(--adm-color-background);
  --segmented-item-selected-color: var(--adm-color-text);
  --segmented-item-disabled-color: var(--adm-color-weak);
  --transition-time-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline-block;
  padding: 2px;
  color: var(--segmented-item-color);
  background-color: var(--segmented-background);
  border-radius: 2px;
  transition: all 0.3s var(--transition-time-function);
}
.adm-segmented-group {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-items: flex-start;
  width: 100%;
}
.adm-segmented.adm-segmented-block {
  display: flex;
}
.adm-segmented.adm-segmented-block .adm-segmented-item {
  flex: 1;
  min-width: 0;
}
.adm-segmented-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s var(--transition-time-function);
}
.adm-segmented-item-selected {
  background-color: var(--segmented-item-selected-background);
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
  color: var(--segmented-item-selected-color);
}
.adm-segmented-item-label {
  min-height: 10px;
  padding: 0 11px;
  line-height: 28px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}
.adm-segmented-item-icon + * {
  margin-left: 6px;
}
.adm-segmented-item-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.adm-segmented-item-disabled {
  color: var(--segmented-item-disabled-color);
  cursor: not-allowed;
}
.adm-segmented-thumb {
  background-color: var(--segmented-item-selected-background);
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  padding: 4px 0;
}
.adm-segmented-thumb-motion-appear-active {
  transition: transform 0.3s var(--transition-time-function), width 0.3s var(--transition-time-function);
  will-change: transform, width;
}
/* ---- mixins part starts ---- */
.segmented-disabled-item {
  color: var(--segmented-item-disabled-color);
  cursor: not-allowed;
}
.segmented-item-selected {
  background-color: var(--segmented-item-selected-background);
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
}
.segmented-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}
/* ---- mixins part ends ---- */
.adm-step {
  --line-to-next-color: var(--adm-color-border);
  --icon-color: var(--adm-color-border);
  position: relative;
  z-index: 0;
}
.adm-step .adm-step-indicator {
  position: relative;
}
.adm-step .adm-step-indicator::after {
  content: '';
  position: absolute;
  z-index: 0;
  background-color: var(--line-to-next-color);
}
.adm-step .adm-step-indicator .adm-step-icon-container {
  position: absolute;
  z-index: 1;
  color: var(--icon-color);
}
.adm-step .adm-step-indicator .adm-step-icon-container > .antd-mobile-icon {
  display: block;
}
.adm-step:last-child .adm-step-indicator::after {
  display: none;
}
.adm-step-status-finish {
  --line-to-next-color: var(--adm-color-primary);
}
.adm-step-status-wait {
  --icon-color: var(--adm-color-border);
}
.adm-step-status-wait .adm-step-title {
  color: var(--adm-color-weak);
}
.adm-step-status-process {
  --icon-color: var(--adm-color-primary);
}
.adm-step-status-process .adm-step-title {
  color: var(--adm-color-primary);
}
.adm-step-status-finish {
  --icon-color: var(--adm-color-primary);
}
.adm-step-status-error {
  --icon-color: var(--adm-color-danger);
}
.adm-step-status-error .adm-step-title {
  color: var(--adm-color-danger);
}
.adm-steps {
  --title-font-size: var(--adm-font-size-main);
  --description-font-size: var(--adm-font-size-4);
  --indicator-margin-right: 0;
  --icon-size: 18px;
  width: 100%;
  box-sizing: border-box;
}
.adm-steps-horizontal {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}
.adm-steps-horizontal .adm-step {
  flex: 1;
}
.adm-steps-horizontal .adm-step .adm-step-indicator {
  width: 100%;
  height: 24px;
}
.adm-steps-horizontal .adm-step .adm-step-indicator::after {
  left: 50%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  width: 100%;
}
.adm-steps-horizontal .adm-step .adm-step-indicator .adm-step-icon-container {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.adm-steps-horizontal .adm-step-content {
  text-align: center;
  font-size: var(--description-font-size);
  padding: 2px 8px 0;
}
.adm-steps-horizontal .adm-step-content .adm-step-title {
  font-size: var(--title-font-size);
}
.adm-steps-horizontal .adm-step-content .adm-step-description {
  margin-top: 4px;
  color: var(--adm-color-weak);
}
.adm-steps-vertical {
  padding: 8px 16px;
}
.adm-steps-vertical .adm-step {
  display: flex;
  align-items: stretch;
}
.adm-steps-vertical .adm-step .adm-step-indicator {
  flex: none;
  width: 24px;
  margin-right: var(--indicator-margin-right);
}
.adm-steps-vertical .adm-step .adm-step-indicator::after {
  left: 50%;
  top: calc(var(--title-font-size) * 1.5 / 2);
  width: 1px;
  transform: translateX(-50%);
  height: 100%;
}
.adm-steps-vertical .adm-step .adm-step-indicator .adm-step-icon-container {
  top: calc(var(--title-font-size) * 1.5 / 2);
  left: 50%;
  transform: translate(-50%, -50%);
}
.adm-steps-vertical .adm-step:last-child .adm-step-content {
  padding-bottom: 0;
}
.adm-steps-vertical .adm-step .adm-step-content {
  flex: auto;
  padding-bottom: 24px;
}
.adm-steps-vertical .adm-step .adm-step-content .adm-step-title {
  font-size: var(--title-font-size);
  line-height: 1.5;
}
.adm-steps-vertical .adm-step .adm-step-content .adm-step-description {
  padding-top: 4px;
  font-size: var(--description-font-size);
  color: var(--adm-color-weak);
}
.adm-step-icon-container {
  font-size: var(--icon-size);
}
.adm-step-icon-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 4px;
}
.adm-tab-bar-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  min-height: 48px;
}
.adm-tab-bar-item {
  flex: 1;
  color: var(--adm-color-text-secondary);
  white-space: nowrap;
  padding: 4px 8px;
  width: min-content;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.adm-tab-bar-item-icon {
  font-size: 24px;
  height: 24px;
  line-height: 1;
}
.adm-tab-bar-item-title {
  font-size: var(--adm-font-size-2);
  line-height: 15px;
}
.adm-tab-bar-item-title-with-icon {
  margin-top: 2px;
}
.adm-tab-bar-item-active {
  color: var(--adm-color-primary);
}
.adm-tab-bar-icon-badge {
  --top: 6px;
}
.adm-tab-bar-title-badge {
  --right: -2px;
  --top: -2px;
}
.adm-text-area {
  --font-size: var(--adm-font-size-9);
  --color: var(--adm-color-text);
  --placeholder-color: var(--adm-color-light);
  --disabled-color: var(--adm-color-weak);
  --text-align: left;
  --count-text-align: right;
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.adm-text-area-element {
  font-family: var(--adm-font-family);
  resize: none;
  flex: auto;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  color: var(--color);
  font-size: var(--font-size);
  line-height: 1.5;
  background: transparent;
  border: 0;
  outline: none;
  appearance: none;
  min-height: 1.5em;
  text-align: var(--text-align);
}
.adm-text-area-element::placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-text-area-element:-webkit-autofill {
  background-color: transparent;
}
.adm-text-area-element:disabled {
  color: var(--disabled-color);
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: var(--disabled-color);
}
.adm-text-area-element:read-only {
  cursor: default;
}
.adm-text-area-element:invalid {
  box-shadow: none;
}
.adm-text-area-element::-ms-clear {
  display: none;
}
.adm-text-area-element-hidden {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
}
.adm-text-area-count {
  text-align: var(--count-text-align);
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-9);
  padding-top: 8px;
}
.adm-toast-mask .adm-toast-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.adm-toast-mask .adm-toast-main {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 204px;
  max-height: 70%;
  overflow: auto;
  color: white;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  pointer-events: all;
  font-size: var(--adm-font-size-7);
  line-height: 1.5;
  box-sizing: border-box;
  text-align: initial;
}
.adm-toast-mask .adm-toast-main-text {
  padding: 12px;
  min-width: 0;
}
.adm-toast-mask .adm-toast-main-icon {
  padding: 35px 12px;
  min-width: 150px;
}
.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
  text-align: center;
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
}
.adm-toast-loading {
  --size: 48px;
  margin: 0 auto 8px;
}
/* TabBar component with design tokens */

/* Increase the height of the tab bar */
.custom-tab-bar .adm-tab-bar-wrap {
  height: var(--tp-bottom-bar-height);
  justify-content: center;
  background-color: var(--tp-bg-primary);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

/* Adjust the icon and text alignment within each tab item */
.custom-tab-bar .adm-tab-bar-item {
  padding-top: var(--tp-space-sm);
}

/* Adjust the icon size */
.custom-tab-bar .adm-tab-bar-item .adm-tab-bar-item-icon {
  font-size: 24px;
  color: var(--tp-text-primary);
}

/* Adjust the font size of the tab titles */
.custom-tab-bar .adm-tab-bar-item .adm-tab-bar-item-title {
  font-size: var(--tp-text-md);
  margin-top: var(--tp-space-2xs);
  color: var(--tp-text-primary);
}

/* Active tab styling */
.custom-tab-bar .adm-tab-bar-item-active .adm-tab-bar-item-icon,
.custom-tab-bar .adm-tab-bar-item-active .adm-tab-bar-item-title {
  color: var(--tp-text-link);
}
/* LanguageSwitcher component with design tokens */
.language-switcher {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.language-picker-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--tp-space-xs) 0;
}

.language-native-name {
  font-weight: var(--tp-font-weight-medium);
  font-size: var(--tp-text-lg);
  color: var(--tp-text-primary);
}

.language-english-name {
  font-size: var(--tp-text-sm);
  color: var(--tp-text-secondary);
  margin-top: var(--tp-space-2xs);
}

.adm-picker-header .adm-picker-header-button {
  color: var(--tp-text-link);
  transition: opacity var(--tp-transition-normal);
}
/* NavBar component with design tokens */
.navbar-container {
  background-color: var(--tp-bg-primary);
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-content {
  padding: 0 var(--tp-space-md);
  height: var(--tp-navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: var(--tp-space-xs);
}

.navbar-icon-button {
  width: 32px;
  height: 32px;
  background-color: var(--tp-bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: background-color var(--tp-transition-fast);
}

.navbar-icon-button:hover {
  background-color: var(--tp-color-neutral);
}

.navbar-icon {
  width: 16px;
  height: 16px;
  color: var(--tp-text-secondary);
}

.navbar-icon-dark {
  color: var(--tp-text-primary);
}

.navbar-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: var(--tp-space-xs);
}
/* MobileMainLayout.css */
:root {
  --tp-navbar-height: 60px;
  --tp-footer-height: 0px;
}

.mobile-layout-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--tp-bg-primary);
  position: relative;
  overflow: hidden;
}

.mobile-layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--tp-navbar-height);
}

.mobile-layout-content {
  flex: 1;
  padding-top: var(--tp-navbar-height);
  padding-bottom: var(--tp-footer-height);
  overflow-x: hidden;
  overflow-y: auto;
  will-change: transform;
  transition: padding-bottom 0.3s ease;
}

.mobile-layout-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
/* SplashScreen component with design tokens */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9fe870; /* Explicitly set the primary color */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--tp-transition-normal);
}

.splash-screen-animation {
  width: 256px;
  height: 256px;
  transform-origin: center;
}

.splash-screen-animation-container {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .splash-screen-animation {
    width: 256px;
    height: 256px;
  }
}

/* iOS safe area handling */
@supports (padding-top: env(safe-area-inset-top)) {
  .splash-screen {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}
.global-loading-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999; /* Increased z-index */
  background: rgba(255, 0, 0, 0); /* Temporary red background for debugging */
  pointer-events: none;
  display: flex;
  justify-content: center;
  min-height: 12px; /* Ensure container has height */
  max-height: 12px;
  padding-left: 4px;
  padding-right: 4px;
}

.global-loading-lottie-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Full width of parent container */
  height: 60px; /* Increased height for better visibility */
  background: rgba(
    0,
    255,
    0,
    0.2
  ); /* Temporary green background for debugging */
  border: 2px solid red; /* Temporary border for debugging */
}

.global-loading-lottie {
  /*flex-shrink: 0; !* Prevent shrinking *!*/
}

.global-loading-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1; /* Behind Lottie, only shows if Lottie fails */
}

.global-loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(159, 232, 112, 0.3);
  border-top: 2px solid #9fe870;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .global-loading-bar-container {
    padding-top: 72px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .global-loading-lottie-container {
    width: 32px;
    height: 32px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .global-loading-lottie {
    animation: none;
  }

  .global-loading-bar-container {
    transition: none;
  }
}
/* SteppedFlowLayout component with design tokens */
.stepped-flow-container {
  display: flex;
  flex-direction: column;
  height: var(--tp-inner-container-height);
}
.stepped-flow-container-without-bottom-bar {
  display: flex;
  flex-direction: column;
  height: var(--tp-inner-container-height-without-bottom-bar);
}

.steps-header {
  position: fixed;
  top: var(--tp-navbar-height);
  left: 0;
  right: 0;
  z-index: 40;
  padding: var(--tp-space-md);
  background-color: var(--tp-bg-primary);
  transition: box-shadow 0.3s ease;
  box-shadow: none;
}

.steps-header.with-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.content-container {
  position: absolute;
  top: calc(
    var(--tp-navbar-height) + 112px
  ); /* Navbar + steps with reduced margin */
  bottom: calc(var(--tp-bottom-bar-height) + 16px);
  left: 0;
  right: 0;
  overflow: hidden;
}

.content-container-without-bottom-bar {
  position: absolute;
  top: calc(
    var(--tp-navbar-height) + 112px
  ); /* Navbar + steps with reduced margin */
  bottom: calc(16px);
  left: 0;
  right: 0;
  overflow: hidden;
}

.content-container-authenticated {
  position: absolute;
  top: calc(
    var(--tp-navbar-height) + 112px
  ); /* Navbar + steps with reduced margin */
  bottom: calc(var(--tp-bottom-bar-height) + var(--tp-bottom-bar-height));
  left: 0;
  right: 0;
  overflow: hidden;
}

.content-container-authenticated-without-bottom-bar {
  position: absolute;
  top: calc(
    var(--tp-navbar-height) + 112px
  ); /* Navbar + steps with reduced margin */
  bottom: calc(var(--tp-bottom-bar-height)); /* there was +16px not sure why  */
  left: 0;
  right: 0;
  overflow: hidden;
}

.content-relative-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.step-content-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*padding: 0 var(--tp-space-md);*/
  overflow-y: auto; /* Only allow scrolling here if needed */
  -webkit-overflow-scrolling: touch;
}

.step-content-inner {
  /*padding-top: var(--tp-space-md);*/
  /*padding-bottom: var(--tp-space-xl);*/
  width: 100%;
  height: 100%;
}

.action-bar-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--tp-bg-primary);
  /*box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);*/
}
/* Button component with design tokens */
.adm-button {
  height: var(--tp-button-height);
  border-radius: var(--tp-button-radius);
  font-family: var(--adm-font-family);
  font-weight: var(--tp-font-weight-bold);
  border: none;
  font-size: var(--tp-text-lg);
  transition: opacity var(--tp-transition-fast);
}

/* Primary button with green background */
.adm-button-primary {
  background: var(--tp-color-primary);
  color: var(--tp-text-on-primary);
}

.adm-button-secondary {
  background: var(--tp-color-secondary);
  color: var(--tp-text-on-primary);
}

.adm-button-secondary-neutral {
  background: var(--tp-color-neutral);
  color: var(--tp-text-on-primary);
}

.adm-button-tertiary {
  background: var(--tp-color-tertiary);
  color: var(--tp-text-on-primary);
}

/* Remove default button hover overlay */
.adm-button::before {
  display: none;
}

/* Add hover effect */
.adm-button:hover {
  opacity: 0.9;
}

/* Add active effect */
.adm-button:active {
  opacity: 0.8;
}
/* BottomActionBar component with design tokens */
.action-bar-container {
  position: fixed;
  left: 0;
  right: 0;
  padding: var(--tp-space-md) var(--tp-space-xl);
  background-color: var(--tp-bg-primary);
  /*box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);*/
  z-index: 50;
}

.action-bar-with-session {
  bottom: var(--tp-bottom-bar-height);
}

.action-bar-without-session {
  bottom: 0;
}

.action-buttons {
  display: flex;
  gap: var(--tp-space-md);
  justify-content: space-between;
}
/* FormItem component with design tokens */
.custom-form-label {
  margin-bottom: var(--tp-space-xs);
  display: inline-block;
  font-size: var(--tp-text-lg);
  font-weight: var(--tp-font-weight-medium);
  color: var(--tp-text-primary);
}

.step-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  /*padding: var(--tp-space-xs) 0;*/
}
/* Radio Overrides with design tokens */
.adm-radio {
  --icon-size: 20px;
  --font-size: var(--tp-text-lg);
  --gap: var(--tp-space-xs);
  padding: var(--tp-space-md);
  border-radius: var(--tp-radius-md);
  background: var(--tp-bg-primary);
  margin: var(--tp-space-xs) 0;
  box-shadow: var(--tp-shadow-sm);
  transition:
    background-color var(--tp-transition-fast),
    border-color var(--tp-transition-fast);
}

.adm-radio-checked {
  background: rgba(159, 232, 112, 0.1); /* Using primary color with opacity */
}

.adm-radio-content {
  font-weight: var(--tp-font-weight-medium);
  color: var(--tp-text-primary);
}

.adm-radio .adm-radio-icon {
  border-color: var(--tp-text-disabled);
}

.adm-radio-checked .adm-radio-icon {
  background: var(--tp-color-primary);
  border-color: var(--tp-color-primary);
}

.radio-item-custom {
  border: 1px solid var(--tp-border-primary);
  border-radius: var(--tp-radius-full);
  transition: border-color var(--tp-transition-fast);
}

.radio-item-custom .adm-radio {
  padding: 0;
}

.radio-item-custom .adm-radio-icon {
  margin-left: auto;
  margin-right: 0;
}

/* Custom checked state styles */
.radio-item-custom.adm-radio-checked {
  border-color: var(--tp-color-primary);
}

/* Remove default padding from radio content */
.radio-item-custom .adm-radio-content {
  padding: 0;
}

/* New styles for RadioOption component */
.radio-container {
  position: relative;
  border-radius: var(--tp-radius-md);
  overflow: hidden;
}

.radio-selected {
  background-color: var(--selected-bg-color, var(--tp-bg-tertiary));
}

.radio-unselected {
  background-color: var(--unselected-bg-color, var(--tp-bg-primary));
}

.radio-icon {
  margin-right: var(--tp-space-xs);
  color: var(--tp-text-primary);
}
/* InputTextArea component with design tokens */
.custom-input-textarea {
  border: none;
  border-radius: var(--tp-radius-sm);
  padding: var(--tp-space-xs);
  font-size: var(--tp-text-lg);
  width: auto;
  min-height: 102px;
  box-shadow: inset 0 0 0 1px var(--tp-border-primary);
  transition: box-shadow var(--tp-transition-fast);
}

.custom-input-textarea:has(.adm-text-area-element:focus) {
  box-shadow: inset 0 0 0 3px var(--tp-border-focus);
}

.custom-input-textarea::placeholder {
  color: var(--tp-text-secondary);
}

.adm-text-area-element {
  font-size: var(--tp-text-lg);
  color: var(--tp-text-primary);
  line-height: var(--tp-line-height-normal);
}
/* ProductDetailsCard component styles - using design tokens */
.product-card {
  background-color: var(--tp-bg-card);
  border-radius: var(--tp-radius-md);
  padding: var(--tp-space-md);
  box-shadow: var(--tp-shadow-md);
}

.product-title {
  font-weight: var(--tp-font-weight-semibold);
  font-size: var(--tp-text-lg);
  line-height: var(--tp-line-height-tight);
  margin: 0;
}

.product-images-container {
  display: flex;
  overflow-x: auto;
  gap: var(--tp-space-xs);
  padding: var(--tp-space-2xs) 0;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.image-placeholder {
  width: 100px;
  height: 100px;
  border-radius: var(--tp-radius-sm);
  background-color: var(--tp-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.placeholder-icon {
  color: var(--tp-text-disabled);
}

.product-image {
  border-radius: var(--tp-radius-sm);
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.product-image-loading {
  opacity: 0.5;
}

.product-description {
  margin: 0;
  font-size: var(--tp-text-md);
  line-height: var(--tp-line-height-normal);
  color: var(--tp-text-secondary);
}

.product-price {
  font-weight: var(--tp-font-weight-semibold);
  font-size: var(--tp-text-2xl);
  line-height: var(--tp-line-height-tight);
  color: var(--tp-text-primary);
  margin: 0;
}

.product-space {
  width: 100%;
}

.product-space > div {
  gap: var(--tp-space-sm);
}
/* Input component with design tokens */
.input-with-button-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--tp-border-primary);
  border-radius: var(--tp-radius-sm);
  overflow: hidden;
  transition:
    border var(--tp-transition-fast),
    box-shadow var(--tp-transition-fast);
}

.input-with-button-wrapper:has(.adm-input-element:focus) {
  border: 1px solid var(--tp-border-focus);
  box-shadow: inset 0 0 0 2px var(--tp-border-focus);
  z-index: 2;
}

.input-with-button-wrapper:has(.adm-input-element:focus) button.input-button {
  border-left: 1px solid var(--tp-border-primary);
  box-shadow: inset 0 0 0 2px var(--tp-border-focus);
  z-index: 2;
}

.input-button {
  min-width: fit-content;
  padding: 0 var(--tp-space-md);
  height: calc(var(--tp-input-height) + 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--tp-border-primary);
  border-radius: 0 var(--tp-radius-sm) var(--tp-radius-sm) 0;
  background-color: var(--tp-bg-primary);
  color: var(--tp-text-primary);
  z-index: 1;
}

.input-with-button-wrapper:has(.adm-input-element:focus) .adm-button-primary {
  background-color: var(--tp-color-neutral);
  border-left: 3px solid var(--tp-border-focus);
}

.custom-input {
  border: none;
  padding: var(--tp-space-xs);
  font-size: var(--tp-text-lg);
  width: auto;
  height: var(--tp-input-height);
  box-shadow: none;
  flex: 1;
  border-radius: 0;
}

.custom-input.with-button {
  border: none;
}

.custom-input::placeholder {
  color: var(--tp-text-secondary);
}

.adm-input-element {
  font-size: var(--tp-text-lg);
}
/* ProductTile component styles - using design tokens */
.product-tile {
  background-color: var(--tp-bg-card);
  border-radius: var(--tp-radius-md);
  padding-left: var(--tp-space-md);
  padding-right: var(--tp-space-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.product-tile:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-tile-content {
  display: flex;
  align-items: flex-start;
  gap: var(--tp-space-md);
  width: 100%;
}

.product-tile-image-container {
  position: relative;
  flex-shrink: 0;
}

.product-tile-image {
  border-radius: var(--tp-radius-sm);
  object-fit: cover;
  width: 80px;
  height: 80px;
}

.product-tile-image-loading {
  opacity: 0.5;
}

.product-tile-image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--tp-radius-sm);
  background-color: var(--tp-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.placeholder-icon {
  color: var(--tp-text-disabled);
}

.product-tile-details {
  flex: 1;
  min-width: 0; /* Allows text to truncate properly */
}

.product-tile-details-space {
  width: 100%;
  gap: var(--tp-space-xs) !important;
}

.product-tile-title {
  font-weight: var(--tp-font-weight-semibold);
  font-size: var(--tp-text-md);
  line-height: var(--tp-line-height-tight);
  color: var(--tp-text-primary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tile-description {
  font-size: var(--tp-text-sm);
  line-height: var(--tp-line-height-normal);
  color: var(--tp-text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tile-price {
  font-weight: var(--tp-font-weight-semibold);
  font-size: var(--tp-text-lg);
  line-height: var(--tp-line-height-tight);
  color: var(--tp-text-primary);
  margin: 0;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--tp-bg-secondary);
  border-top: 2px solid var(--tp-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .product-tile {
    padding-left: var(--tp-space-md);
    padding-right: var(--tp-space-md);
  }

  .product-tile-content {
    gap: var(--tp-space-sm);
  }

  .product-tile-image,
  .product-tile-image-placeholder {
    width: 60px;
    height: 60px;
  }

  .product-tile-title {
    font-size: var(--tp-text-sm);
  }

  .product-tile-description {
    font-size: var(--tp-text-xs);
  }

  .product-tile-price {
    font-size: var(--tp-text-md);
  }
}
/* HOC createStandardWizard Styles with design tokens */
.wizard-auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--tp-space-md);
  height: 100%;
  background-color: var(--tp-bg-primary);
}

.wizard-auth-message {
  color: var(--tp-color-danger);
  font-size: var(--tp-text-lg);
  font-weight: var(--tp-font-weight-medium);
  text-align: center;
  padding: var(--tp-space-md);
  border-radius: var(--tp-radius-md);
  background-color: var(--tp-bg-secondary);
  box-shadow: var(--tp-shadow-sm);
}
/* OTPInput component with design tokens */
.otp-container {
  padding-left: 3px;
}

.otp-input {
  margin-bottom: var(--tp-space-md);
}

.otp-input-disabled {
  opacity: 0.5;
}

.otp-message {
  margin-top: var(--tp-space-xs);
  font-size: var(--tp-text-md);
  color: var(--tp-text-secondary);
}

.otp-error-container {
  display: flex;
  flex-direction: column;
  gap: var(--tp-space-xs);
  margin-top: var(--tp-space-xs);
}
