
  

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


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

    @media (min-width: 600px) {

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

    .fDlnzw {
      flex:1;
      width:100%;
      align-items:center;
      flex-direction:row;
      justify-content:space-between;
    }

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

    .Dashboard\:-4mcRUwrMSKuIUVAw3Qrt {
      display:flex;
      flex-direction:row;
      justify-content:space-between;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .NICmL {
      gap:12px;
      left:0px;
      width:300px;
      z-index:1;
      position:sticky;
      background:var(--background);
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .ePxVeE {
      width:250px;
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:center;
    }

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

    .cvGeqz {
      display:flex;
      font-size:16px;
      align-items:flex-start;
      font-family:inherit;
      font-weight:600;
      justify-content:flex-start;
    }

    .dPbnrg {
      z-index:1;
      font-size:0.75rem;
      font-family:inherit;
      font-weight:500;
    }

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

    .dJUKRM {
      position:relative;
      overflow-x:auto;
      overflow-y:auto;
      border-radius:8px;
    }

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

    .RdhWu {
      width:225px;
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:center;
    }

    .fNydH {
      left:0px;
      width:300px;
      display:flex;
      z-index:3;
      position:sticky;
      background:var(--background);
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
    }

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

    .bzurhI {
      width:80px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .Dashboard\:5-mhZ70fIBp32mZaV6H31 {
      width:100%;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .bzjZje {
      width:100px;
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:center;
    }

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

    .ftoFLX {
      color:var(--foreground-muted);
      font-size:12px;
    }

    .bWXDmf {
      font-size:18px;
    }

    .chWZFr {
      flex:1;
      width:250px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .cbJEgC {
      gap:2px;
      align-items:start;
      justify-content:center;
    }

    .fGdMMh {
      gap:20px;
      width:100%;
      position:relative;
      background:var(--);
      padding-top:32px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:32px;
    }

    .cBvpeo {
      cursor:pointer;
    }

    .JoBpk {
      gap:8px;
      flex-direction:row;
    }

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

    .Dashboard\:9giGSKg7ibpASPBzIO_u5 {
      row-gap:0.25rem;
      z-index:1;
      background:var(--background);
      column-gap:0.25rem;
      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;
    }

    .eNYMMS {
      gap:12px;
      flex:2;
      min-width:300px;
      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;
    }

    .dtxytk {
      width:fit-content;
    }

    .csSnzZ {
      left:0px;
      width:200px;
      z-index:3;
      position:sticky;
      background:var(--background);
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
    }

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

    .ffkZTC {
      gap:4px;
      color:var(--foreground);
      cursor:pointer;
      display:flex;
      outline:none;
      row-gap:0.5rem;
      font-size:14px;
      column-gap:0.5rem;
      align-items:center;
      font-weight:400;
      line-height:150%;
      padding-top:4px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:0.5rem;
      border-radius:4px;
      padding-right:0.5rem;
      flex-direction:row;
      padding-bottom:4px;
      justify-content:center;
    }

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

    .ffkZTC.disabled {
      cursor:not-allowed;
      background: #c4c4c4;
    }

    .cekrJB {
      color:var(--foreground-muted);
      display:flex;
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      flex-direction:column;
    }

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

    .ezchpY {
      position:relative;
      max-height:400px;
      overflow-x:auto;
      overflow-y:auto;
      border-radius:8px;
    }

    .bGGhWg {
      gap:12px;
      left:0px;
      width:200px;
      z-index:1;
      position:sticky;
      background:var(--background);
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .cMDBpF {
      width:200px;
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:center;
    }

    .dzJFgd {
      top:0px;
      width:fit-content;
      z-index:2;
      position:sticky;
      flex-direction:row;
    }

    .VvWIf {
      color:var(--foreground-muted);
      display:flex;
      row-gap:0.25rem;
      font-size:12px;
      column-gap:0.25rem;
      align-items:flex-start;
      flex-direction:row;
      justify-content:flex-start;
    }

    .bAXhTW {
      gap:20px;
      width:100%;
      height:100%;
      padding-top:2rem;
      padding-left:2rem;
      padding-right:2rem;
      padding-bottom:3rem;
    }

    .eKslEL {
      color:var(--grey-50, #FAFAFA);
      position:absolute;
      font-size:var(--font-size-xs);
      transform:translateX(-40%);
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:-1.5rem;
    }

    .eKslEL.larger-bars {
      left:40%;
    }

    .eAIBa-d {
      height:1px;
      background-color:var(--grey-700, #404040);
    }

    .fxGcDJ {
      flex:1;
    }

    .LwEew {
      color:var(--grey-50, #FAFAFA);
      width:max-content;
      display:inline-block;
      font-size:var(--font-size-sm);
      max-width:80px;
    }

    .jHhXf {
      width:100%;
      height:var(--height);
      background:var(--bar-color, #84CC16);
      min-height:8px;
      border-radius:6px;
    }

    .qrkBm {
      width:100%;
      height:100%;
      z-index:0;
      position:absolute;
      justify-content:space-between;
    }

    .LZgnt {
      color:var(--grey-50, #FAFAFA);
      position:relative;
      font-size:var(--font-size-xl);
      font-family:inherit;
      font-weight:inherit;
    }

    .fyFjDx {
      color:var(--grey-400, #A3A3A3);
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
    }

    .nMrzu {
      width:100%;
      height:100%;
      position:absolute;
    }

    .dBViEH {
      color:#d7e8feff;
      width:128px;
      height:32px;
      outline:none;
      font-size:0.75rem;
      align-items:center;
      font-weight:var(--font-weight-regular);
      border-radius:6px;
      justify-content:center;
      background-color:#2463ebff;
    }

    .dBViEH:hover {
      background-color:#3780f6ff;
    }

    .dBViEH:focus-visible {
      border-color:#bedbfeff;
      border-style:solid;
      border-width:1px;
    }

    .EXSxf {
      color:var(--grey-50, #FAFAFA);
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
    }

    .doKbI {
      bottom:100%;
      z-index:10;
      position:absolute;
      transform:translateX(-50%);
      align-items:start;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:0.5rem;
      margin-bottom:0.25rem;
      padding-right:1rem;
      padding-bottom:0.5rem;
      justify-content:start;
      background-color:#00000087;
    }

    .drwCHH {
      flex:1;
      height:100%;
      max-width:12px;
      min-width:6px;
      align-items:start;
      border-radius:6px;
      justify-content:end;
      background-color:var(--bar_background, #404040fc);
    }

    .drwCHH.larger-bars {
      max-width:none;
      align-items:start;
      justify-content:end;
    }

    .eApcnn {
      height:100%;
      z-index:3;
      align-items:end;
      flex-direction:row;
      justify-content:space-between;
    }

    .eApcnn.larger-bars {
      gap:0.5rem;
      align-items:center;
      flex-direction:row;
      justify-content:center;
    }

    .sHCol {
      color:var(--grey-50, #FAFAFA);
      font-size:inherit;
      font-family:inherit;
      font-weight:700;
    }

    .Dashboard\:J_zbOPwZtHrpTBkfR5y-O {
      width:100%;
      display:flex;
      align-self:flex-end;;
      background:;
      flex-direction:column;
      padding-bottom:5rem;
    }

    .dyuIjc {
      gap:12px;
      flex:2;
      min-width:300px;
      padding-top:12px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:12px;
      border-radius:8px;
      padding-right:12px;
      padding-bottom:12px;
    }

    .WwBxr {
      width:100px;
      align-items:flex-start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:flex-start;
    }

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

    .fkaZPL {
      padding-top:8px;
      padding-left:8px;
      border-radius:8px;
      padding-right:8px;
      padding-bottom:8px;
    }

    .ctEnBZ {
      flex-direction:row;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .eTnjcn {
      width:100%;
      flex-direction:row;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

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

    .chPyuI {
      color:var(--teal-50);
      font-size:12px;
      font-family:inherit;
      font-weight:500;
    }

    .edKZdL {
      width:80px;
      display:flex;
      align-items:flex-start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:flex-start;
    }

    .bmGkiT {
      top:-5px;
      left:-9px;
      color:#871700;
      cursor:pointer;
      font-size:9px;
      background:#fce2dd;
      font-family:inherit;
      font-weight:700;
      padding-top:0.20rem;
      padding-left:0.33rem;
      border-radius:6px;
      padding-right:0.33rem;
      padding-bottom:0.20rem;
      text-decoration-color:#c4c4c4ff;
      text-decoration-style:dashed;
    }

    .Dashboard\:OzciscXewBAMQCEP51hJN {
      width:100%;
      font-size:2rem;
      font-family:'Inter';
      font-weight:600;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .qSoJZ {
      gap:2px;
      display:flex;
      align-items:start;
      justify-content:center;
    }

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

    .edUPTO {
      font-size:12px;
      font-family:inherit;
      font-weight:800;
    }

    .bDIpZC {
      font-size:2rem;
      font-family:'Inter';
      font-weight:600;
    }

    .cCxqdv {
      color:var(--primary);
      width:215px;
      display:block;
      overflow:hidden;
      font-size:var(--text-xs);
      white-space:nowrap;
      text-overflow:ellipsis;
    }

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

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

    .Dashboard\:U76DoerbpjRpRsUUGLpm5 {
      display:flex;
      flex-direction:row;
      justify-content:space-between;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .eytmbn {
      width:225px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .eNIMma {
      gap:12px;
      flex:1;
      background:var(--background);
      align-items:start;
      padding-top:12px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:12px;
      border-radius:8px;
      padding-right:12px;
      padding-bottom:12px;
      justify-content:center;
    }

    .boWwBB {
      color:var(--foreground-muted);
      display:flex;
      row-gap:0.25rem;
      font-size:12px;
      column-gap:0.25rem;
      align-items:flex-start;
      font-family:'Inter';
      flex-direction:row;
      justify-content:flex-start;
    }

    .bEoBAg {
      left:0px;
      width:200px;
      display:flex;
      z-index:3;
      position:sticky;
      background:var(--background);
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
    }

    .cHczGi {
      gap:12px;
      flex:1;
      min-width:300px;
      min-height:300px;
      overflow-y:hidden;
      padding-top:12px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:12px;
      border-radius:8px;
      padding-right:12px;
      padding-bottom:12px;
    }

    .eqTbRJ {
      font-size:16px;
      font-family:'Inter';
      font-weight:600;
    }

    .eLjyMN {
      font-size:18px;
      font-family:'Inter';
    }

    .CcFyJ {
      gap:20px;
      width:100%;
      flex-wrap:wrap;
      min-height:100px;
      align-items:;
      flex-direction:row;
      justify-content:;
    }

    .ewCihR {
      color:var(--green-400);
      font-size:0.875rem;
    }

    .eWswJP {
      font-size:var(--text-base);
    }

    .efLHAm {
      color:var(--foreground-muted);
      row-gap:0.25rem;
      font-size:12px;
      column-gap:0.25rem;
      flex-direction:row;
    }

    .fiInmO {
      width:200px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .cqULcC {
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      line-height:30px;
      padding-top:0px;
      padding-bottom:0px;
    }

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

    .fBEHA-D {
      font-size:16px;
      font-weight:600;
    }

    .bCqtHj {
      display:flex;
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      flex-direction:column;
    }

    .IgxPv {
      width:250px;
      display:flex;
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      padding-right:0.5rem;
      flex-direction:column;
    }

    .Shgvs {
      flex-direction:row;
    }

    .eUYmvS {
      display:flex;
      row-gap:0.25rem;
      column-gap:0.25rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .ebCqlJ {
      flex:1 1 0%;
      display:flex;
      row-gap:1rem;
      grid-row:span 3;
      background:linear-gradient(to bottom right, var(--background) 50%, var(--sidebar-accent) 100%) scroll border-box padding-box no-repeat no-repeat 0% 0% / 100% auto var(--background);
      column-gap:1rem;
      align-items:flex-start;
      padding-top:1rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:8px;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:flex-start;
    }

    .emWcSo {
      flex:1;
      display:flex;
      row-gap:1rem;
      grid-row:span 2;
      background:linear-gradient(to bottom right, var(--background) 50%, #00996a40 100%) scroll padding-box border-box no-repeat no-repeat 0% 0% / 100% auto var(--background);
      column-gap:1rem;
      align-items:flex-start;
      grid-column:span 2;
      padding-top:1rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:1rem;
      border-radius:8px;
      padding-right:1rem;
      padding-bottom:1rem;
      justify-content:flex-start;
    }

    .cQSKgu {
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      line-height:30px;
      padding-top:0px;
      padding-bottom:0px;
      text-underline-offset:3px;;
    }

    .cdELsX {
      font-size:12px;
      font-family:inherit;
      font-weight:500;
    }

    .dvPqTz {
      flex-direction:row;
      border-bottom-color:var(--background);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .Dashboard\:kX98SMzVIVls3-yaG_TNj {
      width:100%;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .bDbfEz {
      width:80px;
      align-items:start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      padding-bottom:8px;
      justify-content:center;
    }

    .dyOFol {
      top:-5px;
      left:-9px;
      cursor:pointer;
      font-size:9px;
      background:var(--sidebar);
      font-family:inherit;
      font-weight:700;
      padding-top:0.20rem;
      padding-left:0.33rem;
      border-radius:6px;
      padding-right:0.33rem;
      padding-bottom:0.20rem;
      text-decoration-color:#c4c4c4ff;
      text-decoration-style:dashed;
    }

    .fryYge {
      gap:4px;
      color:var(--foreground);
      cursor:pointer;
      display:flex;
      outline:none;
      font-size:14px;
      align-items:center;
      font-weight:400;
      line-height:150%;
      padding-top:4px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:8px;
      border-radius:4px;
      padding-right:4px;
      flex-direction:row;
      padding-bottom:4px;
      justify-content:center;
    }

    .fryYge:focus-visible {
      outline-color:#E5E5E5;
      outline-style:solid;
      outline-width:1px;
    }

    .fryYge:hover {
      background-color:var(--background, #FAFAFA);
    }

    .dPSLAm {
      cursor:help;
    }

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

    .bJyotm {
      gap:20px;
      width:100%;
      display:flex;
      flex-wrap:wrap;
      min-height:100px;
      align-items:flex-start;
      flex-direction:row;
      justify-content:flex-start;
    }

    .flUtnl {
      color:var(--red-500);
      display:flex;
      row-gap:0.25rem;
      font-size:0.75rem;
      column-gap:0.25rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .eeDaHl {
      color:var(--foreground);
      font-size:16px;
      font-weight:600;
    }

    .EYuiN {
      width:100%;
      grid-row-gap:20px;
      grid-column-gap:20px;
      grid-template-columns:2fr;
    }

    @media (min-width: 800px) {

    .EYuiN {
      display:grid;
      grid-template-columns:repeat(3, 1fr);
    }
    }

    @media (min-width: 1200px) {
    }

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

    .bNAHfT {
      font-size:12px;
      font-family:inherit;
      font-weight:500;
      line-height:30px;
      padding-top:0px;
      padding-bottom:0px;
      text-underline-offset:3px;;
    }

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

    .dZkMVp {
      display:flex;
      row-gap:0.25rem;
      font-size:0.75rem;
      column-gap:0.25rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .cAkEhc {
      font-family:inherit;
    }

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

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

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

    .ohjZG {
      font-size:2rem;
    }

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