
  

  
  

  
  
  
  
    


@layer base {
  
  body, :host {
    /* Color */
    --grey-50: #FAFAFA;
--grey-100: #F5F5F5;
--grey-200: #E5E5E5;
--grey-300: #D4D4D4;
--grey-400: #A3A3A3;
--grey-500: #737373;
--grey-600: #525252;
--grey-700: #404040;
--grey-800: #262626;
--grey-900: #171717;
--red-50: #FEF2F2;
--red-100: #FEE2E2;
--red-200: #FECACA;
--red-300: #FCA5A5;
--red-400: #F87171;
--red-500: #EF4444;
--red-600: #DC2626;
--red-700: #B91C1C;
--red-800: #991B1B;
--red-900: #7F1D1D;
--blue-50: #EFF6FF;
--blue-100: #DBEAFE;
--blue-200: #BFDBFE;
--blue-300: #93C5FD;
--blue-400: #60A5FA;
--blue-500: #3B82F6;
--blue-600: #2563EB;
--blue-700: #1D4ED8;
--blue-800: #1E40AF;
--blue-900: #1E3A8A;
--lime-50: #F7FEE7;
--lime-100: #ECFCCB;
--lime-200: #D9F99D;
--lime-300: #BEF264;
--lime-400: #A3E635;
--lime-500: #84CC16;
--lime-600: #65A30D;
--lime-700: #4D7C0F;
--lime-800: #3F6212;
--lime-900: #365314;
--pink-50: #FDF2F8;
--pink-100: #FCE7F3;
--pink-200: #FBCFE8;
--pink-300: #F9A8D4;
--pink-400: #F472B6;
--pink-500: #EC4899;
--pink-600: #DB2777;
--pink-700: #BE185D;
--pink-800: #9D174D;
--pink-900: #831843;
--teal-50: #F0FDFA;
--teal-100: #CCFBF1;
--teal-200: #99F6E4;
--teal-300: #5EEAD4;
--teal-400: #2DD4BF;
--teal-500: #14B8A6;
--teal-600: #0D9488;
--teal-700: #0F766E;
--teal-800: #115E59;
--teal-900: #134E4A;
--green-50: #ECFDF5;
--green-100: #D1FAE5;
--green-200: #A7F3D0;
--green-300: #6EE7B7;
--green-400: #34D399;
--green-500: #10B981;
--green-600: #059669;
--green-700: #047857;
--green-800: #065F46;
--green-900: #064E3B;
--purple-50: #F5F3FF;
--purple-100: #EDE9FE;
--purple-200: #DDD6FE;
--purple-300: #C4B5FD;
--purple-400: #A78BFA;
--purple-500: #8B5CF6;
--purple-600: #7C3AED;
--purple-700: #6D28D9;
--purple-800: #5B21B6;
--purple-900: #4C1D95;
--yellow-50: #FFFBEB;
--yellow-100: #FEF3C7;
--yellow-200: #FDE68A;
--yellow-300: #FCD34D;
--yellow-400: #FBBF24;
--yellow-500: #F59E0B;
--yellow-600: #D97706;
--yellow-700: #B45309;
--yellow-800: #92400E;
--yellow-900: #78350F;
--SAF-green: #358e46;
--Background: #171717;
--Foreground: #262626;
--Accent: #FFCB13;
--Light: #E9E9E9;
--Blue1: #0012fd1a;
--Blue2: #005FFA17;
--Blue3: #006FFF3C;
--Blue4: #006DFF59;
--Blue5: #0675FD6E;
--Blue6: #1D81FF80;
    /* Fonts */
    --font-opensans: 'Open Sans',sans-serif;
--font-inter: 'Inter',sans-serif;

    /* Font size */
    --font-size-xxs: 0.625rem;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
--font-size-4xl: 2.25rem;
--font-size-5xl: 3rem;
    /* Font weight */
    --font-weight-thin: 100;
--font-weight-lighter: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-normal: 500;
--font-weight-bold: 700;
--font-weight-semi-bold: 600;
--font-weight-bolder: 800;
--font-weight-black: 900;
    /* Shadows */
    --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-base:  0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
--shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.25);
--shadow-2xl:  0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}


    .eaEHSg {
      gap:1rem;
      color:var(--Light, #E9E9E9);
      width:100%;
      align-items:center;
      font-family:'Open Sans';
      justify-content:start;
      background-color:var(--Background, #171717);
    }

    .fzhSFu {
      color:var(--Light, #E9E9E9);
      width:100%;
      height:4rem;
      z-index:99;
      position:fixed;
      align-items:center;
      padding-left:1rem;
      padding-right:1rem;
      justify-content:center;
      background-color:var(--Background, #171717);
      border-bottom-color:#e9e9e952;
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .bqsOhG {
      color:inherit;
      font-size:var(--font-size-2xl);
      font-weight:var(--font-weight-semi-bold);
    }

    .cPZATh {
      color:inherit;
      font-size:var(--font-size-base);
      max-width:16rem;
      font-weight:var(--font-weight-semi-bold);
    }

    .eISSQZ {
      color:inherit;
      font-size:var(--font-size-lg);
      font-weight:var(--font-weight-light);
    }

    .bIWzOF {
      width:8rem;
      height:8rem;
      position:relative;
      align-items:center;
      border-radius:8px;
      justify-content:center;
    }

    .cuxehT {
      cursor:pointer;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      border-radius:6px;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:center;
    }

    .cVQuQz {
      color:inherit;
      font-size:var(--font-size-lg);
      font-weight:var(--font-weight-semi-bold);
    }

    .euEReu {
      width:3rem;
      height:2rem;
      position:relative;
      align-items:start;
      justify-content:start;
    }

    .bPXsvO {
      width:100%;
      max-width:50rem;
    }

    .cTaYaR {
      gap:1rem;
    }

    .eyAmaz {
      width:100%;
      height:100%;
    }

    .mAcXG {
      width:100%;
      display:inline-block;
      flex-wrap:wrap;
      font-size:var(--font-size-lg);
      text-align:left;
      font-weight:var(--font-weight-normal);
      white-space:normal;
    }

    .GqxuY {
      gap:1rem;
      width:100%;
      position:relative;
      translate:0 -3rem;
    }

    .bIePfz {
      height:3rem;
      transition:all 300ms ease 0ms normal;
    }

    .bIePfz.rotate90 {
      rotate:z 90deg;
    }

    .nKNUD {
      color:inherit;
      display:inline-block;
      font-size:var(--font-size-xs);
    }

    .eQEPIu {
      color:inherit;
      display:inline-block;
      font-weight:var(--font-weight-regular);
    }

    .dPGqSh {
      gap:1rem;
      width:100%;
      position:relative;
      box-shadow:1px 4px 8px 0px #00000044;
      align-items:center;
      padding-top:1rem;
      padding-left:1rem;
      border-radius:8px;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:1rem;
      justify-content:space-between;
    }

    .SITXE {
      width:100%;
      height:100vh;
      z-index:999;
      position:fixed;
      translate:0 0px;
      overflow-x:hidden;
      overflow-y:scroll;
      transition:all 300ms ease 0ms normal;
      align-items:center;
      padding-top:1rem;
      padding-left:1rem;
      border-radius:8px;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:start;
      background-color:var(--Foreground, #262626);
    }

    .SITXE.ishidden {
      position:fixed;
      translate:0 100%;
    }

    .maqGs {
      width:100%;
      align-items:end;
      justify-content:center;
    }

    .dhzAjd {
      gap:1rem;
      width:100%;
      position:relative;
      box-shadow:1px 4px 8px 0px #00000044;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      border-radius:8px;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:space-between;
    }

    .dlRDYz {
      gap:0.5rem;
      width:100%;
      position:relative;
      border-radius:8px;
    }

    .cuskIy {
      gap:0.5rem;
      width:100%;
      flex-grow:1;
      max-width:50rem;
      box-shadow:1px 2px 8px 0px #0000003b;
      overflow-x:clip;
      overflow-y:clip;
      align-items:start;
      padding-top:1rem;
      padding-left:1rem;
      border-radius:8px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:1rem;
      justify-content:start;
      background-color:var(--Foreground, #262626);
    }

    .fdwHSi {
      font-size:inherit;
      font-family:inherit;
      font-weight:var(--font-weight-semi-bold);
    }

    .ZawrX {
      color:var(--Light, #E9E9E9);
      width:100%;
      height:100%;
    }

    .dFRocG {
      gap:1rem;
      flex:1;
      height:100%;
      align-items:start;
      flex-direction:column;
      justify-content:space-between;
    }

    .dStNBf {
      width:100%;
      height:100vh;
      z-index:999;
      position:absolute;
      align-items:center;
      padding-top:1rem;
      padding-left:1rem;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:center;
      background-color:#0000004a;
    }

    .cUdLhU {
      width:2rem;
      height:2rem;
      align-items:center;
      padding-left:0.5rem;
      border-radius:8px;
      padding-right:0.5rem;
      justify-content:center;
      background-color:var(--grey-200, #E5E5E5);
    }

    .dVeNHx {
      gap:1rem;
      width:100%;
      font-size:var(--font-size-xl);
      max-width:50rem;
      min-height:10rem;
      align-items:center;
      padding-top:1rem;
      padding-left:1rem;
      border-radius:8px;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:start;
      background-color:var(--grey-100, #F5F5F5);
    }

    .vSSmT {
      width:100%;
      align-items:center;
      flex-direction:row;
      justify-content:space-between;
    }

    .dLtuwH {
      width:100%;
      flex-direction:row;
    }

    .dVhNFq {
      color:var(--SAF-green, #358e46);
      font-size:inherit;
      font-family:inherit;
      font-weight:var(--font-weight-bold);
    }

    .bSjeHm {
      flex:1;
      font-size:inherit;
      text-align:left;
      font-family:inherit;
      font-weight:inherit;
    }

    .bBqaVe {
      width:100%;
      height:100vh;
      align-items:center;
      justify-content:center;
    }

    .eHXpiY {
      height:3rem;
    }

    .bctlvd {
      top:1rem;
      left:1rem;
      width:3rem;
      height:3rem;
      z-index:1;
      position:absolute;
      box-shadow:1px 4px 8px 0px #00000044;
      align-items:center;
      padding-left:0.8rem;
      border-radius:100%;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:0.8rem;
      justify-content:center;
    }

    .eeLuyS {
      width:25rem;
      padding-top:1rem;
      padding-left:1rem;
      padding-right:1rem;
      padding-bottom:1rem;
    }

    .cgcNcw {
      align-items:center;
      justify-content:center;
    }

    .bksJxI {
      gap:1rem;
      width:100%;
      flex-wrap:wrap;
      align-items:center;
      padding-top:5rem;
      padding-left:1rem;
      padding-right:1rem;
      flex-direction:column;
      padding-bottom:1rem;
      justify-content:start;
    }

    .dNlOzN {
      gap:1rem;
      flex:1;
      width:100%;
      position:relative;
      box-shadow:1px 4px 8px 0px #00000044;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      border-radius:8px;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:0.5rem;
      flex-direction:column;
      padding-bottom:0.5rem;
      justify-content:space-between;
    }

    .ckTyMk {
      color:inherit;
      font-size:var(--font-size-xl);
      font-weight:var(--font-weight-semi-bold);
    }

    .jRglx {
      left:1rem;
      width:4rem;
      bottom:1rem;
      height:4rem;
      z-index:9;
      position:fixed;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      border-radius:100%;
      outline-color:var(--Accent, #E1A200);
      outline-style:solid;
      outline-width:2px;
      padding-right:0.5rem;
      padding-bottom:0.5rem;
      justify-content:center;
      background-color:var(--Background, #171717);
    }

    .biGPhS {
      color:#ffffff;
      width:100%;
      height:100%;
      rotate:z -90deg;
    }

    .eJfNpG {
      gap:0.5rem;
      width:100%;
      transition:all 3000ms ease 0ms normal;
    }

    .bElazC {
      width:100%;
      height:100%;
      z-index:;
      position:absolute;
      transition:all 300ms ease 0ms normal;
      align-items:center;
      justify-content:center;
      background-color:var(--grey-800, #262626);
    }

    .bshXXV {
      gap:1rem;
      color:var(--Light, #E9E9E9);
      width:100%;
      align-items:center;
      padding-top:1rem;
      border-radius:8px;
      padding-bottom:1rem;
      justify-content:start;
      background-color:var(--Foreground, #262626);
    }

    .ffcvcQ {
      width:2px;
      height:100%;
      background-color:#ffffff;
    }

    .fDTngc {
      gap:1rem;
      display:flex;
      align-items:center;
      flex-direction:column;
      justify-content:start;
    }

    .eINuHW {
      color:var(--Accent, #FFCB13);
      width:5rem;
    }

    .tcXjo {
      width:10rem;
      align-items:center;
      justify-content:start;
    }

    .bnJWAS {
      gap:1rem;
      color:#ffffff;
      width:100%;
      align-items:center;
      font-weight:var(--font-weight-bold);
      flex-direction:row;
      justify-content:center;
    }