
@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;
--background-light-mode: #fafafa;
--background-dark-mode: #050505;
--text-light-mode: #050505;
--text-dark-mode: #fafafa;
  /* Fonts */
    --font-poppins: 'Poppins',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;
    }
  }
}

      
  .aIUKZ {
    color:var(--text-color, #fafafa);
  font-size:var(--font-size-base);
  font-family:'Poppins';
  font-weight:var(--font-weight-regular);
  background-color:var(--background-color, background-light-mode);
  }
      

      
        
        
      
      
  .dpyTKr {
    gap:0.6rem;
  color:#ffffff;
  width:fit-content;
  font-size:1rem;
  transition:all 300ms ease 0ms normal;
  align-items:center;
  font-weight:var(--font-weight-semi-bold);
  padding-top:0.6rem;
  padding-left:1.4rem;
  border-radius:0.6rem;
  padding-right:1.4rem;
  flex-direction:row;
  padding-bottom:0.6rem;
  justify-content:center;
  background-color:var(--blue-600, #2563EB);
  }
      

      
  .dpyTKr.small {
    gap:0.5rem;
  font-size:.875rem;
  padding-top:0.5rem;
  padding-left:0.8rem;
  padding-right:0.8rem;
  flex-direction:row;
  padding-bottom:0.5rem;
  }
      


  .dpyTKr.outline {
    color:var(--grey-900, #171717);
  border-color:var(--grey-300, #D4D4D4);
  border-style:solid;
  border-width:1px;
  background-color:#ffffff;
  }
      


  .dpyTKr:hover {
    cursor:pointer;
  background-color:var(--blue-500, #3B82F6);
  }
      


  .dpyTKr.outline:hover {
    background-color:var(--blue-100, #DBEAFE);
  }
      


  .dpyTKr.circle {
    padding-top:.5rem;
  padding-left:.5rem;
  border-radius:50%;
  padding-right:.5rem;
  padding-bottom:.5rem;
  }
      


  .dpyTKr.disabled {
    color:var(--grey-400, #A3A3A3);
  border-color:var(--grey-400, #A3A3A3);
  border-style:solid;
  border-width:1px;
  background-color:var(--grey-200, #E5E5E5);
  }
      


  .dpyTKr.disabled:hover {
    cursor:not-allowed;
  background-color:var(--grey-200, #E5E5E5);
  }
      


  .dpyTKr.active {
    background-color:var(--blue-200, #BFDBFE);
  }
      


  .dpyTKr.transparent {
    color:var(--grey-800, #262626);
  background-color:#00000000;
  }
      


  .dpyTKr.transparent:hover {
    background-color:var(--blue-100, #DBEAFE);
  }
      

        
        
      
      
  
      

      
        
        
      
      
  .dlUcOj {
    color:var(--grey-50, #FAFAFA);
  width:100%;
  height:100%;
  z-index:999;
  align-items:start;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:1rem;
  justify-content:space-between;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .eFMxlu {
    gap:8px;
  color:var(--grey-300, #D4D4D4);
  cursor:pointer;
  align-items:center;
  font-weight:var(--font-weight-regular);
  padding-top:8px;
  padding-left:0.5rem;
  border-radius:0.5rem;
  padding-right:0.5rem;
  flex-direction:row;
  padding-bottom:8px;
  justify-content:space-between;
  }
      

      
  .eFMxlu:hover {
    color:#ffffff;
  cursor:pointer;
  background-color:var(--grey-700, #404040);
  }
      


  .eFMxlu.is_current {
    color:var(--grey-50, #FAFAFA);
  background-color:var(--grey-700, #404040);
  }
      

        
        
      
      
  .cVXpRr {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
        
      
      
  .btqdmr {
    gap:8px;
  color:var(--grey-500, #737373);
  font-size:var(--font-size-xs);
  min-width:2rem;
  align-items:center;
  padding-top:4px;
  padding-left:8px;
  border-radius:8px;
  padding-right:8px;
  flex-direction:row;
  padding-bottom:4px;
  justify-content:center;
  background-color:var(--grey-50, #FAFAFA);
  }
      

      
  .btqdmr.is_overdue {
    color:var(--grey-50, #FAFAFA);
  background-color:var(--red-700, #B91C1C);
  }
      

        
        
      
      
  .eyVPLS {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
        
      
      
  .busWEs {
    gap:8px;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  .emlGLh {
    font-weight:var(--font-weight-semi-bold);
  padding-top:1.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-bottom:.5rem;
  }
      

      
        
        
      
      
  .cSDEUo {
    display:flex;
  flex-direction:column;
  }
      

      
        
        
      
      
  .cxxKCP {
    gap:0.25rem;
  width:100%;
  }
      

      
        
        
      
      
  .ejprCe {
    height:1rem;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  .cyHrPt {
    gap:.25rem;
  width:100%;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  
      

      
        
        
      
      
  .iZInF {
    gap:.5rem;
  display:flex;
  font-size:inherit;
  align-items:center;
  font-family:inherit;
  font-weight:inherit;
  padding-top:.25rem;
  flex-direction:row;
  padding-bottom:.25rem;
  justify-content:start;
  }
      

      
  .iZInF:hover {
    cursor:pointer;
  }
      


  .iZInF.is_sort_column {
    color:var(--blue-600, #2563EB);
  }
      

        
        
      
      
  
      

      
        
        
      
      
  .cQcXYf {
    width:100vw;
  height:100vh;
  z-index:99999;
  position:fixed;
  margin-top:auto;
  align-items:center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:auto;
  justify-content:center;
  background-color:#fafafacf;
  }
      

      
        
        
      
      
  .eKvier {
    width:5rem;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .cTotEu {
    gap:.5rem;
  flex-direction:row;
  }
      

      
        
        
      
      
  .tAixy {
    width:100%;
  height:16px;
  }
      

      
        
        
      
      
  .dDmltQ {
    gap:1rem;
  flex:1;
  align-items:center;
  flex-direction:row;
  justify-content:center;
  }
      

      
        
        
      
      
  .qxCQD {
    gap:.5rem;
  width:4rem;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  .bRghkE {
    flex:1;
  height:100%;
  align-items:center;
  border-color:#00000000;
  border-style:solid;
  border-width:1px;
  border-radius:.25rem;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  .wDzrR {
    gap:.5rem;
  width:8rem;
  display:flex;
  font-size:inherit;
  align-items:center;
  font-family:inherit;
  font-weight:inherit;
  padding-top:.25rem;
  flex-direction:row;
  padding-bottom:.25rem;
  justify-content:start;
  }
      

      
  .wDzrR:hover {
    cursor:pointer;
  }
      


  .wDzrR.is_sort_column {
    color:var(--blue-600, #2563EB);
  }
      

        
        
      
      
  .bkzsFj {
    width:100%;
  bottom:0.5rem;
  font-size:.875rem;
  margin-top:1rem;
  padding-top:.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-bottom:.25rem;
  border-bottom-color:var(--grey-500, #737373);
  border-bottom-style:solid;
  border-bottom-width:1px;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .eMTcDZ {
    gap:1rem;
  width:100%;
  z-index:999;
  position:relative;
  flex-wrap:wrap;
  align-items:center;
  border-radius:.5rem;
  flex-direction:row;
  justify-content:space-between;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .eNvxRg {
    width:100%;
  height:3rem;
  font-size:1rem;
  min-width:24rem;
  align-items:center;
  padding-left:1rem;
  border-radius:0.8rem;
  padding-right:1rem;
  flex-direction:row;
  justify-content:start;
  background-color:#fff;
  }
      

      
  .eNvxRg:focus {
    outline-color:#2463ebff;
  outline-style:solid;
  outline-width:1px;
  }
      

        
        
      
      
  .RMsfj {
    top:0px;
  flex:1;
  color:var(--grey-900, #171717);
  position:relative;
  align-items:center;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:1rem;
  justify-content:space-between;
  }
      

      
        
        
      
      
  .eLMBoH {
    font-size:var(--font-size-sm);
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
        
      
      
  .ftwiUw {
    gap:1rem;
  flex-grow:1;
  align-items:center;
  flex-direction:row;
  justify-content:end;
  }
      

      
        
        
      
      
  .dTMFkn {
    max-width:6rem;
  }
      

      
        
        
      
      
  .ctYiF {
    flex-grow:2;
  align-items:center;
  justify-content:center;
  }
      

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

      
        
        
      
      
  .bEjiuR {
    gap:0.5rem;
  flex-grow:1;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .jdUrs {
    width:100%;
  position:relative;
  max-width:1280px;
  align-items:center;
  margin-left:auto;
  margin-right:auto;
  justify-content:start;
  background-color:inherit;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .bFrbkx {
    gap:.4rem;
  color:var(--grey-600, #525252);
  width:100%;
  display:flex;
  font-size:.825rem;
  font-weight:400;
  flex-direction:column;
  }
      

      
        
        
      
      
  .cNNqIu {
    align-items:start;
  justify-content:center;
  }
      

      
        
        
      
      
  .eepitX {
    width:100%;
  height:3rem;
  font-size:1rem;
  align-items:start;
  padding-top:0.8rem;
  border-color:var(--grey-200, #E5E5E5);
  border-style:solid;
  border-width:1px;
  padding-left:.5rem;
  border-radius:.5rem;
  padding-right:.5rem;
  padding-bottom:0.8rem;
  justify-content:center;
  background-color:#ffffff;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .deFqAR {
    display:flex;
  align-items:center;
  border-color:var(--grey-200, #E5E5E5);
  border-style:solid;
  border-width:1px;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  .dYBNit {
    gap:.5rem;
  width:4rem;
  display:flex;
  font-size:inherit;
  align-items:center;
  font-family:inherit;
  font-weight:inherit;
  padding-top:.25rem;
  flex-direction:row;
  padding-bottom:.25rem;
  justify-content:start;
  }
      

      
  .dYBNit:hover {
    cursor:pointer;
  }
      


  .dYBNit.is_sort_column {
    color:var(--blue-600, #2563EB);
  }
      

        
        
      
      
  .bSQXdK {
    top:0px;
  width:100%;
  height:t;
  z-index:100;
  position:sticky;
  padding-left:1rem;
  padding-right:1rem;
  background-color:var(--background-light-mode, #fafafa);
  }
      

      
        
        
      
      
  .bPLVPK {
    width:100%;
  height:1rem;
  }
      

      
        
        
      
      
  .dMUvhL {
    z-index:;
  }
      

      
        
        
      
      
  .doGpUN {
    font-size:var(--font-size-base);
  font-family:inherit;
  }
      

      
        
        
      
      
  .cqEIKu {
    display:flex;
  font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  flex-direction:column;
  }
      

      
        
        
      
      
  .cjSvIc {
    top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  z-index:9999;
  position:fixed;
  align-items:center;
  padding-top:5vh;
  padding-bottom:5vh;
  justify-content:start;
  background-color:#40404040;
  }
      

      
        
        
      
      
  .eqwRTg {
    gap:0.5rem;
  font-size:1.2rem;
  min-width:32rem;
  box-shadow:1px 4px 8px 0px #00000044;
  align-items:center;
  padding-top:1rem;
  padding-left:1rem;
  border-radius:1rem;
  padding-right:1rem;
  padding-bottom:1rem;
  justify-content:start;
  background-color:var(--grey-50, #FAFAFA);
  }
      

      
        
        
      
      
  .bPpUf {
    width:fit-content;
  z-index:9998;
  padding-top:.5rem;
  padding-left:.5rem;
  padding-right:.5rem;
  padding-bottom:.5rem;
  }
      

      
  .bPpUf:hover {
    cursor:pointer;
  }
      

        
        
      
      
  .cKRovR {
    width:100%;
  align-items:center;
  padding-top:.5rem;
  padding-left:0.9rem;
  border-radius:.5rem;
  padding-right:0.9rem;
  flex-direction:row;
  padding-bottom:.5rem;
  justify-content:space-between;
  }
      

      
  .cKRovR:hover {
    cursor:pointer;
  background-color:var(--blue-100, #DBEAFE);
  }
      

        
        
      
      
  .duomNM {
    top:0rem;
  right:0px;
  position:absolute;
  padding-top:0.3rem;
  padding-left:.5px;
  border-radius:.5rem;
  padding-right:.5px;
  padding-bottom:0.3rem;
  }
      

      
        
        
      
      
  .vMIzB {
    width:100%;
  align-items:center;
  padding-top:.5rem;
  padding-left:1rem;
  border-radius:.5rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:.5rem;
  justify-content:space-between;
  }
      

      
  .vMIzB:hover {
    cursor:pointer;
  background-color:var(--blue-100, #DBEAFE);
  }
      

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

      
        
        
      
      
  .eCpJuE {
    gap:0.5rem;
  width:100%;
  align-items:center;
  padding-bottom:1rem;
  justify-content:start;
  }
      

      
        
        
      
      
  .ezDxkb {
    gap:2rem;
  width:100%;
  align-items:center;
  padding-top:.5rem;
  padding-left:1rem;
  border-radius:.5rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:.5rem;
  justify-content:space-between;
  }
      

      
  .ezDxkb:hover {
    cursor:pointer;
  background-color:var(--blue-100, #DBEAFE);
  }
      

        
        
      
      
  
      

      
        
        
      
      
  .dcTVzp {
    width:100%;
  font-family:'Poppins';
  padding-top:0.2rem;
  padding-left:0.2rem;
  padding-right:0.2rem;
  padding-bottom:0.2rem;
  }
      

      
        
        
      
      
  .flrqdn {
    flex:1;
  cursor:pointer;
  flex-wrap:wrap;
  align-items:center;
  padding-top:0.3rem;
  border-color:#00000000;
  border-style:solid;
  border-width:1px;
  padding-left:0.5rem;
  border-radius:.25rem;
  padding-right:0.5rem;
  flex-direction:row;
  padding-bottom:0.3rem;
  justify-content:start;
  }
      

      
  .flrqdn.not_published {
    color:var(--grey-400, #A3A3A3);
  }
      


  .flrqdn.not_published:hover {
    cursor:not-allowed;
  }
      

        
        
      
      
  
      

      
        
        
      
      
  .cKABNQ {
    gap:1rem;
  width:16.4rem;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  .evvmUS {
    padding-top:.25rem;
  padding-left:.25rem;
  padding-right:.25rem;
  padding-bottom:.25rem;
  }
      

      
  .evvmUS:hover {
    cursor:pointer;
  }
      

        
        
      
      
  .bNUMYl {
    color:var(--grey-400, #A3A3A3);
  width:4rem;
  align-items:center;
  flex-direction:row;
  justify-content:center;
  }
      

      
        
        
      
      
  .bMHYDp {
    flex:1;
  display:flex;
  flex-wrap:wrap;
  font-size:inherit;
  min-width:300px;
  align-items:start;
  font-family:inherit;
  font-weight:inherit;
  flex-direction:column;
  justify-content:center;
  }
      

      
        
        
      
      
  .canUgA {
    width:8rem;
  font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
        
      
      
  
      

      
  .fiEmtV.has-updates {
    color:var(--red-600, #DC2626);
  }
      

        
        
      
      
  .fCUJgC {
    padding-top:.25rem;
  padding-left:.25rem;
  padding-right:.25rem;
  padding-bottom:.25rem;
  }
      

      
        
        
      
      
  .bkppgc {
    width:7rem;
  font-size:inherit;
  text-align:center;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
  .bkppgc.overdue {
    color:var(--red-700, #B91C1C);
  }
      

        
        
      
      
  .fGRlBD {
    gap:.5rem;
  width:100%;
  flex-wrap:wrap;
  align-items:center;
  padding-top:0.3rem;
  border-radius:.25rem;
  flex-direction:row;
  padding-bottom:0.3rem;
  justify-content:start;
  }
      

      
  .fGRlBD:hover {
    background-color:var(--blue-50, #EFF6FF);
  }
      

        
        
      
      
  .eoOBlj {
    width:4rem;
  font-size:inherit;
  text-align:center;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
  .eoOBlj.overdue {
    color:var(--red-700, #B91C1C);
  }
      

        
        
      
      
  
      

      
        
        
      
      
  .cCYXsI {
    width:100%;
  }
      

      
        
        
      
      
  .TnOUy {
    gap:1rem;
  flex:1;
  position:relative;
  overflow-y:auto;
  transition:all 300ms ease 0ms normal;
  align-items:start;
  justify-content:start;
  background-color:var(--grey-50, #FAFAFA);
  }
      

      
  .TnOUy.sidebar-collapsed {
    top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  position:absolute;
  }
      

        
        
      
      
  .eWtqDk {
    gap:1rem;
  width:100%;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:1rem;
  }
      

      
        
        
      
      
  .fjGkA-D {
    color:var(--grey-100, #F5F5F5);
  width:var(--sidebar_width);
  z-index:;
  position:relative;
  font-size:var(--font-size-sm);
  overflow-y:auto;
  transition:left 300ms ease 0ms normal;
  align-items:start;
  justify-content:start;
  background-color:var(--grey-900, #171717);
  }
      

      
  .fjGkA-D.collapsed {
    left:var(--sidebar_gone);
  transition:left 300ms ease 0ms normal;
  align-items:start;
  justify-content:space-between;
  }
      


  .fjGkA-D.hidden {
    left:var(--sidebar_gone);
  z-index:99;
  position:relative;
  align-items:start;
  justify-content:space-between;
  }
      


  .fjGkA-D.open {
    left:0px;
  z-index:99999;
  flex-grow:1;
  max-width:var(--sidebar_width);
  align-items:start;
  justify-content:space-between;
  }
      

        
        
      
      
  .zFlCu {
    gap:1rem;
  align-items:center;
  flex-shrink:0;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:1rem;
  justify-content:start;
  background-color:var(--header_bg_colour, 100);
  }
      

      
        
        
      
      
  .crFVVb {
    width:100%;
  height:100dvh;
  background-color:var(--grey-50, #FAFAFA);
  }
      

      
        
        
      
      
  .fjEa-Da {
    color:inherit;
  display:inline-block;
  max-width:30rem;
  line-height:1.5rem;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:1rem;
  }
      

      
        
        
      
      
  .dveyZT {
    flex:1;
  align-items:center;
  flex-direction:row;
  justify-content:space-between;
  }
      

      
        
        
      
      
  .dtWrTj {
    flex:1;
  width:100%;
  overflow-y:hidden;
  flex-direction:row;
  }
      

      
        
        
      
      
  .eOdMQD {
    width:100%;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:1rem;
  }
      

      
        
        
      
      
  .bFaayE {
    width:100%;
  z-index:;
  align-items:center;
  justify-content:start;
  }
      

      
        
        
      
      
  
      

      
  .bCKrHT:hover {
    cursor:pointer;
  }
      

        
        
      
      
  .deSoQG {
    width:100%;
  height:100%;
  align-items:start;
  justify-content:space-between;
  }
      

      
        
        
      
      
  
      

      
        
        
      
      
  .eDrEkh {
    gap:1rem;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      
      
  .cHzAZl {
    gap:2rem;
  width:16.3rem;
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:start;
  }
      

      
        
        
      