
  

  
  @property --color {
  syntax: "*";
  inherits: true;
  initial-value: ;
}
@property --input {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --border {
  syntax: "<color>";
  inherits: true;
  initial-value: #edededff;
}
@property --button {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --blue-50 {
  syntax: "<color>";
  inherits: true;
  initial-value: #EFF6FF;
}
@property --primary {
  syntax: "<color>";
  inherits: true;
  initial-value: #2563EB;
}
@property --red-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #FEE2E2;
}
@property --red-500 {
  syntax: "<color>";
  inherits: true;
  initial-value: #EF4444;
}
@property --sidebar {
  syntax: "<color>";
  inherits: true;
  initial-value: #171717;
}
@property --success {
  syntax: "<color>";
  inherits: true;
  initial-value: #064E3B;
}
@property --teal-50 {
  syntax: "<color>";
  inherits: true;
  initial-value: #F0FDFA;
}
@property --text-sm {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --text-xl {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 1.875rem;
}
@property --text-xs {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --blue-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #1D4ED8;
}
@property --blue-800 {
  syntax: "<color>";
  inherits: true;
  initial-value: #1E40AF;
}
@property --grey-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #D4D4D4;
}
@property --grey-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #A3A3A3;
}
@property --grey-600 {
  syntax: "<color>";
  inherits: true;
  initial-value: #525252;
}
@property --grey-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #404040;
}
@property --teal-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #CCFBF1;
}
@property --teal-200 {
  syntax: "<color>";
  inherits: true;
  initial-value: #99F6E4;
}
@property --teal-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #5EEAD4;
}
@property --teal-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #2DD4BF;
}
@property --green-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #6EE7B7;
}
@property --green-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #34D399;
}
@property --text-base {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --background {
  syntax: "<color>";
  inherits: true;
  initial-value: #FAFAFA;
}
@property --foreground {
  syntax: "<color>";
  inherits: true;
  initial-value: #262626;
}
@property --input-dark {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --button-hover {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --sidebar-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #F5F5F5;
}
@property --momentumscarlet {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --foreground-muted {
  syntax: "<color>";
  inherits: true;
  initial-value: #737373;
}

  :host, :root {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
  @media (prefers-color-scheme: dark) {
      :host, :root {
  --sidebar: #111111;
  --background: #141414;
  --foreground: #f5f5f5;
}
    }
  @media (prefers-color-scheme: light) {
      :host, :root {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
    }
  [data-nc-theme~="Default"] {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
[data-nc-theme~="darkmode"] {
  --sidebar: #111111;
  --background: #141414;
  --foreground: #f5f5f5;
}
    


@layer base {
  
  body, :host {
    /* Color */
    
    /* Fonts */
    --font-sans: 'Inter',sans-serif;

    /* Font size */
    
    /* Font weight */
    
    /* Shadows */
    
    /* 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;
    }
  }
}


    .elBvCn {
      color:var(--foreground);
      background:var(--background);
      min-height:100vh;
      overflow-y:visible;
      align-items:end;
      padding-left:200px;
      justify-content:start;
    }

    .elBvCn.darkmode {
      color:var(border, #edededff);
      background-color:var(--sidebar, #171717);
    }

    @media (max-width: 600px) {

    .elBvCn {
      background:white;
      min-height:100vh;
      overflow-y:visible;
      align-items:end;
      padding-left:0px;
      justify-content:start;
    }
    }

    .cdcQgy {
      display:table-cell;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .cxHoRV {
      gap:0.5rem;
      color:var(--sidebar, #171717);
      width:fit-content;
      cursor:pointer;
      font-size:.875rem;
      appearance:none;;
      align-items:center;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
      background-color:var(border, #edededff);
    }

    .cxHoRV:hover {
      background-color:var(--grey-300, #D4D4D4);
    }

    .eHTIao {
      color:var(--foreground);
      height:6.75rem;
      padding:8px;
      font-size:.875rem;
      max-width:100%;
      min-width:100%;
      background:var(--input);
      min-height:3.75rem;
      border-radius:6px;
    }

    .bHYAZb {
      width:1rem;
      height:1rem;
      animation:spinner 1s linear infinite;
      border-radius:50%;
    }

    .eilAoN {
      color:inherit;
      font-size:14px;
      font-family:inherit;
      font-weight:500;
    }

    .cbQguL {
      width:100%;
      cursor:default;
      height:100%;
      display:flex;
      position:absolute;
      background:;
      overflow-x:hidden;
      overflow-y:hidden;
      user-select:none;
      border-radius:inherit;
      flex-direction:column;
      pointer-events:none;
    }

    .flXBRw {
      width:100%;
      height:100%;
      animation:var(--animation);
    }

    .Cursussen\:-o-4nMwdGqwstq2LMYpYo {
      width:100%;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .eiTzQb {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      display:flex;
      font-size:.875rem;
      background:var(--input);
      align-items:flex-start;
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      justify-content:center;
    }

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

    .eaboky {
      width:fit-content;
      height:auto;
    }

    .Cursussen\:03BbABDVSykqLq5ccYa2u {
      top:0.5rem;
      right:0.5rem;
      width:1.5rem;
      cursor:pointer;
      height:1.5rem;
      position:absolute;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      border-radius:5px;
    }

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

    .Cursussen\:0N9E1CEsRCe7hURdMWG1B {
      width:100%;
      cursor:pointer;
      height:100%;
    }

    .eHBCKB {
      color:var(--foreground);
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      background-color:var(border, #edededff);
    }

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

    .fArqFN {
      color:var(--foreground);
      font-size:var(--text-xs);
      background:var(--input);
      font-family:inherit;
      font-weight:500;
      padding-top:0.25rem;
      padding-left:0.5rem;
      border-radius:6px;
      padding-right:0.5rem;
      padding-bottom:0.25rem;
    }

    .blfohv {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

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

    .jvhPB {
      gap:0.25rem;
      grid-column:span 2;
    }

    .dJXMPp {
      color:var(--foreground-muted);
      font-size:12px;
      font-family:inherit;
      font-weight:500;
    }

    .fmQWtQ {
      color:var(--grey-400, #A3A3A3);
      font-size:0.875rem;
      margin-top:8px;
    }

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

    .Cursussen\:1y-11vxqpERY7KTdixMAV {
      width:100%;
      height:100%;
    }

    .ebGLIe {
      width:20rem;
      height:2.25rem;
      font-size:.875rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:0.75rem;
      border-radius:6px;
      padding-right:0.75rem;
    }

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

    .bdaUyR {
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

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

    .cTIBiv {
      display:flex;
      row-gap:0.5rem;
      column-gap:0.5rem;
      align-items:center;
      grid-column:span 2;
      flex-direction:row;
      justify-content:flex-start;
    }

    .bOZsiz {
      color:var(--foreground-muted);
      display:flex;
      row-gap:.125rem;
      font-size:var(--text-sm);
      column-gap:.125rem;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:-2px;
      flex-direction:row;
      padding-bottom:-1px;
      justify-content:flex-start;
    }

    .fHaMsD {
      width:var(--width);
      height:100%;
      background: var(--bar-color);
    }

    .dwcaQF {
      width:100px;
      height:0.5rem;
      background:var(--input);
      overflow-x:hidden;
      border-top-left-radius:10px;
      border-top-right-radius:10px;
      border-bottom-left-radius:10px;
      border-bottom-right-radius:10px;
    }

    .eWLgHc {
      width:100%;
      font-family:inherit;
    }

    .Cursussen\:3kHLw87QKy0Hw0u-nbsee {
      font-size:.875rem;
      background:;
      border-radius:6px;
    }

    .bvBWvu {
      color:var(--grey-400, #A3A3A3);
      font-size:0.875rem;
    }

    .dJfNfE {
      display:table;
      position:relative;
      overflow-x:auto;
      overflow-y:auto;
      table-layout:auto;
      border-radius:8px;
    }

    .mCqrh {
      display:table-header-group;
    }

    .cufGXv {
      overflow-y:auto;
      touch-action:auto;
    }

    .Cursussen\:4RYLso1rcCKw_Ph7t61ql {
      row-gap:1rem;
      column-gap:1rem;
      max-height:80vh;
    }

    .bIbHaH {
      display:table-cell;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
    }

    .KsFov {
      width:var(--width);
      height:var(--height);
      position:fixed;
      overflow-x:hidden;
      overflow-y:hidden;
      align-items:center;
      pointer-events:none;
      justify-content:center;
    }

    .KsFov.modal {
      touch-action:none;
      pointer-events:all;
    }

    .Cursussen\:5Ca0Wsezy7p4kZPDFe8TL {
      padding-left:1rem;
      padding-right:1rem;
    }

    .fmkzCC {
      width:18px;
      height:18px;
      align-items:center;
      justify-content:center;
    }

    .cBvpeo {
      cursor:pointer;
    }

    .duAJRL {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      background-color:var(border, #edededff);
    }

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

    .fgUkBH {
      display:table-cell;
      background:var(--background);
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
    }

    .Cursussen\:7CKPGpuUbFoPFhZ05rX-h {
      color:var(--sidebar);
      width:inherit;
      cursor:pointer;
      display:flex;
      row-gap:4px;
      column-gap:4px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Cursussen\:7CKPGpuUbFoPFhZ05rX-h.trigger-open {
      background:var(--background);
      text-underline-offset:0.5rem;;
    }

    .Cursussen\:7CKPGpuUbFoPFhZ05rX-h:hover {
      background:var(--sidebar-accent);
    }

    .daiOZJ {
      color:var(--foreground-muted);
      display:inline-block;
      text-wrap:auto;
    }

    .Qsura {
      color:var(--red-500);
      display:inline-block;
      text-align:center;
    }

    .bEhzho {
      gap:0.25rem;
    }

    .dAGwwL {
      color:var(--foreground);
    }

    .cTjCtm {
      gap:0.5rem;
      color:var(--foreground);
      width:fit-content;
      cursor:pointer;
      background:var(--button);
      align-items:center;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
    }

    .cTjCtm:hover {
      background:var(--button-hover);
    }

    .Cursussen\:DUMwHegH6xf8CQfHXwqPz {
      padding-left:1rem;
      padding-right:1rem;
    }

    .fFqnEF {
      display:table-row;
      text-align:left;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .cqQuhh {
      top:0px;
      left:0px;
      right:0px;
      bottom:0px;
      z-index:-1;
      position:absolute;
    }

    .Cursussen\:EwLpsgfaCyUBdv_E4DQHk {
      backdrop-filter:blur(1px);;
      background-color:#17171712;
    }

    .bfYQTR {
      display:table-row;
      white-space:nowrap;
    }

    .ocShW {
      gap:0.25rem;
      grid-column:span 4;;
    }

    .bGbzVi {
      color:var(--success);
      display:inline-block;
      text-align:center;
    }

    .cRdcQa {
      width:100%;
      height:100%;
      position:absolute;
      border-color:transparent;
      border-style:solid;
      border-width:4px;
      border-radius:50%;
      border-top-color:var(--foreground);
      border-top-style:solid;
      border-top-width:4px;
    }

    .OXCGL {
      cursor:pointer;
      row-gap:0.125rem;
      column-gap:0.125rem;
      align-items:center;
      flex-direction:row;
      justify-content:end;
    }

    .OXCGL:hover {
      opacity:0.66;
    }

    .dUqUVM {
      width:10px;
      height:10px;
      background:var(--green-400);
      border-top-left-radius:100%;
      border-top-right-radius:100%;
      border-bottom-left-radius:100%;
      border-bottom-right-radius:100%;
    }

    .Cursussen\:Ga6MLBhcWrLpI9CfcFNX_ {
      align-items:flex-start;
      justify-content:flex-start;
    }

    .dtxytk {
      width:fit-content;
    }

    .dejsae {
      top:0px;
      left:0px;
      right:0px;
      bottom:0px;
      opacity:0;
      position:absolute;
      pointer-events:none;
    }

    .Cursussen\:He9ohfPjHZIOYgCMnh0TN {
      width:25px;
      height:25px;
      background:var(border);
      overflow-x:hidden;
      overflow-y:hidden;
      border-color:var(--grey-400);
      border-style:solid;
      border-width:1px;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Cursussen\:He9ohfPjHZIOYgCMnh0TN:hover {
      background:var(--grey-300);
    }

    .BaLac {
      gap:1rem;
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
    }

    @media (max-width: 39rem) {

    .BaLac {
      width:100%;
      display:flex;
    }
    }

    .exLzMQ {
      display:flex;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
    }

    .eFQaJC {
      top:var(--top);
      left:var(--left);
      position:absolute;
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
      pointer-events:all;
      transform-origin:var(--transform-origin-x) var(--transform-origin-y);
    }

    .eFQaJC:focus {
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
    }

    .eFQaJC.hidden {
      visibility:hidden;
      pointer-events:none;
    }

    .eFQaJC.match-anchor-width {
      width:var(--sc-anchor-width);
    }

    .sparkcore\/sc-dropdown-content\:root:focus {
      outline:none;
    }

    .Cursussen\:JcRezmgeMqvhT72V-B874 {
      gap:0.25rem;
      opacity:0;
      font-size:0.875rem;
      background:var(--background);
      padding-top:0.5rem;
      border-color:var(--border);
      border-style:solid;
      padding-left:0.5rem;
      padding-right:0.5rem;
      padding-bottom:0.5rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Cursussen\:JcRezmgeMqvhT72V-B874.open {
      opacity:1;
    }

    .Cursussen\:JcRezmgeMqvhT72V-B874.open-transition {
      transition:opacity 200ms ease 0ms normal;
    }

    .SWxlP {
      position:relative;
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
      pointer-events:all;
    }

    .SWxlP:focus {
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
    }

    .Cursussen\:JiEhrJOxL4yAZ7sAmIJvC {
      gap:1rem;
      width:39rem;
      max-width:100%;
      background:var(--background);
      box-shadow:0px 0px 50px 10px #a3a3a333;
      padding-top:2rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:2rem;
      padding-right:2rem;
      padding-bottom:2rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .bvHPBK {
      gap:1rem;
      align-items:center;
      grid-column:span 4;;
      flex-direction:row;
      justify-content:start;
    }

    .bfZrAa {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      align-items:start;
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      justify-content:center;
      background-color:var(border, #edededff);
    }

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

    .QtztV {
      gap:12px;
      min-width:300px;
      overflow-x:scroll;
      padding-top:12px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:12px;
      border-radius:6px;
      padding-right:12px;
      padding-bottom:12px;
    }

    .dosFuz {
      gap:0.25rem;
      grid-column:span 4;
    }

    .dmgwZm {
      width:100%;
      z-index:4;
      position:fixed;
      background:var(--sidebar);
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    @media (min-width: 600px) {

    .dmgwZm {
      left:0px;
      width:200px;
      height:calc(100% - 1rem);
      display:block;
      margin-top:0.5rem;
      margin-left:0.5rem;
      margin-bottom:0.5rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
    }
    }

    .bUIgIL {
      gap:24px;
      flex:1;
      position:relative;
      padding-top:16px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:16px;
    }

    .cHaejG {
      flex:1;
      color:var(--foreground-muted);
      font-size:var(--text-sm);
      align-items:start;
      font-weight:500;
      justify-content:center;
    }

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

    .cYiHyO {
      flex:1;
      font-size:var(--text-sm);
      align-items:start;
      font-weight:500;
      justify-content:center;
    }

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

    .FMIMl {
      flex:1;
      font-size:var(--text-sm);
      font-weight:500;
    }

    .cxeoWU {
      gap:4px;
      color:var(--foreground);
      cursor:pointer;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:center;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .cxeoWU.selected {
      color:var(--foreground);
      background:var(--sidebar-accent);
    }

    .cxeoWU:hover {
      background-color:var(--sidebar-accent);
    }

    .cxeoWU.disabled {
      color:var(--foreground-muted);
      cursor:not-allowed;
    }

    .nav-sidebar\:QhAZNvHJNSsRVOteASe0s {
      max-width:200px;
    }

    .dFCIgj {
      gap:4px;
      color:var(--foreground-muted);
    }

    .bwqCLL {
      row-gap:1rem;
      column-gap:1rem;
      flex-direction:row;
      justify-content:space-between;
    }

    .eVWSuH {
      display:block;
    }

    .eVWSuH.collapsed {
      display:none;
    }

    .bGPRiw {
      padding-bottom:20px;
    }

    .bLOwd {
      row-gap:1rem;
      flex-grow:1;
      column-gap:1rem;
    }

    .UYEId {
      cursor:pointer;
      display:block;
      padding-top:0.25rem;
      border-color:var(--grey-300);
      border-style:solid;
      border-width:1px;
      padding-left:0.25rem;
      padding-right:0.25rem;
      padding-bottom:0.25rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    @media (min-width: 600px) {

    .UYEId {
      display:none;
    }
    }

    .UYEId:hover {
      background: var(border);
    }

    .dvRKbB {
      gap:8px;
      color:var(--foreground-muted);
      font-size:12px;
      font-family:'Inter';
    }

    .JTOXx {
      gap:4px;
    }

    .cItgwh {
      gap:8px;
      color:var(--foreground-muted);
      flex-grow:1;
      font-size:0.75rem;
      align-items:center;
      font-family:'Inter';
      font-weight:600;
      white-space:nowrap;
      padding-left:10px;
      flex-direction:row;
    }

    .dYbGCT {
      gap:20px;
      width:100%;
      position:relative;
      padding-top:32px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:32px;
    }

    @media (max-width: 600px) {

    .dYbGCT {
      padding-top:5rem;
    }
    }

    .bEzQpQ {
      row-gap:1rem;
      column-gap:1rem;
      flex-direction:row;
    }

    .cDGrQA {
      align-items:center;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:space-between;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .eGLxbc {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      align-items:start;
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      justify-content:center;
    }

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

    .efSCyD {
      color:var(--foreground);
      font-size:14px;
    }

    .Cursussen\:O1QbhwLQVC2Yw3iVduosl {
      color:var(--sidebar);
      cursor:pointer;
      display:flex;
      row-gap:4px;
      column-gap:4px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Cursussen\:O1QbhwLQVC2Yw3iVduosl.trigger-open {
      background:var(--background);
      text-underline-offset:0.5rem;;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Cursussen\:O1QbhwLQVC2Yw3iVduosl:hover {
      background:var(--sidebar-accent);
    }

    .fmbHbu {
      color:var(--foreground-muted);
      display:flex;
      font-size:12px;
      max-height:400px;
      font-family:inherit;
      flex-direction:column;
    }

    .FqCPe {
      color:var(--foreground);
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      line-height:30px;
      padding-top:0px;
      padding-bottom:0px;
    }

    .Cursussen\:Oc-Nm0anGcMnpvBYzNo9r {
      top:0.5rem;
      right:0.5rem;
      width:1.5rem;
      cursor:pointer;
      height:1.5rem;
      position:absolute;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      border-radius:5px;
    }

    .VPnmN {
      gap:0.25rem;
      grid-column:span 1;;
    }

    .Cursussen\:PPJeFhxAvmGL1le6_xmBW {
      width:100%;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .bmccwi {
      gap:0.25rem;
      grid-column:span 3;
    }

    .bLXvIU {
      gap:0.5rem;
      color:white;
      width:fit-content;
      cursor:pointer;
      background:var(--success);
      align-items:center;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
    }

    .bLXvIU:hover {
      background:var(--green-400);
    }

    .bQTdZA {
      color:#00C950;
      display:flex;
      row-gap:0.3rem;
      column-gap:0.3rem;
      flex-direction:row;
    }

    .dYElHa {
      width:var(--width);
      height:var(--height);
      position:fixed;
      pointer-events:none;
    }

    .dYElHa.modal {
      pointer-events:all;
    }

    .Cursussen\:T9Ejffe8uLrU0QZ80cx5I {
      width:25px;
      height:25px;
      background:var(border);
      overflow-x:hidden;
      overflow-y:hidden;
      border-color:var(--grey-400);
      border-style:solid;
      border-width:1px;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Cursussen\:T9Ejffe8uLrU0QZ80cx5I:hover {
      background:var(--grey-300);
    }

    .dURsdP {
      gap:0.25rem;
      grid-column:span 3;;
    }

    .ckBaYV.hidden {
      display:none;
    }

    .Cursussen\:Ukp35zhCxsJsdv6ASEsJb {
      row-gap:1rem;
      column-gap:1rem;
    }

    .IRzSb {
      color:#ffffff;
    }

    .Cursussen\:WN40LCriuRJSEeFJSURXe {
      font-size:.875rem;
      border-radius:6px;
      background-color:var(--grey-300, #D4D4D4);
    }

    .cGvODG {
      color:var(--foreground-muted);
      display:flex;
      font-size:var(--text-xs);
      max-height:400px;
      font-family:inherit;
      flex-direction:column;
    }

    .fnCHHw {
      gap:0.25rem;
      grid-column:span 2;;
    }

    .itvls {
      cursor:default;
    }

    .Cursussen\:Y9xXWUTC1LNZnBXC6vusc {
      gap:0.5rem;
      color:var(--foreground);
      width:100%;
      transition:background-color 200ms ease 0ms normal;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      outline-color:transparent;
      outline-style:solid;
      outline-width:0px;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Cursussen\:Y9xXWUTC1LNZnBXC6vusc.disabled {
      color:var(--grey-400);
      background-color:transparent;
    }

    .dhdOPW {
      background:var(--background);
      padding-top:3px;
      padding-left:3px;
      padding-right:3px;
      padding-bottom:3px;
    }

    .eTCZlr {
      font-size:var(--text-xs);
      font-family:inherit;
      font-weight:500;
    }

    .Cursussen\:_8uQYEnbL7Fi7dJoGUCZA {
      width:100%;
      cursor:pointer;
      height:100%;
    }

    .fhXOpI {
      flex:1;
      display:flex;
      row-gap:0.33rem;
      flex-wrap:wrap;
      max-width:fit-content;
      background:var(--input);
      column-gap:0.33rem;
      padding-top:4px;
      padding-left:4px;
      padding-right:4px;
      flex-direction:row;
      padding-bottom:4px;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .cdThhe {
      color:#ff3200;
      font-size:12px;
      font-family:inherit;
      font-weight:500;
    }

    .QRAWn {
      font-size:1.2rem;;
      font-weight:600;;
    }

    .dqEcmU {
      gap:20px;
      width:100%;
      position:relative;
      overflow-x:auto;
      overflow-y:auto;
      padding-top:32px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:32px;
    }

    .doBABe {
      width:100%;
      height:100%;
      opacity:0.3;
      position:absolute;
      border-color:var(--foreground);
      border-style:solid;
      border-width:4px;
      border-radius:50%;
    }

    .Cursussen\:eoFTU6AN20UgMNPcZvbAz {
      gap:0.5rem;
      width:fit-content;
      cursor:pointer;
      font-size:.875rem;
      background:;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      border-radius:6px;
      padding-right:0.5rem;
      flex-direction:column;
      padding-bottom:0.5rem;
      justify-content:start;
    }

    .Cursussen\:eoFTU6AN20UgMNPcZvbAz:hover {
      background: var(--sidebar-accent);
    }

    .Cursussen\:eoFTU6AN20UgMNPcZvbAz.trigger-open {
      background: var(border);
    }

    .Cursussen\:fX_beZYpeVtyiC350Gvvu {
      row-gap:2rem;
      column-gap:2rem;
    }

    .Cursussen\:glwrqHyUEoBBX7u0BLhUK {
      align-items:center;
      justify-content:flex-start;
    }

    .Cursussen\:h-sC2kczxs1UkfeO84gAY {
      gap:0.5rem;
      color:var(--foreground);
      width:fit-content;
      cursor:pointer;
      font-size:.875rem;
      appearance:none;;
      background:var(--button);
      align-items:center;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
    }

    .Cursussen\:h-sC2kczxs1UkfeO84gAY:hover {
      background:var(--button-hover);
    }

    .eeaOJY {
      row-gap:0.5rem;
      font-size:1.2rem;
      column-gap:0.5rem;
      font-weight:600;
      flex-direction:row;
    }

    .Cursussen\:l7ECwhfzwj00n2xwL7V0G {
      backdrop-filter:blur(1px);;
      background-color:#17171712;
    }

    .bTcbHG {
      display:flex;
      background:var(--background);
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
    }

    .dkEWqv {
      top:0px;
      display:table-header-group;
      z-index:2;
      position:sticky;
    }

    .cxJHK {
      flex-direction:row;
    }

    .cxJHK.orientation-vertical {
      flex-direction:column;
    }

    .Cursussen\:muvYKvB0igSETD_aht0zu {
      gap:2rem;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      padding-top:0rem;
      flex-direction:row;
      padding-bottom:1rem;
      justify-content:space-between;
    }

    .Cursussen\:nVjmX32KPt5H6fg1lc1Cb {
      gap:1rem;
      width:39rem;
      max-width:100%;
      background:var(--background);
      box-shadow:0px 0px 50px 10px var(--border);
      padding-top:2rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:2rem;
      padding-right:2rem;
      padding-bottom:2rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Cursussen\:niz0K_qg_iRIpS2LA5tnX {
      width:100%;
      height:100%;
    }

    .Cursussen\:obeWgx4xjJ9hLT1DYm8Qw {
      max-height:80vh;
    }

    .dfKbrU {
      gap:1rem;
      width:100%;
      max-width:600px;
      flex-direction:row;
    }

    .elyCCR {
      color:var(--foreground);
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

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

    .egBGJl {
      color:var(--foreground);
      font-size:12px;
      background:var(--input);
      font-family:inherit;
      font-weight:500;
      padding-top:0.25rem;
      padding-left:0.5rem;
      border-radius:6px;
      padding-right:0.5rem;
      padding-bottom:0.25rem;
    }

    .Cursussen\:qLajUoc_7M4vKPCbFyuL3 {
      gap:0.5rem;
      color:var(--foreground);
      width:100%;
      cursor:pointer;
      transition:background-color 200ms ease 0ms normal;
      align-items:center;
      padding-top:0.5rem;
      padding-left:0.5rem;
      outline-color:transparent;
      outline-style:solid;
      outline-width:0px;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Cursussen\:qLajUoc_7M4vKPCbFyuL3:focus {
      background:var(--grey-300);
    }

    .Cursussen\:qLajUoc_7M4vKPCbFyuL3.disabled {
      color:var(--grey-400);
      background-color:transparent;
    }

    .bFvcAt {
      z-index:3;
    }

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

    .fnhOeD {
      color:#ffffffff;
      font-size:12px;
      min-width:30px;
      box-sizing:content-box;;
      min-height:30px;
      align-items:center;
      font-weight:600;
      line-height:20px;
      padding-top:4px;
      padding-left:4px;
      border-radius:10px;
      padding-right:4px;
      padding-bottom:4px;
      justify-content:center;
      background-color:#ff3200;
    }

    .fnhOeD:hover {
      background-color:#1a1a1a;
    }

    .ddAijd {
      color:var(--foreground-muted);
      font-size:var(--text-xs);
      font-family:inherit;
      font-weight:500;
    }

    .gbNhf {
      color:var(--foreground);
      font-size:var(--text-xs);
      font-family:inherit;
      font-weight:500;
      line-height:30px;
      padding-top:0px;
      padding-bottom:0px;
      text-underline-offset:3px;;
    }

    .gbNhf:hover {
      cursor:pointer;
      opacity:0.6;
    }