
  

  
  

  
  
  
  
    


@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;
--text-light: black;
--text-dark: var(--grey-50);
--bg-light: var(--grey-50);
--bg-dark: black;
--text-grey: var(--grey-500);
--bg-grey-light: #eaeaea;
--bg-grey-dark: #151515;
--brand-orange: #ee822f;
--brand-red: #910029;
    /* Fonts */
    --font-geologica: 'Geologica',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 */
    --border-radius: 1.25rem;
--max-container-width: 52rem;
--global-padding: 1.25rem;
--section-spacing: 1rem;
--container-spacing: 2rem;
    /* 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;
    }
  }
}

      
  .OXzXw {
    flex:1;
  color:var(--text);
  display:flex;
  background:var(--background);
  font-family:Geologica;
  flex-direction:column;
  }
      

      
  .OXzXw.nonmain::before {
    height:4rem;
  content:"";
  }
      


  .OXzXw::after {
    height:4.5rem;
  content:"";
  }
      

        
      
      
  
      

      
        
      
      
  
      

      
        
      
      
  .fGjHoN {
    color:var(--text);
  font-weight:var(--font-weight-regular);
  line-height:1.3;
  }
      

      
        
      
      
  .Account\:KrQ_DjKRY8W1H1VMwK-i9 {
    transition:opacity 300ms ease 300ms , translate 1s linear(0 0%, 0.0072 0.7375%, 0.0301 1.6224%, 0.121 3.5398%, 0.6871 11.3569%, 0.9047 15.1917%, 0.9865 17.2566%, 1.0443 19.3215%, 1.0824 21.5339%, 1.0942 22.7139%, 1.1015 24.0413%, 1.1035 25.0737%, 1.1031 25.9587%, 1.1 27.1386%, 1.0938 28.4661%, 1.0315 36.8732%, 1.0079 41.0029%, 0.9951 44.8378%, 0.9915 46.9027%, 0.9895 49.2625%, 0.9893 51.3274%, 0.9902 53.6873%, 0.9993 66.6667%, 1.0011 74.6313%, 0.9999 100%) 300ms;
  }
      

      
  .Account\:KrQ_DjKRY8W1H1VMwK-i9 {
    @starting-style {
            opacity:0;
  translate:0 100% 0;
          }
  }
      

        
      
      
  .erIptJ {
    font-size:clamp(var(--font-size-2xl), 3vw, var(--font-size-4xl));
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .Account\:LEN8MhR2-UpseIydHJnAE {
    transition:opacity 300ms ease 200ms , translate 1s linear(0 0%, 0.0072 0.7375%, 0.0301 1.6224%, 0.121 3.5398%, 0.6871 11.3569%, 0.9047 15.1917%, 0.9865 17.2566%, 1.0443 19.3215%, 1.0824 21.5339%, 1.0942 22.7139%, 1.1015 24.0413%, 1.1035 25.0737%, 1.1031 25.9587%, 1.1 27.1386%, 1.0938 28.4661%, 1.0315 36.8732%, 1.0079 41.0029%, 0.9951 44.8378%, 0.9915 46.9027%, 0.9895 49.2625%, 0.9893 51.3274%, 0.9902 53.6873%, 0.9993 66.6667%, 1.0011 74.6313%, 0.9999 100%) 200ms;
  }
      

      
  .Account\:LEN8MhR2-UpseIydHJnAE {
    @starting-style {
            opacity:0;
  translate:0 100% 0;
          }
  }
      

        
      
      
  .bijQMW {
    background:var(--bg);
  padding-top:var(--global-padding);
  padding-left:var(--global-padding);
  padding-right:var(--global-padding);
  padding-bottom:var(--global-padding);
  border-top-left-radius:var(--border-radius);
  border-top-right-radius:var(--border-radius);
  border-bottom-left-radius:var(--border-radius);
  border-bottom-right-radius:var(--border-radius);
  }
      

      
        
      
      
  .XAHvb {
    top:1rem;
  left:1rem;
  display:flex;
  row-gap:.5rem;
  z-index:99999;
  position:fixed;
  column-gap:.5rem;
  flex-direction:row;
  }
      

      
        
      
      
  .bqVXiJ {
    color:var(--text);
  cursor:pointer;
  display:flex;
  row-gap:.25rem;
  background:var(--background);
  box-shadow:1px 1px 0px  #ffffff21 inset, 0px 0px 0px 1px #ffffff0a inset, -1px -1px 0px  #ffffff0d inset;
  column-gap:.25rem;
  transition:background 300ms ease  , color 300ms ease  , scale 300ms ease  , padding 300ms ease;
  align-items:center;
  padding-top:.5rem;
  padding-left:1rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:.5rem;
  justify-content:center;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-left-radius:30px;
  border-bottom-right-radius:30px;
  }
      

      
  .bqVXiJ.round {
    padding-left:.5rem;
  padding-right:.5rem;
  border-top-left-radius:100%;
  border-top-right-radius:100%;
  border-bottom-left-radius:100%;
  border-bottom-right-radius:100%;
  }
      


  .bqVXiJ.not-touch-device:hover {
    background:var(--hover);
  }
      


  .bqVXiJ:active {
    scale:.9 .9 1;
  }
      


  .bqVXiJ.force-active {
    color:var(--text-active);
  background:var(--active);
  }
      


  .bqVXiJ.loading {
    color:#00000000;
  }
      


  .bqVXiJ:disabled {
    pointer-events:none;
  }
      

        
      
      
  .boYEVv {
    row-gap:.2rem;
  column-gap:.2rem;
  flex-direction:row;
  }
      

      
        
      
      
  .eAxkYj {
    width:var(--size);
  height:var(--size);
  animation:1s ease var(--delay) infinite normal both running animation-egOQwc;
  background:var(--Color);
  border-top-left-radius:100%;
  border-top-right-radius:100%;
  border-bottom-left-radius:100%;
  border-bottom-right-radius:100%;
  }
      

      
        
                  @keyframes animation-egOQwc {
                    
                        0% {
                          scale: 0;
                        }
                        

                        50% {
                          scale: 1;
                        }
                        

                        100% {
                          scale: 0;
                        }
                        
                  }
                  
      
      
  .button-base\:dUgAyqpbBxCY8hIsAjnaV {
    top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  display:flex;
  position:absolute;
  align-items:center;
  justify-content:center;
  }
      

      
        
      
      
  .dzcqCa {
    width:fit-contents;
  height:fit-contents;
  border-radius:inherit;
  }
      

      
        
      
      
  .eEDRzT {
    scale:2.85;
  width:fit-contents;
  height:fit-contents;
  opacity:var(--opacity);
  position:absolute;
  min-width:100%;
  translate:var(--offset-left) var(--offset-top);
  background:radial-gradient(closest-side, var(--ripple-pressed-color, #e3e2e330) max(100% - 30px, 65%), transparent 100%);
  min-height:100%;
  transition:scale 800ms cubic-bezier(0.4, 0.5, 0.2, 1) 0ms normal, opacity 300ms ease 0ms normal;
  aspect-ratio:1;
  }
      

      
  .eEDRzT {
    @starting-style {
            scale:0.1;
  opacity:0.25;
          }
  }
      

        
      
      
  .djcCPk {
    width:100%;
  height:100%;
  overflow:hidden;
  position:absolute;
  transition:background-color 16ms linear 0ms normal;
  align-items:center;
  border-radius:inherit;
  pointer-events:none;
  justify-content:center;
  background-color:var(--ripple-background-color);
  }
      

      
        
      
      
  .fbOIDO {
    color:var(--grey-500, #737373);
  padding-top:32px;
  border-color:var(--grey-500, #737373);
  border-style:dashed;
  border-width:2px;
  padding-left:48px;
  padding-right:48px;
  padding-bottom:32px;
  }
      

      
        
      
      
  .button-base\:whZ-XJRwX9jtet3eCWdmb {
    width:100%;
  height:100%;
  position:absolute;
  }
      

      
        
      
      
  .back-button\:7iTR0sPhdBeMP-DeNuEBv {
    backdrop-filter:blur(16px);
  }
      

      
        
      
      
  .back-button\:fEzrJEw0RIuloQFfaQa_1 {
    backdrop-filter:blur(16px);
  }
      

      
        
      
      
  .dtXSjM {
    translate:-1px 0 0;
  }
      

      
        
      
      
  
      

      
        
      
      
  .eqCOyt {
    width:fit-content;
  view-transition-name:avatar;
  }
      

      
        
      
      
  .dcfeqC {
    display:flex;
  row-gap:.5rem;
  column-gap:.5rem;
  align-items:center;
  justify-content:flex-start;
  }
      

      
        
      
      
  .caqltT {
    width:100%;
  height:100%;
  overflow:clip;
  animation:1s ease 0ms infinite normal none running animation-eOQkIn;
  background:var(--background);
  }
      

      
  .caqltT.loaded {
    animation:none;
  background:none;
  }
      

        
                  @keyframes animation-eOQkIn {
                    
                        0% {
                          background: black;
                        }
                        

                        50% {
                          background: var(--background);
                        }
                        

                        100% {
                          background: black;
                        }
                        
                  }
                  
      
      
  .bqwSRr {
    width:100%;
  height:100%;
  opacity:0;
  object-fit:cover;
  transition:opacity 300ms ease;
  -webkit-user-drag:none;
  -webkit-touch-callout:none;
  }
      

      
  .bqwSRr.loaded {
    opacity:1;
  }
      

        
      
      
  .Account\:nQl2uAtPn_-L8YeCqKCUG {
    width:6rem;
  height:6rem;
  object-fit:cover;
  border-top-left-radius:100%;
  border-top-right-radius:100%;
  border-bottom-left-radius:100%;
  border-bottom-right-radius:100%;
  }
      

      
        
      
      
  .eCncCx {
    width:100%;
  row-gap:var(--container-spacing);
  max-width:var(--max-container-width);
  column-gap:var(--container-spacing);
  margin-left:auto;
  padding-top:var(--global-padding);
  margin-right:auto;
  padding-left:var(--global-padding);
  padding-right:var(--global-padding);
  padding-bottom:var(--global-padding);
  }
      

      
        
      
      
  
      

      
        
      