
  

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


    .ccoZQJ {
      min-height:100vh;
      overflow-y:visible;
      align-items:end;
      padding-left:200px;
      justify-content:start;
      background-color:#ffffffff;
    }

    .ZLwyI {
      gap:1rem;
    }

    .cJidxo {
      left:-0.25rem;
    }

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

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

    .uurrooster_dag\:8PgrXUJsMgGLN-TCK-0BL {
      top:0;;
      left:0;;
      width:100%;;
      height:100%;;
      opacity:0;
      background-color:rgba(0, 0, 0, 0.15);;
    }

    .uurrooster_dag\:8PgrXUJsMgGLN-TCK-0BL.open {
      opacity:1;
    }

    .uurrooster_dag\:8PgrXUJsMgGLN-TCK-0BL.open-transition {
      transition:opacity 700ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

    .uurrooster_dag\:8PgrXUJsMgGLN-TCK-0BL.close-transition {
      transition:opacity 300ms cubic-bezier(0.65, 0.04, 0.35, 1) 0ms ;
    }

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

    .uurrooster_dag\:E8UQUpNJdAT92qxtyibI_ {
      border-radius:6px;
    }

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

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

    .uurrooster_dag\:HCTJ8DVmWte_QWCIAFLxP {
      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;
    }

    .uurrooster_dag\:HCTJ8DVmWte_QWCIAFLxP.open {
      opacity:1;
      translate:0 0px;
    }

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

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

    .dlBEbs {
      width:10px;
      height:10px;
      rotate:z 45deg;
      display:flex;
      translate:0px -4px;
      background: var(--grey-200);
      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;
    }

    .eLvQzN {
      color:#ff3200;
      font-family:Momentum Sans;
      text-transform:uppercase;
    }

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

    .eavxcd {
      color:var(border, #edededff);
      width:1.25rem;
      cursor:pointer;
      height:1.25rem;
      display:flex;
      align-items:center;
      outline-color:var(--foreground-muted, #737373);
      outline-style:solid;
      outline-width:1px;
      justify-content:center;
      border-top-left-radius:100%;
      border-top-right-radius:100%;
      border-bottom-left-radius:100%;
      border-bottom-right-radius:100%;
    }

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

    .uurrooster_dag\:XAt_-F5OjXKj1nNLU9bl- {
      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;
    }

    .uurrooster_dag\:XAt_-F5OjXKj1nNLU9bl-:hover {
      opacity:0.66;
    }

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

    .fuDmPF {
      gap:0.25rem;
      align-items:center;
      justify-content:start;
    }

    .cmoYiT {
      color:var(--grey-300, #D4D4D4);
      font-size:1rem;
      text-align:center;
      font-family:Momentum Sans;
      line-height:100%;
      text-transform:uppercase;
    }

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

    .uurrooster_dag\:ZPYwXmMwMiJz1xXg8Zupx {
      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;
    }

    .cyxzsS {
      gap:1rem;
      transition:background-color 250ms ease 0ms;
      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:start;
      background-color:#333;
    }

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

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

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

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

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

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

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

    .cNEFPW {
      color:var(--sidebar, #171717);
      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:center;
      background-color:var(border, #edededff);
    }

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

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

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

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

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

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

    .eeascN {
      color:inherit;
      font-size:1.33rem;
      text-align:center;
      font-family:Momentum Sans;
      font-weight:300;
      text-transform:uppercase;
    }

    .cMigzM {
      gap:2rem;;
      display:grid;;
      grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));;
    }