
  

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


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

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

    @media (max-width: 600px) {

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

    .ffKeKk {
      color:var(--grey-400);
      display:flex;
      row-gap:.133rem;
      font-size:0.875rem;
      column-gap:.133rem;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:-2px;
      flex-direction:row;
      padding-bottom:-1px;
      justify-content:flex-start;
    }

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

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

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

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

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

    .dnGvuW {
      display:table-row;
      white-space:nowrap;
      border-bottom-color:var(--grey-200, #edededff);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

    .bBjwhc {
      width:100%;
      flex-wrap:wrap;
      align-items:center;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:space-between;
      border-bottom-color:var(--grey-200, #edededff);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

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

    .ABRAv {
      display:table-row;
      text-align:left;
      border-bottom-color:var(--grey-200, #edededff);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

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

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

    .defwUr {
      color:var(--grey-500, #737373);
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      white-space:normal;
    }

    .dLuvoX {
      color:var(--grey-900, #171717);
      display:table-cell;
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      background-color:#fff;
    }

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