
  

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


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

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

    @media (max-width: 600px) {

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

    .bmcGWF {
      display:flex;
      row-gap:1rem;
      flex-wrap:wrap;
      column-gap:1rem;
      flex-direction:row;
    }

    .dUkPXw {
      width:100%;
      height:100%;
      display:contents;
    }

    .fzvQal {
      top:var(--offset, 16px);
      left:var(--offset, 16px);
      right:var(--offset, 16px);
      bottom:var(--offset, 16px);
      z-index:50;
      position:var(--position, fixed);
      pointer-events:none;
    }

    .fzvQal.bottom {
      flex-direction:column-reverse;
      justify-content:end;
    }

    .ezcecC {
      animation:fadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      align-items:center;
      flex-direction:column;
      padding-bottom:12px;
      justify-content:start;
      transform-origin:top center;
    }

    .ezcecC.disposing {
      animation:fadeOutUp 0.5s ease-out forwards;
    }

    .ezcecC.left {
      align-self:start;
    }

    .ezcecC.right {
      align-self:end;
    }

    .ezcecC.bottom {
      animation:fadeInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      padding-top:12px;
      transform-origin:bottom center;
    }

    .ezcecC.disposing-bottom {
      animation:fadeOutDown 0.5s ease-out forwards;
    }

    .dPrdBe {
      width:100%;
      height:100%;
      overflow:hidden;
    }

    .vLhhu {
      width:100%;
      height:100%;
    }

    .bRKGYi {
      width:1rem;
      height:1rem;
    }

    .byOYIn {
      gap:8px;
      color:var(--grey-200, #E5E5E5);
      cursor:pointer;
      display:flex;
      max-width:350px;
      box-shadow:0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
      align-items:center;
      line-height:1.3;
      padding-top:12px;
      user-select:none;
      padding-left:16px;
      border-radius:14px;
      padding-right:16px;
      flex-direction:row;
      padding-bottom:12px;
      pointer-events:auto;
      justify-content:start;
      background-color:var(--toast-background-color, #171717);
    }

    .byOYIn:hover {
      color:var(--teal-50, #F0FDFA);
      background-color:var(--grey-800, #262626);
    }

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

    .eKEbLC {
      color:var(--foreground);
      font-size:var(--text-xl);
    }

    .eeDOFk {
      gap:12px;
      flex:2;
      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;
    }

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

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

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

    .coA-dpE {
      display:table;
      position:relative;
      overflow-x:auto;
      overflow-y:auto;
      table-layout:auto;
      border-radius:8px;
      color:var(--foreground);
    }

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

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

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

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

    .ckBaYV.hidden {
      display:none;
    }

    .workshop\:PyN68sdrlqwGUGzJpMk1b {
      row-gap:2rem;
      column-gap:2rem;
      margin-top:2rem;
    }

    .crBEIt {
      color:var(--foreground);
      font-size:1rem;
    }

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

    .bPVLJT {
      color:#bd5b00;
      width:fit-content;
      display:flex;
      font-size:12px;
      background:#fff5eb;
      max-height:400px;
      align-items:flex-start;
      font-family:inherit;
      font-weight:500;
      padding-top:0.25rem;
      border-color:#fab06b;
      border-style:solid;
      border-width:1px;
      padding-left:0.5rem;
      border-radius:6px;
      padding-right:0.5rem;
      flex-direction:column;
      padding-bottom:0.25rem;
      justify-content:flex-start;
    }

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

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

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

    .workshop\:kcGmaoaTTQ2FcaC0LODV6 {
      width:fit-content;
      display:flex;
      min-width:200px;
      align-items:flex-start;
      flex-direction:row;
      justify-content:flex-start;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

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

    .bFvcAt {
      z-index:3;
    }

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

    .cBvpeo {
      cursor:pointer;
    }

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

    .dwwiYw {
      width:100px;
      display:table-cell;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

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

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

    .egWsVL {
      display:flex;
      row-gap:1rem;
      column-gap:1rem;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
    }

    .oHPOS {
      display:table-row;
      white-space:nowrap;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

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