
  

  
  @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;
    }
  }
}


    .cZzEER {
      color:inherit;
      display:flex;
      row-gap:3rem;
      font-size:inherit;
      column-gap:3rem;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      padding-top:0rem;
      flex-direction:column;
      padding-bottom:0rem;
    }

    .eonRBl {
      gap:1rem;
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      max-width:100%;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .bFFrmc {
      color:inherit;
      width:100%;
      display:block;
      font-size:inherit;
      overflow-x:auto;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      border-color:#666;
      border-style:solid;
      border-width:1px;
      border-radius:8px;
      flex-direction:row;
      background-color:#333;
    }

    .cTuYUA {
      color:white;
      display:block;
      font-size:1.5rem;
      flex-shrink:1;
      font-family:"Momentum Sans";
      font-weight:inherit;
      flex-direction:row;
      text-transform:uppercase;
    }

    .UTPwS {
      color:inherit;
      width:100%;
      display:table;
      font-size:inherit;
      min-width:800px;
      text-align:left;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      border-collapse:collapse;
    }

    .bINkov {
      color:white;
      display:inline;
      font-size:0.875rem;
      flex-shrink:1;
      font-family:inherit;
      font-weight:600;
      flex-direction:row;
    }

    .dLYqJr {
      gap:0.25rem;
      color:inherit;
      display:flex;
      padding:0.5rem;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      border-radius:4px;
      flex-direction:column;
      background-color:#222;
      border-left-color:#ff3200;
      border-left-style:solid;
      border-left-width:3px;
    }

    .cHYUUM {
      color:inherit;
      display:table-row;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      border-bottom-color:#444;
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .cHYUUM:last-child {
      border-bottom-style:none;
    }

    .dCLtAe {
      color:var(--grey-300);
      display:table-cell;
      padding:1rem;
      font-size:inherit;
      flex-shrink:1;
      font-family:"Momentum Sans";
      font-weight:500;
      flex-direction:row;
      text-transform:uppercase;
      border-right-color:#666;
      border-right-style:solid;
      border-right-width:1px;
    }

    .dCLtAe:last-child {
      border-right-style:none;
    }

    .dVEypv {
      color:inherit;
      display:table-header-group;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      background-color:#222;
      border-bottom-color:#666;
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .benREn {
      color:var(--grey-400);
      display:inline;
      font-size:0.75rem;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .eVRgFp {
      color:inherit;
      display:table-row-group;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .NqRPX {
      color:inherit;
      display:table-cell;
      padding:0.5rem;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      vertical-align:top;
      border-right-color:#444;
      border-right-style:solid;
      border-right-width:1px;
    }

    .NqRPX:last-child {
      border-right-style:none;
    }

    .eZKSGS {
      gap:0.5rem;
      color:inherit;
      display:flex;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .bhwDHQ {
      left:0px;
      color:var(--grey-300);
      width:80px;
      display:table-cell;
      padding:1rem;
      z-index:10;
      position:sticky;
      font-size:inherit;
      flex-shrink:1;
      font-family:"Momentum Sans";
      font-weight:500;
      flex-direction:row;
      text-transform:uppercase;
      background-color:#222;
      border-right-color:#666;
      border-right-style:solid;
      border-right-width:1px;
    }

    .JjSij {
      color:inherit;
      display:table-row;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .iAEPi {
      left:0px;
      color:white;
      display:table-cell;
      padding:1rem;
      z-index:10;
      position:sticky;
      font-size:inherit;
      flex-shrink:1;
      font-family:inherit;
      font-weight:500;
      white-space:nowrap;
      flex-direction:row;
      background-color:#333;
      border-right-color:#666;
      border-right-style:solid;
      border-right-width:1px;
    }

    .rJouU {
      gap:2rem;
      flex:1 1 400px;;
      background:linear-gradient(to right, #000000 15%, #00000054 100%) scroll border-box padding-box repeat repeat 0% 0% / auto, url("https://hmtkadbkfkzeuxmhzhlb.supabase.co/storage/v1/object/public/coaches//bg%20led.avif") scroll border-box padding-box no-repeat no-repeat center center / cover;
      transition:background-color 250ms ease 0ms;
      padding-top:1rem;
      border-color:var(--sidebar);
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:0.375rem;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:space-between;
    }

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

    .rJouU.sold_out {
      opacity:0.67;
      background: var(--sidebar);
    }

    .dQOZlF {
      row-gap:1rem;
      column-gap:1rem;
    }

    .dZcrAg {
      gap:0.15rem;
      color:inherit;
      display:flex;
      font-size:1rem;
      align-items:center;
      flex-direction:row;
      justify-content:start;
    }

    .eOLwW {
      display:flex;
      row-gap:1rem;
      column-gap:1rem;
      align-items:flex-start;
      flex-direction:row;
      justify-content:space-between;
    }

    .ckBaYV.hidden {
      display:none;
    }

    .fHzZkt {
      font-size:2rem;
      font-family:"Momentum Sans";
      line-height:100%;
    }

    .bDIWDY {
      color:var(--sidebar, #171717);
      width:fit-content;
      cursor:pointer;
      display:flex;
      row-gap:0.25rem;
      column-gap:0.25rem;
      align-items:center;
      padding-top:8px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      background-color:var(border, #edededff);
    }

    .bDIWDY:hover {
      background-color:#ff3200;
    }

    .bDIWDY.disabled {
      cursor:not-allowed;
      background: var(--foreground-muted);
    }

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

    .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);
    }

    .Cursusoverzicht\:5UMePOMCV6FwAWcuGNOiq {
      width:35ch;
      z-index:1;
      background: var(border);
      padding-top:0.5rem;
      border-color:var(--grey-300);
      border-style:solid;
      border-width:1px;
      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;
    }

    .cOLhcS {
      color:#ff3200;
      font-size:1rem;
      font-family:Momentum Sans;
      text-transform:uppercase;
      border-bottom-color:#ff3200;
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

    .Cursusoverzicht\:7zJBMImHjSOCzbCAA419B {
      color:white;
      width:fit-content;
      cursor:pointer;
      align-items:start;
      padding-top:8px;
      border-color:var(--foreground-muted);
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      padding-bottom:8px;
      justify-content:center;
    }

    .Cursusoverzicht\:7zJBMImHjSOCzbCAA419B:hover {
      background:var(--grey-700);
    }

    .cWqoMD {
      row-gap:0.25rem;
      column-gap:0.25rem;
    }

    .Cursusoverzicht\:A9Sgj0wGUk92helJxLT2p {
      color:var(--foreground-muted, #737373);
      cursor:pointer;
    }

    .Cursusoverzicht\:A9Sgj0wGUk92helJxLT2p.trigger-open {
      color:#fff;
      text-decoration-line:underline;
      text-underline-offset:0.5rem;;
    }

    .cEpQwy {
      width:fit-content;
      height:fit-content;
      position:absolute;
      font-size:inherit;
      transform:var(--transform);
      font-family:inherit;
      font-weight:inherit;
      transform-origin:var(--transform-origin);
    }

    .cEpQwy.top {
      top:0px;
      left:var(--left);
    }

    .cEpQwy.bottom {
      left:var(--left);
      bottom:0px;
    }

    .cEpQwy.right {
      top:var(--top);
      right:0px;
    }

    .cEpQwy.left {
      top:var(--top);
      left:0px;
    }

    .RVKcI {
      gap:0.15rem;
      display:flex;
      align-items:center;
      flex-direction:row;
      justify-content:start;
    }

    .drlItn {
      gap:1rem;
      flex-wrap:wrap;
      align-items:center;
      flex-direction:row;
      justify-content:space-between;
    }

    .dCEjix {
      color:#ff3200;
      width:4ch;
      font-family:"Momentum Sans";
      white-space:nowrap;
      text-transform:uppercase;
    }

    .blEato {
      gap:0.5rem;
      color:var(border, #E5E5E5);
      width:fit-content;
      cursor:pointer;
      align-items:center;
      padding-top:0.5rem;
      border-color:var(--sidebar);
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
      background-color:var(--sidebar, #171717);
    }

    .blEato:hover {
      border-color:var(--grey-600);
      border-style:solid;
      border-width:1px;
      background-color:var(--grey-600, #525252);
    }

    .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;
    }

    .sparkcore\/sc-bottom-sheet-portal\:root {
      align-items:center;
      justify-content:end;
    }

    .Cursusoverzicht\:CpYrIIXpmKhg8vd7Ng3Xt {
      top:0.5rem;
      right:0.5rem;
      width:1.5rem;
      cursor:pointer;
      height:1.5rem;
      position:absolute;
      border-radius:5px;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
    }

    .Cursusoverzicht\:CpYrIIXpmKhg8vd7Ng3Xt:hover {
      opacity:0.66;
    }

    .Cursusoverzicht\:DMQ0oYnvI1B7lcXhPDr1O {
      color:var(--foreground-muted, #737373);
      cursor:pointer;
    }

    .Cursusoverzicht\:DMQ0oYnvI1B7lcXhPDr1O.trigger-open {
      color:#fff;
      text-decoration-line:underline;
      text-underline-offset:0.5rem;;
    }

    .cJidxo {
      left:-0.25rem;
    }

    .dHqkOA {
      color:var(--grey-400, #A3A3A3);
      font-size:1rem;
      font-family:Uncut !important;
      font-weight:inherit;
      white-space:pre-wrap;
    }

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

    .byhckH {
      color:var(--grey-300);
      row-gap:0.125rem;
      column-gap:0.125rem;
      align-items:center;
      flex-direction:row;
      justify-content:start;
    }

    .dRfIBe {
      flex:2;
      color:#E5E5E5;
      font-size:1rem;
      font-weight:400;
      padding-top:0.5rem;
      border-color:#666;
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      padding-bottom:0.5rem;
      background-color:#262626;
    }

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

    .beEukI {
      color:inherit;
      font-size:1.25rem;
      font-family:Momentum Sans;
      font-weight:300;
      text-transform:uppercase;
    }

    .cPpVIJ {
      color:var(--grey-300);
      display:inline-block;
      text-align:right;
    }

    .ddvLcL {
      color:#ff3200;
      font-size:1rem;
      font-family:Momentum Sans;
      text-transform:uppercase;
    }

    .cxJHK {
      flex-direction:row;
    }

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

    .Cursusoverzicht\:IDyhua1fT7D58Pb5RdzNx {
      gap:2rem;
      width:100%;
      display:flex;
      flex-wrap:wrap;
      overflow-x:scroll;
      align-items:center;
      padding-top:2rem;
      flex-direction:row;
      padding-bottom:2rem;
      justify-content:space-between;
    }

    .eGlJJi {
      font-family:Momentum Sans;
      text-transform:uppercase;
    }

    .fePBdY {
      gap:0.15rem;
      color:inherit;
      display:flex;
      font-size:1rem;
      align-items:center;
      flex-direction:row;
      text-transform:uppercase;
      justify-content:start;
    }

    .eXOtjp {
      gap:1rem;
      flex-wrap:wrap;
      flex-direction:row;
    }

    .bosDcd {
      width:10px;
      height:10px;
      rotate:z 45deg;
      display:flex;
      translate:0px -4px;
      background:var(--grey-300);
      flex-direction:column;
      border-right-color:var(--grey-300);
      border-right-style:solid;
      border-right-width:1px;
      border-bottom-color:var(--grey-300);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .ZGGku {
      color:inherit;
      font-size:1.5rem;
      font-family:Momentum Sans;
      font-weight:300;
      text-transform:uppercase;
    }

    .bEgOIm {
      color:black;
      row-gap:0.125rem;
      font-size:0.875rem;
      background:var(--color);
      column-gap:0.125rem;
      align-items:center;
      padding-top:0.25rem;
      padding-left:0.5rem;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:0.25rem;
      text-transform:uppercase;
      justify-content:start;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

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

    .eoEOfp:hover {
      background-color:var(--grey-600, #525252);
    }

    .cmSFvD {
      display:inline;
      font-size:1.5rem;
      font-family:Momentum Sans;
      font-weight:300;
      text-transform:uppercase;
    }

    .fBhXkv {
      color:var(--grey-400, #A3A3A3);
      row-gap:0.125rem;
      column-gap:0.125rem;
      align-items:center;
      flex-direction:row;
      justify-content:start;
    }

    .PkBLi {
      gap:1rem;
      width:fit-content;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .cGTmIF {
      color:var(--sidebar, #171717);
      width:fit-content;
      background: #ff3200;
      align-items:start;
      padding-top:8px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      padding-bottom:8px;
      justify-content:center;
    }

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

    .Cursusoverzicht\:U8jReyzKFQJsi8quav1sJ {
      top:0;;
      left:0;;
      width:100%;;
      height:100%;;
      opacity:0;
      background-color:rgba(0, 0, 0, 0.15);;
    }

    .Cursusoverzicht\:UYyCv0RxtDADvN_c7gKas {
      width:35ch;
      z-index:1;
      background: var(border);
      padding-top:0.5rem;
      border-color:var(--grey-300);
      border-style:solid;
      border-width:1px;
      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;
    }

    .eWnuCT {
      color:var(--grey-400, #A3A3A3);
      display:flex;
      row-gap:0.125rem;
      font-size:0.833rem;
      column-gap:0.125rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .ewpVXW {
      --delay:var(--delay);
      gap:2rem;
      flex:1 1 400px;
      opacity:0;
      transition:background-color 250ms ease 0ms normal;
      padding-top:1rem;
      border-color:#666;
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:0.375rem;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:space-between;
      background-color:#333;
    }

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

    .ewpVXW.sold_out {
      background:#212121;
    }

    .ewpVXW.loaded {
      animation:2s ease var(--delay) 1 normal forwards running animation-diMMIZ;
    }

    @keyframes animation-diMMIZ {
        0% {
          opacity: 0;
        }

        100% {
          opacity: 1;
        }
    }

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

    .FVDMK {
      font-size:inherit;
      font-family:Uncut !important;
      font-weight:inherit;
    }

    .dmZhlQ {
      display:flex;
      row-gap:1rem;
      flex-wrap:wrap;
      column-gap:2rem;
      align-items:baseline;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 768px) {

    .dmZhlQ {
      display:flex;
      row-gap:0.5rem;
      column-gap:0.5rem;
      flex-direction:column;
    }
    }

    .rQpjM {
      color:var(--grey-700);
      z-index:1;
      font-size:0.75rem;
      font-family:inherit;
      font-weight:500;
    }

    .dTOTUo {
      gap:2rem;
      display:flex;
      row-gap:2rem;
      animation:2s ease 0ms 1 normal none running animation-empty;
      flex-wrap:wrap;
      max-width:800px;
      background:var(--sidebar-accent);
      column-gap:2rem;
      text-align:left;
      transition:background-color 250ms ease 0ms;
      align-items:center;
      padding-top:1rem;
      border-color:#666;
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:0.375rem;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:1rem;
      justify-content:space-between;
      background-color:#333;
    }

    .dTOTUo.ongoing {
      border-color:var(--green-400);
      border-style:solid;
      border-width:1px;
    }

    @media (max-width: 768px) {

    .dTOTUo {
      display:flex;
      row-gap:0.5rem;
      column-gap:0.5rem;
      align-items:start;
      flex-direction:column;
    }
    }

    .dTOTUo.even {
      background:var(--grey-700);
    }

    @keyframes animation-empty {
    }

    .Cursusoverzicht\:_5jeCFx_QsYKi5wFLy-yS {
      color:var(--foreground-muted, #737373);
      cursor:pointer;
    }

    .Cursusoverzicht\:_5jeCFx_QsYKi5wFLy-yS.trigger-open {
      color:#fff;
      text-decoration-line:underline;
      text-underline-offset:0.5rem;;
    }

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

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

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

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

    .caFfkk {
      gap:1rem;
      position:relative;
      flex-wrap:wrap;
      align-items:stretch;
      flex-direction:row;
      justify-content:center;
    }

    .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;
    }

    .Cursusoverzicht\:cZ94grBOylSw78m4lgbUW {
      gap:1rem;
      color:var(border, #edededff);
      width:65ch;
      opacity:0;
      max-width:calc(100% - 3rem);
      translate:0 20px;
      padding-top:2rem;
      border-color:#323035;
      border-style:solid;
      border-width:1px;
      padding-left:2rem;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      padding-right:2rem;
      padding-bottom:2rem;
      background-color:var(--grey-700, #404040);
      border-top-left-radius:5px;
      border-top-right-radius:5px;
      border-bottom-left-radius:5px;
      border-bottom-right-radius:5px;
    }

    .Cursusoverzicht\:cZ94grBOylSw78m4lgbUW.open {
      opacity:1;
      translate:0 0px;
    }

    .Cursusoverzicht\:cZ94grBOylSw78m4lgbUW.close-transition {
      gap:1rem;
      color:var(border, #edededff);
      width:65ch;
      opacity:0;
      max-width:calc(100% - 3rem);
      translate:0 20px;
      padding-top:2rem;
      padding-left:2rem;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      padding-right:2rem;
      padding-bottom:4rem;
      background-color:var(--grey-700, #404040);
      border-top-left-radius:5px;
      border-top-right-radius:5px;
      border-bottom-left-radius:0px;
    }

    .csdcQD {
      display:flex;
      row-gap:0.5rem;
      column-gap:0.5rem;
      align-items:flex-end;
      justify-content:flex-start;
    }

    @media (max-width: 768px) {

    .csdcQD {
      display:flex;
      align-items:flex-start;
      justify-content:flex-start;
    }
    }

    .cDzBOJ {
      color:var(border, #edededff);
      width:300px;
      min-height:50px;
      padding-top:1rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      padding-bottom:1rem;
      background-color:var(--foreground, #262626);
    }

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

    .fHvaPi {
      color:inherit;
      font-size:1rem;
      font-family:"Momentum Sans";
      text-transform:uppercase;
    }

    .bXeIDP {
      color:var(border, #edededff);
      width:fit-content;
      cursor:pointer;
      align-items:start;
      padding-top:8px;
      padding-left:1rem;
      border-radius:6px;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      padding-right:1rem;
      padding-bottom:8px;
      justify-content:center;
    }

    .bXeIDP:hover {
      background-color:var(--foreground, #262626);
    }

    .eoaBbS {
      width:fit-content;
      height:fit-content;
    }

    .Cursusoverzicht\:fPKQXIwfZveEt5UxPoQlg {
      top:0;;
      left:0;;
      width:100%;;
      height:100%;;
      opacity:0;
      background-color:rgba(0, 0, 0, 0.15);;
    }

    .Cursusoverzicht\:fPKQXIwfZveEt5UxPoQlg.open {
      opacity:1;
    }

    .Cursusoverzicht\:fPKQXIwfZveEt5UxPoQlg.open-transition {
      transition:opacity 700ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .Cursusoverzicht\:fPKQXIwfZveEt5UxPoQlg.close-transition {
      transition:opacity 300ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .Cursusoverzicht\:fWP1n4xe_eFhVZzVv0fTy {
      gap:1rem;
      color:var(border, #edededff);
      width:65ch;
      opacity:0;
      max-width:calc(100% - 3rem);
      translate:0 20px;
      padding-top:2rem;
      padding-left:2rem;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      padding-right:2rem;
      padding-bottom:4rem;
      background-color:var(--grey-700, #404040);
      border-top-left-radius:5px;
      border-top-right-radius:5px;
      border-bottom-left-radius:0px;
    }

    .Cursusoverzicht\:fWP1n4xe_eFhVZzVv0fTy.open {
      opacity:1;
      translate:0 0px;
    }

    .Cursusoverzicht\:fWP1n4xe_eFhVZzVv0fTy.open-transition {
      transition:all 700ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .Cursusoverzicht\:fWP1n4xe_eFhVZzVv0fTy.close-transition {
      transition:all 300ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .bbzyJG {
      font-size:inherit;
      font-family:Uncut !important;
      font-weight:inherit;
      padding-top:0.5rem;
    }

    .bpfMbd {
      color:var(--grey-700);
      display:flex;
      row-gap:1rem;
      font-size:0.833rem;
      background:var(--grey-300);
      column-gap:1rem;
      align-items:center;
      padding-top:0.33rem;
      padding-left:0.5rem;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:0.33rem;
      justify-content:flex-start;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Cursusoverzicht\:hvWytHUpQUkQ99-r6LTlO {
      color:var(--sidebar, #171717);
      width:fit-content;
      cursor:pointer;
      display:flex;
      row-gap:0.25rem;
      background:#ff3200;
      column-gap:0.25rem;
      align-items:center;
      padding-top:8px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      background-color:var(border, #edededff);
    }

    .Cursusoverzicht\:hvWytHUpQUkQ99-r6LTlO:hover {
      background-color:#ff3200;
    }

    .uEoih {
      color:white;
      cursor:pointer;
      display:flex;
      row-gap:0.25rem;
      background:var(--primary);
      column-gap:0.25rem;
      align-items:center;
      padding-top:8px;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
    }

    .uEoih:hover {
      background:#ff471a;
    }

    .uEoih.disabled {
      cursor:not-allowed;
      background: var(--foreground-muted);
    }

    .Cursusoverzicht\:jZNOSwT8_O65B4QBlzUOZ {
      top:0.5rem;
      right:0.5rem;
      width:1.5rem;
      cursor:pointer;
      height:1.5rem;
      position:absolute;
      border-radius:5px;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
    }

    .Cursusoverzicht\:jZNOSwT8_O65B4QBlzUOZ:hover {
      opacity:0.66;
    }

    .Cursusoverzicht\:k5wOLswCB6rtTNxjzsad6 {
      top:0;;
      left:0;;
      width:100%;;
      height:100%;;
      opacity:0;
      background-color:rgba(0, 0, 0, 0.15);;
    }

    .Cursusoverzicht\:k5wOLswCB6rtTNxjzsad6.open {
      opacity:1;
    }

    .Cursusoverzicht\:k5wOLswCB6rtTNxjzsad6.open-transition {
      transition:opacity 700ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .Cursusoverzicht\:k5wOLswCB6rtTNxjzsad6.close-transition {
      transition:opacity 300ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

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

    @media (max-width: 768px) {

    .IBSpw {
      gap:1rem;
      display:flex;
      grid-template-columns:1fr 4fr;
    }
    }

    .flsCc {
      gap:1rem;
      width:100%;
      max-width:400px;
      margin-bottom:2rem;
      flex-direction:row;
    }

    .Cursusoverzicht\:ky4v0XaBfB13_kyt8CUT7 {
      border-radius:6px;
    }

    .cKEcFK {
      color:var(--grey-400);
      font-size:1rem;
    }

    .cZncgT {
      row-gap:1.5rem;
      font-size:0.875rem;
      column-gap:1.5rem;
      flex-direction:row;
    }

    .cLhbUJ {
      font-size:3rem;
      font-family:"Momentum Sans";
      line-height:200%;
      text-transform:uppercase;
    }

    .bXRiLn {
      color:var(--grey-300);
    }

    .bumXzF {
      color:var(--grey-400, #A3A3A3);
      display:flex;
      row-gap:1rem;
      font-size:0.833rem;
      column-gap:1rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .Cursusoverzicht\:pgVrAbrAj1uvivUCtQIRM {
      color:var(--foreground-muted, #737373);
      cursor:pointer;
    }

    .Cursusoverzicht\:pgVrAbrAj1uvivUCtQIRM.trigger-open {
      color:#fff;
      text-decoration-line:underline;
      text-underline-offset:0.5rem;;
    }

    .ccfdCP {
      display:flex;
      row-gap:0.5rem;
      flex-wrap:wrap;
      column-gap:0.5rem;
      align-items:flex-end;
      flex-direction:row;
      justify-content:end;
    }

    .cgMMll {
      width:max-content;
      min-width:100px;
    }

    .dsEVIH {
      flex:1;
    }

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

    .Cursusoverzicht\:w0XQOSB-1Y6EetiTmrwoe {
      gap:1rem;
      color:var(border, #edededff);
      width:65ch;
      opacity:0;
      max-width:calc(100% - 3rem);
      translate:0 20px;
      padding-top:2rem;
      padding-left:2rem;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      padding-right:2rem;
      padding-bottom:4rem;
      background-color:var(--grey-700, #404040);
      border-top-left-radius:5px;
      border-top-right-radius:5px;
      border-bottom-left-radius:0px;
    }

    .Cursusoverzicht\:w0XQOSB-1Y6EetiTmrwoe.open {
      opacity:1;
      translate:0 0px;
    }

    .Cursusoverzicht\:w0XQOSB-1Y6EetiTmrwoe.open-transition {
      transition:all 700ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .Cursusoverzicht\:w0XQOSB-1Y6EetiTmrwoe.close-transition {
      transition:all 300ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }