/* this CSS contains only the basic CSS needed to run the app and use it */

.lgraphcanvas {
  /*cursor: crosshair;*/
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.lgraphcanvas * {
  box-sizing: border-box;
}

.litegraph.litecontextmenu {
  position: fixed;
  top: 100px;
  left: 100px;
  min-width: 100px;
  color: #aaf;
  padding: 0;
  box-shadow: 0 0 10px black;
  background-color: #2e2e2e;
  z-index: 10;
  max-height: -webkit-fill-available;
  overflow-y: auto;
}

/* Enable scrolling overflow in Firefox */
@supports not (max-height: -webkit-fill-available) {
  .litegraph.litecontextmenu {
    max-height: 80vh;
    overflow-y: scroll;
  }
}

.litegraph.litecontextmenu .litemenu-title img {
  margin-top: 2px;
  margin-left: 2px;
  margin-right: 4px;
}

.litegraph.litecontextmenu .litemenu-entry {
  margin: 2px;
  padding: 2px;
}

.litegraph .litemenubar ul {
  margin: 0;
  padding: 0;
}

.litegraph .litemenubar li {
  font-size: 14px;
  color: #999;
  display: inline-block;
  min-width: 50px;
  padding-left: 10px;
  padding-right: 10px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.litegraph .litemenubar li:hover {
  background-color: #777;
  color: #eee;
}

.litegraph .litegraph .litemenubar-panel {
  position: absolute;
  top: 5px;
  left: 5px;
  min-width: 100px;
  background-color: #444;
  box-shadow: 0 0 3px black;
  padding: 4px;
  border-bottom: 2px solid #aaf;
  z-index: 10;
}

.litegraph .litemenu-entry,
.litemenu-title {
  font-size: 12px;
  color: #aaa;
  padding: 0 0 0 4px;
  margin: 2px;
  padding-left: 2px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.litegraph .litemenu-entry .icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 2px;
  vertical-align: top;
}

.litegraph .litemenu-entry.checked .icon {
  background-color: #aaf;
}

.litegraph .litemenu-entry .more {
  float: right;
  padding-right: 5px;
}

.litegraph .litemenu-entry.disabled {
  opacity: 0.5;
  cursor: default;
}

.litegraph .litemenu-entry.separator {
  display: block;
  border-top: 1px solid var(--border-default);
  width: 100%;
  height: 0px;
  margin: 3px 0 2px 0;
  background-color: transparent;
  padding: 0;
  cursor: default;
}

.litegraph .litemenu-entry.has_submenu {
  border-right: 2px solid cyan;
}

.litegraph .litemenu-title {
  color: #dde;
  background-color: #111;
  margin: 0;
  padding: 2px;
  cursor: default;
}

.litegraph .litemenu-entry:hover:not(.disabled):not(.separator) {
  background-color: var(--palette-interface-panel-hover-surface);
  color: var(--content-hover-fg);
  transition: all 0.2s;
}

.litegraph .litemenu-entry .property_name {
  display: inline-block;
  text-align: left;
  min-width: 80px;
  min-height: 1.2em;
}

.litegraph .litemenu-entry .property_value {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: right;
  min-width: 80px;
  min-height: 1.2em;
  vertical-align: middle;
  padding-right: 10px;
}

.litegraph.litesearchbox {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 4px;
}

.litegraph.litesearchbox input,
.litegraph.litesearchbox select {
  margin-top: 3px;
  min-width: 60px;
  min-height: 1.5em;
  background-color: black;
  border: 0;
  color: white;
  padding-left: 10px;
  margin-right: 5px;
  max-width: 300px;
}

.litegraph.litesearchbox .name {
  display: inline-block;
  min-width: 60px;
  min-height: 1.5em;
  padding-left: 10px;
}

.litegraph.litesearchbox .helper {
  overflow: auto;
  max-height: 200px;
  margin-top: 2px;
}

.litegraph.lite-search-item {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding-top: 2px;
}

.litegraph.lite-search-item.not_in_filter {
  /*background-color: rgba(50, 50, 50, 0.5);*/
  /*color: #999;*/
  color: #b99;
  font-style: italic;
}

.litegraph.lite-search-item.generic_type {
  /*background-color: rgba(50, 50, 50, 0.5);*/
  /*color: #DD9;*/
  color: #999;
  font-style: italic;
}

.litegraph.lite-search-item:hover,
.litegraph.lite-search-item.selected {
  cursor: pointer;
  background-color: white;
  color: black;
}

.litegraph.lite-search-item-type {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  margin-left: 5px;
  font-size: 14px;
  padding: 2px 5px;
  position: relative;
  top: -2px;
  opacity: 0.8;
  border-radius: 4px;
}

/* DIALOGs ******/

.litegraph .dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -200px;

  color: var(--base-foreground);
  background-color: var(--comfy-menu-bg);

  min-width: 400px;
  min-height: 200px;
  box-shadow: 0 0 4px #111;
  border-radius: 6px;
}

.litegraph .dialog.settings {
  left: 10px;
  top: 10px;
  height: calc(100% - 20px);
  margin: auto;
  max-width: 50%;
}

.litegraph .dialog.centered {
  top: 50px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  min-width: 600px;
  min-height: 300px;
  height: calc(100% - 100px);
  margin: auto;
}

.litegraph .dialog .close {
  float: right;
  margin: 4px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 1.4em;
}

.litegraph .dialog .close:hover {
  color: white;
}

.litegraph .dialog .dialog-header {
  border-bottom: 1px solid var(--border-default);
}

.litegraph .dialog .dialog-header {
  height: 40px;
}
.litegraph .dialog .dialog-footer {
  height: 50px;
  padding: 10px;
  margin: 0;
  border-top: 1px solid var(--border-default);
}

.litegraph .dialog .dialog-header .dialog-title {
  font: 1rem;
  margin: 4px;
  padding: 4px 10px;
  display: inline-block;
}

.litegraph .dialog .dialog-content,
.litegraph .dialog .dialog-alt-content {
  height: calc(100% - 90px);
  width: 100%;
  min-height: 100px;
  display: inline-block;
  /* color: #aaa; */
  /*background-color: black;*/
  overflow: auto;
}

.litegraph .dialog .dialog-content h3 {
  margin: 10px;
}

.litegraph .dialog .dialog-content .connections {
  flex-direction: row;
}

.litegraph .dialog .dialog-content .connections .connections_side {
  width: calc(50% - 5px);
  min-height: 100px;
  background-color: black;
  display: flex;
}

.litegraph .dialog .node_type {
  font-size: 1.2em;
  display: block;
  margin: 10px;
}

.litegraph .dialog .node_desc {
  opacity: 0.5;
  display: block;
  margin: 10px;
}

.litegraph .dialog .separator {
  display: block;
  width: calc(100% - 4px);
  height: 1px;
  border-top: 1px solid var(--border-default);
  margin: 10px 2px;
  padding: 0;
}

.litegraph .dialog .property {
  margin-bottom: 2px;
  padding: 4px;
}

.litegraph .dialog .property_name {
  color: var(--muted-foreground);
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 160px;
  padding-left: 4px;
  overflow: hidden;
  margin-right: 6px;
}

.litegraph .dialog .property:hover .property_name {
  color: white;
}

.litegraph .dialog .property_value {
  display: inline-block;
  text-align: right;
  color: var(--input-text);
  background-color: var(--component-node-widget-background);
  /*width: calc( 100% - 122px );*/
  max-width: calc(100% - 162px);
  min-width: 200px;
  max-height: 300px;
  min-height: 20px;
  padding: 4px;
  padding-right: 12px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}

.litegraph .dialog .property_value:hover {
  color: white;
}

.litegraph .dialog .property.boolean .property_value {
  padding-right: 30px;
  color: #a88;
  /*width: auto;
    float: right;*/
}

.litegraph .dialog .property.boolean.bool-on .property_name {
  color: #8a8;
}
.litegraph .dialog .property.boolean.bool-on .property_value {
  color: #8a8;
}

.litegraph .dialog .btn {
  border: 0;
  border-radius: 4px;
  padding: 4px 20px;
  margin-left: 0px;
  background-color: var(--secondary-background);
  color: var(--base-foreground);
}

.litegraph .dialog .btn:hover {
  background-color: var(--secondary-background-hover);
  color: var(--base-foreground);
}

.litegraph .dialog .btn.delete:hover {
  background-color: var(--color-danger-100);
  color: var(--base-foreground);
}

.litegraph .bullet_icon {
  margin-left: 10px;
  border-radius: 10px;
  width: 12px;
  height: 12px;
  background-color: #666;
  display: inline-block;
  margin-top: 2px;
  margin-right: 4px;
  transition: background-color 0.1s ease 0s;
  -moz-transition: background-color 0.1s ease 0s;
}

.litegraph .bullet_icon:hover {
  background-color: #698;
  cursor: pointer;
}

/* OLD */

.graphcontextmenu {
  padding: 4px;
  min-width: 100px;
}

.graphcontextmenu-title {
  color: #dde;
  background-color: #222;
  margin: 0;
  padding: 2px;
  cursor: default;
}

.graphmenu-entry {
  box-sizing: border-box;
  margin: 2px;
  padding-left: 20px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  transition: all linear 0.3s;
}

.graphmenu-entry.event,
.litemenu-entry.event {
  border-left: 8px solid orange;
  padding-left: 12px;
}

.graphmenu-entry.danger,
.litemenu-entry.danger {
  color: var(--error-text);
}

.litegraph .litemenu-entry.danger:hover:not(.disabled) {
  color: var(--error-text);
  opacity: 0.8;
}

.graphmenu-entry.disabled {
  opacity: 0.3;
}

.graphmenu-entry.submenu {
  border-right: 2px solid #eee;
}

.graphmenu-entry:hover {
  background-color: #555;
}

.graphmenu-entry.separator {
  background-color: var(--border-default);
  height: 1px;
  width: calc(100% - 20px);
  -moz-width: calc(100% - 20px);
  -webkit-width: calc(100% - 20px);
}

.graphmenu-entry .property_name {
  display: inline-block;
  text-align: left;
  min-width: 80px;
  min-height: 1.2em;
}

.graphmenu-entry .property_value,
.litemenu-entry .property_value {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: right;
  min-width: 80px;
  min-height: 1.2em;
  vertical-align: middle;
  padding-right: 10px;
}

.graphdialog {
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: 2em;
  background-color: #333;
  font-size: 1.2em;
  box-shadow: 0 0 10px black;
  z-index: 10;
}

.graphdialog.rounded {
  border-radius: 12px;
  padding-right: 2px;
}

.graphdialog .name {
  display: inline-block;
  min-width: 60px;
  min-height: 1.5em;
  padding-left: 10px;
}

.graphdialog input,
.graphdialog textarea,
.graphdialog select {
  margin: 3px;
  min-width: 60px;
  min-height: 1.5em;
  background-color: black;
  border: 0;
  color: white;
  padding-left: 10px;
  outline: none;
}

.graphdialog textarea {
  min-height: 150px;
}

.graphdialog button {
  margin-top: 3px;
  vertical-align: top;
  background-color: #999;
  border: 0;
}

.graphdialog button.rounded,
.graphdialog input.rounded {
  border-radius: 0 12px 12px 0;
}

.graphdialog .helper {
  overflow: auto;
  max-height: 200px;
}

.graphdialog .help-item {
  padding-left: 10px;
}

.graphdialog .help-item:hover,
.graphdialog .help-item.selected {
  cursor: pointer;
  background-color: white;
  color: black;
}

.litegraph .dialog {
  min-height: 0;
}
.litegraph .dialog .dialog-content {
  display: block;
}
.litegraph .graphdialog {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 4px 10px;
  position: fixed;
}
.litegraph .graphdialog .name {
  padding: 0;
  min-height: 0;
  font-size: 16px;
  vertical-align: middle;
}
.litegraph .graphdialog .value {
  font-size: 16px;
  min-height: 0;
  margin: 0 10px;
  padding: 2px 5px;
}
.litegraph .graphdialog input[type='checkbox'] {
  width: 16px;
  height: 16px;
}
.litegraph .graphdialog button {
  padding: 4px 18px;
  border-radius: 20px;
  cursor: pointer;
}
/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
.global-dialog {
  max-width: calc(100vw - 1rem);
}
.global-dialog .p-dialog-header {
  padding: calc(var(--spacing, .25rem) * 2);
}
@media (min-width: 96rem) {
.global-dialog .p-dialog-header {
    padding: var(--p-dialog-header-padding);
}
}
.global-dialog .p-dialog-header {
  padding-bottom: calc(var(--spacing, .25rem) * 0);
}
.global-dialog .p-dialog-content {
  padding: calc(var(--spacing, .25rem) * 2);
}
@media (min-width: 96rem) {
.global-dialog .p-dialog-content {
    padding: var(--p-dialog-content-padding);
}
}
.global-dialog .p-dialog-content {
  padding-top: calc(var(--spacing, .25rem) * 0);
}
.settings-dialog-workspace {
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
.settings-dialog-workspace .p-dialog-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.manager-dialog {
  max-width: 1724px;
  height: 80vh;
  max-height: 1026px;
}
@media (min-width: 3000px) {
.manager-dialog {
    max-width: 2200px;
    max-height: 1320px;
}
}
/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-divide-x-reverse: 0;
      --tw-border-style: solid;
      --tw-divide-y-reverse: 0;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-contain-size: initial;
      --tw-contain-layout: initial;
      --tw-contain-paint: initial;
      --tw-contain-style: initial;
      --tw-content: "";
      --tw-animation-delay: 0s;
      --tw-animation-direction: normal;
      --tw-animation-duration: initial;
      --tw-animation-fill-mode: none;
      --tw-animation-iteration-count: 1;
      --tw-enter-blur: 0;
      --tw-enter-opacity: 1;
      --tw-enter-rotate: 0;
      --tw-enter-scale: 1;
      --tw-enter-translate-x: 0;
      --tw-enter-translate-y: 0;
      --tw-exit-blur: 0;
      --tw-exit-opacity: 1;
      --tw-exit-rotate: 0;
      --tw-exit-scale: 1;
      --tw-exit-translate-x: 0;
      --tw-exit-translate-y: 0;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-400: oklch(70.4% .191 22.216);
    --color-red-500: oklch(63.7% .237 25.331);
    --color-red-700: oklch(50.5% .213 27.518);
    --color-orange-600: oklch(64.6% .222 41.116);
    --color-orange-700: oklch(55.3% .195 38.402);
    --color-amber-400: oklch(82.8% .189 84.429);
    --color-yellow-400: oklch(85.2% .199 91.936);
    --color-yellow-500: oklch(79.5% .184 86.047);
    --color-green-400: oklch(79.2% .209 151.711);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-green-600: oklch(62.7% .194 149.214);
    --color-green-700: oklch(52.7% .154 150.069);
    --color-teal-500: oklch(70.4% .14 182.503);
    --color-cyan-400: oklch(78.9% .154 211.53);
    --color-cyan-500: oklch(71.5% .143 215.221);
    --color-sky-500: oklch(68.5% .169 237.323);
    --color-blue-50: oklch(97% .014 254.604);
    --color-blue-100: oklch(93.2% .032 255.585);
    --color-blue-300: oklch(80.9% .105 251.813);
    --color-blue-400: oklch(70.7% .165 254.624);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-700: oklch(48.8% .243 264.376);
    --color-blue-800: oklch(42.4% .199 265.638);
    --color-purple-600: oklch(55.8% .288 302.321);
    --color-purple-700: oklch(49.6% .265 301.924);
    --color-slate-100: #9c9eab;
    --color-slate-200: #9fa2bd;
    --color-slate-300: #5b5e7d;
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-300: oklch(87.2% .01 258.338);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-800: oklch(27.8% .033 256.848);
    --color-gray-900: oklch(21% .034 264.665);
    --color-zinc-300: oklch(87.1% .006 286.286);
    --color-zinc-500: oklch(55.2% .016 285.938);
    --color-zinc-800: oklch(27.4% .006 286.033);
    --color-neutral-100: oklch(97% 0 0);
    --color-neutral-200: oklch(92.2% 0 0);
    --color-neutral-300: oklch(87% 0 0);
    --color-neutral-400: oklch(70.8% 0 0);
    --color-neutral-500: oklch(55.6% 0 0);
    --color-neutral-600: oklch(43.9% 0 0);
    --color-neutral-700: oklch(37.1% 0 0);
    --color-neutral-800: oklch(26.9% 0 0);
    --color-neutral-900: oklch(20.5% 0 0);
    --color-neutral-950: oklch(14.5% 0 0);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --breakpoint-sm: 40rem;
    --container-xs: 20rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --tracking-tight: -.025em;
    --tracking-wide: .025em;
    --tracking-wider: .05em;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --radius-sm: .25rem;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --ease-in: cubic-bezier(.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --blur-sm: 8px;
    --blur-md: 12px;
    --blur-xl: 24px;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --text-xxs: .625rem;
    --text-xxs--line-height: calc(1 / .625);
    --text-xxxs: .5625rem;
    --text-xxxs--line-height: calc(1 / .5625);
    --font-inter: "Inter", sans-serif;
    --color-charcoal-100: #55565e;
    --color-charcoal-200: #494a50;
    --color-charcoal-300: #3c3d42;
    --color-charcoal-400: #313235;
    --color-charcoal-500: #2d2e32;
    --color-charcoal-600: #262729;
    --color-charcoal-700: #202121;
    --color-charcoal-800: #171718;
    --color-ash-500: #828282;
    --color-ash-800: #444;
    --color-smoke-100: #f3f3f3;
    --color-smoke-200: #e9e9e9;
    --color-smoke-300: #e1e1e1;
    --color-smoke-400: #d9d9d9;
    --color-smoke-500: #c5c5c5;
    --color-smoke-600: #b4b4b4;
    --color-smoke-700: #a0a0a0;
    --color-smoke-800: #8a8a8a;
    --color-sand-100: #e1ded5;
    --color-electric-400: #f0ff41;
    --color-sapphire-700: #172dd7;
    --color-azure-300: #78bae9;
    --color-azure-400: #31b9f4;
    --color-azure-600: #0b8ce9;
    --color-cobalt-800: #185a8b;
    --color-jade-600: #00cd72;
    --color-graphite-400: #9c9eab;
    --color-gold-400: #fcbf64;
    --color-gold-500: #fdab34;
    --color-gold-600: #fd9903;
    --color-coral-500: #f75951;
    --color-coral-600: #e04e48;
    --color-coral-700: #b33a3a;
    --color-danger-100: #c02323;
    --color-danger-200: #d62952;
    --color-bypass: #6a246a;
    --color-error: #962a2a;
    --color-interface-panel-job-progress-primary: var(--color-azure-300);
    --color-interface-panel-job-progress-secondary: var(--color-alpha-azure-600-30);
    --color-alpha-charcoal-600-30: #2627294d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    :root, :host {
      --color-alpha-charcoal-600-30: color-mix(in srgb, var(--color-charcoal-600) 30%, transparent);
    }
  }

  :root, :host {
    --color-alpha-ash-500-20: #82828233;
  }

  @supports (color: color-mix(in lab, red, red)) {
    :root, :host {
      --color-alpha-ash-500-20: color-mix(in srgb, var(--color-ash-500) 20%, transparent);
    }
  }

  :root, :host {
    --color-alpha-smoke-500-50: #c5c5c580;
  }

  @supports (color: color-mix(in lab, red, red)) {
    :root, :host {
      --color-alpha-smoke-500-50: color-mix(in srgb, var(--color-smoke-500) 50%, transparent);
    }
  }

  :root, :host {
    --color-alpha-azure-600-30: #0b8ce94d;
    --color-muted: var(--p-text-muted-color);
    --color-highlight: var(--p-primary-color);
    --color-button-surface: var(--button-surface);
    --color-subscription-button-gradient: var(--subscription-button-gradient);
    --color-node-icon-disabled: var(--node-icon-disabled);
    --color-muted-foreground: var(--muted-foreground);
    --color-border-default: var(--border-default);
  }
}

@layer base, primevue, components;

@layer utilities {
  .\[container-type\:inline-size\] {
    container-type: inline-size;
  }

  .pointer-events-auto {
    pointer-events: auto;
  }

  .pointer-events-none {
    pointer-events: none;
  }

  .collapse {
    visibility: collapse;
  }

  .invisible {
    visibility: hidden;
  }

  .visible {
    visibility: visible;
  }

  .sr-only {
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .inset-x-0 {
    inset-inline: calc(var(--spacing) * 0);
  }

  .inset-x-3 {
    inset-inline: calc(var(--spacing) * 3);
  }

  .inset-x-4 {
    inset-inline: calc(var(--spacing) * 4);
  }

  .inset-y-0 {
    inset-block: calc(var(--spacing) * 0);
  }

  .-top-0\.5 {
    top: calc(var(--spacing) * -.5);
  }

  .-top-1 {
    top: calc(var(--spacing) * -1);
  }

  .-top-2 {
    top: calc(var(--spacing) * -2);
  }

  .-top-2\.5 {
    top: calc(var(--spacing) * -2.5);
  }

  .-top-10 {
    top: calc(var(--spacing) * -10);
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

  .top-0\.5 {
    top: calc(var(--spacing) * .5);
  }

  .top-1 {
    top: calc(var(--spacing) * 1);
  }

  .top-1\/2 {
    top: 50%;
  }

  .top-2 {
    top: calc(var(--spacing) * 2);
  }

  .top-2\.5 {
    top: calc(var(--spacing) * 2.5);
  }

  .top-4 {
    top: calc(var(--spacing) * 4);
  }

  .top-5 {
    top: calc(var(--spacing) * 5);
  }

  .top-6 {
    top: calc(var(--spacing) * 6);
  }

  .top-12 {
    top: calc(var(--spacing) * 12);
  }

  .top-24 {
    top: calc(var(--spacing) * 24);
  }

  .top-\[-2px\] {
    top: -2px;
  }

  .top-\[1px\] {
    top: 1px;
  }

  .top-\[2px\] {
    top: 2px;
  }

  .top-\[7px\] {
    top: 7px;
  }

  .top-\[50px\] {
    top: 50px;
  }

  .top-full {
    top: 100%;
  }

  .-right-0\.5 {
    right: calc(var(--spacing) * -.5);
  }

  .-right-1 {
    right: calc(var(--spacing) * -1);
  }

  .-right-2 {
    right: calc(var(--spacing) * -2);
  }

  .-right-2\.5 {
    right: calc(var(--spacing) * -2.5);
  }

  .-right-4 {
    right: calc(var(--spacing) * -4);
  }

  .-right-14 {
    right: calc(var(--spacing) * -14);
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .right-0\.5 {
    right: calc(var(--spacing) * .5);
  }

  .right-1 {
    right: calc(var(--spacing) * 1);
  }

  .right-2 {
    right: calc(var(--spacing) * 2);
  }

  .right-2\.5 {
    right: calc(var(--spacing) * 2.5);
  }

  .right-3 {
    right: calc(var(--spacing) * 3);
  }

  .right-4 {
    right: calc(var(--spacing) * 4);
  }

  .right-6 {
    right: calc(var(--spacing) * 6);
  }

  .right-8 {
    right: calc(var(--spacing) * 8);
  }

  .right-\[7px\] {
    right: 7px;
  }

  .-bottom-1 {
    bottom: calc(var(--spacing) * -1);
  }

  .-bottom-4 {
    bottom: calc(var(--spacing) * -4);
  }

  .-bottom-\[1px\] {
    bottom: -1px;
  }

  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }

  .bottom-1 {
    bottom: calc(var(--spacing) * 1);
  }

  .bottom-2 {
    bottom: calc(var(--spacing) * 2);
  }

  .bottom-4 {
    bottom: calc(var(--spacing) * 4);
  }

  .bottom-6 {
    bottom: calc(var(--spacing) * 6);
  }

  .bottom-20 {
    bottom: calc(var(--spacing) * 20);
  }

  .bottom-24 {
    bottom: calc(var(--spacing) * 24);
  }

  .bottom-\[54px\] {
    bottom: 54px;
  }

  .bottom-\[62px\] {
    bottom: 62px;
  }

  .-left-1 {
    left: calc(var(--spacing) * -1);
  }

  .left-0 {
    left: calc(var(--spacing) * 0);
  }

  .left-1 {
    left: calc(var(--spacing) * 1);
  }

  .left-1\/2 {
    left: 50%;
  }

  .left-2 {
    left: calc(var(--spacing) * 2);
  }

  .left-2\.5 {
    left: calc(var(--spacing) * 2.5);
  }

  .left-3 {
    left: calc(var(--spacing) * 3);
  }

  .left-4 {
    left: calc(var(--spacing) * 4);
  }

  .left-12 {
    left: calc(var(--spacing) * 12);
  }

  .left-\[-2px\] {
    left: -2px;
  }

  .left-\[-375px\] {
    left: -375px;
  }

  .left-full {
    left: 100%;
  }

  .isolate {
    isolation: isolate;
  }

  .-z-1 {
    z-index: calc(1 * -1);
  }

  .z-0 {
    z-index: 0;
  }

  .z-1 {
    z-index: 1;
  }

  .z-2 {
    z-index: 2;
  }

  .z-5 {
    z-index: 5;
  }

  .z-8 {
    z-index: 8;
  }

  .z-10 {
    z-index: 10;
  }

  .z-20 {
    z-index: 20;
  }

  .z-21 {
    z-index: 21;
  }

  .z-30 {
    z-index: 30;
  }

  .z-40 {
    z-index: 40;
  }

  .z-50 {
    z-index: 50;
  }

  .z-60 {
    z-index: 60;
  }

  .z-100 {
    z-index: 100;
  }

  .z-999 {
    z-index: 999;
  }

  .z-1000 {
    z-index: 1000;
  }

  .z-1200 {
    z-index: 1200;
  }

  .z-1300 {
    z-index: 1300;
  }

  .z-1700 {
    z-index: 1700;
  }

  .z-3000 {
    z-index: 3000;
  }

  .z-8888 {
    z-index: 8888;
  }

  .z-9999 {
    z-index: 9999;
  }

  .z-10000 {
    z-index: 10000;
  }

  .z-10000\! {
    z-index: 10000 !important;
  }

  .z-\[1100\] {
    z-index: 1100;
  }

  .z-\[9999\] {
    z-index: 9999;
  }

  .z-\[10000\] {
    z-index: 10000;
  }

  .order-first {
    order: -9999;
  }

  .col-span-1 {
    grid-column: span 1 / span 1;
  }

  .col-span-2 {
    grid-column: span 2 / span 2;
  }

  .col-span-3 {
    grid-column: span 3 / span 3;
  }

  .col-span-full {
    grid-column: 1 / -1;
  }

  .col-start-1 {
    grid-column-start: 1;
  }

  .row-span-full {
    grid-row: 1 / -1;
  }

  .row-start-1 {
    grid-row-start: 1;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .\!m-0 {
    margin: calc(var(--spacing) * 0) !important;
  }

  .\!m-1\.5 {
    margin: calc(var(--spacing) * 1.5) !important;
  }

  .-m-3 {
    margin: calc(var(--spacing) * -3);
  }

  .m-0 {
    margin: calc(var(--spacing) * 0);
  }

  .m-0\! {
    margin: calc(var(--spacing) * 0) !important;
  }

  .m-1 {
    margin: calc(var(--spacing) * 1);
  }

  .m-1\.5 {
    margin: calc(var(--spacing) * 1.5);
  }

  .m-2 {
    margin: calc(var(--spacing) * 2);
  }

  .m-3 {
    margin: calc(var(--spacing) * 3);
  }

  .m-4 {
    margin: calc(var(--spacing) * 4);
  }

  .m-8 {
    margin: calc(var(--spacing) * 8);
  }

  .m-auto {
    margin: auto;
  }

  .-mx-1 {
    margin-inline: calc(var(--spacing) * -1);
  }

  .mx-0 {
    margin-inline: calc(var(--spacing) * 0);
  }

  .mx-1 {
    margin-inline: calc(var(--spacing) * 1);
  }

  .mx-2 {
    margin-inline: calc(var(--spacing) * 2);
  }

  .mx-4 {
    margin-inline: calc(var(--spacing) * 4);
  }

  .mx-6 {
    margin-inline: calc(var(--spacing) * 6);
  }

  .mx-8 {
    margin-inline: calc(var(--spacing) * 8);
  }

  .mx-\[-12px\] {
    margin-inline: -12px;
  }

  .mx-auto {
    margin-inline: auto;
  }

  .-my-1 {
    margin-block: calc(var(--spacing) * -1);
  }

  .my-0 {
    margin-block: calc(var(--spacing) * 0);
  }

  .my-0\.25 {
    margin-block: calc(var(--spacing) * .25);
  }

  .my-1 {
    margin-block: calc(var(--spacing) * 1);
  }

  .my-1\.5 {
    margin-block: calc(var(--spacing) * 1.5);
  }

  .my-2 {
    margin-block: calc(var(--spacing) * 2);
  }

  .my-2\.5 {
    margin-block: calc(var(--spacing) * 2.5);
  }

  .my-3\.5 {
    margin-block: calc(var(--spacing) * 3.5);
  }

  .my-4 {
    margin-block: calc(var(--spacing) * 4);
  }

  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }

  .my-8 {
    margin-block: calc(var(--spacing) * 8);
  }

  .my-12 {
    margin-block: calc(var(--spacing) * 12);
  }

  .-mt-1 {
    margin-top: calc(var(--spacing) * -1);
  }

  .-mt-2 {
    margin-top: calc(var(--spacing) * -2);
  }

  .-mt-5 {
    margin-top: calc(var(--spacing) * -5);
  }

  .mt-0 {
    margin-top: calc(var(--spacing) * 0);
  }

  .mt-0\.5 {
    margin-top: calc(var(--spacing) * .5);
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-1\.5 {
    margin-top: calc(var(--spacing) * 1.5);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-2\.5 {
    margin-top: calc(var(--spacing) * 2.5);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-5 {
    margin-top: calc(var(--spacing) * 5);
  }

  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }

  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }

  .mt-24 {
    margin-top: calc(var(--spacing) * 24);
  }

  .mt-\[10vh\] {
    margin-top: 10vh;
  }

  .mt-auto {
    margin-top: auto;
  }

  .mr-0 {
    margin-right: calc(var(--spacing) * 0);
  }

  .mr-0\.5 {
    margin-right: calc(var(--spacing) * .5);
  }

  .mr-1 {
    margin-right: calc(var(--spacing) * 1);
  }

  .mr-1\.5 {
    margin-right: calc(var(--spacing) * 1.5);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mr-3 {
    margin-right: calc(var(--spacing) * 3);
  }

  .mr-4 {
    margin-right: calc(var(--spacing) * 4);
  }

  .mr-5 {
    margin-right: calc(var(--spacing) * 5);
  }

  .mr-auto {
    margin-right: auto;
  }

  .-mb-1\.5 {
    margin-bottom: calc(var(--spacing) * -1.5);
  }

  .mb-0 {
    margin-bottom: calc(var(--spacing) * 0);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-1\.5 {
    margin-bottom: calc(var(--spacing) * 1.5);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .mb-7 {
    margin-bottom: calc(var(--spacing) * 7);
  }

  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }

  .-ml-2 {
    margin-left: calc(var(--spacing) * -2);
  }

  .-ml-2\.5 {
    margin-left: calc(var(--spacing) * -2.5);
  }

  .-ml-3 {
    margin-left: calc(var(--spacing) * -3);
  }

  .ml-0\.5 {
    margin-left: calc(var(--spacing) * .5);
  }

  .ml-1 {
    margin-left: calc(var(--spacing) * 1);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .ml-3 {
    margin-left: calc(var(--spacing) * 3);
  }

  .ml-4 {
    margin-left: calc(var(--spacing) * 4);
  }

  .ml-6 {
    margin-left: calc(var(--spacing) * 6);
  }

  .ml-8 {
    margin-left: calc(var(--spacing) * 8);
  }

  .ml-\[-13px\] {
    margin-left: -13px;
  }

  .ml-auto {
    margin-left: auto;
  }

  .box-border {
    box-sizing: border-box;
  }

  .box-content {
    box-sizing: content-box;
  }

  .icon-\[comfy--ai-model\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg fill='none'%3E%3Cg stroke='black' stroke-linecap='round' stroke-width='1.3' clip-path='url(%23svgID0)'%3E%3Cpath d='m4.998 13.909.557-2.225a1.112 1.112 0 00-1.08-1.382H2.32c-.51 0-.955.347-1.079.842L.684 13.37a1.112 1.112 0 001.079 1.382h2.156c.51 0 .956-.347 1.08-.842ZM6.11 7.234l.557-2.224a1.112 1.112 0 00-1.08-1.383H3.433c-.51 0-.956.348-1.08.843l-.556 2.225a1.112 1.112 0 001.08 1.382h2.156c.51 0 .955-.347 1.079-.843Zm5.563 6.675.556-2.225a1.112 1.112 0 00-1.08-1.382H8.994c-.51 0-.955.347-1.079.842l-.556 2.225a1.112 1.112 0 001.08 1.382h2.156c.51 0 .955-.347 1.079-.842Zm1.468-8.093-.784 1.83a.334.334 0 01-.614 0l-.785-1.83a.33.33 0 00-.175-.176l-1.831-.784a.334.334 0 010-.614l1.831-.785a.33.33 0 00.175-.175l.785-1.831a.334.334 0 01.614 0l.784 1.831a.33.33 0 00.176.175l1.83.785c.27.116.27.498 0 .614l-1.83.784a.33.33 0 00-.176.176Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='black' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--bfl\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' d='M365.047 229.802h-54.463l-54.466-76.73L86.216 392.168h54.58l115.319-162.361h54.466l-115.32 162.361h54.733zL512 436.698h-41.107v.002h-44.874v-44.357l-60.972-85.811-60.632 85.646v44.52H163.632l-.003.005h-54.465l.003-.005H-.105L256.118 76z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--bria\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cg fill='black' clip-path='url(%23svgID2)'%3E%3Cpath d='M.307 236.902c.794-9.472 4.173-25.881 6.272-35.763C23.501 121.805 83.021 46.182 160.691 20.378v369.356h250.752c8.397 0 34.816-8.576 43.725-12.288 13.517-5.632 25.523-13.798 36.429-23.372-26.24 69.964-90.573 126.822-162.355 147.02-15.232 4.276-38.631 9.6-54.016 10.906H239.59c-15.923-3.84-32.435-4.864-48.384-8.883-87.27-21.965-161.408-96.487-182.502-184.192C5.018 303.59 4.07 287.744.307 272.538c.717-11.648-.973-24.141 0-35.661z'/%3E%3Cpath d='M265.062 211.43h110.746c2.586 0 16.742 6.068 19.942 8.064 31.463 19.431 24.372 71.732-10.956 82.458-2.023.614-18.125 3.738-19.175 3.738h-96.742l-3.815-3.815zm0-73.881v-89.14h108.186c1.613 0 10.957 5.453 13.363 7.015 19.917 12.954 27.879 41.114 14.541 61.645-3.046 4.685-20.813 20.505-25.344 20.505H265.062zm224 10.189c7.066 19.968 16.461 39.526 17.844 61.107l-15.232-16.563c-13.901-11.546-30.746-18.279-48.384-21.658z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID1'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID2'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--canny\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' d='M33.6-.25a2.4 2.4 0 012.4 2.4v19.2a2.4 2.4 0 01-2.4 2.4H14.4a2.4 2.4 0 01-2.4-2.4V2.15a2.4 2.4 0 012.4-2.4zM14.4.95a1.2 1.2 0 00-1.2 1.2v19.2l.001.062a1.2 1.2 0 001.2 1.138h.605a.6.6 0 01.083-.147.6.6 0 01-.026-.294l.062-.379c.08-.491.205-.974.368-1.44a.6.6 0 011.132.396 7.4 7.4 0 00-.315 1.239l-.063.378a.6.6 0 01-.102.247h15.81a.6.6 0 01-.102-.247l-.062-.378-.06-.316a7 7 0 00-.256-.923.6.6 0 011.132-.397q.246.702.368 1.441l.062.378a.6.6 0 01-.026.295.6.6 0 01.084.147h.505l.062-.001a1.2 1.2 0 001.137-1.137V2.15A1.2 1.2 0 0033.663.951H14.4m3.787 15.529a.6.6 0 01.75.937 7.2 7.2 0 00-1.449 1.563.6.6 0 01-.99-.678q.418-.613.944-1.15l.18-.177q.273-.262.566-.495m10.882.094a.6.6 0 01.844-.093 8.4 8.4 0 011.69 1.82.6.6 0 01-.99.679 7.2 7.2 0 00-1.449-1.562.6.6 0 01-.095-.844m.069-3.24a.6.6 0 111.021.629c-.283.46-.619.89-1.002 1.281l-.01.012q-.167.169-.343.325a.6.6 0 01-.123.084.6.6 0 01-.59 1.044 7 7 0 00-.779-.358.6.6 0 01-.102-1.068q.168-.105.33-.223a.6.6 0 01.294-.112.6.6 0 01.172-.263 6 6 0 00.287-.274l.002-.002.12-.124q.409-.442.723-.952m-10.998-.197a.6.6 0 01.825.195 6.1 6.1 0 001.132 1.35.6.6 0 01.17.265c.104.01.206.046.296.112q.16.117.33.223a.6.6 0 01-.103 1.068 7 7 0 00-.78.358.6.6 0 01-.588-1.044.6.6 0 01-.124-.085 7.2 7.2 0 01-1.355-1.617.6.6 0 01.197-.825m-.365-5.253a.6.6 0 01.443.724 6.2 6.2 0 00-.174 1.315v.04l-.002.034.001.037-.001.048q.003.692.152 1.355a.6.6 0 01-1.17.262 7.5 7.5 0 01-.181-1.622v-.056l.002-.037-.001-.035v-.055a7.4 7.4 0 01.207-1.569.6.6 0 01.724-.441m12.587.113a.6.6 0 01.717.455 7.4 7.4 0 010 3.246.6.6 0 01-1.172-.261 6.2 6.2 0 000-2.723.6.6 0 01.455-.717m-3.403-3.99a.6.6 0 01.825-.196c.443.272.859.593 1.239.96l.038.04q.015.014.026.028l.025.022.04.04c.385.392.722.824 1.007 1.287a.6.6 0 01-1.021.63 6 6 0 00-.838-1.073l-.033-.033-.025-.026-.026-.024-.029-.028a6 6 0 00-1.03-.802.6.6 0 01-.198-.825m-6.752-.128a.6.6 0 11.646 1.01c-.374.24-.726.524-1.044.847l-.003.005a6 6 0 00-.82 1.04.6.6 0 11-1.017-.637q.419-.671.978-1.243l.003-.002.146-.144c.343-.33.716-.623 1.111-.876M24.05 2.75c.529 0 1.052.06 1.56.174a.6.6 0 01-.263 1.17 5.9 5.9 0 00-2.635.01.6.6 0 01-.273-1.168 7 7 0 011.61-.186'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h48v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--clip-text-encode\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M34 3.111v2.963c0 .614-.584 1.111-1.304 1.111s-1.305-.497-1.305-1.11V4.221h-6.087v15.556h3.044c.72 0 1.304.497 1.304 1.11 0 .615-.584 1.112-1.304 1.112h-8.696c-.72 0-1.304-.497-1.304-1.111s.584-1.111 1.304-1.111h3.044V4.222h-6.087v1.852c0 .614-.584 1.111-1.305 1.111-.72 0-1.304-.497-1.304-1.11V3.11c0-.613.584-1.11 1.304-1.11h17.392C33.416 2 34 2.497 34 3.111'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--comfy-c\] {
    width: .89em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' width='8' height='9'%3E%3Cpath fill='black' d='M1.821 8.684a.57.57 0 01-.48-.221.65.65 0 01-.079-.569l.244-.854a.23.23 0 00-.037-.198.22.22 0 00-.179-.09h-.7a.57.57 0 01-.48-.22.65.65 0 01-.079-.57L.867 3.04l.093-.322c.124-.435.576-.79 1.009-.79h.837c.1 0 .188-.066.216-.163l.277-.972c.123-.436.576-.79 1.009-.79L6.098 0H7.41c.205 0 .371.076.48.22.11.15.14.357.079.57l-.375 1.316c-.124.435-.577.789-1.009.789l-1.795.003h-.837c-.1 0-.188.067-.215.164L3.04 5.5a.227.227 0 00.215.288l1.186-.003h1.307c.206 0 .372.077.48.221.111.149.14.356.08.569L5.933 7.89c-.124.435-.577.79-1.01.79l-1.794.003z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--credits\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15.536 11.293a1 1 0 000 1.414l2.376 2.377a1 1 0 001.414 0l2.377-2.377a1 1 0 000-1.414l-2.377-2.377a1 1 0 00-1.414 0zm-13.239 0a1 1 0 000 1.414l2.377 2.377a1 1 0 001.414 0l2.377-2.377a1 1 0 000-1.414L6.088 8.916a1 1 0 00-1.414 0zm6.619 6.619a1 1 0 000 1.415l2.377 2.376a1 1 0 001.414 0l2.377-2.376a1 1 0 000-1.415l-2.377-2.376a1 1 0 00-1.414 0zm0-13.238a1 1 0 000 1.414l2.377 2.376a1 1 0 001.414 0l2.377-2.376a1 1 0 000-1.414l-2.377-2.377a1 1 0 00-1.414 0z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--extensions-blocks\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='M6.667 14V5.333A.667.667 0 006 4.667H2.667A.667.667 0 002 5.333v8a.667.667 0 00.667.667h8a.667.667 0 00.666-.667V10a.667.667 0 00-.666-.667H2M10 2h3.333c.368 0 .667.298.667.667V6a.667.667 0 01-.667.667H10A.667.667 0 019.333 6V2.667c0-.369.299-.667.667-.667'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--file-output\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='M9.334 1.333V4a1.333 1.333 0 001.333 1.333h2.667M2.667 4.667v-2a1.333 1.333 0 011.334-1.334h6l3.333 3.334v8.666a1.334 1.334 0 01-1.333 1.334l-7.958-.001a1.33 1.33 0 01-1.334-.667m.625-6.666-2 2m0 0 2 2m-2-2h6.667'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--get-video-components\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M34.86 13c.623 0 1.14.499 1.14 1.1v8.8c0 .601-.517 1.1-1.14 1.1H22.141c-.623 0-1.14-.499-1.141-1.1v-8.8c0-.601.518-1.1 1.141-1.1zm-12.88 8.265V22.9c0 .095.064.157.162.157H34.86c.099 0 .163-.062.163-.157v-1.345l-2.797-2.157-2.307 1.533a.52.52 0 01-.581-.025l-3.139-2.445zM16.5 10.5a.5.5 0 01.5.5v6.5a1.5 1.5 0 001.5 1.5h.209l-.648-.646a.5.5 0 01.709-.707l1.413 1.414a.5.5 0 010 .707l-1.413 1.414a.501.501 0 01-.709-.707l.475-.475h-.035a2.5 2.5 0 01-2.5-2.5V11a.5.5 0 01.5-.5m5.642 3.442c-.098 0-.162.063-.163.158v6.015l3.96-2.632a.5.5 0 01.585.02l3.139 2.45 2.313-1.531a.52.52 0 01.58.024l2.466 1.9V14.1c0-.095-.064-.158-.163-.158zm7.5 1.258c.805 0 1.467.639 1.467 1.414 0 .776-.662 1.414-1.467 1.414-.804 0-1.467-.638-1.467-1.414s.663-1.414 1.467-1.414m0 .943a.474.474 0 00-.489.471c0 .266.214.472.49.472a.474.474 0 00.489-.472.474.474 0 00-.49-.471M22.092 0A2.91 2.91 0 0125 2.91v4.18A2.91 2.91 0 0122.09 10h-7.18C13.31 10 12 8.702 12 7.09V2.91C12 1.298 13.31 0 14.91 0zm-7.18 1.042a1.86 1.86 0 00-1.879 1.868v4.18c0 1.034.827 1.868 1.878 1.868h7.18A1.863 1.863 0 0023.97 7.09V2.91a1.863 1.863 0 00-1.878-1.868zm2.103 1.323a.5.5 0 01.249.08l3.292 2.091c.172.107.236.304.236.464s-.064.357-.236.464l-3.291 2.09a.48.48 0 01-.52.007l-.002-.001a.55.55 0 01-.244-.476V2.91c-.004-.266.2-.53.477-.544zm.492 3.777L19.309 5l-1.802-1.146zm2.993-.916.023-.032z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--grok\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' fill-rule='evenodd' d='m197.76 327.187 170.197-125.803c8.342-6.187 20.267-3.776 24.256 5.803 20.907 50.538 11.563 111.253-30.08 152.938-41.621 41.686-99.562 50.816-152.512 29.995l-57.834 26.816c82.965 56.768 183.701 42.731 246.656-20.331 49.941-50.005 65.408-118.165 50.944-179.626l.128.149c-20.971-90.283 5.162-126.379 58.666-200.17A338 338 0 00512 11.666l-70.421 70.506v-.213l-243.883 245.27m-35.072 30.528c-59.563-56.96-49.28-145.088 1.515-195.925 37.568-37.611 99.136-52.971 152.874-30.4l57.707-26.667a166.6 166.6 0 00-39.019-21.333 191.465 191.465 0 00-208.042 41.941c-54.038 54.102-71.04 137.302-41.856 208.299 21.802 53.056-13.931 90.581-49.92 128.469C23.104 475.581 10.304 489 0 503.208l162.56-145.387' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--hitpaw\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' d='m148.228 255.643-45.661 22.414-2.643 1.291-35.907 17.632v28.692l49.418-24.254 3.929-1.926 21.962-10.786 6.642-3.252c2.869-12.076 6.225-23.24 9.946-33.578zM432.49 117.736a191 191 0 00-4.729-10.099c-.209-.412-.418-.86-.661-1.273-18.275-35.487-47.487-64.576-83.29-82.93-.695-.361-25.247-11.543-57.972-17.701C276.222 3.927 265.929 2.55 255.305 2H122.372c-32.22 0-58.355 25.786-58.355 57.592V260.77l23.579-11.561 1.026-.499 83.446-40.957 6.329-3.114c34.619-56.302 77.464-70.975 77.464-70.975v32.873c14.189.654 26.586 6.331 34.533 14.656 3.374 3.493 6.242 8.498 8.346 13.589.4.998.782 1.979 1.114 2.977a51 51 0 011.633 5.436c.592 2.408 1.583 4.386 2.8 6.14 0 0 0 .053.036.07 1.198 1.702 2.607 3.148 4.085 4.524 5.147 4.816 11.025 8.635 11.025 17.924 0 4.197-1.826 7.827-4.957 11.009-1.756 1.806-3.911 3.441-6.381 4.989-.539.326-1.112.653-1.687.963l-.069.051a71 71 0 01-3.443 1.773c-.243.12-.504.223-.765.344-.052.017-.122.034-.174.068-7.39 3.337-23.091 8.43-26.03 9.341-.696.189-1.495.413-2.348.653-2.66.758-5.79 1.652-7.65 2.202-.209.035-.4.104-.591.172-.609.19-.974.31-1.008.327a31.3 31.3 0 00-5.234 2.065 36.6 36.6 0 00-9.912 6.984c-6.729 6.622-10.867 15.74-10.867 25.836 0 5.025 1.061 9.84 2.903 14.228a47 47 0 003.409 6.243c1.633 2.684 3.529 5.384 5.616 8.12.243.361.522.705.782 1.049 7.112 9.203 16.293 18.699 25.595 28.487 3.182 3.337 6.383 6.691 9.495 10.097 2.764 3.01 5.511 6.056 8.154 9.134.783.894 1.566 1.807 2.314 2.718 4.938-1.049 16.448-4.318 17.509-4.645a192.8 192.8 0 0070.266-40.028c.295-.241.573-.481.869-.74 36.029-32.563 59.521-78.441 62.458-129.72.175-2.959.262-5.9.296-8.893.017-.671.017-1.36.017-2.048-.051-26.594-5.547-51.915-15.51-74.896M135.605 326.739l-.157.069-71.43 35.04v28.693l71.308-34.989c.226-3.302.505-6.605.835-9.976.035-.586.104-1.187.156-1.773l.07-.722c.435-4.541.974-9.151 1.6-13.847.174-1.291.347-2.616.539-3.923zm20.917 178.695a171 171 0 01-2.434-5.97c-6.694-17.288-16.571-49.541-19.092-94.25a385 385 0 01-.522-12.987l-65.831 32.254L64 426.768v29.623c0 7.551 1.46 14.741 4.156 21.348C76.728 498.983 97.768 514 122.355 514h38.097v-.172c-.348-.671-1.825-3.492-3.93-8.394'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--ideogram\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='black' fill-rule='evenodd' d='M395.375 21.514a142.58 142.58 0 0166.604 84.202 75.7 75.7 0 0112.372 5.725c.579.334 1.114.668 1.627 1.047a75.5 75.5 0 0113.976 10.915 75.2 75.2 0 0122.014 54.795 75.2 75.2 0 01-6.674 29.387 75.25 75.25 0 01-17.68 24.411 75.2 75.2 0 0118.639 26.596 75.15 75.15 0 01-2.655 63.355 75.2 75.2 0 01-20.799 24.946l-.825.646.468.713a75.04 75.04 0 0111.903 45.999l-.2 2.45a75.2 75.2 0 01-11.4 32.825 75.26 75.26 0 01-24.945 24.203 75.32 75.32 0 01-67.485 4.831 75.2 75.2 0 01-22.589 32.759 75.32 75.32 0 01-75.75 12.573 75.27 75.27 0 01-31.973-23.702 90.4 90.4 0 01-36.445 8.843c-.892.111-1.828.178-2.787.178h-19.994l-1.516-.067c-24.877-1.492-24.364-39.539 1.516-39.539h17.921l1.026-.089 1.047-.022a51.3 51.3 0 0036.511-14.384 51.22 51.22 0 001.245-72.455 51.3 51.3 0 00-35.995-15.629q-.889.105-1.783.112H61.906a19.83 19.83 0 01-14.013-5.8 19.797 19.797 0 010-28.006 19.82 19.82 0 0114.013-5.8h156.792l1.026-.089 1.07-.022a51.3 51.3 0 0034.239-13.009 51.21 51.21 0 007.617-67.955 51.27 51.27 0 00-30.51-20.256l-3.143-.691a49 49 0 00-6.665-1.025q-.779.07-1.561.067H61.906a19.82 19.82 0 01-18.908-12.06A19.794 19.794 0 0154.12 166.28a19.8 19.8 0 017.786-1.311H218.72l1.025-.089 1.048-.023a51.3 51.3 0 0036.536-14.32 51.23 51.23 0 0015.702-35.944A51.23 51.23 0 00258.7 78.081a51.3 51.3 0 00-35.968-15.691q-.968.088-1.939.09h-19.995l-1.538-.023c-24.877-1.493-24.364-39.54 1.516-39.54h17.832q1.078-.113 2.162-.11c8.961 0 17.61 1.291 25.791 3.697l.691-.445a142.72 142.72 0 01148.122-4.522zm-83.301 255.812-1.516.802-1.85 1.136a90.9 90.9 0 01-31.296 47.96 90.62 90.62 0 0134.261 71.036 90.4 90.4 0 01-20.508 57.449 35.66 35.66 0 0043.23 10.369 35.63 35.63 0 0016.833-16.46 35.6 35.6 0 002.886-23.357l-.668-2.763-.29-1.759-.112-1.248-.022-.935.022-1.292.112-1.181.29-1.737.401-1.604.49-1.426.78-1.76.112-.222a19.3 19.3 0 013.522-4.834l1.226-1.159.914-.712 1.114-.78.937-.579 1.226-.668 1.627-.669 1.248-.445.892-.245 1.738-.357 1.628-.2 1.003-.045h1.07l.914.045 1.292.133 1.249.223 1.382.334.691.223 1.092.379 1.204.512.98.468 1.182.69.78.513a19.4 19.4 0 013.633 3.274l.847 1.025.758 1.069a35.65 35.65 0 0010.711 10.672 35.69 35.69 0 0042.547-3.013 35.627 35.627 0 00.24-53.769c-3.506.307-7.03.359-10.543.156l-1.271-.112-.58-.111h-.356a75.3 75.3 0 01-42.479-17.904 75.2 75.2 0 01-24.059-39.299l-.58-2.584a35.6 35.6 0 00-6.628-14.884 35.66 35.66 0 00-12.564-10.382 35.69 35.69 0 00-31.742.027m-98.436 102.356a19.82 19.82 0 0118.909 12.061 19.8 19.8 0 010 15.463 19.815 19.815 0 01-18.909 12.06h-81.94a19.82 19.82 0 01-13.581-6.026 19.794 19.794 0 010-27.532 19.82 19.82 0 0113.581-6.026zm205.253-233.959a35.66 35.66 0 00-12.557 12.228 35.6 35.6 0 00-5.208 16.73l-.045 1.893c0 5.025-1.912 9.861-5.347 13.53a19.82 19.82 0 01-13.154 6.229l-1.315.044c-5.028 0-9.868-1.91-13.539-5.343a19.8 19.8 0 01-6.233-13.145l-.045-1.315a35.6 35.6 0 00-5.232-18.53 35.65 35.65 0 00-14.113-13.107 35.68 35.68 0 00-37.006 2.657 91.1 91.1 0 01-27.975 37.289 90.94 90.94 0 0132.344 51.412 75.26 75.26 0 0157.904 8.78 75.2 75.2 0 0121.852 20.363 75.1 75.1 0 0112.193 27.259l.446 2.071a35.64 35.64 0 0010.988 19.078 35.67 35.67 0 0020.108 8.989l2.764.223.936.045c1.337 0 2.675-.067 4.012-.223l1.895-.245 1.382-.334a35.67 35.67 0 0021.17-13.514 35.62 35.62 0 00-3.632-46.849 35.67 35.67 0 00-22.999-10.095l-1.761-.044a19.78 19.78 0 01-15.225-7.129l-.758-.98a19.68 19.68 0 01-3.432-15.637 19.8 19.8 0 016.331-10.932 19.83 19.83 0 0111.657-4.884l1.427-.022a35.67 35.67 0 0032.917-21.96 35.63 35.63 0 00-7.64-38.808 35.67 35.67 0 00-17.52-9.489l-2.274-.423a19 19 0 01-1.694-.357 35.5 35.5 0 00-21.622 4.545m-205.052 90.884a19.82 19.82 0 0114.012 5.8 19.794 19.794 0 010 28.005 19.82 19.82 0 01-14.012 5.801H19.152a19.83 19.83 0 01-13.58-6.026 19.796 19.796 0 010-27.532 19.82 19.82 0 0113.58-6.026H213.86zm-.223-143.276a19.83 19.83 0 0114.44 5.556 19.79 19.79 0 010 28.471 19.82 19.82 0 01-14.44 5.556H131.72a19.82 19.82 0 01-18.908-12.06 19.79 19.79 0 014.468-21.967 19.82 19.82 0 0114.44-5.556h81.941zm73.493-43.527-1.182.468a90.52 90.52 0 0125.099 52.57 75.3 75.3 0 0138.123 2.23 75.25 75.25 0 0132.116 20.647 75.04 75.04 0 0137.782-22.275 102.97 102.97 0 00-55.196-53.283 103.07 103.07 0 00-76.742-.357' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-ai-edit\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg fill='none' stroke='black' stroke-linecap='round'%3E%3Cpath stroke-linejoin='round' stroke-width='1.3' d='m14 10-2.057-2.057a1.333 1.333 0 00-1.886 0L9 9m-1 5h4.667c.736 0 1.333-.597 1.333-1.333V3.333C14 2.597 13.403 2 12.667 2H3.333C2.597 2 2 2.597 2 3.333V8'/%3E%3Cpath stroke-width='1.3' d='m5.514 12.671-.738 1.721a.3.3 0 01-.551 0l-.738-1.721a.3.3 0 00-.158-.158l-1.72-.737a.3.3 0 010-.552l1.72-.737a.3.3 0 00.158-.158l.738-1.721a.3.3 0 01.551 0l.738 1.721a.3.3 0 00.157.158l1.722.737a.3.3 0 010 .552l-1.722.737a.3.3 0 00-.157.158Z'/%3E%3Cpath stroke-width='2' d='M5 5h0'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-batch\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M12.5 9a.5.5 0 01.5.5V20a.5.5 0 00.5.5H28a.5.5 0 010 1H13.5A1.5 1.5 0 0112 20V9.5a.5.5 0 01.5-.5m2-2a.5.5 0 01.5.5V18a.5.5 0 00.5.5H30a.5.5 0 010 1H15.5A1.5 1.5 0 0114 18V7.5a.5.5 0 01.5-.5m2-2a.5.5 0 01.5.5V16a.5.5 0 00.5.5H32a.5.5 0 010 1H17.5A1.5 1.5 0 0116 16V5.5a.5.5 0 01.5-.5m17.206-2.5c.707 0 1.294.59 1.294 1.3v10.4c0 .71-.587 1.3-1.294 1.3H19.294c-.707 0-1.294-.59-1.294-1.3V3.8c0-.71.587-1.3 1.294-1.3zm-14.598 9.768V14.2c0 .112.073.186.185.186h14.413c.112 0 .185-.073.186-.186v-1.59l-3.171-2.548-2.616 1.811a.57.57 0 01-.658-.03l-3.557-2.89zm.186-8.654c-.112 0-.186.073-.186.186v7.11l4.488-3.111a.55.55 0 01.254-.099.56.56 0 01.41.122l3.556 2.896 2.623-1.81a.57.57 0 01.658.029l2.795 2.246V3.8c0-.113-.074-.186-.186-.186zm8.5 1.486c.911 0 1.662.755 1.662 1.671 0 .917-.75 1.671-1.662 1.671a1.676 1.676 0 01-1.663-1.67c0-.917.751-1.672 1.663-1.672m0 1.114a.55.55 0 00-.555.557c0 .315.242.557.555.557a.547.547 0 00.554-.557.55.55 0 00-.554-.557'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-blur\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='none'%3E%3Cg fill='black' clip-path='url(%23svgID0)'%3E%3Cpath d='M33.258 14.243c0-6.195-8.427-14.217-8.786-14.555a.685.685 0 00-.95.007c-.358.348-8.778 8.613-8.778 14.549 0 5.104 4.153 9.256 9.256 9.256 5.107.002 9.258-4.151 9.258-9.257M24 22.13c-4.347 0-7.885-3.538-7.885-7.885 0-4.608 6.125-11.263 7.893-13.088 1.774 1.784 7.88 8.273 7.88 13.088-.002 4.348-3.54 7.885-7.887 7.885'/%3E%3Cpath d='M28.45 12.588a.69.69 0 00-.57.785c.247 1.541-.288 2.888-1.787 4.502a.685.685 0 101.004.931c1.207-1.299 2.541-3.115 2.137-5.65a.685.685 0 00-.784-.568'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h48v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-crop\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M18 1.2a.8.8 0 01.8.8v3.2H29A1.8 1.8 0 0130.8 7v10.7H34a.8.8 0 110 1.6h-3.2v3.2a.8.8 0 11-1.6 0v-3.2H19a1.8 1.8 0 01-1.8-1.8V6.8H14a.8.8 0 110-1.6h3.2V2a.8.8 0 01.8-.8m.8 16.3c0 .11.09.2.2.2h10.2V7a.2.2 0 00-.2-.2H18.8z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-invert\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath d='M24.004 1C17.938 1 13 5.94 13 12.004S17.94 23 24.003 23C30.069 23 35 18.068 35 12.004 35 5.939 30.068 1 24.003 1m0 1.834a9.15 9.15 0 019.162 9.17 9.146 9.146 0 01-9.162 9.163 9.15 9.15 0 01-9.17-9.163 9.16 9.16 0 019.17-9.17'/%3E%3Cpath d='M24.001 1.918a10.086 10.086 0 00-10.084 10.084A10.084 10.084 0 0024 22.087z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-rotate\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath d='M14 1.2a.8.8 0 01.8.8v6.007q.144-.265.311-.523c.55-.84 1.325-1.7 2.252-2.473C19.21 3.473 21.76 2.2 24.5 2.2c5.338 0 11.3 3.76 11.3 11.299a.8.8 0 11-1.6 0c0-6.461-5.038-9.7-9.7-9.7-2.259 0-4.46 1.06-6.113 2.44-.823.684-1.485 1.429-1.936 2.12-.35.537-.543.994-.616 1.34H20.5a.8.8 0 110 1.6H15a1.8 1.8 0 01-1.8-1.8V2a.8.8 0 01.8-.8'/%3E%3Cpath d='M18.345 15.646a.914.914 0 00-.341 1.236l3.6 6.236a.914.914 0 001.24.323l8.811-5.087a.914.914 0 00.341-1.236l-3.6-6.236a.914.914 0 00-1.24-.323zm.385.668 8.811-5.087c.069-.039.139-.02.177.047l2.556 4.426-2.486-.36a.41.41 0 00-.413.214l-.976 2.011-3.177-.48a.4.4 0 00-.292.071.4.4 0 00-.122.149l-1.666 3.448-2.46-4.262c-.04-.067-.02-.137.048-.177m5.71-2.109a1.17 1.17 0 00-.437 1.59 1.17 1.17 0 001.595.414c.557-.321.755-1.04.438-1.589a1.17 1.17 0 00-1.595-.415m.386.668a.383.383 0 01.532.139.383.383 0 01-.146.53.383.383 0 01-.532-.139.383.383 0 01.146-.53m-1.438 3.02 3.175.478a.41.41 0 00.413-.215l.972-2.01 2.82.41.55.953c.04.067.02.137-.048.177l-8.811 5.087c-.069.039-.139.02-.177-.047l-.67-1.158z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--image-scale\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' stroke='black' stroke-width='.1' d='M21.432 13.433a.803.803 0 111.135 1.135l-6.89 6.882h2.573a.8.8 0 110 1.6h-4.5a.8.8 0 01-.52-.192 1 1 0 01-.113-.12v-.002a.8.8 0 01-.167-.43V17.75a.8.8 0 111.6 0v2.571zM34.75 7.95a.8.8 0 01.8.8v13.5a.8.8 0 01-.8.8h-13.5a.8.8 0 110-1.6h12.7V8.75a.8.8 0 01.8-.8Zm-7.5-7.5a.8.8 0 110 1.6h-12.7v12.7a.8.8 0 01-1.365.566.8.8 0 01-.235-.566V1.25a.8.8 0 01.8-.8zm8.3 5.3a.8.8 0 11-1.6 0V3.178l-6.882 6.89a.803.803 0 01-1.136.001.8.8 0 01-.237-.569c0-.213.087-.418.238-.568l6.89-6.882H30.25a.8.8 0 110-1.6h4.5c.19 0 .375.068.52.192q.061.054.112.12l.065.097a.8.8 0 01.103.334z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--kling-lip-sync-audio-to-video-node\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.95' d='m22.094 7.583-5.994 8.19a1 1 0 00.1 1.298l.817.818a1 1 0 001.314.087l7.853-5.994m1.41 9.174c-1-.674-2.129-1.174-3.5-1.174-2.059 0-3.928 2.356-6 2s-2.776-3.37-1.5-4.5m15.5-10.5a5 5 0 11-10 0 5 5 0 0110 0'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--load-3-d\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M23.955 11.569a.6.6 0 01.2.021l.063.023 5.38 2.334.069.037a.53.53 0 01.251.447v6.712a.53.53 0 01-.32.479l-5.38 2.334a.55.55 0 01-.383.02l-.053-.02-5.38-2.335a.53.53 0 01-.32-.478v-6.712c0-.21.126-.4.32-.484l5.38-2.334.084-.03a1 1 0 01.09-.014m.156 12.326.027-.005.044-.016q-.035.014-.07.021m-4.953-3.098 4.304 1.869v-5.56l-4.304-1.868zm5.38-3.69v5.559l4.304-1.87v-5.558zm-4.59-2.677L24 16.19l4.053-1.76L24 12.67zM23.721.174a.6.6 0 01.845 0l2.537 2.537a.599.599 0 01-.846.845l-1.51-1.51v7.518a.599.599 0 01-1.197 0V2.037l-1.52 1.52a.599.599 0 01-.845-.846z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--load-audio\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M28.88 12c.428 0 .773.3.773.667v10.666c0 .369-.345.667-.772.667-.426 0-.772-.299-.772-.667V12.667c0-.368.346-.667.772-.667m-6.345.43c.427 0 .773.299.773.667v9.806c0 .368-.347.666-.773.666s-.772-.298-.772-.666v-9.806c0-.369.346-.667.772-.667m3.173 1.935c.427 0 .773.3.773.667v5.936c0 .367-.346.666-.773.666-.426 0-.771-.299-.771-.666v-5.936c0-.368.345-.667.771-.667m-9.52.43c.427 0 .773.3.773.668v5.074c0 .369-.346.667-.772.667s-.772-.298-.772-.667v-5.074c0-.369.345-.667.772-.667m15.867 0c.426.001.771.3.771.668v5.074c0 .369-.345.667-.771.667s-.772-.298-.772-.667v-5.074c0-.369.346-.667.772-.667m-19.282.86c.426 0 .772.3.772.667v3.355c0 .368-.347.666-.772.666-.427 0-.773-.298-.773-.666v-3.355c0-.368.346-.667.773-.667m6.59 0c.426 0 .77.3.77.667v3.355c0 .368-.345.666-.77.666-.427 0-.773-.298-.773-.666v-3.355c0-.368.346-.667.772-.667m15.865 0c.427 0 .772.3.772.667v3.355c0 .368-.346.666-.772.666s-.772-.298-.772-.666v-3.355c0-.368.346-.667.772-.667M24.26.011a.6.6 0 01.31.164l2.545 2.546a.6.6 0 01-.849.849L24.75 2.053V9.6a.6.6 0 11-1.2 0V2.042L22.023 3.57a.6.6 0 11-.848-.85L23.722.176a.6.6 0 01.538-.164' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--load-image\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M31.63 10.8c.749 0 1.37.6 1.37 1.32v10.56c0 .721-.621 1.32-1.37 1.32H16.37c-.749 0-1.37-.599-1.37-1.32V12.12c0-.72.621-1.32 1.37-1.32zm-15.456 9.918v1.962c0 .114.077.189.195.189h15.262c.118 0 .195-.075.195-.189v-1.614l-3.356-2.587-2.77 1.838a.62.62 0 01-.697-.03l-3.767-2.934zm.195-8.787c-.118 0-.195.076-.195.19v7.218l4.75-3.159a.6.6 0 01.704.024l3.767 2.941 2.775-1.839a.62.62 0 01.697.03l2.96 2.28V12.12c0-.114-.078-.19-.196-.19zm9.001 1.509c.965 0 1.76.767 1.76 1.697s-.795 1.697-1.76 1.697-1.762-.766-1.762-1.697c0-.93.797-1.697 1.762-1.697m0 1.132a.57.57 0 00-.587.565c0 .32.256.566.587.566s.587-.247.587-.566a.57.57 0 00-.587-.565M24.11.012a.6.6 0 01.31.163l2.546 2.546a.6.6 0 01-.849.849l-1.516-1.517V9.6a.6.6 0 01-1.2 0V2.043L21.873 3.57a.6.6 0 11-.848-.849L23.571.175a.6.6 0 01.54-.164'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--load-video\] {
    width: 1.92em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 25' width='48' height='25'%3E%3Cpath fill='black' d='M28.474 11.649c1.995 0 3.626 1.635 3.626 3.666v5.268c0 2.03-1.631 3.666-3.626 3.666h-8.948c-1.995 0-3.626-1.635-3.626-3.666v-5.268c0-2.031 1.631-3.666 3.626-3.666zm-8.948 1.313c-1.31 0-2.34 1.05-2.34 2.353v5.268a2.333 2.333 0 002.34 2.353h8.948c1.31 0 2.34-1.05 2.34-2.353v-5.268a2.333 2.333 0 00-2.34-2.354zm2.621 1.667c.11.004.218.039.312.101l4.101 2.634c.216.134.295.383.295.585s-.08.45-.296.585l-4.1 2.634a.59.59 0 01-.648.006h-.002a.7.7 0 01-.305-.6v-5.259c-.004-.335.25-.668.595-.686zm.614 4.758 2.246-1.44-2.246-1.442zm3.73-1.154.028-.04zM23.312.174a.6.6 0 01.846 0l2.536 2.536a.599.599 0 01-.846.846l-1.51-1.51v7.518a.599.599 0 01-1.197 0V2.037l-1.52 1.52a.599.599 0 01-.845-.846z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--lora-loader\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='none' stroke='black' stroke-width='1.3' d='M25.12 4.66c.887-.907 2.378-.92 3.259 0l2.96 2.96a2.26 2.26 0 01-.02 3.259l-7.699 7.7-1.11 1.11V7.271l.19-.19zm7.22 9.19c1.278 0 2.31 1.03 2.31 2.31v4.18c0 1.28-1.032 2.31-2.31 2.31H20.35l1.11-1.11 7.69-7.69zm-14.58 3.4c-.56 0-1.01.449-1.01 1.01s.45 1.01 1.01 1.01a1.02 1.02 0 001.01-1.01c0-.562-.449-1.01-1.01-1.01Zm4.41.99a4.38 4.38 0 01-4.41 4.41 4.394 4.394 0 01-4.41-4.41V3.66c0-1.28 1.032-2.31 2.31-2.31h4.18a2.34 2.34 0 012.33 2.295z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--ltxv\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' fill-rule='evenodd' d='M419.563 282.517q.096 0 0 0c11.562-26.005 19.925-50.645 23.125-71.296 4.096-26.389.171-47.21-11.776-61.93-14.293-17.643-36.565-22.55-58.795-22.72-16.341 0-35.477 2.837-55.914 7.637C301.803 78.827 272.256 0 216.789 0 152.683 0 101.824 113.429 72.064 213.248c-10.901 36.693-29.397 109.611-29.397 145.429C42.667 443.2 109.504 512 191.659 512c93.013 0 270.933-59.733 270.933-153.323 0-28.906-16.917-54.464-43.029-76.16m-47.574-122.026c11.584.085 27.243 1.621 34.347 11.093 6.443 8.619 5.824 23.403 4.139 34.24-2.944 19.072-10.56 40.021-18.027 57.6a360 360 0 00-57.813-28.267 832 832 0 00-10.88-68.053c17.877-4.181 34.368-6.613 48.234-6.613m-33.621 112.32c13.867 6.058 27.029 12.714 39.936 20.778a698 698 0 01-37.397 64.598c.832-21.974.213-51.947-2.539-85.376m-38.037-49.43c-29.91-8.96-59.755-14.784-85.718-17.002a652 652 0 0177.654-30.592c3.178 15.637 5.845 31.701 8.064 47.594m-174.528-67.818c29.909-76.203 64-121.664 91.178-121.664 34.838 0 58.603 74.09 67.734 108.97a678 678 0 00-101.632 41.451c-31.574 15.872-63.275 37.077-84.694 54.891 6.699-27.136 20.907-66.902 27.414-83.648m65.066 322.538c-63.786-.426-115.52-53.866-115.52-119.424 0-65.92 52.182-119.488 116.352-119.488 33.003 0 74.198 7.787 112.982 20.694 4.266 43.733 5.12 83.797 2.944 109.248-5.462 64.042-60.011 108.8-116.758 108.97m154.539-36.736c-12.501 5.76-25.749 11.008-39.36 15.574 32.896-34.923 70.848-89.878 98.645-143.51 16.342 14.998 25.238 30.464 25.238 45.227.042 27.755-30.806 57.899-84.523 82.709' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--mask\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg fill='none'%3E%3Cg stroke='black' stroke-width='1.3' clip-path='url(%23svgID0)'%3E%3Cpath d='M6.05 2C5.52 7.295 9.23 10.472 14 9.943'/%3E%3Cpath stroke-linecap='round' d='M6.5 5.5 10 2'/%3E%3Cpath stroke-linecap='square' d='m8 8 4.5-4.5'/%3E%3Cpath stroke-linecap='round' d='M10.5 9.5 14 6'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 14.667A6.667 6.667 0 108 1.333a6.667 6.667 0 000 13.334'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--node\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='1.3' d='m11.267 10.45-.084.316c-.143.536-.63.909-1.184.909H4.694a1.225 1.225 0 01-1.183-1.54l1.307-4.9c.143-.537.628-.91 1.183-.91h5.464c.724 0 1.252.687 1.065 1.387l-.03.112M15.35 8h-4.9M3.713 8H.65'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--open-ai-chat-node\] {
    width: 1.92em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 25' width='48' height='25'%3E%3Cpath fill='black' d='M24.669 8.663c.468 0 .848.375.848.837v2.231c0 .463-.38.837-.848.837a.843.843 0 01-.848-.837v-1.395h-3.96v11.716h1.98c.468 0 .848.374.848.837s-.38.837-.849.837h-5.655a.843.843 0 01-.849-.837c0-.463.38-.837.85-.837h1.979V10.336h-3.96v1.395c0 .463-.38.837-.848.837a.843.843 0 01-.849-.837V9.5c0-.462.38-.837.849-.837zm4.64 4.527a.65.65 0 01.65.65v.741h.683a.65.65 0 010 1.3h-.683v.741a.65.65 0 01-1.3 0v-.741h-.684a.65.65 0 110-1.3h.684v-.741c0-.359.29-.65.65-.65m4.2-5.39a.65.65 0 01.65.651v.741h.683a.65.65 0 010 1.3h-.683v.741a.65.65 0 01-1.3 0v-.74h-.684a.65.65 0 110-1.3h.684V8.45c0-.359.29-.65.65-.65m-6-7.8a.65.65 0 01.65.65v1.96h1.85a.65.65 0 110 1.3h-1.85v1.958a.65.65 0 01-1.301 0V3.91h-1.85a.65.65 0 010-1.3h1.85V.65a.65.65 0 01.65-.65'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--openai\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' fill-rule='evenodd' d='M196.373 184.704v-48.213c0-4.054 1.536-7.104 5.078-9.131l96.917-55.808c13.205-7.616 28.928-11.157 45.163-11.157 60.885 0 99.456 47.189 99.456 97.408 0 3.562 0 7.616-.512 11.669l-100.48-58.859a17 17 0 00-18.262 0zm226.326 187.733V257.28c0-7.104-3.051-12.16-9.152-15.723l-127.36-74.09 41.6-23.851a9.23 9.23 0 0110.154 0l96.918 55.829c27.925 16.214 46.698 50.731 46.698 84.224 0 38.571-22.826 74.091-58.88 88.811zm-256.256-101.44-41.6-24.362c-3.563-2.027-5.099-5.078-5.099-9.131V125.845c0-54.293 41.6-95.402 97.941-95.402 21.334 0 41.11 7.104 57.856 19.797l-99.968 57.856c-6.08 3.541-9.13 8.619-9.13 15.723zM256 322.731l-59.627-33.494v-71.04L256 184.704l59.627 33.493v71.04zm38.315 154.24c-21.334 0-41.11-7.083-57.856-19.776l99.968-57.856c6.08-3.542 9.13-8.619 9.13-15.723V236.459l42.112 24.362c3.563 2.027 5.078 5.078 5.078 9.131v111.637c0 54.294-42.112 95.382-98.432 95.382M174.059 363.84 77.12 308.011c-27.904-16.235-46.677-50.731-46.677-84.224a95.615 95.615 0 0159.37-88.811v115.691c0 7.104 3.051 12.181 9.131 15.744l126.869 73.578-41.6 23.851a9.21 9.21 0 01-10.154 0m-5.59 83.2c-57.344 0-99.456-43.115-99.456-96.405 0-4.054.512-8.107 1.003-12.16l99.968 57.813c6.101 3.563 12.181 3.563 18.261 0l127.36-73.557v48.213c0 4.053-1.493 7.104-5.056 9.131l-96.917 55.808c-13.205 7.616-28.928 11.157-45.163 11.157m125.846 60.373a126.87 126.87 0 00124.309-101.461C475.456 391.232 512 337.92 512 283.648c0-35.52-15.211-70.016-42.624-94.891 2.539-10.666 4.053-21.312 4.053-31.957 0-72.555-58.858-126.87-126.848-126.87-13.696 0-26.88 2.027-40.106 6.614A127.2 127.2 0 00217.707 0a126.87 126.87 0 00-124.31 101.483C36.544 116.203 0 169.493 0 223.787c0 35.541 15.21 70.037 42.624 94.89-2.539 10.667-4.053 21.334-4.053 31.979 0 72.555 58.858 126.848 126.848 126.848 13.696 0 26.88-2.027 40.106-6.592a127.15 127.15 0 0088.79 36.544z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--play\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='black' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='m4 2 9.333 6L4 14z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--recraft-remove-background-node\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' d='M33.85-.25a2.4 2.4 0 012.4 2.4v19.2a2.4 2.4 0 01-2.4 2.4h-19.2a2.4 2.4 0 01-2.4-2.4V2.15a2.4 2.4 0 012.4-2.4zM15.92 3.421h-2.47v2.67h2.47v2.913h-2.47v2.67h2.47v2.672h-2.47v2.67h2.47v2.914h-2.47v1.482a1.2 1.2 0 001.2 1.138h.754l.083-.498a8.3 8.3 0 01.433-1.59v-.532h.224a8.3 8.3 0 012.255-2.913H15.92v-2.671h2.67v-.7a7.1 7.1 0 01-.945-1.971H15.92V9.004h1.452a7.1 7.1 0 01.918-2.912h-2.37zh2.67V.951h-2.67zm7.741 12.904a7.096 7.096 0 00-6.99 5.925h15.556a7.095 7.095 0 00-6.99-5.925zm9.212 3.877a8 8 0 00-.12-.272h2.296v-2.913h-2.62v-2.671h2.62v-2.671h-2.62V9.004h2.62V6.092h-2.62V3.42h2.62V2.15a1.2 1.2 0 00-1.138-1.2H32.43v2.47h-2.913V.951h-2.671v1.991l-.006-.002q.55.197 1.06.481h1.617v1.228l.202.213c.349.386.65.809.904 1.255l-.014-.026h1.82v2.913h-.902a7.1 7.1 0 01-.275 2.682l.004-.011h1.174v2.67h-2.665q-.12.136-.248.267v1.71l-.019-.011q.526.314 1.003.706h1.929v2.286q.249.436.444.9m-14.282-3.339a8.3 8.3 0 012.118-1.192 7.1 7.1 0 01-1.572-1.325h-.546zM24.45 3.726a5.91 5.91 0 00-5.906 5.905 5.914 5.914 0 005.906 5.906 5.9 5.9 0 004.177-1.73 5.91 5.91 0 000-8.352 5.9 5.9 0 00-4.177-1.73m-7.1 6.169.002.03a7 7 0 01-.007-.291zm1.243-6.473v2.19a7 7 0 01.833-1.004v-.001A7 7 0 0121 3.42zm2.912-.255-.01.005a7.1 7.1 0 012.68-.639V.95h-2.67zm3.26-.634h-.005l-.309-.007q.158 0 .314.007m-7.335 8.187-.007-.04z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h48v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--recraft\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg fill='black' fill-rule='evenodd' clip-path='url(%23svgID0)' clip-rule='evenodd'%3E%3Cpath d='M419.563 176.533C419.563 79.04 331.029 0 221.803 0c-37.846 0-68.544 79.04-68.544 176.533 0 24.384 1.92 47.638 5.397 68.779H91.52L21.333 490.667h200.534V353.131c109.162 0 197.674-79.083 197.674-176.534l.022-.042zM221.803 32.32c19.84 0 35.882 64.597 35.882 144.213 0 79.638-16.042 144.214-35.861 144.214-19.84 0-35.861-64.576-35.861-144.214 0-79.616 16.042-144.213 35.84-144.213'/%3E%3Cpath d='M423.424 353.109H222.037l77.227 137.558h201.344z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--runway\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' fill-rule='evenodd' d='M381.013 490.496c-56.938 5.227-104.256-61.355-140.736-95.019-18.453 132.715-218.944 120.299-218.944-14.464V131.2c0-19.648 5.206-39.701 15.638-56.533 19.242-32.49 56.533-53.76 94.229-53.333h249.813c134.742 0 147.584 200.49 14.443 218.517l63.36 62.954c69.376 65.366 17.237 190.486-77.781 187.67zm-30.464-79.381c39.296 40.49 101.846-22.059 61.355-61.355L302.421 240.277h-61.354v61.355l94.634 94.635zM87.893 380.629c-.789 56.15 87.83 56.15 86.614 0V130.816c.81-28.075-28.864-50.133-55.723-41.707-1.216.406-2.411.79-3.2 1.195-16.853 6.421-28.48 23.253-28.096 41.301v249.024zm293.12-206.506c56.15.789 56.15-87.424 0-86.613H232.256c11.221 23.658 8.427 60.949 8.811 86.613z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--save-audio\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath d='M28.88 0c.428 0 .773.3.773.667v10.666c0 .369-.345.667-.772.667-.426 0-.772-.299-.772-.667V.667c0-.369.346-.667.772-.667m-6.345.43c.427 0 .773.299.773.667v9.806c0 .368-.347.666-.773.666s-.772-.298-.772-.666V1.097c0-.369.346-.667.772-.667m3.173 1.935c.427 0 .773.3.773.667v5.936c0 .368-.346.666-.773.666-.426 0-.771-.299-.771-.666V3.032c0-.368.345-.667.771-.667m-9.52.43c.427 0 .773.3.773.668v5.074c0 .369-.346.667-.772.667s-.772-.298-.772-.667V3.463c0-.369.345-.667.772-.667m15.867 0c.426.001.771.3.771.668v5.074c0 .369-.345.667-.771.667s-.772-.298-.772-.667V3.463c0-.369.346-.667.772-.667m-19.282.86c.426 0 .772.3.772.667v3.355c0 .368-.347.666-.772.666-.427 0-.773-.298-.773-.666V4.322c0-.368.346-.667.773-.667m6.59 0c.426 0 .77.3.77.667v3.355c0 .368-.345.666-.77.666-.427 0-.773-.298-.773-.666V4.322c0-.368.346-.667.772-.667m15.865 0c.427 0 .772.3.772.667v3.355c0 .368-.346.666-.772.666s-.772-.298-.772-.666V4.322c0-.368.346-.667.772-.667'/%3E%3Cpath fill-rule='evenodd' d='M23.72 23.825a.6.6 0 00.85 0l2.545-2.546a.6.6 0 00-.848-.848l-1.517 1.517V14.4a.6.6 0 00-1.2 0v7.557l-1.527-1.526a.6.6 0 00-.848.848z' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--save-glb\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M24.15 13.837c.329 0 .597.268.597.598v7.518l1.51-1.51a.598.598 0 01.846.846l-2.536 2.536a.6.6 0 01-.846 0l-2.535-2.537a.6.6 0 010-.845.6.6 0 01.845 0l1.52 1.52v-7.528a.6.6 0 01.598-.598M23.954.002a.6.6 0 01.2.02l.063.023 5.38 2.335.069.036a.53.53 0 01.251.448v6.712a.53.53 0 01-.32.478l-5.38 2.335a.55.55 0 01-.383.02l-.053-.02-5.38-2.335a.53.53 0 01-.32-.478V2.864c0-.21.126-.4.32-.484l5.38-2.335a.5.5 0 01.173-.043m.156 12.326.027-.005.044-.017q-.035.014-.07.022m-4.953-3.1 4.304 1.87V5.539L19.158 3.67zm5.38-3.689v5.559l4.304-1.87V3.67zm-4.59-2.675L24 4.62l4.053-1.757L24 1.1z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--save-image\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M24 13.8a.6.6 0 01.6.6v7.546l1.516-1.516a.6.6 0 01.849.848l-2.546 2.546a.6.6 0 01-.849 0l-2.545-2.546a.6.6 0 01.848-.848l1.526 1.527V14.4c0-.33.27-.6.601-.6M31.63 0C32.38 0 33 .6 33 1.32v10.56c0 .721-.621 1.32-1.37 1.32H16.37c-.749 0-1.37-.599-1.37-1.32V1.32C15 .6 15.621 0 16.37 0zM16.175 9.918v1.962c0 .114.077.188.195.188h15.262c.118 0 .195-.074.195-.188v-1.614L28.47 7.679 25.7 9.517a.62.62 0 01-.697-.03l-3.767-2.934zm.195-8.786c-.118 0-.195.074-.195.188v7.22l4.75-3.16a.6.6 0 01.704.024l3.767 2.94 2.775-1.838a.62.62 0 01.697.03l2.96 2.28V1.32c0-.114-.078-.188-.196-.188zm9 1.508c.965 0 1.76.767 1.76 1.697s-.795 1.697-1.76 1.697-1.762-.767-1.762-1.697.797-1.697 1.762-1.697m0 1.132a.57.57 0 00-.587.565c0 .319.256.566.587.566a.57.57 0 00.587-.566.57.57 0 00-.587-.565'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--save-video\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' d='M23.74 13.837c.33 0 .597.268.597.597v7.519l1.511-1.51a.599.599 0 01.846.845l-2.536 2.536a.6.6 0 01-.846 0l-2.536-2.536a.6.6 0 01.846-.846l1.52 1.52v-7.528a.6.6 0 01.598-.597M28.474.002c1.995 0 3.626 1.635 3.626 3.666v5.267c0 2.031-1.631 3.667-3.626 3.667h-8.948c-1.995 0-3.626-1.636-3.626-3.667V3.668c0-2.031 1.631-3.666 3.626-3.666zm-8.948 1.312c-1.31 0-2.34 1.05-2.34 2.354v5.267a2.334 2.334 0 002.34 2.355h8.948c1.31 0 2.34-1.051 2.34-2.355V3.668a2.334 2.334 0 00-2.34-2.354zm2.621 1.668c.11.004.218.038.312.1l4.101 2.634c.216.135.295.384.295.585 0 .202-.08.451-.296.585l-4.1 2.634a.59.59 0 01-.648.007h-.002a.7.7 0 01-.305-.599v-5.26c-.004-.335.25-.667.595-.685zm.614 4.758 2.246-1.44-2.246-1.44zm3.73-1.154.028-.04z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--stability-text-to-audio\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath fill-rule='evenodd' d='M29.025 11.721a.6.6 0 010 .849l-2.545 2.546a.6.6 0 01-.849-.85l1.517-1.517h-7.547a.6.6 0 110-1.199h7.556l-1.526-1.526a.6.6 0 11.849-.849z' clip-rule='evenodd'/%3E%3Cpath d='M9.77 17a.616.616 0 010 1.23H.615a.615.615 0 010-1.23zm4.615-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23z'/%3E%3Cpath fill-rule='evenodd' d='M45.455 12.179a.705.705 0 01.986.118c.118.14 1.102 1.43 1.102 3.73s-.985 3.589-1.102 3.706a.705.705 0 01-.986.118.68.68 0 01-.093-.985c.07-.094.774-1.08.774-2.84s-.704-2.745-.798-2.862a.705.705 0 01.117-.985M33.7 4.999c2.675 0 4.881 2.159 4.928 4.833v.07L40.2 12.25c.282.422.375.915.258 1.36a1.66 1.66 0 01-1.596 1.22h-.234v1.408c0 .915-.728 1.643-1.642 1.643l-1.783-.001-.375 1.126c-.094.281-.329.492-.61.515-.117 0-.21 0-.328-.046-.329-.142-.493-.562-.376-.938l.445-1.267c.164-.469.61-.797 1.103-.797h1.924a.235.235 0 00.234-.235v-2.346a.47.47 0 01.47-.47h1.172c.188 0 .281-.187.188-.35l-1.596-2.394a1.4 1.4 0 01-.234-.797 3.5 3.5 0 00-3.495-3.473H33.7a.71.71 0 01-.703-.587c-.046-.445.281-.82.703-.821m8.658 9.103a.68.68 0 01.985.024c.47.517.703 1.197.68 1.9a2.67 2.67 0 01-.68 1.9c-.258.26-.704.26-.985 0-.21-.281-.258-.727 0-1.009a1.68 1.68 0 000-1.806c-.002 0-.024-.001-.024-.024-.281-.281-.258-.704.024-.985' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--subgraph-blueprint-canny-to-video-ltx-2-0\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath fill-rule='evenodd' d='M27.025 11.721a.6.6 0 010 .849l-2.545 2.546a.6.6 0 01-.849-.85l1.517-1.517h-7.547a.6.6 0 110-1.199h7.556l-1.526-1.526a.6.6 0 11.849-.849z' clip-rule='evenodd'/%3E%3Cpath d='M11.7 5.115a1.3 1.3 0 011.3 1.3v10.4a1.3 1.3 0 01-1.167 1.293l-.133.007H1.3a1.3 1.3 0 01-1.3-1.3v-10.4a1.3 1.3 0 011.3-1.3zm-10.089 1A.61.61 0 001 6.727v9.777l.001.031a.61.61 0 00.61.58h.608l.015-.093q.066-.401.2-.78a.326.326 0 01.613.213 4 4 0 00-.17.66h8.383a4 4 0 00-.17-.66.325.325 0 11.614-.214q.107.308.171.63a.6.6 0 00.124-.336l.001-.031V6.727a.61.61 0 00-.58-.61l-.031-.002zm2.283 8.062a.325.325 0 11.405.508 3.9 3.9 0 00-.784.845.326.326 0 01-.537-.366q.226-.332.512-.623l.097-.096a5 5 0 01.307-.268m5.894.05a.326.326 0 01.457-.05 4.5 4.5 0 01.915.987.325.325 0 01-.537.366 4 4 0 00-.784-.845.326.326 0 01-.05-.458m-5.92-1.862a.325.325 0 01.446.107 3.3 3.3 0 00.614.731q.065.062.092.144a.33.33 0 01.16.06q.087.064.178.121a.325.325 0 01-.055.577 4 4 0 00-.422.196.325.325 0 01-.318-.566.3.3 0 01-.068-.046 4 4 0 01-.734-.876.326.326 0 01.106-.448m5.956.107a.325.325 0 01.554.341q-.232.376-.543.694l-.006.007q-.09.091-.185.176a.3.3 0 01-.067.045.324.324 0 01-.32.566 4 4 0 00-.421-.195.325.325 0 01-.056-.578q.091-.057.179-.12a.3.3 0 01.16-.06.33.33 0 01.093-.144q.08-.07.155-.147l.001-.001.065-.069q.221-.24.391-.515M3.67 9.52a.325.325 0 01.24.392q-.086.348-.095.712v.086q0 .375.081.733a.326.326 0 01-.633.143 4 4 0 01-.098-.878v-.031l.001-.02-.001-.02.001-.025v-.004a4 4 0 01.111-.85.325.325 0 01.393-.238m6.818.061a.325.325 0 01.388.246 4 4 0 010 1.759.325.325 0 01-.635-.143 3.4 3.4 0 000-1.473.326.326 0 01.247-.389m-1.843-2.16a.325.325 0 01.447-.107q.36.222.67.521l.004.003.017.018.014.015.014.012.021.021q.314.32.546.698a.325.325 0 01-.554.34 3.3 3.3 0 00-.453-.58L9.34 8.33l-.014-.013-.014-.015a3.3 3.3 0 00-.56-.435.325.325 0 01-.106-.446m-3.658-.07a.325.325 0 11.35.547q-.305.196-.566.46l-.001.001a3.3 3.3 0 00-.445.564.324.324 0 01-.55-.345q.226-.363.53-.673l.08-.08q.28-.268.602-.473m2.081-.61q.431 0 .846.093a.325.325 0 01-.143.635 3.2 3.2 0 00-1.427.005.325.325 0 01-.148-.633q.428-.1.872-.1M44.203 5c2.094 0 3.807 1.717 3.807 3.85v5.53c0 2.133-1.713 3.85-3.807 3.85h-9.396c-2.095 0-3.807-1.717-3.807-3.85V8.85C31 6.717 32.712 5 34.807 5zm-9.396 1.378A2.45 2.45 0 0032.35 8.85v5.53a2.45 2.45 0 002.457 2.472h9.396a2.45 2.45 0 002.457-2.472V8.85a2.45 2.45 0 00-2.457-2.472zM37.56 8.13c.115.004.228.04.326.106l4.307 2.766c.226.14.31.402.31.614s-.084.473-.31.614l-4.306 2.766a.62.62 0 01-.68.007l-.002-.001a.73.73 0 01-.32-.628V8.85c-.005-.352.262-.701.624-.72zm.644 4.996 2.359-1.51-2.359-1.515zm3.971-1.3a.4.4 0 01-.054.088l.03-.041z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--subgraph-blueprint-pose-to-video-ltx-2-0\] {
    width: 2.05em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 49 24' width='49' height='24'%3E%3Cg fill='black'%3E%3Cpath fill-rule='evenodd' d='M26.524 11.72a.6.6 0 010 .85l-2.545 2.545a.6.6 0 01-.848-.848l1.516-1.517H17.1a.6.6 0 010-1.2h7.557l-1.526-1.527a.6.6 0 01.848-.848z' clip-rule='evenodd'/%3E%3Cpath d='M4.508 3.614a.68.68 0 01.508.028l1.128.527.776-.484.075-.04a.68.68 0 01.575.002l1.388.65a.546.546 0 01-.463.988L7.31 4.728l-.764.478v1.766H9.32c.232 0 .446.118.57.308l.048.086 1.32 2.826a1 1 0 01.032.084l.021.087.678 3.878a.546.546 0 01-1.074.188l-.669-3.824L9.06 8.063H6.545v3.545a.6.6 0 01-.02.137h.508a.68.68 0 01.577.318l.047.089 1.238 2.82q.046.103.056.217l.319 3.874a.545.545 0 11-1.086.089l-.315-3.805-1.103-2.513H5.52l-1.393 2.537-.312 3.78a.545.545 0 01-1.086-.088l.318-3.867.01-.072a.7.7 0 01.072-.2l1.552-2.826.05-.078a.68.68 0 01.546-.275h.197a.5.5 0 01-.02-.137V8.063h-2.21l-1.499 2.57-.664 3.48a.546.546 0 01-1.071-.205l.677-3.548.032-.111a1 1 0 01.049-.105L2.42 7.31a.68.68 0 01.589-.338h2.444v-1.92l-.727-.342-1.223.575a.546.546 0 01-.463-.989l1.396-.654zM44.703 5c2.094 0 3.807 1.717 3.807 3.85v5.53c0 2.133-1.713 3.85-3.807 3.85h-9.396c-2.095 0-3.807-1.717-3.807-3.85V8.85C31.5 6.717 33.212 5 35.307 5zm-9.396 1.378A2.45 2.45 0 0032.85 8.85v5.53a2.45 2.45 0 002.457 2.472h9.396a2.45 2.45 0 002.457-2.472V8.85a2.45 2.45 0 00-2.457-2.472zm2.752 1.751a.6.6 0 01.327.106l4.307 2.766c.226.14.31.402.31.614s-.084.473-.31.614l-4.307 2.766a.62.62 0 01-.68.007l-.002-.001a.73.73 0 01-.32-.628V8.85c-.004-.352.263-.701.625-.72zm.645 4.996 2.358-1.51-2.358-1.515zm3.971-1.3a.4.4 0 01-.055.088l.03-.041z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--template\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg fill='none'%3E%3Cg stroke='black' stroke-linecap='round' stroke-width='1.3' clip-path='url(%23svgID0)'%3E%3Cpath d='m14.669 5.742.642-2.57a1.285 1.285 0 00-1.247-1.597H2.578a1.285 1.285 0 00-1.247.973L.69 5.118a1.285 1.285 0 001.247 1.597h11.486a1.285 1.285 0 001.246-.973Zm0 7.71.642-2.57a1.285 1.285 0 00-1.247-1.597h-5.06a1.285 1.285 0 00-1.247.973l-.643 2.57a1.285 1.285 0 001.247 1.597h5.06a1.285 1.285 0 001.247-.973Zm-10.28 0 .642-2.57a1.285 1.285 0 00-1.247-1.597H2.578a1.285 1.285 0 00-1.246.973l-.643 2.57a1.285 1.285 0 001.247 1.597h1.206a1.285 1.285 0 001.246-.973Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='black' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--tencent-image-to-model-node\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M39.946 4.102a.7.7 0 01.24.025l.077.027 6.49 2.817c.235.102.387.33.387.584v8.097a.64.64 0 01-.387.577l-6.49 2.817a.67.67 0 01-.462.024l-.064-.024-6.49-2.817a.64.64 0 01-.387-.577V7.555c0-.254.153-.482.387-.584l6.49-2.817a.7.7 0 01.21-.053m.202 14.869.018-.004.024-.01zM16.63 5c.749 0 1.37.6 1.37 1.32v10.56c0 .72-.621 1.32-1.37 1.32H1.37C.62 18.2 0 17.6 0 16.88V6.32C0 5.6.621 5 1.37 5zm17.42 10.307 5.409 2.35v-.003l-5.41-2.348m6.491 2.347v.002l5.408-2.35zm-6.383-2.42 5.193 2.255v-6.707l-5.193-2.255zm6.49-4.452v6.707l5.194-2.255V8.527zM1.174 14.918v1.962c0 .114.077.188.195.188h15.262c.118 0 .195-.074.195-.188v-1.614l-3.356-2.587-2.77 1.838a.62.62 0 01-.697-.03l-3.767-2.934zm.195-8.786c-.118 0-.195.074-.195.188v7.219l4.75-3.16a.6.6 0 01.704.024l3.767 2.942 2.775-1.84a.62.62 0 01.697.03l2.96 2.28V6.32c0-.114-.078-.188-.196-.188zM10.37 7.64c.965 0 1.76.767 1.76 1.697s-.795 1.697-1.76 1.697-1.762-.767-1.762-1.697.797-1.697 1.762-1.697m0 1.131a.57.57 0 00-.587.566c0 .319.256.566.587.566a.57.57 0 00.587-.566.57.57 0 00-.587-.566M40 9.793l-5.16-2.238h-.001L40 9.796l5.161-2.24h-.002zm-4.89-2.24L40 9.677l4.89-2.122L40 5.428zm4.845-3.343a.6.6 0 00-.175.044L33.29 7.07a.54.54 0 00-.254.23l.066-.092a.54.54 0 01.188-.136l6.49-2.816a.55.55 0 01.44 0l6.49 2.816V7.07l-6.49-2.816a.56.56 0 00-.265-.044m-9.93 7.511a.6.6 0 010 .849l-2.545 2.546a.6.6 0 01-.849-.85l1.517-1.517h-7.547a.6.6 0 110-1.199h7.556l-1.526-1.526a.6.6 0 11.849-.849z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--tencent-text-to-model-node\] {
    width: 2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 24' width='48' height='24'%3E%3Cg fill='black'%3E%3Cpath fill-rule='evenodd' d='M27.025 11.72a.6.6 0 010 .85l-2.545 2.545a.6.6 0 01-.849-.848l1.517-1.517H17.6a.6.6 0 010-1.2h7.557l-1.526-1.527a.6.6 0 01.849-.848z' clip-rule='evenodd'/%3E%3Cpath d='M9.77 17a.616.616 0 010 1.23H.615a.615.615 0 010-1.23zm4.615-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23zm0-3a.615.615 0 010 1.23H.615a.615.615 0 010-1.23z'/%3E%3Cpath fill-rule='evenodd' d='M37.086 4.002a.7.7 0 01.24.025l.076.028 6.49 2.816h.002c.233.102.386.33.385.584v8.098a.64.64 0 01-.386.577l-6.49 2.816a.66.66 0 01-.463.025l-.063-.025-6.49-2.816h-.001a.64.64 0 01-.386-.577V7.455a.64.64 0 01.387-.584l6.49-2.816a.7.7 0 01.209-.053m.104 14.887.033-.003zm.097-.018.019-.004.023-.01zm-6.097-3.664 5.409 2.35v-.002l-5.41-2.349zm6.49 2.348v.002l5.409-2.35v-.001zm-6.382-2.42 5.192 2.255v-6.707l-5.192-2.255zm6.49-4.452v6.707l5.193-2.255V8.428zm-.648-.99-5.16-2.238-.002.001 5.162 2.24 5.16-2.24-.001-.001zm-4.89-2.239 4.89 2.122 4.89-2.122-4.89-2.126zm4.845-3.344a.6.6 0 00-.175.044l-6.49 2.817v.002l6.49-2.817a.55.55 0 01.44 0l6.49 2.817V6.97l-6.49-2.817a.56.56 0 00-.265-.044' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--topaz\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='black' fill-rule='evenodd' d='M13 337.575V499h161.595V337.575zm323.676 0V176.15H175.081v161.425zM499 174.425V13H337.405v161.425z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--wavespeed\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg fill='black' clip-path='url(%23svgID0)'%3E%3Cpath d='m219.566 100.584 98.005-.233c4.786.766 10.325 6.299 10.792 11.235-12.75 94.583-55.475 184.295-119.433 254.46-17.77 19.483-38.406 43.239-65.995 45.395-27.653 2.169-73.27 1.935-101.08 0-15.175-1.052-27.977-7.637-30.247-24.159-4.864-35.303 20.87-39.147 44.308-55.214 58.238-39.901 104.621-98.545 129.07-165.021 5.175-14.067 10.415-42.953 16.538-53.435 3.424-5.871 11.297-11.898 18.055-13.041zm176.049 0c12.05-2.052 75.606-2.169 87.422 0 15.591 2.845 20.143 18.587 18.717 32.394-6.317 61.098-43.322 154.616-71.468 209.74-15.954 31.251-29.106 65.814-68.589 68.723-25.746 1.896-71.701 2.26-97.188 0-11.233-1-18.574-7.507-15.124-19.158 51.921-68.164 91.806-144.096 115.14-226.924 4.073-14.444 9.053-48.929 18.444-58.008 2.828-2.74 8.781-6.117 12.659-6.78zm-363.772-.013 95.424-.22c15.461 2.415 7.536 29.834 5.266 40.121-11.583 52.436-51.532 116.534-99.16 143.122-11.103 6.196-19.222 4.364-21.92-8.936 3.554-47.72-4.67-102.169.039-149.096 1.206-12.015 8.95-21.276 20.35-24.991'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M10 99h492v314H10z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--workflow\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='1.3' d='M9.186 3.1H6.814m2.372 9.8H7.553C4.466 12.9 2.2 9.904 2.95 6.812l.305-1.262M14.75 2.172l-.594 2.45a1.194 1.194 0 01-1.15.928h-2.3c-.771 0-1.338-.749-1.15-1.522l.593-2.45a1.194 1.194 0 011.15-.928h2.3c.771 0 1.338.749 1.15 1.522Zm-8.304 0-.593 2.45a1.194 1.194 0 01-1.15.928h-2.3c-.772 0-1.338-.749-1.15-1.522l.592-2.45A1.194 1.194 0 012.995.65h2.3c.771 0 1.337.749 1.15 1.522Zm8.304 9.8-.594 2.45a1.194 1.194 0 01-1.15.928h-2.3c-.771 0-1.338-.749-1.15-1.522l.593-2.45a1.194 1.194 0 011.15-.928h2.3c.771 0 1.338.749 1.15 1.522Z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--alert-circle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4m0 4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-center-horizontal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 12h20m-12 4v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4m6-8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4m16 8v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1m0-8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-center-vertical\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 2v20M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4m8 6h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1m8 0h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-end-horizontal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='6' height='16' x='4' y='2' rx='2'/%3E%3Crect width='6' height='9' x='14' y='9' rx='2'/%3E%3Cpath d='M22 22H2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-end-vertical\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='16' height='6' x='2' y='4' rx='2'/%3E%3Crect width='9' height='6' x='9' y='14' rx='2'/%3E%3Cpath d='M22 22V2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-start-horizontal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='6' height='16' x='4' y='6' rx='2'/%3E%3Crect width='6' height='9' x='14' y='6' rx='2'/%3E%3Cpath d='M22 2H2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--align-start-vertical\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='9' height='6' x='6' y='14' rx='2'/%3E%3Crect width='16' height='6' x='6' y='4' rx='2'/%3E%3Cpath d='M2 2v20'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--arrow-left-right\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 3L4 7l4 4M4 7h16m-4 14l4-4l-4-4m4 4H4'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--arrow-left\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 19l-7-7l7-7m7 7H5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--arrow-up-down\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m21 16l-4 4l-4-4m4 4V4M3 8l4-4l4 4M7 4v16'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--audio-lines\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 10v3m4-7v11m4-14v18m4-13v7m4-10v13m4-8v3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--badge-check\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3.85 8.62a4 4 0 0 1 4.78-4.77a4 4 0 0 1 6.74 0a4 4 0 0 1 4.78 4.78a4 4 0 0 1 0 6.74a4 4 0 0 1-4.77 4.78a4 4 0 0 1-6.75 0a4 4 0 0 1-4.78-4.77a4 4 0 0 1 0-6.76'/%3E%3Cpath d='m9 12l2 2l4-4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--ban\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4.929 4.929L19.07 19.071'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--blocks\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2'/%3E%3Crect width='8' height='8' x='14' y='2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--book-open\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 7v14m-9-3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4a4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3a3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--box\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'/%3E%3Cpath d='m3.3 7l8.7 5l8.7-5M12 22V12'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--building-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 12h4m-4-4h4m0 13v-3a2 2 0 0 0-4 0v3'/%3E%3Cpath d='M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--check-check\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 6L7 17l-5-5m20-2l-7.5 7.5L13 16'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--check-circle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11l3 3L22 4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--check\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--chevron-down\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--chevron-left\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 18l-6-6l6-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--chevron-right\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m9 18l6-6l-6-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--chevron-up\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m18 15l-6-6l-6 6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--chevrons-up-down\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m7 15l5 5l5-5M7 9l5-5l5 5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-alert\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4m0 4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-help\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3m.08 4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-minus\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12h8'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 2l20 20M8.35 2.69A10 10 0 0 1 21.3 15.65m-2.22 3.43A10 10 0 1 1 4.92 4.92'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-question-mark\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3m.08 4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle-slash-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M22 2L2 22'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--circle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--clipboard-paste\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11 14h10M16 4h2a2 2 0 0 1 2 2v1.344M17 18l4-4l-4-4'/%3E%3Cpath d='M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113'/%3E%3Crect width='8' height='4' x='8' y='2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--clipboard-pen\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='8' height='4' x='8' y='2' rx='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5M4 13.5V6a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--clock\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 6v6l4 2'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--cloud-download\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 13v8l-4-4m4 4l4-4'/%3E%3Cpath d='M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--cloud\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--coins\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3Cpath d='M18.09 10.37A6 6 0 1 1 10.34 18M7 6h1v4'/%3E%3Cpath d='m16.71 13.88l.7.71l-2.82 2.82'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--command\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--component\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0zm-13.239 0a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0zm6.619 6.619a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0zm0-13.238a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--copy\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='14' height='14' x='8' y='8' rx='2' ry='2'/%3E%3Cpath d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--cpu\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 20v2m0-20v2m5 16v2m0-20v2M2 12h2m-2 5h2M2 7h2m16 5h2m-2 5h2M20 7h2M7 20v2M7 2v2'/%3E%3Crect width='16' height='16' x='4' y='4' rx='2'/%3E%3Crect width='8' height='8' x='8' y='8' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--credit-card\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='20' height='14' x='2' y='5' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--delete\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm2 4l6 6m0-6l-6 6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--download\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 15V3m9 12v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='m7 10l5 5l5-5'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--dumbbell\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829zM2.5 21.5l1.4-1.4M20.1 3.9l1.4-1.4M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829zM9.6 14.4l4.8-4.8'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--edit\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--ellipsis\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3Ccircle cx='19' cy='12' r='1'/%3E%3Ccircle cx='5' cy='12' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--expand\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 15l6 6M15 9l6-6m0 13v5h-5m5-13V3h-5M3 16v5h5m-5 0l6-6M3 8V3h5m1 6L3 3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--external-link\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--eye-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575a1 1 0 0 1 0 .696a10.8 10.8 0 0 1-1.444 2.49m-6.41-.679a3 3 0 0 1-4.242-4.242'/%3E%3Cpath d='M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151a1 1 0 0 1 0-.696a10.75 10.75 0 0 1 4.446-5.143M2 2l20 20'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--eye\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2.062 12.348a1 1 0 0 1 0-.696a10.75 10.75 0 0 1 19.876 0a1 1 0 0 1 0 .696a10.75 10.75 0 0 1-19.876 0'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--fast-forward\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z'/%3E%3Cpath d='M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--file-output\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127'/%3E%3Cpath d='M14 2v5a1 1 0 0 0 1 1h5M5 11l-3 3m3 3l-3-3h10'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--file-text\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/%3E%3Cpath d='M14 2v5a1 1 0 0 0 1 1h5M10 9H8m8 4H8m8 4H8'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--film\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M7 3v18M3 7.5h4M3 12h18M3 16.5h4M17 3v18m0-13.5h4m-4 9h4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--filter-x\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055M22 3l-5 5m0-5l5 5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--filter\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 3H2l8 9.46V19l4 2v-8.54z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--flame\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0a5 5 0 0 1 1-3a1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--focus\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M3 7V5a2 2 0 0 1 2-2h2m10 0h2a2 2 0 0 1 2 2v2m0 10v2a2 2 0 0 1-2 2h-2M7 21H5a2 2 0 0 1-2-2v-2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--folder-input\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1m0-4h10'/%3E%3Cpath d='m9 16l3-3l-3-3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--folder-plus\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 10v6m-3-3h6m5 7a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--folder-search\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1M21 21l-1.9-1.9'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--folder\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--frame\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 6H2m20 12H2M6 2v20M18 2v20'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--github\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5c.08-1.25-.27-2.48-1-3.5c.28-1.15.28-2.35 0-3.5c0 0-1 0-3 1.5c-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.4 5.4 0 0 0 4 9c0 3.5 3 5.5 6 5.5c-.39.49-.68 1.05-.85 1.65S8.93 17.38 9 18v4'/%3E%3Cpath d='M9 18c-4.51 2-5-2-7-2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--globe\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20a14.5 14.5 0 0 0 0-20M2 12h20'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--graduation-cap\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0zM22 10v6'/%3E%3Cpath d='M6 12.5V16a6 3 0 0 0 12 0v-3.5'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--grid-3x3\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M3 9h18M3 15h18M9 3v18m6-18v18'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--grip-vertical\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='9' cy='12' r='1'/%3E%3Ccircle cx='9' cy='5' r='1'/%3E%3Ccircle cx='9' cy='19' r='1'/%3E%3Ccircle cx='15' cy='12' r='1'/%3E%3Ccircle cx='15' cy='5' r='1'/%3E%3Ccircle cx='15' cy='19' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--group\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 7V5c0-1.1.9-2 2-2h2m10 0h2c1.1 0 2 .9 2 2v2m0 10v2c0 1.1-.9 2-2 2h-2M7 21H5c-1.1 0-2-.9-2-2v-2'/%3E%3Crect width='7' height='5' x='7' y='7' rx='1'/%3E%3Crect width='7' height='5' x='10' y='12' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--hand-coins\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17'/%3E%3Cpath d='m7 21l1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9M2 16l6 6'/%3E%3Ccircle cx='16' cy='9' r='2.9'/%3E%3Ccircle cx='6' cy='5' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--hand\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2m0 4V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2m0 4.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8'/%3E%3Cpath d='M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--handshake\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m11 17l2 2a1 1 0 1 0 3-3'/%3E%3Cpath d='m14 14l2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/%3E%3Cpath d='m21 3l1 11h-2M3 3L2 14l6.5 6.5a1 1 0 1 0 3-3M3 4h8'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--heart\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 9.5a5.5 5.5 0 0 1 9.591-3.676a.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--history\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9a9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5m4-1v5l4 2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--image-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m2 2l20 20M10.41 10.41a2 2 0 1 1-2.83-2.83m5.92 5.92L6 21m12-9l3 3'/%3E%3Cpath d='M3.59 3.59A2 2 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59M21 15V5a2 2 0 0 0-2-2H9'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--image\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2' ry='2'/%3E%3Ccircle cx='9' cy='9' r='2'/%3E%3Cpath d='m21 15l-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--info\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4m0-4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--key-round\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z'/%3E%3Ccircle cx='16.5' cy='7.5' r='.5' fill='black'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--keyboard\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 8h.01M12 12h.01M14 8h.01M16 12h.01M18 8h.01M6 8h.01M7 16h10m-9-4h.01'/%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--lasso-select\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M7 22a5 5 0 0 1-2-4m2-1.07c.96.43 1.96.74 2.99.91M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.2 7.2 0 0 1-.33 2'/%3E%3Cpath d='M5 18a2 2 0 1 0 0-4a2 2 0 0 0 0 4m9.33 4h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--layers\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z'/%3E%3Cpath d='M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12'/%3E%3Cpath d='M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--layout-grid\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='7' height='7' x='3' y='3' rx='1'/%3E%3Crect width='7' height='7' x='14' y='3' rx='1'/%3E%3Crect width='7' height='7' x='14' y='14' rx='1'/%3E%3Crect width='7' height='7' x='3' y='14' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--link\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--list-filter\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5h20M6 12h12m-9 7h6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--list-restart\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M21 5H3m4 7H3m4 7H3m9-1a5 5 0 0 0 9-3a4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14'/%3E%3Cpath d='M11 10v4h4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--list-start\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 5h6m-6 7h13M3 19h13m0-11l-3-3l3-3'/%3E%3Cpath d='M21 19V7a2 2 0 0 0-2-2h-6'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--list-x\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 5H3m8 7H3m13 7H3m12.5-9.5l5 5m0-5l-5 5'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--list\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5h.01M3 12h.01M3 19h.01M8 5h13M8 12h13M8 19h13'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--loader-2\], .icon-\[lucide--loader-circle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 1 1-6.219-8.56'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--loader\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 2v4m4.2 1.8l2.9-2.9M18 12h4m-5.8 4.2l2.9 2.9M12 18v4m-7.1-2.9l2.9-2.9M2 12h4M4.9 4.9l2.9 2.9'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--locate\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2 12h3m14 0h3M12 2v3m0 14v3'/%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--lock-open\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='11' x='3' y='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--lock\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='11' x='3' y='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--log-out\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m16 17l5-5l-5-5m5 5H9m0 9H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--mail-x\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9'/%3E%3Cpath d='m22 7l-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7m15 10l4 4m0-4l-4 4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--map\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0zm.894.211v15M9 3.236v15'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--maximize-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 3h6v6m0-6l-7 7M3 21l7-7m-1 7H3v-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--menu\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 5h16M4 12h16M4 19h16'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--message-circle-question-mark\], .icon-\[lucide--message-circle-question\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092a10 10 0 1 0-4.777-4.719'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3m.08 4h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--message-circle-warning\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092a10 10 0 1 0-4.777-4.719M12 8v4m0 4h.01'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--message-square-text\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2zM7 11h10M7 15h6M7 7h8'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--minimize-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 10l7-7m-1 7h-6V4M3 21l7-7m-6 0h6v6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--minus\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--more-horizontal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3Ccircle cx='19' cy='12' r='1'/%3E%3Ccircle cx='5' cy='12' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--more-vertical\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3Ccircle cx='12' cy='5' r='1'/%3E%3Ccircle cx='12' cy='19' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--mouse-pointer-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--move-diagonal-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 13v6h-6m-8-8V5h6M5 5l14 14'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--music\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--octagon-alert\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 16h.01M12 8v4m3.312-10a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--package\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73zm1 .27V12'/%3E%3Cpath d='M3.29 7L12 12l8.71-5M7.5 4.27l9 5.15'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--palette\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 22a1 1 0 0 1 0-20a10 9 0 0 1 10 9a5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z'/%3E%3Ccircle cx='13.5' cy='6.5' r='.5' fill='black'/%3E%3Ccircle cx='17.5' cy='10.5' r='.5' fill='black'/%3E%3Ccircle cx='6.5' cy='12.5' r='.5' fill='black'/%3E%3Ccircle cx='8.5' cy='7.5' r='.5' fill='black'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--panel-left-close\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M9 3v18m7-6l-3-3l3-3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--panel-left\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M9 3v18'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--panel-right-close\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M15 3v18M8 9l3 3l-3 3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--panel-right\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M15 3v18'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--panels-top-left\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pause\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='5' height='18' x='14' y='3' rx='1'/%3E%3Crect width='5' height='18' x='5' y='3' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pen-tool\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z'/%3E%3Cpath d='m18 13l-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18M2.3 2.3l7.286 7.286'/%3E%3Ccircle cx='11' cy='11' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pencil-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 10l-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982m-1.171-6.81l4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353M15 5l4 4M2 2l20 20'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pencil\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497zM15 5l4 4'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pin-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 17v5m3-12.66V7a1 1 0 0 1 1-1a2 2 0 0 0 0-4H7.89M2 2l20 20M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--pin\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 17v5M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1a2 2 0 0 0 0-4H8a2 2 0 0 0 0 4a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--play\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--plug\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 22v-5m3-9V2m2 6a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1zM9 8V2'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--plus\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14m-7-7v14'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--puzzle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15.39 4.39a1 1 0 0 0 1.68-.474a2.5 2.5 0 1 1 3.014 3.015a1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474a2.5 2.5 0 1 0-3.014 3.015a1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474a2.5 2.5 0 1 1-3.014-3.015a1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474a2.5 2.5 0 1 0 3.014-3.015a1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--receipt-text\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16H8m6-8H8m8 4H8M4 3a1 1 0 0 1 1-1a1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1a1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--redo-dot\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='17' r='1'/%3E%3Cpath d='M21 7v6h-6'/%3E%3Cpath d='M3 17a9 9 0 0 1 9-9a9 9 0 0 1 6 2.3l3 2.7'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--refresh-cw\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 0 1 9-9a9.75 9.75 0 0 1 6.74 2.74L21 8'/%3E%3Cpath d='M21 3v5h-5m5 4a9 9 0 0 1-9 9a9.75 9.75 0 0 1-6.74-2.74L3 16'/%3E%3Cpath d='M8 16H3v5'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--rocket\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0m1 7v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--rotate-ccw\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9a9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--route-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Cpath d='M9 19h8.5c.4 0 .9-.1 1.3-.2M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12M2 2l20 20m-1-6.7a3.5 3.5 0 0 0-3.3-3.3M15 5h-4.3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--route\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Cpath d='M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--save\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7M7 3v4a1 1 0 0 0 1 1h7'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--scroll-text\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 12h-5m5-4h-5m9 9V5a2 2 0 0 0-2-2H4'/%3E%3Cpath d='M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--scroll\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M19 17V5a2 2 0 0 0-2-2H4'/%3E%3Cpath d='M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--search\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m21 21l-4.34-4.34'/%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--server-crash\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2M6 6h.01M6 18h.01'/%3E%3Cpath d='m13 6l-4 6h6l-4 6'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--server\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='20' height='8' x='2' y='2' rx='2' ry='2'/%3E%3Crect width='20' height='8' x='2' y='14' rx='2' ry='2'/%3E%3Cpath d='M6 6h.01M6 18h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--settings-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 17H5M19 7h-9'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3Ccircle cx='7' cy='7' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--settings\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M9.671 4.136a2.34 2.34 0 0 1 4.659 0a2.34 2.34 0 0 0 3.319 1.915a2.34 2.34 0 0 1 2.33 4.033a2.34 2.34 0 0 0 0 3.831a2.34 2.34 0 0 1-2.33 4.033a2.34 2.34 0 0 0-3.319 1.915a2.34 2.34 0 0 1-4.659 0a2.34 2.34 0 0 0-3.32-1.915a2.34 2.34 0 0 1-2.33-4.033a2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--share-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='m8.59 13.51l6.83 3.98m-.01-10.98l-6.82 3.98'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--shrink\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 15l6 6m-6-6v4.8m0-4.8h4.8M9 19.8V15m0 0H4.2M9 15l-6 6M15 4.2V9m0 0h4.8M15 9l6-6M9 4.2V9m0 0H4.2M9 9L3 3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--shuffle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m18 14l4 4l-4 4m0-20l4 4l-4 4'/%3E%3Cpath d='M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22M2 6h1.972a4 4 0 0 1 3.6 2.2M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--sliders-horizontal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 5H3m9 14H3M14 3v4m2 10v4m5-9h-9m9 7h-5m5-14h-7m-6 5v4m0-2H3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--square-pen\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--square\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Crect width='18' height='18' x='3' y='3' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' rx='2'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--star\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.12 2.12 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--step-forward\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432zM3 4v16'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--table-of-contents\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 5H3m13 7H3m13 7H3M21 5h.01M21 12h.01M21 19h.01'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--tag\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z'/%3E%3Ccircle cx='7.5' cy='7.5' r='.5' fill='black'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--target\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--terminal\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 19h8M4 17l6-6l-6-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--text\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 18H3M17 6H3m18 6H3'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--trash-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 11v6m4-6v6m5-11v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--triangle-alert\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m21.73 18l-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3M12 9v4m0 4h.01'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--trophy\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978m7-7.318v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978M18 9h1.5a1 1 0 0 0 0-5H18M4 22h16'/%3E%3Cpath d='M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1zm0 0H4.5a1 1 0 0 1 0-5H6'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--undo-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M9 14L4 9l5-5'/%3E%3Cpath d='M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--upload\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3v12m5-7l-5-5l-5 5m14 7v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--user\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--users\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2M16 3.128a4 4 0 0 1 0 7.744M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--video-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2M2 2l20 20'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--video\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m16 13l5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5'/%3E%3Crect width='14' height='12' x='2' y='6' rx='2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--volume-1\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298zM16 9a5 5 0 0 1 0 6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--volume-2\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298zM16 9a5 5 0 0 1 0 6m3.364 3.364a9 9 0 0 0 0-12.728'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--volume-x\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298zM22 9l-6 6m0-6l6 6'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--workflow\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='8' height='8' x='3' y='3' rx='2'/%3E%3Cpath d='M7 11v4a2 2 0 0 0 2 2h4'/%3E%3Crect width='8' height='8' x='13' y='13' rx='2'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--wrench\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--x-circle\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m15 9l-6 6m0-6l6 6'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--x\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--zap-off\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.513 4.856L13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773m-2.787 2.87L10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643M2 2l20 20'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--zap\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[lucide--zoom-in\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21l-4.35-4.35M11 8v6m-3-3h6'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[mdi--folder\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 4H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[ph--star-fill\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' width='256' height='256'%3E%3Cpath fill='black' d='m234.29 114.85l-45 38.83L203 211.75a16.4 16.4 0 0 1-24.5 17.82L128 198.49l-50.53 31.08A16.4 16.4 0 0 1 53 211.75l13.76-58.07l-45-38.83A16.46 16.46 0 0 1 31.08 86l59-4.76l22.76-55.08a16.36 16.36 0 0 1 30.27 0l22.75 55.08l59 4.76a16.46 16.46 0 0 1 9.37 28.86Z'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[ph--terminal-bold\] {
    width: 1.2em;
    height: 1.2em;
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' width='256' height='256'%3E%3Cpath fill='black' d='m120 137l-72 64a12 12 0 1 1-16-18l61.91-55L32 73a12 12 0 1 1 16-18l72 64a12 12 0 0 1 0 18m96 43h-96a12 12 0 0 0 0 24h96a12 12 0 0 0 0-24'/%3E%3C/svg%3E");
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .icon-\[comfy--bytedance\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%2300c8d2' d='m324.094 389.858-39.427-10.291V191.5l42.204-10.684c23.139-5.875 42.575-10.662 43.5-10.477.741 0 1.296 51.688 1.296 114.987v115.008l-4.073-.184c-2.405 0-22.028-4.789-43.5-10.315z'/%3E%3Cpath fill='%233c8cff' d='M138.667 343.325c0-63.723.562-115.986 1.499-115.986.748-.185 20.407 4.659 43.998 10.574l42.503 10.737-.375 94.325-.562 94.303-38.195 9.829c-20.97 5.356-40.629 10.363-43.438 10.922l-5.43 1.305z'/%3E%3Cpath fill='%2378e6dc' d='M423.667 248.299c0-209.59.186-220.848 3.37-219.92 1.685.558 18.349 4.805 36.884 9.424 18.537 4.805 36.886 9.4 40.818 10.328l6.928 1.857-.374 198.682-.562 198.869-38.009 9.609c-20.783 5.338-40.443 10.143-43.438 10.909l-5.617 1.277z'/%3E%3Cpath fill='%23325ab4' d='M-.333 248.845c0-108.637.555-197.511 1.482-197.511.74 0 20.175 4.807 43.314 10.543l42.204 10.706V248.66c0 96.607-.371 175.89-.74 175.89-.556 0-20.178 4.994-43.5 10.916l-42.76 10.868V248.823z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--gemini\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID3)'%3E%3Cpath fill='%233186ff' d='M439.808 232.147a301.8 301.8 0 01-94.933-64.022 301 301 0 01-78.464-137.642 10.735 10.735 0 00-10.4-8.088 10.734 10.734 0 00-10.4 8.088 301.5 301.5 0 01-78.486 137.642 302 302 0 01-94.933 64.022c-13.867 5.973-28.117 10.773-42.71 14.464a10.707 10.707 0 00-5.872 17.007 10.7 10.7 0 005.873 3.793 282.6 282.6 0 0142.709 14.442 301.8 301.8 0 0194.933 64.022 301.05 301.05 0 0178.486 137.664 10.707 10.707 0 0017.007 5.872 10.7 10.7 0 003.793-5.872 282 282 0 0114.442-42.731 301.8 301.8 0 0164.022-94.933 301.07 301.07 0 01137.664-78.464 10.733 10.733 0 005.827-16.988 10.73 10.73 0 00-5.827-3.812 282.6 282.6 0 01-42.731-14.464'/%3E%3Cpath fill='url(%23svgID0)' d='M439.808 232.147a301.8 301.8 0 01-94.933-64.022 301 301 0 01-78.464-137.642 10.735 10.735 0 00-10.4-8.088 10.734 10.734 0 00-10.4 8.088 301.5 301.5 0 01-78.486 137.642 302 302 0 01-94.933 64.022c-13.867 5.973-28.117 10.773-42.71 14.464a10.707 10.707 0 00-5.872 17.007 10.7 10.7 0 005.873 3.793 282.6 282.6 0 0142.709 14.442 301.8 301.8 0 0194.933 64.022 301.05 301.05 0 0178.486 137.664 10.707 10.707 0 0017.007 5.872 10.7 10.7 0 003.793-5.872 282 282 0 0114.442-42.731 301.8 301.8 0 0164.022-94.933 301.07 301.07 0 01137.664-78.464 10.733 10.733 0 005.827-16.988 10.73 10.73 0 00-5.827-3.812 282.6 282.6 0 01-42.731-14.464'/%3E%3Cpath fill='url(%23svgID1)' d='M439.808 232.147a301.8 301.8 0 01-94.933-64.022 301 301 0 01-78.464-137.642 10.735 10.735 0 00-10.4-8.088 10.734 10.734 0 00-10.4 8.088 301.5 301.5 0 01-78.486 137.642 302 302 0 01-94.933 64.022c-13.867 5.973-28.117 10.773-42.71 14.464a10.707 10.707 0 00-5.872 17.007 10.7 10.7 0 005.873 3.793 282.6 282.6 0 0142.709 14.442 301.8 301.8 0 0194.933 64.022 301.05 301.05 0 0178.486 137.664 10.707 10.707 0 0017.007 5.872 10.7 10.7 0 003.793-5.872 282 282 0 0114.442-42.731 301.8 301.8 0 0164.022-94.933 301.07 301.07 0 01137.664-78.464 10.733 10.733 0 005.827-16.988 10.73 10.73 0 00-5.827-3.812 282.6 282.6 0 01-42.731-14.464'/%3E%3Cpath fill='url(%23svgID2)' d='M439.808 232.147a301.8 301.8 0 01-94.933-64.022 301 301 0 01-78.464-137.642 10.735 10.735 0 00-10.4-8.088 10.734 10.734 0 00-10.4 8.088 301.5 301.5 0 01-78.486 137.642 302 302 0 01-94.933 64.022c-13.867 5.973-28.117 10.773-42.71 14.464a10.707 10.707 0 00-5.872 17.007 10.7 10.7 0 005.873 3.793 282.6 282.6 0 0142.709 14.442 301.8 301.8 0 0194.933 64.022 301.05 301.05 0 0178.486 137.664 10.707 10.707 0 0017.007 5.872 10.7 10.7 0 003.793-5.872 282 282 0 0114.442-42.731 301.8 301.8 0 0164.022-94.933 301.07 301.07 0 01137.664-78.464 10.733 10.733 0 005.827-16.988 10.73 10.73 0 00-5.827-3.812 282.6 282.6 0 01-42.731-14.464'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='149.333' x2='234.667' y1='331.667' y2='257' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2308b962'/%3E%3Cstop offset='1' stop-color='%2308b962' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID1' x1='170.667' x2='245.333' y1='118.333' y2='235.667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23f94543'/%3E%3Cstop offset='1' stop-color='%23f94543' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID2' x1='74.667' x2='373.333' y1='289' y2='257' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fabc12'/%3E%3Cstop offset='.46' stop-color='%23fabc12' stop-opacity='0'/%3E%3C/linearGradient%3E%3CclipPath id='svgID3'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--kling\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID5)'%3E%3Cg clip-path='url(%23svgID6)'%3E%3Cpath fill='url(%23svgID1)' d='M115.456 293.867a494.8 494.8 0 0142.624-95.04C225.707 81.664 324.373 12.011 378.453 43.221 256.811-27.008 98.091 20.14 23.936 148.565a285.5 285.5 0 00-22.123 48.128c-5.525 15.766 1.963 32.726 16.427 41.088l97.216 56.107z'/%3E%3Cpath fill='url(%23svgID2)' d='M396.544 216.832a494.7 494.7 0 01-42.645 95.04c-67.627 117.163-166.294 186.837-220.374 155.605 121.664 70.251 280.384 23.083 354.539-105.344a285.6 285.6 0 0022.123-48.106c5.525-15.744-1.963-32.726-16.427-41.067l-97.216-56.107z'/%3E%3Cpath fill='url(%23svgID3)' d='M353.92 311.893c67.627-117.162 78.635-237.44 24.533-268.672-54.037-31.21-152.704 38.486-220.373 155.606 44.245-76.587 123.925-113.387 178.005-82.176 54.059 31.232 62.038 118.613 17.814 195.221z'/%3E%3Cpath fill='url(%23svgID4)' d='M158.08 198.827c-67.627 117.162-78.635 237.44-24.533 268.65 54.058 31.232 152.725-38.442 220.373-155.605-44.245 76.608-123.925 113.408-178.005 82.176-54.059-31.211-62.038-118.613-17.814-195.2z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='svgID1' cx='0' cy='0' r='1' gradientTransform='rotate(-59.132 311.591 48.195)scale(310.927 426.086)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.095' stop-color='%23fff959'/%3E%3Cstop offset='.326' stop-color='%230df35e'/%3E%3Cstop offset='.64' stop-color='%230bf2f9'/%3E%3Cstop offset='1' stop-color='%2304a6f0'/%3E%3C/radialGradient%3E%3CradialGradient id='svgID2' cx='0' cy='0' r='1' gradientTransform='rotate(120.868 138.475 223.808)scale(310.927 426.086)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.095' stop-color='%23fff959'/%3E%3Cstop offset='.326' stop-color='%230df35e'/%3E%3Cstop offset='.64' stop-color='%230bf2f9'/%3E%3Cstop offset='1' stop-color='%2304a6f0'/%3E%3C/radialGradient%3E%3ClinearGradient id='svgID3' x1='332.331' x2='385.323' y1='38.357' y2='210.368' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23003eff'/%3E%3Cstop offset='1' stop-color='%230bffe7'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID4' x1='179.669' x2='126.677' y1='472.363' y2='300.352' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23003eff'/%3E%3Cstop offset='1' stop-color='%230bffe7'/%3E%3C/linearGradient%3E%3CclipPath id='svgID5'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID6'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--luma\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID5)'%3E%3Cpath fill='%23000' d='M42.667 127.979 264.363 0v512L42.667 384z'/%3E%3Cpath fill='url(%23svgID0)' d='M264.363 512 42.667 384l221.696-128L486.08 384z'/%3E%3Cpath fill='url(%23svgID1)' d='M264.363 512 42.667 384l221.696-128L486.08 384z'/%3E%3Cpath fill='url(%23svgID2)' d='M42.667 127.979 264.363 0v512L42.667 384z'/%3E%3Cpath fill='url(%23svgID3)' d='M264.363 512 42.667 384l221.696-128L486.08 384z'/%3E%3Cpath fill='url(%23svgID4)' d='M42.667 127.979 264.363 0v512L42.667 384z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='42.667' x2='486.08' y1='384' y2='384' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300a'/%3E%3Cstop offset='1' stop-color='%23a78dff'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID1' x1='42.667' x2='486.08' y1='384' y2='384' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300a'/%3E%3Cstop offset='1' stop-color='%23a78dff'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID2' x1='293.291' x2='99.669' y1='483.029' y2='79.893' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23004eff'/%3E%3Cstop offset='1' stop-color='%230ff'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID3' x1='42.667' x2='486.08' y1='384' y2='384' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300a'/%3E%3Cstop offset='1' stop-color='%23a78dff'/%3E%3C/linearGradient%3E%3ClinearGradient id='svgID4' x1='293.291' x2='99.669' y1='483.029' y2='79.893' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23004eff'/%3E%3Cstop offset='1' stop-color='%230ff'/%3E%3C/linearGradient%3E%3CclipPath id='svgID5'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--magnific\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='0%25' x2='100%25' y1='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23f19f3a'/%3E%3Cstop offset='13%25' stop-color='%23ea6040'/%3E%3Cstop offset='31%25' stop-color='%23e95267'/%3E%3Cstop offset='50%25' stop-color='%237380bd'/%3E%3Cstop offset='66%25' stop-color='%235fb2cf'/%3E%3Cstop offset='79%25' stop-color='%2391bb8f'/%3E%3Cstop offset='100%25' stop-color='%23e6b051'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23svgID0)' d='M492.858 461.125H19.142L256 50.875zm-344.678-74.5h215.64L256 199.875z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--meshy\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%23c4f855' d='M77.21 19.462c1.083 1.107 5.486 24.348 10.159 29.204s21.086 7.25 27.475 10.729c2.009 1.084 6.118 1.784 2.867 5.014-1.151 1.13-28.604 7.205-30.952 9.532-1.377 1.355-9.752 34.241-13.974 30.943-2.732-6.392-7.292-26.448-11.288-30.333-3.748-3.637-19.8-6.754-26.008-9.939-1.738-.88-7.043-.79-3.183-4.675 2.055-2.055 25.466-7.092 29.168-10.186 3.703-3.095 6.638-21.006 10.724-27.443 1.129-1.785 1.716-6.234 5.034-2.869zM30.523 120.153c1.196 1.197 23.005 4.043 17.496 9.464-.655.632-14.855 1.942-17.474 5.059-2.844 3.388-1.986 13.801-6.14 17.437-4.741-3.569-4.9-14.117-8.444-17.392-2.167-2.01-19.957-4.585-15.17-9.531 1.06-1.107 12.213-2.349 15.17-5.105 3.522-3.297 3.703-13.823 8.444-17.391 3.612 2.913 4.176 15.584 6.095 17.482zm269.241 373.65c-20.59 1.558-53.641 1.626-74.185 0-48.019-3.795-92.11-21.186-128.141-52.808-33.006-28.956-28.22-81.627 11.243-100.058 2.754 20.689 15.938 35.913 35.941 41.627 24.607 7.024 32.419 2.462 44.993-19.131-118.93-.271-131.324-124.813-86.578-211.388C161.147 39.609 299.515-21.578 415.917 43.81c88.407 49.668 136.381 172.133 52.489 248.792 27.181 22.993 41.675 52.468 32.103 88.336-19.144 71.735-135.32 107.918-200.723 112.865z'/%3E%3Cpath fill='%23181818' d='m200.881 464.553 38.695-5.082c30.41-5.85 63.529-14.116 89.198-32.186 3.634-2.552 9.865-4.291 9.165-9.915-51.247 23.535-108.251 34.761-164.578 26.358-33.006-4.923-86.353-21.118-69.15-64.552l11.423 18.882c68.518 38.736 182.527 16.353 249.329-19.966 5.102-2.778 40.953-27.737 42.646-25.884-5.667 31.418-29.146 56.24-51.676 77.562 8.872 2.439 21.808-5.918 29.89-10.571 45.874-26.268 78.993-71.96 39.779-120.928 75.9 32.186 62.829 94.367-1.558 132.177-65.064 38.216-149.678 44.179-223.208 34.128z'/%3E%3Cpath fill='%23fe3e8e' d='m315.499 145.36 3.861 3.839c-17.316 46.235-60.391 80.883-107.214 93.328-8.308 3.659-15.487 11.293-8.849 19.921l21.131 21.955c7.089 8.357 15.713 20.328 5.666 29.543-2.867.7-10.498 1.988-13.478 2.259-6.343-1.943-19.663-11.429-17.993-17.979l-9.166-.791c-21.356-10.345-44.745-13.507-68.269-13.236l-5.712-3.952c-1.625-2.394-2.912-4.021-4.493-6.754-1.964-.835-3.454-3.094-4.492-6.753-4.267-30.289-.248-56.851 11.265-85.4l7.992 15.585c1.648 3.388 5.373 4.72 7.721 6.866 32.397 29.792 91.862 18.295 126.561-2.688 21.515-13.032 42.601-38.645 55.514-60.261 2.664.226 1.4 2.507 0 4.495z'/%3E%3Cpath fill='%23fefefe' d='M304.256 264.504c52.512-6.076 41.743 85.49 11.243 105.66-3.748 2.1-6.66 4.653-11.243 6.753-24.088 11.023-38.153 10.864-62.942 11.248 20.657-39.571 7.473-111.148 62.942-123.639z'/%3E%3Cpath fill='%23e8fdcc' d='M304.256 68.927c-.474 1.83-2.19 2.1-2.257 2.258-13.185 9.035-33.684 13.349-49.442 11.248-1.851 6.302-14.652 13.575-20.228 8.99-8.624 4.269-32.645 18.747-38.221 20.237-1.242 4.382-3.251 4.314-4.492 0-1.829 4.653-6.367 7.183-13.659 7.567q-.508 10.841-6.57 12.671c-16.028 10.141-27.836 24.845-38.221 40.475-3.115 2.982-4.221 1.717-2.257-2.259 6.389-17.775 13.884-31.937 24.72-47.205 14.743-9.532 26.753-21.932 42.014-31.035 13.23-7.882 32.916-17.775 47.906-20.666 18.829-4.224 43.572-9.69 60.685-2.259z'/%3E%3Cpath fill='%231a1919' d='M252.557 82.41c3.071-.36 3.838.385 2.258 2.26 7.698 16.894 5.757 69.544-20.228 69.702-1.355-.633-4.267.158-5.689-2.078-3.996-6.302 7.924-49.217 3.431-60.849 9.482-4.675 7.744-5.24 20.228-8.99zm-62.941 29.228c12.823 15.11 7.585 70.447-17.993 71.938-1.287-.406-6.141-2.236-6.344-2.597-2.574-4.36 3.341-25.343 4.063-32.299.565-5.579-.361-11.271.046-16.827 1.58-21.593 3.16-15.675 20.228-20.238z'/%3E%3Cpath fill='%23fa418c' d='M194.108 111.638c12.011 9.193 5.667 45.421 1.581 58.928-3.703 12.287-11.356 16.94-24.066 13.01 21.424-10.638 21.876-50.933 17.993-71.938 1.286-.339 3.205.339 4.492 0'/%3E%3Cpath fill='%23fb428c' d='M254.815 149.854c-.045 3.93-8.331 11.113-11.243 6.754-4.718.858-5.621-.655-8.985-2.259 23.005-10.006 18.219-48.335 20.228-69.702.451-1.785 5.17-2.665 6.592-2.123 11.649 4.494 6.186 62.813-6.592 67.308z'/%3E%3Cpath fill='%23c4f855' d='M257.05 152.09c-4.177 4.766-6.886 7.093-11.243 11.249l-2.257-6.754c1.76-.316 10.226-5.466 11.242-6.753 3.161-2.982 4.312-1.717 2.258 2.258'/%3E%3Cpath fill='%23e1fdb3' d='M131.189 172.328c-1.919 2.914-2.438 7.996-6.728 8.989-1.106-4.675 3.274-7.927 4.47-11.248z'/%3E%3Cpath fill='%23c81c65' d='M230.072 313.968c6.818-24.89-33.48-41.514-33.909-57.392-.565-20.057 32.599-22.745 48.199-30.605 23.886-12.016 67.412-53.508 71.137-80.611a65 65 0 014.493-11.249c6.705-21.231 20.679-41.378 20.228-65.207 18.828-.994 33.999 19.921 33.39 37.223-.339 9.328-24.044 31.305-30.704 43.05-10.814 19.063-14.877 42.191-27.813 59.877-19.709 26.923-53.483 36.319-68.18 68.957-5.192 11.564-5.282 33.089-16.864 35.98z'/%3E%3Cpath fill='%23c4f755' d='M198.623 298.226c-5.531 9.757-24.269 9.78-35.173 9.057-12.981-.858-23.524-4.156-34.519-11.316-7.675-7.07-7.879-7.521-13.478-15.743 28.875-1.513 58.653 1.852 83.17 17.979z'/%3E%3Cpath fill='%23c4f855' d='M302.021 71.163c-9.482 30.763-23.682 56.692-44.948 80.927l-2.258-2.258c3.138-3.998 5.621-18.205 6.479-23.874 1.287-8.651 4.109-32.819-.948-39.098-1.874-2.326-3.77-1.558-5.531-2.236-.903-.339-1.648-1.468-2.258-2.258 16.323-4.902 32.532-8.877 49.442-11.248z'/%3E%3Cpath fill='%23181818' d='M153.652 122.886c71.859-101.278 241.518-111.533 309.787-.723 43.527 70.628 25.33 169.49-71.52 164.837-1.49 1.423 6.163 21.299 6.547 26.133 3.296 40.701-51.451 58.635-83.328 64.575-3.274.61-8.76 3.433-10.882-.813-1.693-5.986 6.976-11.903 11.243-6.754l11.107-11.519c57.953-24.551 39.508-97.574-22.35-94.141l-2.844 5.376c-22.102 6.098-32.419 26.517-37.318 47.387-3.816 23.128-9.279 45.783-16.413 67.963l-6.367 2.913c-1.602.023-7.088 4.066-12.303 4.563-3.884.361-23.705 1.106-23.615-3.433.023-1.356 13.591-14.704 16.909-21.277 4.696-9.328 6.48-19.605 10.024-29.295-54.453 6.686-108.048-1.039-123.626-60.713-.406-3.32.339-4.81 2.258-4.494 6.163-2.056 7.743 1.332 4.492 6.753 7.044 1.265 15.217 8.244 13.478 15.743 24.969 14.388 53.821 19.628 82.357 16.149l5.306 4.066c.384-6.776 10.34-7.883 13.478-2.259 11.039-41.988 29.168-68.64 67.231-92.514q28.107-30.899 41.72-74.536l29.146-38.126c5.034-12.061-10.069-33.903-23.502-35.168-3.454 20.103-9.82 39.459-19.122 58.048l-5.576 2.462c-1.219 3.139-2.709 5.398-4.493 6.753-19.55 55.902-86.037 92.876-143.944 84.519-12.575-1.807-37.318-7.702-38.108-21.57 4.267-.023 7.766 3.478 11.243 4.495 1.399-1.604 3.138-2.891 5.283-2.801 31.561 1.4 53.324.836 81.634-16.466 43.301-26.471 72.401-72.593 82.899-121.764-4.131-.406-8.06-.835-10.249-5.082l-2.845 2.936c-19.618-.496-38.898 1.536-57.862 6.076l-2.461 5.15c-30.026 8.65-56.756 26.675-80.032 46.957l-7.427-.383z'/%3E%3Cpath fill='%2367b700' d='M304.256 62.173c5.238.158 10.521-.135 15.736 0-9.279 56.489-48.832 116.389-102.608 139.043-21.199 8.944-50.435 13.688-72.74 7.07l-2.235-8.99c.858-1.084 2.867 2.236 3.341 2.236h35.964c18.512 0 51.044-25.816 64.07-38.216-.835-5.331 6.525-10.413 11.243-11.248a460 460 0 0126.482-46.8c4.447-13.37 10.611-24.732 18.49-34.128-.497-.994.248-1.74 2.257-2.259-6.208-.745-6.095-5.104 0-6.753z'/%3E%3Cpath fill='%23363524' d='m110.961 273.493-2.258 4.495c-1.264-4.833-1.535-6.166-2.257-11.248 2.731 1.558 3.16 4.427 4.492 6.753z'/%3E%3Cpath fill='%234c8600' d='m412.147 118.391-17.474 30.853c-9.843 27.443-8.963 57.416 10.34 80.454-12.53 12.49-16.368 24.913-31.99 7.612-29.507-32.661-.497-104.599 39.101-118.919z'/%3E%3Cpath fill='%23fe96c1' d='M315.499 370.164c5.17-10.774 12.891-20.238 16.413-31.915 7.563-25.139 8.15-74.129-27.656-73.745 41.269-9.306 66.87 20.779 60.549 61.684-2.89 18.701-34 35.393-49.306 43.976'/%3E%3Cpath fill='%2367b601' d='M198.623 298.226c8.128 5.353 13.523 8.176 17.993 17.979-33.186 2.913-62.829 2.642-87.662-20.238 22.847 8.086 46.393 9.328 69.692 2.259z'/%3E%3Cpath fill='%23c1f258' d='M304.256 62.173c-.316 2.1.474 4.924 0 6.754-20.115.564-40.84-1.582-60.684 2.258 19.054-8.176 40.276-9.6 60.684-8.99z'/%3E%3Cpath fill='%23e6327e' d='M315.499 145.36c.203-1.446-.135-3.027 0-4.495 1.129-1.897.429-5.715 4.493-6.754-1.107 3.524.338 8.47-4.493 11.249'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 17h512v478H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--minimax\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cpath fill='url(%23svgID0)' d='M347.264 42.667c24.661 0 44.651 19.776 44.651 44.16v266.688a15.785 15.785 0 0015.872 15.125 15.79 15.79 0 0015.85-15.125V194.112a43.95 43.95 0 0127.346-40.457 44 44 0 0116.836-3.255A43.95 43.95 0 01512 194.133v139.968a13.847 13.847 0 01-13.909 13.76 13.86 13.86 0 01-9.816-3.994 13.85 13.85 0 01-4.115-9.766V194.133a16.26 16.26 0 00-16.341-16.17 16.255 16.255 0 00-16.342 16.17v159.403a43.44 43.44 0 01-12.893 30.659 43.44 43.44 0 01-30.797 12.562 43.44 43.44 0 01-30.797-12.562 43.45 43.45 0 01-12.894-30.659V86.869a16.75 16.75 0 00-16.811-16.064 16.747 16.747 0 00-16.832 16.043l-.021 339.285a43.457 43.457 0 01-43.691 43.2 43.45 43.45 0 01-30.797-12.562 43.46 43.46 0 01-12.893-30.659v-41.259c0-7.594 6.229-13.76 13.909-13.76s13.909 6.166 13.909 13.76v41.259c0 5.611 3.03 10.795 7.936 13.611a16.08 16.08 0 0015.872 0 15.66 15.66 0 007.936-13.611V86.827c0-24.384 19.99-44.16 44.651-44.16m-121.045 0c24.661 0 44.65 19.776 44.65 44.16V332.65a13.83 13.83 0 01-4.101 9.764 13.83 13.83 0 01-9.808 3.996 13.826 13.826 0 01-13.909-13.76V86.827a16.75 16.75 0 00-16.832-16.64 16.75 16.75 0 00-16.832 16.64V385.77a43.947 43.947 0 01-44.16 43.69 43.945 43.945 0 01-44.182-43.69V194.133a16.25 16.25 0 00-16.341-16.17 16.25 16.25 0 00-15.071 9.956 16.3 16.3 0 00-1.27 6.214V275.2a43.95 43.95 0 01-44.182 43.712A43.945 43.945 0 010 275.2v-29.397c0-7.616 6.23-13.782 13.91-13.782s13.93 6.187 13.93 13.782V275.2c0 8.917 7.317 16.149 16.341 16.149s16.342-7.232 16.342-16.149v-81.088a43.945 43.945 0 0144.16-43.691 43.95 43.95 0 0144.181 43.691v191.659c0 8.938 7.317 16.17 16.363 16.17 9.024 0 16.341-7.232 16.341-16.17V86.827c0-24.384 19.989-44.16 44.651-44.16'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='0' x2='51293.2' y1='21400.4' y2='21400.4' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23e2167e'/%3E%3Cstop offset='1' stop-color='%23fe603c'/%3E%3C/linearGradient%3E%3CclipPath id='svgID1'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--moonvalley-marey\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cg clip-path='url(%23svgID2)'%3E%3Cpath fill='%23dad9c5' d='M512 .257V512H.257V.257zM100.809 185.25H61.662v142.012h25.844V211.866l66.144 115.149.751.267c6.966-.552 14.94.685 21.782 0 1.589-.162 1.351-1.028 2.207-2.141l64.945-113.265v115.016s.352.38.38.38h25.464V185.261h-38.767l-64.249 111.028-.876 1.047c-21.267-37.482-43.268-74.603-64.478-112.075zm215.321 0h-29.556l74.327 141.755.752.266 35.455-.142.561-.724c24.008-46.16 48.701-91.959 72.748-138.081.504-.971 1.094-2.027 1.398-3.074h-29.936l-62.565 119.498L316.12 185.25z'/%3E%3Cpath fill='%23fefefe' d='M.257 512H0V0h512v.257H.257z'/%3E%3Cpath fill='%23110d09' d='M100.809 185.251c21.21 37.473 43.22 74.593 64.478 112.076l.876-1.047 64.249-111.029h38.767v142.012h-25.464s-.38-.352-.38-.381V211.866L178.39 325.131c-.847 1.114-.618 1.989-2.207 2.141-6.842.685-14.816-.552-21.782 0l-.752-.266-66.143-115.149v115.396H61.661V185.242h39.148zm215.321 0 63.193 119.498 62.566-119.498h29.936c-.305 1.047-.895 2.103-1.399 3.074-24.046 46.132-48.749 91.93-72.747 138.081l-.562.724-35.455.142-.752-.266-74.327-141.755h29.556z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID1'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID2'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--pin\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg fill='none'%3E%3Cpath stroke='var(--pin-color, var(--color-smoke-800, %238a8a8a))' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='m7.137 11.22-.862 3.22'/%3E%3Cpath fill='var(--handle-color, var(--color-gold-600, %23fd9903))' d='M6.28 6.684a1.33 1.33 0 01-1.023.961l-1.301.272a1.33 1.33 0 00-1.024.962l-.131.489a.667.667 0 00.471.816L11 12.256a.667.667 0 00.816-.471l.131-.49a1.33 1.33 0 00-.406-1.344l-.99-.887a1.33 1.33 0 01-.406-1.344l.648-2.421a.667.667 0 01.817-.472 1.333 1.333 0 00.69-2.575L7.148.87a1.333 1.333 0 10-.69 2.575.667.667 0 01.472.817z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--pixverse\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cpath fill='url(%23svgID0)' fill-rule='evenodd' d='M374.997 200.192c10.24 0 18.56 8.32 18.56 18.56v82.496l90.56-78.144a9.3 9.3 0 014.759-2.175 9.286 9.286 0 0110.601 9.194v228.949a9.302 9.302 0 01-15.146 7.232l-90.774-73.408v83.008a18.56 18.56 0 01-4.458 12.053l-1.856 1.878a18.57 18.57 0 01-14.635 4.458l-232.683-30.08v27.819a18.56 18.56 0 01-18.538 18.56H18.56A18.557 18.557 0 010 492.053v-273.28c0-10.24 8.32-18.56 18.56-18.581zm-131.37 92.757h-94.763a9.28 9.28 0 00-9.28 9.259v60.736c0 5.12 4.16 9.259 9.28 9.259h94.763c5.12 0 9.258-4.139 9.28-9.259v-60.736a9.28 9.28 0 00-9.28-9.259M273.621 0a92.885 92.885 0 11.001 185.769A92.885 92.885 0 01273.621 0m-170.24 28.01a77.397 77.397 0 110 154.795 77.397 77.397 0 010-154.794' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='320' x2='-10.667' y1='21.333' y2='512' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23e8632a' stop-opacity='.996'/%3E%3Cstop offset='.586' stop-color='%23b465e6' stop-opacity='.996'/%3E%3Cstop offset='1' stop-color='%23979fd9' stop-opacity='.996'/%3E%3C/linearGradient%3E%3CclipPath id='svgID1'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--rodin\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%23fefefe' d='M405.193 151.462c5.349-5.629 35.974 26.43 40.239 31.394 37.828 44.435 64.642 117.188 49.05 175.013-23.738 87.926-139.318 67.824-119.216-31.814 4.265-21.151 22.025-43.701 29.088-65.306 11.921-36.569 10.208-72.334.874-109.252zM38.107 196.876c-.56-74.886 74.885-179.033 152.078-185.257 78.941-6.362 99.638 89.535 27.13 118.027-31.465 12.342-67.369 6.014-102.19 16.677-31.674 9.719-53.56 28.318-77.053 50.518zm230.67 279.719-52.232 19.404c-59.118 12.795-157.252-5.734-191.898-60.203-37.828-59.363 26.99-123.97 86.597-83.101 24.193 16.571 34.821 44.54 52.756 66.111 25.241 30.415 64.991 54.258 104.777 57.789'/%3E%3Cpath fill='%23fdfdfd' d='M289.788 256.309c5.069-.7 9.824-8.636 10.208 8.985 1.294 57.824-52.021 100.966-108.098 85.408v-69.921c21.361 5.804 42.058 3.042 62.929-3.496l.665-5.104c12.376-3.951 23.808-9.23 34.296-15.872'/%3E%3Cpath fill='%23fcfcfc' d='M349.221 396.186c-8.531 24.053-45.554 72.368-71.704 73.592-39.646 1.888-100.897-36.674-117.083-73.592 13.459 3.496 23.144 12.201 36.638 17.515 36.464 14.299 86.423 16.257 122.013-.489 5.524-2.622 27.444-19.508 30.136-17.026m37.512-261.295c4.056 4.09 12.167 26.43 13.88 33.317 8.18 32.863 5.663 64.712-6.818 96.002-.699 1.783-7.306 23.423-13.11 16.571-.629-.734 3.706-14.019 3.706-19.088 0-46.743-22.375-94.324-58-124.145l-36.603-21.012c21.291-5.908 81.842 3.287 96.945 18.389zM163.93 147.966l-45.484 29.646c-35.835 34.017-53.385 78.487-54.12 127.642-17.305-16.886-36.568-71.67-25.765-92.192 19.508-37.128 83.591-68.837 125.369-65.061z'/%3E%3Cpath fill='%23f7f7f7' d='M286.292 252.813c-3.322 10.767-27.374 23.913-34.961 13.984.455-1.783 10.313-8.461 13.67-16.047 6.258-14.194 5.034-27.374.419-41.778-3.111-9.754-8.495-12.341-14.089-19.053 17.55.419 29.926 17.235 36.814 31.254 6.887 14.019 11.222 19.648-1.888 31.64z'/%3E%3Cpath fill='%231f1f1f' d='M289.788 256.309c-8.496 11.257-22.06 16.921-34.961 20.976-1.538-2.762-4.23-7.586-3.496-10.488 11.712 1.084 26.465-6.223 34.961-13.984-.525 2.307 1.468 3.775 3.496 3.496'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--sora\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cpath fill='url(%23svgID0)' fill-rule='evenodd' d='M176.099 20.35a124.6 124.6 0 0162.176-8.466c27.222 3.104 51.478 14.7 72.765 34.68a2.35 2.35 0 002.178.6 123.84 123.84 0 0182.919 7.485l1.28.572 3.158 1.579a124.67 124.67 0 0159.562 65.277c5.689 13.882 8.548 28.337 8.602 43.418a114.5 114.5 0 01-3.675 33.319 3.26 3.26 0 00.817 3.157c16.17 16.496 26.895 36.177 32.204 59.016 7.867 38.818-.191 73.77-24.146 104.939l-3.703 4.518A123.74 123.74 0 01410.32 408.2a3.28 3.28 0 00-2.178 2.096c-5.199 14.999-10.453 27.848-20.171 40.669-24.501 32.285-60.461 50.251-101.022 50.033-32.313-.163-60.978-11.977-85.941-35.442a2.89 2.89 0 00-2.886-.653c-10.562 3.402-21.233 3.919-32.748 3.783a120.9 120.9 0 01-52.975-12.712 123.64 123.64 0 01-43.827-36.368c-4.138-5.471-8.249-10.643-11.243-16.768a158 158 0 01-10.073-26.16 124.7 124.7 0 01-.353-62.582 3.3 3.3 0 00.136-1.497 2.3 2.3 0 00-.735-1.307 121.6 121.6 0 01-28.175-44.942 106 106 0 01-6.806-32.448 141.1 141.1 0 013.838-43.554c9.174-30.27 26.733-54.035 52.621-71.293 5.771-3.811 11.216-6.805 16.36-8.956a165 165 0 0117.586-6.206 2.62 2.62 0 001.77-1.77 122.8 122.8 0 0122.54-43.99 123.45 123.45 0 0150.061-37.783m19.682 156.115c-23.547-16.714-55.751-8.439-67.593 17.857-6.152 13.611-7.35 27.929-3.62 43.01l2.94 11.977 5.308 19.382c2.178 10.888 6.316 20.824 12.495 29.834l.599.872a84 84 0 0010.726 10.589c28.284 23.247 66.857 7.731 74.561-27.004l1.008-4.355.272-1.634c1.198-8.166.817-16.169-1.089-24.009a969 969 0 00-11.161-41.295c-4.437-15.08-12.577-26.813-24.446-35.224m145.041-33.619c-17.586-16.332-44.727-16.958-62.203-.517-6.806 6.397-11.57 15.026-14.238 25.833a70.86 70.86 0 000 33.374l.273 1.089 1.143 3.702a789 789 0 017.187 25.316c2.314 8.629 4.137 14.427 5.553 17.367 11.706 24.635 37.158 42.356 64.843 31.059 25.753-10.507 33.484-41.022 27.658-65.739a266 266 0 00-2.858-11.161c-4.083-15.87-6.969-26.568-8.738-32.094a65.6 65.6 0 00-18.62-28.229' clip-rule='evenodd'/%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='197.714' x2='316.396' y1='11.013' y2='501.463' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%236bb6fe'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--stability-ai\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cpath fill='url(%23svgID0)' d='M154.091 448c90.709 0 149.717-47.36 149.717-118.613 0-55.254-35.883-90.368-100.053-104.918l-41.174-12.181c-36.138-8-57.237-17.6-52.266-42.133 4.138-20.416 16.49-31.936 45.269-31.936 91.413 0 125.291 31.936 125.291 31.936v-76.8S247.893 64 155.584 64c-87.04 0-134.25 44.16-134.25 112.491 0 55.253 32.725 87.402 99.093 102.656l7.125 1.77c10.091 3.072 23.723 7.147 40.875 12.203 33.92 8 42.645 16.491 42.645 41.941 0 23.254-24.533 36.48-56.96 36.48-93.504 0-132.779-46.613-132.779-46.613v85.099S45.91 448 154.091 448'/%3E%3Cpath fill='%23e80000' d='M434.645 442.24c32.107 0 56.022-22.891 56.022-53.888 0-31.659-23.232-53.888-56.022-53.888-32.106 0-55.338 22.229-55.338 53.888s23.232 53.888 55.338 53.888'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='svgID0' x1='14145.1' x2='14145.1' y1='64' y2='38464' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239d39ff'/%3E%3Cstop offset='1' stop-color='%23a380ff'/%3E%3C/linearGradient%3E%3CclipPath id='svgID1'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--tencent\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cg clip-path='url(%23svgID2)'%3E%3Cpath fill='%23004be5' d='M227.84 506.88C124.8 494.72 93.773 356.352 165.607 289.203c11.827-11.059 33.817-28.544 49.433-22.963l4.711 6.656c-2.125 94.054 88.857 109.338 153.83 57.779 95.283-75.571 82.637-220.237-16.205-286.259l-4.121-8.576c-3.38-3.354-1.946-4.378 2.56-2.56 168.806 76.8 202.547 296.141 60.236 417.357-45.414 38.681-128.972 68.531-188.236 56.243z'/%3E%3Cpath fill='%239dd9f2' d='M286.72 12.8c-5.555.307-.793 2.073 14.259 5.3l1.101 2.38c5.786-.82 17.408 1.152 15.36 7.68-1.664 1.561-1.05 3.61-.666 3.635 25.933 2.995 42.189 57.984 40.909 82.637-3.174 61.594-50.278 84.096-100.505 102.374-18.048 7.936-36.685 31.104-34.484 46.848 1.05 7.194-3.686 8.627-7.68 2.56-118.041 37.402-107.289 215.783 12.8 240.64-10.828 1.229-20.582-2.585-30.72-5.12l2.356-1.843c-8.679-.921-15.437-3.712-20.276-8.397-4.838.871-11.648-.307-12.8-5.12-113.561-44.006-130.815-211.993-46.796-293.888C160 146.022 100.89 88.756 54.81 124.058l-6.196-1.204C55.553 108.16 70.017 91.93 81.87 80.589c52.35-50.074 133.22-78.849 204.85-67.79'/%3E%3Cpath fill='%2300b3fe' d='M307.2 17.92c10.982 2.867 17.357 2.585 28.16 7.68 6.579 1.587 14.643 4.505 17.92 10.24 113.843 67.482 123.494 236.57 10.035 308.275-73.267 46.285-155.981 14.029-148.275-77.875 2.355-.742 6.067-2.176 7.68-2.56l3.891-6.144c59.776-4.685 114.714-13.619 139.725-77.44 23.117-59.008-3.482-113.818-48.896-151.936-5.581-3.149-9.114-5.325-15.36-7.68-1.946-2.176-.23-3.02 5.12-2.56'/%3E%3Cpath fill='%23004be5' d='M48.64 122.88c33.306-33.485 92.288-6.682 89.626 39.578-1.562 27.34-35.456 53.427-48.359 79.769-41.6 84.864-9.42 201.703 76.493 244.173 2.611 2.79.896 3.661-5.12 2.56C51.917 442.65-2.918 345.754 8.013 226.893c2.457-26.701 21.76-85.043 40.627-104.013'/%3E%3Cpath fill='%233b7fea' d='M179.2 491.52c6.912 2.816 32.871 9.779 17.92 10.24-9.702-2.406-14.285-4.531-23.04-7.68-2.457-2.637-.742-3.482 5.12-2.56'/%3E%3Cpath fill='%2341c3fc' d='M286.72 12.8c8.935 1.382 12.8 3.098 20.48 5.12l-5.12 2.56c-7.424-2.816-14.925-5.197-23.014-5.146-.922-4.198 3.737-2.227 7.654-2.534'/%3E%3Cpath fill='%231872ed' d='m355.84 33.28-2.56 2.56c-4.941-2.919-13.235-8.039-17.92-10.24 8.653-1.152 14.515 4.966 20.48 7.68'/%3E%3Cpath fill='%231a61e7' d='m179.2 491.52-5.12 2.56c-4.813-1.741-8.192-3.174-12.8-5.12l5.12-2.56c3.2 1.587 8.935 3.533 12.8 5.12'/%3E%3Cpath fill='%23e8e8ea' d='M317.44 28.16c83.149 46.925 82.97 170.189-.845 215.475-35.2 19.021-58.726 11.392-93.875 20.045-8.346 1.562-5.274-6.093-3.917-10.317 16.64-51.737 69.069-44.211 102.4-74.265 41.703-37.607 40.448-96.769 5.299-138.266-1.382-1.613-21.862-13.594-9.062-12.698z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID1'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID2'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--tripo\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cg fill-rule='evenodd' clip-path='url(%23svgID2)' clip-rule='evenodd'%3E%3Cpath fill='%23f6d85a' d='M270.101 101.376a.85.85 0 00-.277-1.173.8.8 0 00-.427-.107H138.581a4.06 4.06 0 01-3.52-1.963L90.56 22.443a.726.726 0 01.299-1.003.8.8 0 01.341-.107c117.163 0 228.971 0 335.381.043 44.566 0 78.912 32.853 85.398 76.757.17 1.323-.406 1.963-1.707 1.963H367.979a4.36 4.36 0 00-3.712 2.133 125791 125791 0 01-89.984 153.131c-5.974 10.069-19.627 13.227-29.291 7.296-4.053-2.475-7.616-6.485-10.709-11.968a810 810 0 00-18.816-31.765c-4.736-7.595-4.992-15.083-.747-22.443a14158 14158 0 0155.403-95.147z'/%3E%3Cpath fill='%23b6b6b6' d='M229.803 362.368c12.16 20.736 41.28 19.541 53.098-.597l122.432-208.939a2.71 2.71 0 012.475-1.429h90.24c.363 0 .64.298.597.64a.53.53 0 01-.064.277 387394 387394 0 00-168.106 286.293c-27.371 46.742-91.264 53.696-131.819 20.203-6.571-5.419-14.187-15.509-22.805-30.229a87540 87540 0 00-164.694-280.79C-11.52 109.333 2.112 63.595 36.544 36.864c1.13-.875 2.027-.704 2.752.49a337874 337874 0 01190.507 325.014'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID1'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID2'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--veo\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%234285f4' d='M490.667 261.227c0-19.307-1.6-33.387-5.035-48H260.779v87.104h131.968c-2.646 21.632-17.003 54.229-48.939 76.138l-.448 2.902 71.083 53.973 4.906.469c45.27-40.917 71.318-101.162 71.318-172.586'/%3E%3Cpath fill='%2334a853' d='M260.8 490.667c64.64 0 118.912-20.864 158.571-56.854l-75.563-57.344c-20.224 13.824-47.36 23.467-83.008 23.467A143.9 143.9 0 01124.565 302.4l-2.816.235-73.92 56.064-.96 2.645C86.251 437.995 167.147 490.667 260.8 490.667'/%3E%3Cpath fill='%23fbbc05' d='M124.587 302.4a141.9 141.9 0 01-8.043-46.4c0-16.171 2.944-31.808 7.701-46.4l-.128-3.136-74.837-56.96-2.453 1.152A231.06 231.06 0 0021.333 256c0 37.803 9.302 73.536 25.536 105.344z'/%3E%3Cpath fill='%23eb4335' d='M260.8 112.064c44.971 0 75.285 19.029 92.587 34.944l67.562-64.661C379.456 44.544 325.44 21.333 260.8 21.333c-93.675 0-174.55 52.672-213.93 129.323l77.439 58.944A144.42 144.42 0 01260.8 112.064'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--vidu\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cdefs%3E%3Cpath id='svgID0' fill='%23fff' d='M0 0h512v512H0z'/%3E%3C/defs%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID1)'%3E%3Cg clip-path='url(%23svgID2)'%3E%3Cpath fill='url(%23svgID3)' d='M439.616 47.936c-62.229-20.608-115.755 23.125-128.235 63.147 0 0-44.906 144.213-64.042 204.373-9.131 28.715-31.766 75.691-74.39 75.691-34.709 0-52.544-32.576-60.074-51.99L61.12 201.195c-5.995-14.528.277-43.52 24.32-52.203 25.685-9.216 42.197 12.267 46.464 23.68l64.469 165.12c15.36-19.797 25.131-52.011 31.488-74.816l-42.325-111.147c-20.075-51.86-73.173-75.456-122.347-57.322-39.83 14.677-78.165 64.938-57.322 128.106L59.285 360c8.107 20.821 40.128 88.811 112.534 88.811 86.89 0 119.488-74.091 137.578-132.651 9.046-29.291 58.646-187.669 58.646-187.669 7.21-23.659 36.48-30.464 54.784-24.491 12.906 4.181 36.224 21.995 28.693 49.6-1.408 5.035-40.96 132.459-55.552 171.221-7.616 20.224-26.923 64.128-70.912 58.027-13.397 29.653-24.533 46.912-41.387 62.4 54.87 25.984 134.827-.192 168.491-101.888 12.501-37.824 56.405-174.208 56.405-174.208 12.758-41.877-10.005-101.717-68.949-121.216'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID1'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3CclipPath id='svgID2'%3E%3Cuse href='%23svgID0'/%3E%3C/clipPath%3E%3ClinearGradient id='svgID3' x1='16.192' x2='557.973' y1='120.256' y2='369.301' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2340edd8'/%3E%3Cstop offset='.024' stop-color='%2338e7e2'/%3E%3Cstop offset='.084' stop-color='%2328daf7'/%3E%3Cstop offset='.124' stop-color='%2322d5ff'/%3E%3Cstop offset='.36' stop-color='%231abfff'/%3E%3Cstop offset='.85' stop-color='%230786fe'/%3E%3Cstop offset='.909' stop-color='%23047ffe'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .icon-\[comfy--wan\] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%23615cec' d='M259.402 2c8.851 4.96 34.405 60.686 37.932 61.528 41.8 2.572 88.174-3.754 129.428-.182 3.663.319 9.124.319 11.855 2.958l35.201 61.483 1.911 7.327c-1.297 12.652-32.903 51.949-31.674 60.868L512 316.013v4.551c-12.378 9.921-32.22 62.074-43.256 67.103-12.697 5.779-61.415-3.777-69.402 3.413l-69.378 118.346h-79.641c-9.148-4.915-34.405-60.686-37.932-61.528-41.8-2.571-88.174 3.755-129.428.182-3.663-.318-9.124-.318-11.855-2.958-11.332-23.392-27.783-44.826-37.158-68.855.182-10.308 26.486-43.348 30.855-55.84.865-2.48 2.048-4.483.796-7.213L1.775 203.878 0 190.863c8.965-10.991 31.106-62.621 40.98-67.103 12.698-5.78 61.415 3.777 69.402-3.414L179.761 2zm-72.815 131.976c3.527-13.675 32.562-48.99 31.834-60.117-.228-3.459-29.627-58.092-32.971-58.16l-5.325 6.006-56.75 100.12c3.8 9.307 37.932 71.882 41.937 73.225l263.133.386c11.537-19.955 25.849-40.002 33.472-61.482h-275.33zm-70.539 0H47.785L184.312 377.45h-70.539l-31.857 59.162H205.93l41.618-73.566zm311.737 182.037h70.54l-61.802-108.858-83.828.774-131.68 228.091c-1.024 7.441 21.48 35.702 24.302 45.35l10.626 14.404 137.688-237.831c2.662-2.093 6.03 6.826 7.213 8.761 9.739 15.837 18.454 32.743 26.941 49.286z'/%3E%3Cpath fill='%23fdfdfe' d='M186.587 133.977h275.33c-7.6 21.48-21.912 41.527-33.472 61.483l-263.133-.387c-4.005-1.32-38.137-63.895-41.937-73.224l56.75-100.12 5.325-6.007c3.344.045 32.743 54.702 32.971 58.16.728 11.15-28.307 46.442-31.834 60.118zm241.198 182.036c-8.464-16.543-17.179-33.472-26.941-49.287-1.183-1.911-4.528-10.831-7.213-8.76l-137.688 237.83-10.626-14.403c-2.845-9.648-25.326-37.887-24.302-45.35l131.68-228.092 83.828-.773 61.802 108.857h-70.54zM116.048 133.977l131.499 229.07-41.618 73.565H81.916l31.857-59.162h70.539L47.785 133.977z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 2h512v508H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
  }

  .line-clamp-1 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .line-clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .\!hidden {
    display: none !important;
  }

  .\[display\:-webkit-box\] {
    display: -webkit-box;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .aspect-7\/3 {
    aspect-ratio: 7 / 3;
  }

  .aspect-48\/27 {
    aspect-ratio: 48 / 27;
  }

  .aspect-100\/120 {
    aspect-ratio: 100 / 120;
  }

  .aspect-240\/311 {
    aspect-ratio: 240 / 311;
  }

  .aspect-256\/308 {
    aspect-ratio: 256 / 308;
  }

  .aspect-256\/325 {
    aspect-ratio: 256 / 325;
  }

  .aspect-256\/353 {
    aspect-ratio: 256 / 353;
  }

  .aspect-\[20\/13\] {
    aspect-ratio: 20 / 13;
  }

  .aspect-square {
    aspect-ratio: 1;
  }

  .scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: var(--dialog-surface) transparent;
    overflow-y: auto;
  }

  .scrollbar-custom::-webkit-scrollbar {
    background-color: #0000;
    width: 10px;
    height: 10px;
  }

  .scrollbar-custom::-webkit-scrollbar-track {
    background: none;
  }

  .scrollbar-custom::-webkit-scrollbar-thumb {
    background: var(--dialog-surface);
    border: 2px solid #0000;
    border-radius: 9999px;
  }

  .scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: var(--dialog-surface);
  }

  .scrollbar-custom::-webkit-scrollbar-corner {
    background: none;
  }

  .size-1 {
    width: calc(var(--spacing) * 1);
    height: calc(var(--spacing) * 1);
  }

  .size-1\.5 {
    width: calc(var(--spacing) * 1.5);
    height: calc(var(--spacing) * 1.5);
  }

  .size-2 {
    width: calc(var(--spacing) * 2);
    height: calc(var(--spacing) * 2);
  }

  .size-2\.5 {
    width: calc(var(--spacing) * 2.5);
    height: calc(var(--spacing) * 2.5);
  }

  .size-3 {
    width: calc(var(--spacing) * 3);
    height: calc(var(--spacing) * 3);
  }

  .size-3\.5 {
    width: calc(var(--spacing) * 3.5);
    height: calc(var(--spacing) * 3.5);
  }

  .size-4 {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }

  .size-5 {
    width: calc(var(--spacing) * 5);
    height: calc(var(--spacing) * 5);
  }

  .size-6 {
    width: calc(var(--spacing) * 6);
    height: calc(var(--spacing) * 6);
  }

  .size-7 {
    width: calc(var(--spacing) * 7);
    height: calc(var(--spacing) * 7);
  }

  .size-8 {
    width: calc(var(--spacing) * 8);
    height: calc(var(--spacing) * 8);
  }

  .size-10 {
    width: calc(var(--spacing) * 10);
    height: calc(var(--spacing) * 10);
  }

  .size-12 {
    width: calc(var(--spacing) * 12);
    height: calc(var(--spacing) * 12);
  }

  .size-14 {
    width: calc(var(--spacing) * 14);
    height: calc(var(--spacing) * 14);
  }

  .size-30 {
    width: calc(var(--spacing) * 30);
    height: calc(var(--spacing) * 30);
  }

  .size-\[1em\] {
    width: 1em;
    height: 1em;
  }

  .size-\[22px\] {
    width: 22px;
    height: 22px;
  }

  .size-full {
    width: 100%;
    height: 100%;
  }

  .\!h-7 {
    height: calc(var(--spacing) * 7) !important;
  }

  .\!h-full {
    height: 100% !important;
  }

  .h-\(--comfy-topbar-height\) {
    height: var(--comfy-topbar-height);
  }

  .h-\(--my-var\) {
    height: var(--my-var);
  }

  .h-\(--reka-select-trigger-height\) {
    height: var(--reka-select-trigger-height);
  }

  .h-0 {
    height: calc(var(--spacing) * 0);
  }

  .h-0\.5 {
    height: calc(var(--spacing) * .5);
  }

  .h-1 {
    height: calc(var(--spacing) * 1);
  }

  .h-1\/2 {
    height: 50%;
  }

  .h-2 {
    height: calc(var(--spacing) * 2);
  }

  .h-2\.5 {
    height: calc(var(--spacing) * 2.5);
  }

  .h-2\/5 {
    height: 40%;
  }

  .h-3 {
    height: calc(var(--spacing) * 3);
  }

  .h-3\.5 {
    height: calc(var(--spacing) * 3.5);
  }

  .h-3\/4 {
    height: 75%;
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-4\! {
    height: calc(var(--spacing) * 4) !important;
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-6\.25 {
    height: calc(var(--spacing) * 6.25);
  }

  .h-7 {
    height: calc(var(--spacing) * 7);
  }

  .h-7\.5 {
    height: calc(var(--spacing) * 7.5);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-9 {
    height: calc(var(--spacing) * 9);
  }

  .h-9\.5 {
    height: calc(var(--spacing) * 9.5);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-14 {
    height: calc(var(--spacing) * 14);
  }

  .h-16 {
    height: calc(var(--spacing) * 16);
  }

  .h-18 {
    height: calc(var(--spacing) * 18);
  }

  .h-20 {
    height: calc(var(--spacing) * 20);
  }

  .h-21 {
    height: calc(var(--spacing) * 21);
  }

  .h-23 {
    height: calc(var(--spacing) * 23);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .h-25 {
    height: calc(var(--spacing) * 25);
  }

  .h-48 {
    height: calc(var(--spacing) * 48);
  }

  .h-50 {
    height: calc(var(--spacing) * 50);
  }

  .h-64 {
    height: calc(var(--spacing) * 64);
  }

  .h-110 {
    height: calc(var(--spacing) * 110);
  }

  .h-300 {
    height: calc(var(--spacing) * 300);
  }

  .h-\[--my-var\] {
    height: --my-var;
  }

  .h-\[3px\] {
    height: 3px;
  }

  .h-\[5\%\] {
    height: 5%;
  }

  .h-\[7\%\] {
    height: 7%;
  }

  .h-\[18px\] {
    height: 18px;
  }

  .h-\[27px\] {
    height: 27px;
  }

  .h-\[40rem\] {
    height: 40rem;
  }

  .h-\[50px\] {
    height: 50px;
  }

  .h-\[54px\] {
    height: 54px;
  }

  .h-\[70vh\] {
    height: 70vh;
  }

  .h-\[80vh\] {
    height: 80vh;
  }

  .h-\[110px\] {
    height: 110px;
  }

  .h-\[190px\] {
    height: 190px;
  }

  .h-\[200px\] {
    height: 200px;
  }

  .h-\[300px\] {
    height: 300px;
  }

  .h-\[400px\] {
    height: 400px;
  }

  .h-\[520px\] {
    height: 520px;
  }

  .h-\[638px\] {
    height: 638px;
  }

  .h-\[calc\(100\%-38px\)\] {
    height: calc(100% - 38px);
  }

  .h-\[unset\] {
    height: unset;
  }

  .h-\[var\(--comfy-topbar-height\)\] {
    height: var(--comfy-topbar-height);
  }

  .h-auto {
    height: auto;
  }

  .h-full {
    height: 100%;
  }

  .h-max {
    height: max-content;
  }

  .h-min {
    height: min-content;
  }

  .h-px {
    height: 1px;
  }

  .h-screen {
    height: 100vh;
  }

  .h-svh {
    height: 100svh;
  }

  .max-h-\(--reka-popover-content-available-height\) {
    max-height: var(--reka-popover-content-available-height);
  }

  .max-h-0 {
    max-height: calc(var(--spacing) * 0);
  }

  .max-h-8 {
    max-height: calc(var(--spacing) * 8);
  }

  .max-h-10 {
    max-height: calc(var(--spacing) * 10);
  }

  .max-h-16 {
    max-height: calc(var(--spacing) * 16);
  }

  .max-h-32 {
    max-height: calc(var(--spacing) * 32);
  }

  .max-h-35\.5 {
    max-height: calc(var(--spacing) * 35.5);
  }

  .max-h-60 {
    max-height: calc(var(--spacing) * 60);
  }

  .max-h-64 {
    max-height: calc(var(--spacing) * 64);
  }

  .max-h-75 {
    max-height: calc(var(--spacing) * 75);
  }

  .max-h-96 {
    max-height: calc(var(--spacing) * 96);
  }

  .max-h-100 {
    max-height: calc(var(--spacing) * 100);
  }

  .max-h-\[4lh\] {
    max-height: 4lh;
  }

  .max-h-\[6lh\] {
    max-height: 6lh;
  }

  .max-h-\[10lh\] {
    max-height: 10lh;
  }

  .max-h-\[40vh\] {
    max-height: 40vh;
  }

  .max-h-\[48rem\] {
    max-height: 48rem;
  }

  .max-h-\[50vh\] {
    max-height: 50vh;
  }

  .max-h-\[60px\] {
    max-height: 60px;
  }

  .max-h-\[60vh\] {
    max-height: 60vh;
  }

  .max-h-\[70px\] {
    max-height: 70px;
  }

  .max-h-\[80vh\] {
    max-height: 80vh;
  }

  .max-h-\[142px\] {
    max-height: 142px;
  }

  .max-h-\[200px\] {
    max-height: 200px;
  }

  .max-h-\[300px\] {
    max-height: 300px;
  }

  .max-h-\[450px\] {
    max-height: 450px;
  }

  .max-h-\[640px\] {
    max-height: 640px;
  }

  .max-h-full {
    max-height: 100%;
  }

  .min-h-\(--node-height\) {
    min-height: var(--node-height);
  }

  .min-h-0 {
    min-height: calc(var(--spacing) * 0);
  }

  .min-h-1 {
    min-height: calc(var(--spacing) * 1);
  }

  .min-h-4 {
    min-height: calc(var(--spacing) * 4);
  }

  .min-h-6 {
    min-height: calc(var(--spacing) * 6);
  }

  .min-h-8 {
    min-height: calc(var(--spacing) * 8);
  }

  .min-h-12 {
    min-height: calc(var(--spacing) * 12);
  }

  .min-h-16 {
    min-height: calc(var(--spacing) * 16);
  }

  .min-h-32 {
    min-height: calc(var(--spacing) * 32);
  }

  .min-h-36 {
    min-height: calc(var(--spacing) * 36);
  }

  .min-h-52 {
    min-height: calc(var(--spacing) * 52);
  }

  .min-h-55 {
    min-height: calc(var(--spacing) * 55);
  }

  .min-h-\[28px\] {
    min-height: 28px;
  }

  .min-h-\[60px\] {
    min-height: 60px;
  }

  .min-h-\[200px\] {
    min-height: 200px;
  }

  .min-h-\[400px\] {
    min-height: 400px;
  }

  .min-h-\[638px\] {
    min-height: 638px;
  }

  .min-h-full {
    min-height: 100%;
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .scrollbar-hide {
    scrollbar-width: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    width: 1px;
  }

  .scrollbar-hide::-webkit-scrollbar-thumb {
    background-color: #0000;
  }

  .\!w-7 {
    width: calc(var(--spacing) * 7) !important;
  }

  .\!w-full {
    width: 100% !important;
  }

  .w-\(--node-width\) {
    width: var(--node-width);
  }

  .w-0 {
    width: calc(var(--spacing) * 0);
  }

  .w-0\.5 {
    width: calc(var(--spacing) * .5);
  }

  .w-0\.75 {
    width: calc(var(--spacing) * .75);
  }

  .w-1 {
    width: calc(var(--spacing) * 1);
  }

  .w-1\/2 {
    width: 50%;
  }

  .w-2 {
    width: calc(var(--spacing) * 2);
  }

  .w-2\.5 {
    width: calc(var(--spacing) * 2.5);
  }

  .w-2\/5 {
    width: 40%;
  }

  .w-3 {
    width: calc(var(--spacing) * 3);
  }

  .w-3\.5 {
    width: calc(var(--spacing) * 3.5);
  }

  .w-3\/4 {
    width: 75%;
  }

  .w-4 {
    width: calc(var(--spacing) * 4);
  }

  .w-4\/5 {
    width: 80%;
  }

  .w-5 {
    width: calc(var(--spacing) * 5);
  }

  .w-5\/6 {
    width: 83.3333%;
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-6\.25 {
    width: calc(var(--spacing) * 6.25);
  }

  .w-7 {
    width: calc(var(--spacing) * 7);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-10 {
    width: calc(var(--spacing) * 10);
  }

  .w-12 {
    width: calc(var(--spacing) * 12);
  }

  .w-12\.5 {
    width: calc(var(--spacing) * 12.5);
  }

  .w-14 {
    width: calc(var(--spacing) * 14);
  }

  .w-15 {
    width: calc(var(--spacing) * 15);
  }

  .w-16 {
    width: calc(var(--spacing) * 16);
  }

  .w-20 {
    width: calc(var(--spacing) * 20);
  }

  .w-24 {
    width: calc(var(--spacing) * 24);
  }

  .w-28 {
    width: calc(var(--spacing) * 28);
  }

  .w-32 {
    width: calc(var(--spacing) * 32);
  }

  .w-36 {
    width: calc(var(--spacing) * 36);
  }

  .w-44 {
    width: calc(var(--spacing) * 44);
  }

  .w-48 {
    width: calc(var(--spacing) * 48);
  }

  .w-50 {
    width: calc(var(--spacing) * 50);
  }

  .w-52 {
    width: calc(var(--spacing) * 52);
  }

  .w-55 {
    width: calc(var(--spacing) * 55);
  }

  .w-56 {
    width: calc(var(--spacing) * 56);
  }

  .w-60 {
    width: calc(var(--spacing) * 60);
  }

  .w-62\.5 {
    width: calc(var(--spacing) * 62.5);
  }

  .w-64 {
    width: calc(var(--spacing) * 64);
  }

  .w-72 {
    width: calc(var(--spacing) * 72);
  }

  .w-80 {
    width: calc(var(--spacing) * 80);
  }

  .w-90 {
    width: calc(var(--spacing) * 90);
  }

  .w-96 {
    width: calc(var(--spacing) * 96);
  }

  .w-103 {
    width: calc(var(--spacing) * 103);
  }

  .w-113 {
    width: calc(var(--spacing) * 113);
  }

  .w-138 {
    width: calc(var(--spacing) * 138);
  }

  .w-\[1px\] {
    width: 1px;
  }

  .w-\[5ch\] {
    width: 5ch;
  }

  .w-\[16ch\] {
    width: 16ch;
  }

  .w-\[18px\] {
    width: 18px;
  }

  .w-\[50\%\] {
    width: 50%;
  }

  .w-\[80\%\] {
    width: 80%;
  }

  .w-\[80vw\] {
    width: 80vw;
  }

  .w-\[90\%\] {
    width: 90%;
  }

  .w-\[90vw\] {
    width: 90vw;
  }

  .w-\[110px\] {
    width: 110px;
  }

  .w-\[135px\] {
    width: 135px;
  }

  .w-\[150px\] {
    width: 150px;
  }

  .w-\[170px\] {
    width: 170px;
  }

  .w-\[200px\] {
    width: 200px;
  }

  .w-\[250px\] {
    width: 250px;
  }

  .w-\[300px\] {
    width: 300px;
  }

  .w-\[320px\] {
    width: 320px;
  }

  .w-\[330px\] {
    width: 330px;
  }

  .w-\[350px\] {
    width: 350px;
  }

  .w-\[360px\] {
    width: 360px;
  }

  .w-\[400px\] {
    width: 400px;
  }

  .w-\[420px\] {
    width: 420px;
  }

  .w-\[490px\] {
    width: 490px;
  }

  .w-\[600px\] {
    width: 600px;
  }

  .w-\[calc\(100\%-4rem-220px\)\] {
    width: calc(100% - 4rem - 220px);
  }

  .w-\[max\(400px\,40vw\)\] {
    width: max(400px, 40vw);
  }

  .w-auto {
    width: auto;
  }

  .w-fit {
    width: fit-content;
  }

  .w-full {
    width: 100%;
  }

  .w-max {
    width: max-content;
  }

  .w-min {
    width: min-content;
  }

  .w-px {
    width: 1px;
  }

  .w-screen {
    width: 100vw;
  }

  .max-w-\(--breakpoint-sm\) {
    max-width: var(--breakpoint-sm);
  }

  .max-w-2xl {
    max-width: var(--container-2xl);
  }

  .max-w-3xl {
    max-width: var(--container-3xl);
  }

  .max-w-4xl {
    max-width: var(--container-4xl);
  }

  .max-w-16 {
    max-width: calc(var(--spacing) * 16);
  }

  .max-w-32 {
    max-width: calc(var(--spacing) * 32);
  }

  .max-w-40 {
    max-width: calc(var(--spacing) * 40);
  }

  .max-w-48 {
    max-width: calc(var(--spacing) * 48);
  }

  .max-w-64 {
    max-width: calc(var(--spacing) * 64);
  }

  .max-w-75 {
    max-width: calc(var(--spacing) * 75);
  }

  .max-w-90 {
    max-width: calc(var(--spacing) * 90);
  }

  .max-w-96 {
    max-width: calc(var(--spacing) * 96);
  }

  .max-w-100 {
    max-width: calc(var(--spacing) * 100);
  }

  .max-w-110 {
    max-width: calc(var(--spacing) * 110);
  }

  .max-w-128 {
    max-width: calc(var(--spacing) * 128);
  }

  .max-w-\[10rem\] {
    max-width: 10rem;
  }

  .max-w-\[56rem\] {
    max-width: 56rem;
  }

  .max-w-\[60vw\] {
    max-width: 60vw;
  }

  .max-w-\[80vw\] {
    max-width: 80vw;
  }

  .max-w-\[90vw\] {
    max-width: 90vw;
  }

  .max-w-\[100vw\] {
    max-width: 100vw;
  }

  .max-w-\[150px\] {
    max-width: 150px;
  }

  .max-w-\[320px\] {
    max-width: 320px;
  }

  .max-w-\[360px\] {
    max-width: 360px;
  }

  .max-w-\[384px\] {
    max-width: 384px;
  }

  .max-w-\[400px\] {
    max-width: 400px;
  }

  .max-w-\[512px\] {
    max-width: 512px;
  }

  .max-w-\[600px\] {
    max-width: 600px;
  }

  .max-w-\[960px\] {
    max-width: 960px;
  }

  .max-w-\[1280px\] {
    max-width: 1280px;
  }

  .max-w-\[1400px\] {
    max-width: 1400px;
  }

  .max-w-\[min\(500px\,90vw\)\] {
    max-width: min(500px, 90vw);
  }

  .max-w-full {
    max-width: 100%;
  }

  .max-w-lg {
    max-width: var(--container-lg);
  }

  .max-w-max {
    max-width: max-content;
  }

  .max-w-md {
    max-width: var(--container-md);
  }

  .max-w-screen {
    max-width: 100vw;
  }

  .max-w-xs {
    max-width: var(--container-xs);
  }

  .min-w-\(--reka-select-trigger-width\) {
    min-width: var(--reka-select-trigger-width);
  }

  .min-w-0 {
    min-width: calc(var(--spacing) * 0);
  }

  .min-w-2 {
    min-width: calc(var(--spacing) * 2);
  }

  .min-w-3\.5 {
    min-width: calc(var(--spacing) * 3.5);
  }

  .min-w-4 {
    min-width: calc(var(--spacing) * 4);
  }

  .min-w-5 {
    min-width: calc(var(--spacing) * 5);
  }

  .min-w-6 {
    min-width: calc(var(--spacing) * 6);
  }

  .min-w-10 {
    min-width: calc(var(--spacing) * 10);
  }

  .min-w-11 {
    min-width: calc(var(--spacing) * 11);
  }

  .min-w-16 {
    min-width: calc(var(--spacing) * 16);
  }

  .min-w-30 {
    min-width: calc(var(--spacing) * 30);
  }

  .min-w-32 {
    min-width: calc(var(--spacing) * 32);
  }

  .min-w-34 {
    min-width: calc(var(--spacing) * 34);
  }

  .min-w-39 {
    min-width: calc(var(--spacing) * 39);
  }

  .min-w-40 {
    min-width: calc(var(--spacing) * 40);
  }

  .min-w-72 {
    min-width: calc(var(--spacing) * 72);
  }

  .min-w-78 {
    min-width: calc(var(--spacing) * 78);
  }

  .min-w-80 {
    min-width: calc(var(--spacing) * 80);
  }

  .min-w-84 {
    min-width: calc(var(--spacing) * 84);
  }

  .min-w-96 {
    min-width: calc(var(--spacing) * 96);
  }

  .min-w-110 {
    min-width: calc(var(--spacing) * 110);
  }

  .min-w-\[4ch\] {
    min-width: 4ch;
  }

  .min-w-\[5rem\] {
    min-width: 5rem;
  }

  .min-w-\[7rem\] {
    min-width: 7rem;
  }

  .min-w-\[12rem\] {
    min-width: 12rem;
  }

  .min-w-\[14rem\] {
    min-width: 14rem;
  }

  .min-w-\[16px\] {
    min-width: 16px;
  }

  .min-w-\[32rem\] {
    min-width: 32rem;
  }

  .min-w-\[125\%\] {
    min-width: 125%;
  }

  .min-w-\[225px\] {
    min-width: 225px;
  }

  .min-w-\[260px\] {
    min-width: 260px;
  }

  .min-w-\[310px\] {
    min-width: 310px;
  }

  .min-w-\[320px\] {
    min-width: 320px;
  }

  .min-w-\[460px\] {
    min-width: 460px;
  }

  .min-w-\[min\(300px\,80vw\)\] {
    min-width: min(300px, 80vw);
  }

  .min-w-full {
    min-width: 100%;
  }

  .min-w-full\! {
    min-width: 100% !important;
  }

  .min-w-max {
    min-width: max-content;
  }

  .min-w-md {
    min-width: var(--container-md);
  }

  .min-w-min {
    min-width: min-content;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-1\! {
    flex: 1 !important;
  }

  .flex-auto {
    flex: auto;
  }

  .flex-none {
    flex: none;
  }

  .flex-shrink {
    flex-shrink: 1;
  }

  .flex-shrink-0 {
    flex-shrink: 0;
  }

  .shrink {
    flex-shrink: 1;
  }

  .shrink-0 {
    flex-shrink: 0;
  }

  .shrink-1 {
    flex-shrink: 1;
  }

  .flex-grow, .grow, .grow-1 {
    flex-grow: 1;
  }

  .basis-0 {
    flex-basis: calc(var(--spacing) * 0);
  }

  .basis-full {
    flex-basis: 100%;
  }

  .border-collapse {
    border-collapse: collapse;
  }

  .origin-top-left {
    transform-origin: 0 0;
  }

  .-translate-1\/2 {
    --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-x-1\/2 {
    --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-x-1\/2 {
    --tw-translate-x: calc(1 / 2 * 100%);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-y-2 {
    --tw-translate-y: calc(var(--spacing) * -2);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-y-3 {
    --tw-translate-y: calc(var(--spacing) * -3);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-y-4\/5 {
    --tw-translate-y: calc(calc(4 / 5 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-0 {
    --tw-translate-y: calc(var(--spacing) * 0);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-0\.5 {
    --tw-translate-y: calc(var(--spacing) * .5);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-1\/2 {
    --tw-translate-y: calc(1 / 2 * 100%);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-\[-0\.5px\] {
    --tw-translate-y: -.5px;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-full {
    --tw-translate-y: 100%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .scale-50 {
    --tw-scale-x: 50%;
    --tw-scale-y: 50%;
    --tw-scale-z: 50%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .scale-75 {
    --tw-scale-x: 75%;
    --tw-scale-y: 75%;
    --tw-scale-z: 75%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .scale-105 {
    --tw-scale-x: 105%;
    --tw-scale-y: 105%;
    --tw-scale-z: 105%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .-rotate-90 {
    rotate: -90deg;
  }

  .-rotate-180 {
    rotate: -180deg;
  }

  .rotate-180 {
    rotate: 180deg;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .transform-gpu {
    transform: translateZ(0) var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-pulse {
    animation: var(--animate-pulse);
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

  .cursor-crosshair {
    cursor: crosshair;
  }

  .cursor-default {
    cursor: default;
  }

  .cursor-ew-resize {
    cursor: ew-resize;
  }

  .cursor-grab {
    cursor: grab;
  }

  .cursor-grabbing {
    cursor: grabbing;
  }

  .cursor-help {
    cursor: help;
  }

  .cursor-move {
    cursor: move;
  }

  .cursor-ne-resize {
    cursor: ne-resize;
  }

  .cursor-nesw-resize {
    cursor: nesw-resize;
  }

  .cursor-not-allowed {
    cursor: not-allowed;
  }

  .cursor-ns-resize {
    cursor: ns-resize;
  }

  .cursor-nw-resize {
    cursor: nw-resize;
  }

  .cursor-nwse-resize {
    cursor: nwse-resize;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .cursor-se-resize {
    cursor: se-resize;
  }

  .cursor-sw-resize {
    cursor: sw-resize;
  }

  .cursor-text {
    cursor: text;
  }

  .touch-none {
    touch-action: none;
  }

  .resize {
    resize: both;
  }

  .resize-none {
    resize: none;
  }

  .resize-y {
    resize: vertical;
  }

  .list-inside {
    list-style-position: inside;
  }

  .list-disc {
    list-style-type: disc;
  }

  .list-none {
    list-style-type: none;
  }

  .appearance-none {
    appearance: none;
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid-cols-\[1fr_auto\] {
    grid-template-columns: 1fr auto;
  }

  .grid-cols-\[1fr_auto_1fr\] {
    grid-template-columns: 1fr auto 1fr;
  }

  .grid-cols-\[50\%_20\%_20\%_10\%\] {
    grid-template-columns: 50% 20% 20% 10%;
  }

  .grid-cols-\[50\%_40\%_10\%\] {
    grid-template-columns: 50% 40% 10%;
  }

  .grid-cols-\[auto_1fr\] {
    grid-template-columns: auto 1fr;
  }

  .grid-cols-\[auto_96px\]\! {
    grid-template-columns: auto 96px !important;
  }

  .grid-cols-\[min-content_minmax\(80px\,min-content\)_minmax\(125px\,1fr\)\] {
    grid-template-columns: min-content minmax(80px, min-content) minmax(125px, 1fr);
  }

  .grid-cols-\[repeat\(auto-fill\,minmax\(5rem\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
  }

  .grid-cols-\[repeat\(auto-fill\,minmax\(200px\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .grid-rows-\[1fr_auto_auto_1fr\] {
    grid-template-rows: 1fr auto auto 1fr;
  }

  .flex-col {
    flex-direction: column;
  }

  .flex-col-reverse {
    flex-direction: column-reverse;
  }

  .flex-row {
    flex-direction: row;
  }

  .flex-row-reverse {
    flex-direction: row-reverse;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .place-content-center {
    place-content: center;
  }

  .place-items-center {
    place-items: center;
  }

  .place-items-center-safe {
    place-items: safe center;
  }

  .content-center {
    align-content: center;
  }

  .content-center-safe {
    align-content: safe center;
  }

  .\!items-stretch {
    align-items: stretch !important;
  }

  .items-baseline {
    align-items: baseline;
  }

  .items-center {
    align-items: center;
  }

  .items-center-safe {
    align-items: safe center;
  }

  .items-end {
    align-items: flex-end;
  }

  .items-start {
    align-items: flex-start;
  }

  .items-stretch {
    align-items: stretch;
  }

  .justify-around {
    justify-content: space-around;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .justify-end-safe {
    justify-content: safe flex-end;
  }

  .justify-evenly {
    justify-content: space-evenly;
  }

  .justify-start {
    justify-content: flex-start;
  }

  .justify-items-center {
    justify-items: center;
  }

  .gap-0 {
    gap: calc(var(--spacing) * 0);
  }

  .gap-0\.5 {
    gap: calc(var(--spacing) * .5);
  }

  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }

  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-2\.5 {
    gap: calc(var(--spacing) * 2.5);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  .gap-7 {
    gap: calc(var(--spacing) * 7);
  }

  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }

  .gap-9 {
    gap: calc(var(--spacing) * 9);
  }

  .gap-10 {
    gap: calc(var(--spacing) * 10);
  }

  :where(.space-y-0\.5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * .5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * .5) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-1\.5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  .gap-x-0\.5 {
    column-gap: calc(var(--spacing) * .5);
  }

  .gap-x-2 {
    column-gap: calc(var(--spacing) * 2);
  }

  .gap-y-1 {
    row-gap: calc(var(--spacing) * 1);
  }

  .gap-y-2 {
    row-gap: calc(var(--spacing) * 2);
  }

  .gap-y-3 {
    row-gap: calc(var(--spacing) * 3);
  }

  .gap-y-4 {
    row-gap: calc(var(--spacing) * 4);
  }

  :where(.divide-x > :not(:last-child)) {
    --tw-divide-x-reverse: 0;
    border-inline-style: var(--tw-border-style);
    border-inline-start-width: calc(1px * var(--tw-divide-x-reverse));
    border-inline-end-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  :where(.divide-y > :not(:last-child)) {
    --tw-divide-y-reverse: 0;
    border-bottom-style: var(--tw-border-style);
    border-top-style: var(--tw-border-style);
    border-top-width: calc(1px * var(--tw-divide-y-reverse));
    border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  }

  :where(.divide-component-node-border > :not(:last-child)) {
    border-color: var(--component-node-border);
  }

  :where(.divide-interface-stroke\/20 > :not(:last-child)) {
    border-color: var(--interface-stroke);
  }

  @supports (color: color-mix(in lab, red, red)) {
    :where(.divide-interface-stroke\/20 > :not(:last-child)) {
      border-color: color-mix(in oklab, var(--interface-stroke) 20%, transparent);
    }
  }

  .place-self-end {
    place-self: end;
  }

  .self-center {
    align-self: center;
  }

  .self-end {
    align-self: flex-end;
  }

  .self-stretch {
    align-self: stretch;
  }

  .justify-self-end {
    justify-self: flex-end;
  }

  .justify-self-start {
    justify-self: flex-start;
  }

  .truncate {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .overflow-auto {
    overflow: auto;
  }

  .overflow-clip {
    overflow: clip;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-visible {
    overflow: visible;
  }

  .overflow-x-auto {
    overflow-x: auto;
  }

  .overflow-x-clip {
    overflow-x: clip;
  }

  .overflow-x-hidden {
    overflow-x: hidden;
  }

  .\!overflow-y-auto {
    overflow-y: auto !important;
  }

  .overflow-y-auto {
    overflow-y: auto;
  }

  .overflow-y-clip {
    overflow-y: clip;
  }

  .overflow-y-hidden {
    overflow-y: hidden;
  }

  .overflow-y-hidden\! {
    overflow-y: hidden !important;
  }

  .overflow-y-scroll {
    overflow-y: scroll;
  }

  .\!rounded-full {
    border-radius: 3.40282e38px !important;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }

  .rounded-3xl {
    border-radius: var(--radius-3xl);
  }

  .rounded-\[1\.5px\] {
    border-radius: 1.5px;
  }

  .rounded-\[1px\] {
    border-radius: 1px;
  }

  .rounded-\[4px\] {
    border-radius: 4px;
  }

  .rounded-\[5px\] {
    border-radius: 5px;
  }

  .rounded-\[6px\] {
    border-radius: 6px;
  }

  .rounded-\[7px\] {
    border-radius: 7px;
  }

  .rounded-\[10px\] {
    border-radius: 10px;
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-none {
    border-radius: 0;
  }

  .rounded-none\! {
    border-radius: 0 !important;
  }

  .rounded-sm {
    border-radius: var(--radius-sm);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .rounded-t-2xl {
    border-top-left-radius: var(--radius-2xl);
    border-top-right-radius: var(--radius-2xl);
  }

  .rounded-t-lg {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }

  .rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .rounded-t-xl {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
  }

  .rounded-l-full {
    border-top-left-radius: 3.40282e38px;
    border-bottom-left-radius: 3.40282e38px;
  }

  .rounded-l-lg {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
  }

  .rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .rounded-tl-2xl {
    border-top-left-radius: var(--radius-2xl);
  }

  .rounded-tl-lg {
    border-top-left-radius: var(--radius-lg);
  }

  .rounded-r-full {
    border-top-right-radius: 3.40282e38px;
    border-bottom-right-radius: 3.40282e38px;
  }

  .rounded-r-lg {
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
  }

  .rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .rounded-tr-lg {
    border-top-right-radius: var(--radius-lg);
  }

  .rounded-tr-none {
    border-top-right-radius: 0;
  }

  .rounded-b-2xl {
    border-bottom-right-radius: var(--radius-2xl);
    border-bottom-left-radius: var(--radius-2xl);
  }

  .rounded-b-xl {
    border-bottom-right-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
  }

  .rounded-br-2xl {
    border-bottom-right-radius: var(--radius-2xl);
  }

  .rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .border-0\! {
    border-style: var(--tw-border-style) !important;
    border-width: 0 !important;
  }

  .border-1 {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-4 {
    border-style: var(--tw-border-style);
    border-width: 4px;
  }

  .border-\[1px\] {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-\[2\.5px\] {
    border-style: var(--tw-border-style);
    border-width: 2.5px;
  }

  .border-\[3px\] {
    border-style: var(--tw-border-style);
    border-width: 3px;
  }

  .border-\[4px\] {
    border-style: var(--tw-border-style);
    border-width: 4px;
  }

  .border-x {
    border-inline-style: var(--tw-border-style);
    border-inline-width: 1px;
  }

  .border-x-0 {
    border-inline-style: var(--tw-border-style);
    border-inline-width: 0;
  }

  .border-y {
    border-block-style: var(--tw-border-style);
    border-block-width: 1px;
  }

  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }

  .border-t-0 {
    border-top-style: var(--tw-border-style);
    border-top-width: 0;
  }

  .border-t-1 {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }

  .border-r {
    border-right-style: var(--tw-border-style);
    border-right-width: 1px;
  }

  .border-b, .border-b-1 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }

  .border-l {
    border-left-style: var(--tw-border-style);
    border-left-width: 1px;
  }

  .\!border-none {
    --tw-border-style: none !important;
    border-style: none !important;
  }

  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }

  .border-hidden {
    --tw-border-style: hidden;
    border-style: hidden;
  }

  .border-none {
    --tw-border-style: none;
    border-style: none;
  }

  .border-solid {
    --tw-border-style: solid;
    border-style: solid;
  }

  .border-\(--border-default\) {
    border-color: var(--border-default);
  }

  .border-\(--p-divider-color\) {
    border-color: var(--p-divider-color);
  }

  .border-\(--p-panel-border-color\) {
    border-color: var(--p-panel-border-color);
  }

  .border-\[var\(--interface-stroke\)\] {
    border-color: var(--interface-stroke);
  }

  .border-azure-400 {
    border-color: var(--color-azure-400);
  }

  .border-base-background {
    border-color: var(--base-background);
  }

  .border-base-foreground {
    border-color: var(--base-foreground);
  }

  .border-blue-400 {
    border-color: var(--color-blue-400);
  }

  .border-blue-500 {
    border-color: var(--color-blue-500);
  }

  .border-blue-600 {
    border-color: var(--color-blue-600);
  }

  .border-border-default {
    border-color: var(--border-default);
  }

  .border-border-subtle {
    border-color: var(--border-subtle);
  }

  .border-brand-yellow {
    border-color: var(--brand-yellow);
  }

  .border-comfy-input {
    border-color: var(--comfy-input-bg);
  }

  .border-component-node-border {
    border-color: var(--component-node-border);
  }

  .border-destructive-background-hover {
    border-color: var(--destructive-background-hover);
  }

  .border-error {
    border-color: var(--color-error);
  }

  .border-gray-300 {
    border-color: var(--color-gray-300);
  }

  .border-interface-menu-stroke {
    border-color: var(--interface-menu-stroke);
  }

  .border-interface-stroke, .border-interface-stroke\/30 {
    border-color: var(--interface-stroke);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .border-interface-stroke\/30 {
      border-color: color-mix(in oklab, var(--interface-stroke) 30%, transparent);
    }
  }

  .border-muted-background {
    border-color: var(--muted-background);
  }

  .border-muted-foreground {
    border-color: var(--muted-foreground);
  }

  .border-neutral-200 {
    border-color: var(--color-neutral-200);
  }

  .border-neutral-700 {
    border-color: var(--color-neutral-700);
  }

  .border-node-component-border {
    border-color: var(--node-component-border);
  }

  .border-node-component-slot-dot-outline {
    border-color: rgb(from var(--node-component-slot-dot-outline) r g b / calc(var(--node-component-slot-dot-outline-opacity) * var(--node-component-slot-dot-outline-opacity-mult)));
  }

  .border-node-component-tooltip-border {
    border-color: var(--node-component-tooltip-border);
  }

  .border-node-stroke {
    border-color: var(--node-stroke);
  }

  .border-node-stroke-error {
    border-color: var(--node-stroke-error);
  }

  .border-primary {
    border-color: var(--p-primary-color);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .border-primary {
      border-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }

  .border-primary-background {
    border-color: var(--primary-background);
  }

  .border-secondary-background {
    border-color: var(--secondary-background);
  }

  .border-smoke-200 {
    border-color: var(--color-smoke-200);
  }

  .border-surface {
    border-color: var(--p-content-border-color);
  }

  .border-transparent {
    border-color: #0000;
  }

  .border-warning-background {
    border-color: var(--warning-background);
  }

  .border-white {
    border-color: var(--color-white);
  }

  .border-zinc-300\/10 {
    border-color: #d4d4d81a;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .border-zinc-300\/10 {
      border-color: color-mix(in oklab, var(--color-zinc-300) 10%, transparent);
    }
  }

  .border-t-base-foreground {
    border-top-color: var(--base-foreground);
  }

  .border-t-node-component-tooltip-border {
    border-top-color: var(--node-component-tooltip-border);
  }

  .border-r-node-component-tooltip-border {
    border-right-color: var(--node-component-tooltip-border);
  }

  .border-b-node-component-tooltip-border {
    border-bottom-color: var(--node-component-tooltip-border);
  }

  .border-l-node-component-tooltip-border {
    border-left-color: var(--node-component-tooltip-border);
  }

  .\!bg-black\/70 {
    background-color: #000000b3 !important;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .\!bg-black\/70 {
      background-color: color-mix(in oklab, var(--color-black) 70%, transparent) !important;
    }
  }

  .\!bg-interface-menu-component-surface-selected {
    background-color: var(--interface-menu-component-surface-selected) !important;
  }

  .\!bg-white {
    background-color: var(--color-white) !important;
  }

  .\!bg-white\/90 {
    background-color: #ffffffe6 !important;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .\!bg-white\/90 {
      background-color: color-mix(in oklab, var(--color-white) 90%, transparent) !important;
    }
  }

  .bg-\(--base-background\) {
    background-color: var(--base-background);
  }

  .bg-\(--comfy-menu-bg\) {
    background-color: var(--comfy-menu-bg);
  }

  .bg-\[\#2d2e32\] {
    background-color: #2d2e32;
  }

  .bg-\[\#ff3b30\] {
    background-color: #ff3b30;
  }

  .bg-\[var\(--border-color\)\] {
    background-color: var(--border-color);
  }

  .bg-\[var\(--color-accent-blue\,\#0B8CE9\)\] {
    background-color: var(--color-accent-blue, #0b8ce9);
  }

  .bg-\[var\(--comfy-menu-bg\)\] {
    background-color: var(--comfy-menu-bg);
  }

  .bg-\[var\(--p-button-text-primary-color\)\] {
    background-color: var(--p-button-text-primary-color);
  }

  .bg-\[var\(--p-form-field-border-color\)\] {
    background-color: var(--p-form-field-border-color);
  }

  .bg-\[var\(--p-mask-background\)\] {
    background-color: var(--p-mask-background);
  }

  .bg-amber-400 {
    background-color: var(--color-amber-400);
  }

  .bg-ash-800 {
    background-color: var(--color-ash-800);
  }

  .bg-backdrop\/30 {
    background-color: var(--backdrop);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-backdrop\/30 {
      background-color: color-mix(in oklab, var(--backdrop) 30%, transparent);
    }
  }

  .bg-backdrop\/50 {
    background-color: var(--backdrop);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-backdrop\/50 {
      background-color: color-mix(in oklab, var(--backdrop) 50%, transparent);
    }
  }

  .bg-base-background, .bg-base-background\/50 {
    background-color: var(--base-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-base-background\/50 {
      background-color: color-mix(in oklab, var(--base-background) 50%, transparent);
    }
  }

  .bg-base-background\/60 {
    background-color: var(--base-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-base-background\/60 {
      background-color: color-mix(in oklab, var(--base-background) 60%, transparent);
    }
  }

  .bg-base-foreground, .bg-base-foreground\/5 {
    background-color: var(--base-foreground);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-base-foreground\/5 {
      background-color: color-mix(in oklab, var(--base-foreground) 5%, transparent);
    }
  }

  .bg-base-foreground\/50 {
    background-color: var(--base-foreground);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-base-foreground\/50 {
      background-color: color-mix(in oklab, var(--base-foreground) 50%, transparent);
    }
  }

  .bg-black {
    background-color: var(--color-black);
  }

  .bg-black\/15 {
    background-color: #00000026;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/15 {
      background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
    }
  }

  .bg-black\/20 {
    background-color: #0003;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/20 {
      background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
    }
  }

  .bg-black\/30 {
    background-color: #0000004d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/30 {
      background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
    }
  }

  .bg-black\/50 {
    background-color: #00000080;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/50 {
      background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
    }
  }

  .bg-black\/60 {
    background-color: #0009;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/60 {
      background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
    }
  }

  .bg-blue-50 {
    background-color: var(--color-blue-50);
  }

  .bg-blue-100 {
    background-color: var(--color-blue-100);
  }

  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }

  .bg-blue-500\/20 {
    background-color: #3080ff33;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-blue-500\/20 {
      background-color: color-mix(in oklab, var(--color-blue-500) 20%, transparent);
    }
  }

  .bg-blue-600 {
    background-color: var(--color-blue-600);
  }

  .bg-border-default {
    background-color: var(--border-default);
  }

  .bg-brand-yellow {
    background-color: var(--brand-yellow);
  }

  .bg-button-active-surface {
    background-color: var(--button-active-surface);
  }

  .bg-button-icon {
    background-color: var(--button-icon);
  }

  .bg-button-surface {
    background-color: var(--button-surface);
  }

  .bg-comfy-input {
    background-color: var(--comfy-input-bg);
  }

  .bg-comfy-menu-bg {
    background-color: var(--comfy-menu-bg);
  }

  .bg-component-node-background {
    background-color: var(--component-node-background);
  }

  .bg-component-node-widget-background {
    background-color: var(--component-node-widget-background);
  }

  .bg-component-node-widget-background-highlighted {
    background-color: var(--component-node-widget-background-highlighted);
  }

  .bg-cyan-500\/20 {
    background-color: #00b7d733;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-cyan-500\/20 {
      background-color: color-mix(in oklab, var(--color-cyan-500) 20%, transparent);
    }
  }

  .bg-danger-100 {
    background-color: var(--color-danger-100);
  }

  .bg-danger-200 {
    background-color: var(--color-danger-200);
  }

  .bg-destructive-background {
    background-color: var(--destructive-background);
  }

  .bg-dialog-surface {
    background-color: var(--dialog-surface);
  }

  .bg-error {
    background-color: var(--color-error);
  }

  .bg-error\/10 {
    background-color: #962a2a1a;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-error\/10 {
      background-color: color-mix(in oklab, var(--color-error) 10%, transparent);
    }
  }

  .bg-gold-600 {
    background-color: var(--color-gold-600);
  }

  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }

  .bg-gray-900 {
    background-color: var(--color-gray-900);
  }

  .bg-green-500 {
    background-color: var(--color-green-500);
  }

  .bg-green-600 {
    background-color: var(--color-green-600);
  }

  .bg-inherit {
    background-color: inherit;
  }

  .bg-inherit\! {
    background-color: inherit !important;
  }

  .bg-input-surface {
    background-color: var(--input-surface);
  }

  .bg-interface-menu-component-surface-hovered {
    background-color: var(--interface-menu-component-surface-hovered);
  }

  .bg-interface-menu-component-surface-selected {
    background-color: var(--interface-menu-component-surface-selected);
  }

  .bg-interface-menu-keybind-surface-default {
    background-color: var(--interface-menu-keybind-surface-default);
  }

  .bg-interface-menu-surface {
    background-color: var(--interface-menu-surface);
  }

  .bg-interface-panel-hover-surface {
    background-color: var(--interface-panel-hover-surface);
  }

  .bg-interface-panel-job-progress-primary {
    background-color: var(--color-interface-panel-job-progress-primary);
  }

  .bg-interface-panel-job-progress-secondary {
    background-color: var(--color-interface-panel-job-progress-secondary);
  }

  .bg-interface-panel-selected-surface {
    background-color: var(--interface-panel-selected-surface);
  }

  .bg-interface-panel-surface {
    background-color: var(--interface-panel-surface);
  }

  .bg-interface-stroke {
    background-color: var(--interface-stroke);
  }

  .bg-modal-card-background {
    background-color: var(--modal-card-background);
  }

  .bg-modal-card-placeholder-background {
    background-color: var(--modal-card-placeholder-background);
  }

  .bg-modal-card-tag-background {
    background-color: var(--modal-card-tag-background);
  }

  .bg-modal-panel-background {
    background-color: var(--modal-panel-background);
  }

  .bg-muted-background {
    background-color: var(--muted-background);
  }

  .bg-muted-foreground {
    background-color: var(--muted-foreground);
  }

  .bg-nav-background {
    background-color: var(--nav-background);
  }

  .bg-neutral-200 {
    background-color: var(--color-neutral-200);
  }

  .bg-neutral-300 {
    background-color: var(--color-neutral-300);
  }

  .bg-neutral-500\/50 {
    background-color: #73737380;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-neutral-500\/50 {
      background-color: color-mix(in oklab, var(--color-neutral-500) 50%, transparent);
    }
  }

  .bg-neutral-700 {
    background-color: var(--color-neutral-700);
  }

  .bg-neutral-800 {
    background-color: var(--color-neutral-800);
  }

  .bg-neutral-800\/50 {
    background-color: #26262680;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-neutral-800\/50 {
      background-color: color-mix(in oklab, var(--color-neutral-800) 50%, transparent);
    }
  }

  .bg-neutral-900 {
    background-color: var(--color-neutral-900);
  }

  .bg-neutral-900\/70 {
    background-color: #171717b3;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-neutral-900\/70 {
      background-color: color-mix(in oklab, var(--color-neutral-900) 70%, transparent);
    }
  }

  .bg-neutral-900\/80 {
    background-color: #171717cc;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-neutral-900\/80 {
      background-color: color-mix(in oklab, var(--color-neutral-900) 80%, transparent);
    }
  }

  .bg-neutral-900\/95 {
    background-color: #171717f2;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-neutral-900\/95 {
      background-color: color-mix(in oklab, var(--color-neutral-900) 95%, transparent);
    }
  }

  .bg-neutral-950 {
    background-color: var(--color-neutral-950);
  }

  .bg-node-component-border {
    background-color: var(--node-component-border);
  }

  .bg-node-component-header-surface {
    background-color: var(--node-component-header-surface);
  }

  .bg-node-component-surface {
    background-color: var(--node-component-surface);
  }

  .bg-node-component-surface-highlight {
    background-color: var(--node-component-surface-highlight);
  }

  .bg-node-component-tooltip-surface {
    background-color: var(--node-component-tooltip-surface);
  }

  .bg-node-divider {
    background-color: var(--node-divider);
  }

  .bg-node-stroke {
    background-color: var(--node-stroke);
  }

  .bg-node-stroke-error {
    background-color: var(--node-stroke-error);
  }

  .bg-orange-600 {
    background-color: var(--color-orange-600);
  }

  .bg-primary {
    background-color: var(--p-primary-color);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary {
      background-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }

  .bg-primary-500 {
    background-color: var(--p-primary-500);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary-500 {
      background-color: color-mix(in srgb, var(--p-primary-500) calc(100% * 1), transparent);
    }
  }

  .bg-primary-500\/10 {
    background-color: var(--p-primary-500);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary-500\/10 {
      background-color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-500) calc(100% * 1), transparent) 10%, transparent);
    }
  }

  .bg-primary-background {
    background-color: var(--primary-background);
  }

  .bg-primary-background-hover {
    background-color: var(--primary-background-hover);
  }

  .bg-primary-background\/15 {
    background-color: var(--primary-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary-background\/15 {
      background-color: color-mix(in oklab, var(--primary-background) 15%, transparent);
    }
  }

  .bg-primary-background\/30 {
    background-color: var(--primary-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary-background\/30 {
      background-color: color-mix(in oklab, var(--primary-background) 30%, transparent);
    }
  }

  .bg-primary\/10 {
    background-color: var(--p-primary-color);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary\/10 {
      background-color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) 10%, transparent);
    }
  }

  .bg-purple-600 {
    background-color: var(--color-purple-600);
  }

  .bg-red-500 {
    background-color: var(--color-red-500);
  }

  .bg-red-500\/20 {
    background-color: #fb2c3633;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-red-500\/20 {
      background-color: color-mix(in oklab, var(--color-red-500) 20%, transparent);
    }
  }

  .bg-red-700 {
    background-color: var(--color-red-700);
  }

  .bg-secondary-background {
    background-color: var(--secondary-background);
  }

  .bg-secondary-background-hover {
    background-color: var(--secondary-background-hover);
  }

  .bg-secondary-background-selected {
    background-color: var(--secondary-background-selected);
  }

  .bg-secondary-background\/50 {
    background-color: var(--secondary-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-secondary-background\/50 {
      background-color: color-mix(in oklab, var(--secondary-background) 50%, transparent);
    }
  }

  .bg-secondary-background\/60 {
    background-color: var(--secondary-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-secondary-background\/60 {
      background-color: color-mix(in oklab, var(--secondary-background) 60%, transparent);
    }
  }

  .bg-slate-100 {
    background-color: var(--color-slate-100);
  }

  .bg-slate-300 {
    background-color: var(--color-slate-300);
  }

  .bg-smoke-100 {
    background-color: var(--color-smoke-100);
  }

  .bg-smoke-500 {
    background-color: var(--color-smoke-500);
  }

  .bg-smoke-500\/33 {
    background-color: #c5c5c554;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-smoke-500\/33 {
      background-color: color-mix(in oklab, var(--color-smoke-500) 33%, transparent);
    }
  }

  .bg-smoke-700\/30 {
    background-color: #a0a0a04d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-smoke-700\/30 {
      background-color: color-mix(in oklab, var(--color-smoke-700) 30%, transparent);
    }
  }

  .bg-success-background {
    background-color: var(--success-background);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-warning-background, .bg-warning-background\/10 {
    background-color: var(--warning-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-warning-background\/10 {
      background-color: color-mix(in oklab, var(--warning-background) 10%, transparent);
    }
  }

  .bg-warning-background\/20 {
    background-color: var(--warning-background);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-warning-background\/20 {
      background-color: color-mix(in oklab, var(--warning-background) 20%, transparent);
    }
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .bg-white\/20 {
    background-color: #fff3;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/20 {
      background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
    }
  }

  .bg-white\/30 {
    background-color: #ffffff4d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/30 {
      background-color: color-mix(in oklab, var(--color-white) 30%, transparent);
    }
  }

  .bg-white\/50 {
    background-color: #ffffff80;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/50 {
      background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
    }
  }

  .bg-white\/80 {
    background-color: #fffc;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/80 {
      background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
    }
  }

  .bg-yellow-400 {
    background-color: var(--color-yellow-400);
  }

  .bg-yellow-500\/20 {
    background-color: #edb20033;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-yellow-500\/20 {
      background-color: color-mix(in oklab, var(--color-yellow-500) 20%, transparent);
    }
  }

  .bg-zinc-500\/20 {
    background-color: #71717b33;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-zinc-500\/20 {
      background-color: color-mix(in oklab, var(--color-zinc-500) 20%, transparent);
    }
  }

  .bg-zinc-500\/40 {
    background-color: #71717b66;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-zinc-500\/40 {
      background-color: color-mix(in oklab, var(--color-zinc-500) 40%, transparent);
    }
  }

  .bg-linear-to-br {
    --tw-gradient-position: to bottom right;
  }

  @supports (background-image: linear-gradient(in lab, red, red)) {
    .bg-linear-to-br {
      --tw-gradient-position: to bottom right in oklab;
    }
  }

  .bg-linear-to-br {
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .bg-gradient-to-br {
    --tw-gradient-position: to bottom right in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .bg-gradient-to-tr {
    --tw-gradient-position: to top right in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .bg-\[url\(\'\/assets\/images\/Git-Logo-White\.svg\'\)\] {
    background-image: url("/assets/images/Git-Logo-White.svg");
  }

  .from-blue-400 {
    --tw-gradient-from: var(--color-blue-400);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .from-blue-500 {
    --tw-gradient-from: var(--color-blue-500);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .from-coral-500 {
    --tw-gradient-from: var(--color-coral-500);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .from-smoke-400 {
    --tw-gradient-from: var(--color-smoke-400);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .via-coral-500 {
    --tw-gradient-via: var(--color-coral-500);
    --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .via-smoke-800 {
    --tw-gradient-via: var(--color-smoke-800);
    --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .via-teal-500 {
    --tw-gradient-via: var(--color-teal-500);
    --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .to-azure-600 {
    --tw-gradient-to: var(--color-azure-600);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .to-charcoal-400 {
    --tw-gradient-to: var(--color-charcoal-400);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .to-green-400 {
    --tw-gradient-to: var(--color-green-400);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .to-purple-600 {
    --tw-gradient-to: var(--color-purple-600);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .\[mask-image\:linear-gradient\(to_right\,black_70\%\,transparent\)\] {
    -webkit-mask-image: linear-gradient(to right, #000 70%, #0000);
    mask-image: linear-gradient(to right, #000 70%, #0000);
  }

  .bg-cover {
    background-size: cover;
  }

  .bg-center {
    background-position: center;
  }

  .bg-top-right {
    background-position: 100% 0;
  }

  .bg-no-repeat {
    background-repeat: no-repeat;
  }

  .bg-origin-padding {
    background-origin: padding-box;
  }

  .fill-\[var\(--input-text\)\] {
    fill: var(--input-text);
  }

  .fill-base-background {
    fill: var(--base-background);
  }

  .fill-current {
    fill: currentColor;
  }

  .stroke-border-subtle {
    stroke: var(--border-subtle);
  }

  .object-contain {
    object-fit: contain;
  }

  .object-cover {
    object-fit: cover;
  }

  .\!p-0 {
    padding: calc(var(--spacing) * 0) !important;
  }

  .\!p-2 {
    padding: calc(var(--spacing) * 2) !important;
  }

  .p-0 {
    padding: calc(var(--spacing) * 0);
  }

  .p-0\! {
    padding: calc(var(--spacing) * 0) !important;
  }

  .p-0\.5 {
    padding: calc(var(--spacing) * .5);
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-1\.5 {
    padding: calc(var(--spacing) * 1.5);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-2\.5 {
    padding: calc(var(--spacing) * 2.5);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-5 {
    padding: calc(var(--spacing) * 5);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-8 {
    padding: calc(var(--spacing) * 8);
  }

  .px-0 {
    padding-inline: calc(var(--spacing) * 0);
  }

  .px-0\! {
    padding-inline: calc(var(--spacing) * 0) !important;
  }

  .px-0\.5 {
    padding-inline: calc(var(--spacing) * .5);
  }

  .px-1 {
    padding-inline: calc(var(--spacing) * 1);
  }

  .px-1\.5 {
    padding-inline: calc(var(--spacing) * 1.5);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-2\.5 {
    padding-inline: calc(var(--spacing) * 2.5);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }

  .px-10 {
    padding-inline: calc(var(--spacing) * 10);
  }

  .px-12 {
    padding-inline: calc(var(--spacing) * 12);
  }

  .px-14 {
    padding-inline: calc(var(--spacing) * 14);
  }

  .px-24 {
    padding-inline: calc(var(--spacing) * 24);
  }

  .py-0 {
    padding-block: calc(var(--spacing) * 0);
  }

  .py-0\! {
    padding-block: calc(var(--spacing) * 0) !important;
  }

  .py-0\.5 {
    padding-block: calc(var(--spacing) * .5);
  }

  .py-0\.25 {
    padding-block: calc(var(--spacing) * .25);
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-1\.5 {
    padding-block: calc(var(--spacing) * 1.5);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-2\.5 {
    padding-block: calc(var(--spacing) * 2.5);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }

  .py-8 {
    padding-block: calc(var(--spacing) * 8);
  }

  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }

  .py-16 {
    padding-block: calc(var(--spacing) * 16);
  }

  .py-20 {
    padding-block: calc(var(--spacing) * 20);
  }

  .py-\[1px\] {
    padding-block: 1px;
  }

  .py-\[5px\] {
    padding-block: 5px;
  }

  .pt-0 {
    padding-top: calc(var(--spacing) * 0);
  }

  .pt-1 {
    padding-top: calc(var(--spacing) * 1);
  }

  .pt-1\.5 {
    padding-top: calc(var(--spacing) * 1.5);
  }

  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }

  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }

  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }

  .pt-5 {
    padding-top: calc(var(--spacing) * 5);
  }

  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }

  .pt-7 {
    padding-top: calc(var(--spacing) * 7);
  }

  .pt-8 {
    padding-top: calc(var(--spacing) * 8);
  }

  .pt-9 {
    padding-top: calc(var(--spacing) * 9);
  }

  .pt-12 {
    padding-top: calc(var(--spacing) * 12);
  }

  .pt-16 {
    padding-top: calc(var(--spacing) * 16);
  }

  .pr-0\.5 {
    padding-right: calc(var(--spacing) * .5);
  }

  .pr-1 {
    padding-right: calc(var(--spacing) * 1);
  }

  .pr-1\.5 {
    padding-right: calc(var(--spacing) * 1.5);
  }

  .pr-2 {
    padding-right: calc(var(--spacing) * 2);
  }

  .pr-3 {
    padding-right: calc(var(--spacing) * 3);
  }

  .pr-4 {
    padding-right: calc(var(--spacing) * 4);
  }

  .pr-5 {
    padding-right: calc(var(--spacing) * 5);
  }

  .pr-6 {
    padding-right: calc(var(--spacing) * 6);
  }

  .pr-10 {
    padding-right: calc(var(--spacing) * 10);
  }

  .pb-0 {
    padding-bottom: calc(var(--spacing) * 0);
  }

  .pb-1 {
    padding-bottom: calc(var(--spacing) * 1);
  }

  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }

  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }

  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }

  .pb-5 {
    padding-bottom: calc(var(--spacing) * 5);
  }

  .pb-6 {
    padding-bottom: calc(var(--spacing) * 6);
  }

  .pb-8 {
    padding-bottom: calc(var(--spacing) * 8);
  }

  .pb-10 {
    padding-bottom: calc(var(--spacing) * 10);
  }

  .pb-15 {
    padding-bottom: calc(var(--spacing) * 15);
  }

  .pb-\[64px\] {
    padding-bottom: 64px;
  }

  .pl-0 {
    padding-left: calc(var(--spacing) * 0);
  }

  .pl-0\! {
    padding-left: calc(var(--spacing) * 0) !important;
  }

  .pl-1 {
    padding-left: calc(var(--spacing) * 1);
  }

  .pl-2 {
    padding-left: calc(var(--spacing) * 2);
  }

  .pl-3 {
    padding-left: calc(var(--spacing) * 3);
  }

  .pl-4 {
    padding-left: calc(var(--spacing) * 4);
  }

  .pl-6 {
    padding-left: calc(var(--spacing) * 6);
  }

  .pl-8 {
    padding-left: calc(var(--spacing) * 8);
  }

  .pl-11 {
    padding-left: calc(var(--spacing) * 11);
  }

  .pl-14 {
    padding-left: calc(var(--spacing) * 14);
  }

  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

  .text-right {
    text-align: right;
  }

  .align-middle {
    vertical-align: middle;
  }

  .font-inter {
    font-family: var(--font-inter);
  }

  .font-mono {
    font-family: var(--font-mono);
  }

  .font-sans {
    font-family: var(--font-sans);
  }

  .\!text-3xl {
    font-size: var(--text-3xl) !important;
    line-height: var(--tw-leading, var(--text-3xl--line-height)) !important;
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-2xl\! {
    font-size: var(--text-2xl) !important;
    line-height: var(--tw-leading, var(--text-2xl--line-height)) !important;
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }

  .text-6xl {
    font-size: var(--text-6xl);
    line-height: var(--tw-leading, var(--text-6xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .text-xl\! {
    font-size: var(--text-xl) !important;
    line-height: var(--tw-leading, var(--text-xl--line-height)) !important;
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .text-xxs {
    font-size: var(--text-xxs);
    line-height: var(--tw-leading, var(--text-xxs--line-height));
  }

  .text-xxxs {
    font-size: var(--text-xxxs);
    line-height: var(--tw-leading, var(--text-xxxs--line-height));
  }

  .text-\[\.8rem\] {
    font-size: .8rem;
  }

  .text-\[0\.6rem\] {
    font-size: .6rem;
  }

  .text-\[0\.65rem\] {
    font-size: .65rem;
  }

  .text-\[0\.75rem\] {
    font-size: .75rem;
  }

  .text-\[0\.875rem\] {
    font-size: .875rem;
  }

  .text-\[0px\] {
    font-size: 0;
  }

  .text-\[1em\] {
    font-size: 1em;
  }

  .text-\[9px\] {
    font-size: 9px;
  }

  .text-\[10px\] {
    font-size: 10px;
  }

  .text-\[11px\] {
    font-size: 11px;
  }

  .text-\[12px\] {
    font-size: 12px;
  }

  .text-\[14px\] {
    font-size: 14px;
  }

  .text-\[15px\] {
    font-size: 15px;
  }

  .text-\[16px\] {
    font-size: 16px;
  }

  .text-\[18px\] {
    font-size: 18px;
  }

  .text-\[22px\] {
    font-size: 22px;
  }

  .text-\[32px\] {
    font-size: 32px;
  }

  .leading-3 {
    --tw-leading: calc(var(--spacing) * 3);
    line-height: calc(var(--spacing) * 3);
  }

  .leading-4 {
    --tw-leading: calc(var(--spacing) * 4);
    line-height: calc(var(--spacing) * 4);
  }

  .leading-5 {
    --tw-leading: calc(var(--spacing) * 5);
    line-height: calc(var(--spacing) * 5);
  }

  .leading-8 {
    --tw-leading: calc(var(--spacing) * 8);
    line-height: calc(var(--spacing) * 8);
  }

  .leading-\[1\.21\] {
    --tw-leading: 1.21;
    line-height: 1.21;
  }

  .leading-\[1\.429\] {
    --tw-leading: 1.429;
    line-height: 1.429;
  }

  .leading-\[14px\] {
    --tw-leading: 14px;
    line-height: 14px;
  }

  .leading-\[normal\] {
    --tw-leading: normal;
    line-height: normal;
  }

  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }

  .leading-normal {
    --tw-leading: var(--leading-normal);
    line-height: var(--leading-normal);
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .leading-snug {
    --tw-leading: var(--leading-snug);
    line-height: var(--leading-snug);
  }

  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }

  .font-\[700\] {
    --tw-font-weight: 700;
    font-weight: 700;
  }

  .font-black {
    --tw-font-weight: var(--font-weight-black);
    font-weight: var(--font-weight-black);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-light {
    --tw-font-weight: var(--font-weight-light);
    font-weight: var(--font-weight-light);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: var(--tracking-wide);
  }

  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }

  .text-nowrap {
    text-wrap: nowrap;
  }

  .text-pretty {
    text-wrap: pretty;
  }

  .text-wrap {
    text-wrap: wrap;
  }

  .break-words {
    overflow-wrap: break-word;
  }

  .wrap-anywhere {
    overflow-wrap: anywhere;
  }

  .break-all {
    word-break: break-all;
  }

  .text-ellipsis {
    text-overflow: ellipsis;
  }

  .whitespace-normal {
    white-space: normal;
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .whitespace-pre-line {
    white-space: pre-line;
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .\!text-neutral-900 {
    color: var(--color-neutral-900) !important;
  }

  .\!text-red-500 {
    color: var(--color-red-500) !important;
  }

  .text-\[var\(--descrip-text\)\] {
    color: var(--descrip-text);
  }

  .text-amber-400 {
    color: var(--color-amber-400);
  }

  .text-azure-600 {
    color: var(--color-azure-600);
  }

  .text-base-background {
    color: var(--base-background);
  }

  .text-base-foreground, .text-base-foreground\/70 {
    color: var(--base-foreground);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-base-foreground\/70 {
      color: color-mix(in oklab, var(--base-foreground) 70%, transparent);
    }
  }

  .text-black {
    color: var(--color-black);
  }

  .text-blue-100 {
    color: var(--color-blue-100);
  }

  .text-blue-400 {
    color: var(--color-blue-400);
  }

  .text-blue-500 {
    color: var(--color-blue-500);
  }

  .text-blue-600 {
    color: var(--color-blue-600);
  }

  .text-blue-800 {
    color: var(--color-blue-800);
  }

  .text-button-icon {
    color: var(--button-icon);
  }

  .text-button-surface-contrast {
    color: var(--button-surface-contrast);
  }

  .text-comfy-input-foreground {
    color: var(--input-text);
  }

  .text-component-node-foreground {
    color: var(--component-node-foreground);
  }

  .text-component-node-foreground-secondary {
    color: var(--component-node-foreground-secondary);
  }

  .text-current {
    color: currentColor;
  }

  .text-cyan-400 {
    color: var(--color-cyan-400);
  }

  .text-danger-100 {
    color: var(--color-danger-100);
  }

  .text-danger-200 {
    color: var(--color-danger-200);
  }

  .text-destructive-background {
    color: var(--destructive-background);
  }

  .text-destructive-background-hover {
    color: var(--destructive-background-hover);
  }

  .text-error {
    color: var(--color-error);
  }

  .text-gold-500 {
    color: var(--color-gold-500);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-gray-900 {
    color: var(--color-gray-900);
  }

  .text-green-500 {
    color: var(--color-green-500);
  }

  .text-highlight {
    color: var(--color-highlight);
  }

  .text-inherit {
    color: inherit;
  }

  .text-jade-600 {
    color: var(--color-jade-600);
  }

  .text-modal-card-tag-foreground {
    color: var(--modal-card-tag-foreground);
  }

  .text-muted {
    color: var(--color-muted);
  }

  .text-muted-foreground, .text-muted-foreground\/70 {
    color: var(--muted-foreground);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-muted-foreground\/70 {
      color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
    }
  }

  .text-neutral-100 {
    color: var(--color-neutral-100);
  }

  .text-neutral-200 {
    color: var(--color-neutral-200);
  }

  .text-neutral-300 {
    color: var(--color-neutral-300);
  }

  .text-neutral-400 {
    color: var(--color-neutral-400);
  }

  .text-neutral-500 {
    color: var(--color-neutral-500);
  }

  .text-neutral-600 {
    color: var(--color-neutral-600);
  }

  .text-neutral-700 {
    color: var(--color-neutral-700);
  }

  .text-neutral-800 {
    color: var(--color-neutral-800);
  }

  .text-neutral-900 {
    color: var(--color-neutral-900);
  }

  .text-node-component-header {
    color: var(--node-component-header);
  }

  .text-node-component-header-icon {
    color: var(--node-component-header-icon);
  }

  .text-node-component-slot-text {
    color: var(--node-component-slot-text);
  }

  .text-node-component-tooltip {
    color: var(--node-component-tooltip);
  }

  .text-node-icon-disabled {
    color: var(--node-icon-disabled);
  }

  .text-node-stroke-error {
    color: var(--node-stroke-error);
  }

  .text-primary {
    color: var(--p-primary-color);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-primary {
      color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }

  .text-primary-400 {
    color: var(--p-primary-400);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-primary-400 {
      color: color-mix(in srgb, var(--p-primary-400) calc(100% * 1), transparent);
    }
  }

  .text-primary-background {
    color: var(--primary-background);
  }

  .text-red-400 {
    color: var(--color-red-400);
  }

  .text-red-500 {
    color: var(--color-red-500);
  }

  .text-sky-500 {
    color: var(--color-sky-500);
  }

  .text-slate-100 {
    color: var(--color-slate-100);
  }

  .text-smoke-400 {
    color: var(--color-smoke-400);
  }

  .text-smoke-500 {
    color: var(--color-smoke-500);
  }

  .text-smoke-600 {
    color: var(--color-smoke-600);
  }

  .text-success-background {
    color: var(--success-background);
  }

  .text-surface-500 {
    color: var(--p-surface-500);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-500 {
      color: color-mix(in srgb, var(--p-surface-500) calc(100% * 1), transparent);
    }
  }

  .text-surface-600 {
    color: var(--p-surface-600);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-600 {
      color: color-mix(in srgb, var(--p-surface-600) calc(100% * 1), transparent);
    }
  }

  .text-text-primary {
    color: var(--text-primary);
  }

  .text-text-secondary {
    color: var(--text-secondary);
  }

  .text-warning-background {
    color: var(--warning-background);
  }

  .text-white {
    color: var(--color-white);
  }

  .text-white\/90 {
    color: #ffffffe6;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-white\/90 {
      color: color-mix(in oklab, var(--color-white) 90%, transparent);
    }
  }

  .text-zinc-500\/20 {
    color: #71717b33;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .text-zinc-500\/20 {
      color: color-mix(in oklab, var(--color-zinc-500) 20%, transparent);
    }
  }

  .capitalize {
    text-transform: capitalize;
  }

  .lowercase {
    text-transform: lowercase;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

  .ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
  }

  .tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
  }

  .line-through {
    text-decoration-line: line-through;
  }

  .no-underline {
    text-decoration-line: none;
  }

  .underline {
    text-decoration-line: underline;
  }

  .opacity-0 {
    opacity: 0;
  }

  .opacity-15 {
    opacity: .15;
  }

  .opacity-25 {
    opacity: .25;
  }

  .opacity-30 {
    opacity: .3;
  }

  .opacity-40 {
    opacity: .4;
  }

  .opacity-50 {
    opacity: .5;
  }

  .opacity-60 {
    opacity: .6;
  }

  .opacity-65 {
    opacity: .65;
  }

  .opacity-75 {
    opacity: .75;
  }

  .opacity-80 {
    opacity: .8;
  }

  .opacity-90 {
    opacity: .9;
  }

  .opacity-100 {
    opacity: 1;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_0_0_9999px_rgba\(0\,0\,0\,0\.5\)\] {
    --tw-shadow: 0 0 0 9999px var(--tw-shadow-color, #00000080);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_0_12px_rgba\(0\,0\,0\,0\.1\)\] {
    --tw-shadow: 0 0 12px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_0_20px\] {
    --tw-shadow: 0 0 20px var(--tw-shadow-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_25px_80px_rgba\(5\,6\,12\,0\.45\)\] {
    --tw-shadow: 0 25px 80px var(--tw-shadow-color, #05060c73);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[1px_1px_8px_0_rgba\(0\,0\,0\,0\.4\)\] {
    --tw-shadow: 1px 1px 8px 0 var(--tw-shadow-color, #0006);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-interface {
    --tw-shadow: var(--interface-panel-box-shadow);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring-0 {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring-1 {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring-2 {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring-3 {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring-4 {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-blue-500 {
    --tw-shadow-color: oklch(62.3% .214 259.815);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .shadow-blue-500 {
      --tw-shadow-color: color-mix(in oklab, var(--color-blue-500) var(--tw-shadow-alpha), transparent);
    }
  }

  .ring-accent-background {
    --tw-ring-color: var(--accent-background);
  }

  .ring-base-foreground {
    --tw-ring-color: var(--base-foreground);
  }

  .ring-black\/25 {
    --tw-ring-color: #00000040;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .ring-black\/25 {
      --tw-ring-color: color-mix(in oklab, var(--color-black) 25%, transparent);
    }
  }

  .ring-component-node-widget-advanced {
    --tw-ring-color: var(--component-node-widget-advanced);
  }

  .ring-component-node-widget-background-highlighted {
    --tw-ring-color: var(--component-node-widget-background-highlighted);
  }

  .ring-component-node-widget-promoted {
    --tw-ring-color: var(--component-node-widget-promoted);
  }

  .ring-gray-500\/10 {
    --tw-ring-color: #6a72821a;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .ring-gray-500\/10 {
      --tw-ring-color: color-mix(in oklab, var(--color-gray-500) 10%, transparent);
    }
  }

  .ring-modal-card-border-highlighted {
    --tw-ring-color: var(--modal-card-border-highlighted);
  }

  .ring-node-component-ring {
    --tw-ring-color: var(--node-component-ring);
  }

  .ring-node-component-surface-selected {
    --tw-ring-color: var(--component-surface-selected);
  }

  .ring-node-stroke-error {
    --tw-ring-color: var(--node-stroke-error);
  }

  .ring-primary-500 {
    --tw-ring-color: var(--p-primary-500);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .ring-primary-500 {
      --tw-ring-color: color-mix(in srgb, var(--p-primary-500) calc(100% * 1), transparent);
    }
  }

  .ring-secondary-background {
    --tw-ring-color: var(--secondary-background);
  }

  .ring-white\/50 {
    --tw-ring-color: #ffffff80;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .ring-white\/50 {
      --tw-ring-color: color-mix(in oklab, var(--color-white) 50%, transparent);
    }
  }

  .ring-offset-base-background {
    --tw-ring-offset-color: var(--base-background);
  }

  .outline-hidden {
    --tw-outline-style: none;
    outline-style: none;
  }

  @media (forced-colors: active) {
    .outline-hidden {
      outline-offset: 2px;
      outline: 2px solid #0000;
    }
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .outline-0 {
    outline-style: var(--tw-outline-style);
    outline-width: 0;
  }

  .outline-1 {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .outline-2 {
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .outline-3 {
    outline-style: var(--tw-outline-style);
    outline-width: 3px;
  }

  .outline-4 {
    outline-style: var(--tw-outline-style);
    outline-width: 4px;
  }

  .outline-offset-\[-1px\] {
    outline-offset: -1px;
  }

  .\!outline-zinc-300\/10 {
    outline-color: #d4d4d81a !important;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .\!outline-zinc-300\/10 {
      outline-color: color-mix(in oklab, var(--color-zinc-300) 10%, transparent) !important;
    }
  }

  .outline-base-foreground {
    outline-color: var(--base-foreground);
  }

  .outline-comfy-menu-bg {
    outline-color: var(--comfy-menu-bg);
  }

  .outline-component-node-border {
    outline-color: var(--component-node-border);
  }

  .outline-interface-stroke {
    outline-color: var(--interface-stroke);
  }

  .outline-node-component-border {
    outline-color: var(--node-component-border);
  }

  .outline-node-component-outline {
    outline-color: var(--node-component-outline);
  }

  .outline-node-stroke-error {
    outline-color: var(--node-stroke-error);
  }

  .outline-node-stroke-executing {
    outline-color: var(--node-stroke-executing);
  }

  .outline-transparent {
    outline-color: #0000;
  }

  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .drop-shadow-\[1px_1px_8px_rgba\(0\,0\,0\,0\.4\)\] {
    --tw-drop-shadow-size: drop-shadow(1px 1px 8px var(--tw-drop-shadow-color, #0006));
    --tw-drop-shadow: var(--tw-drop-shadow-size);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .drop-shadow-\[var\(--interface-panel-drop-shadow\)\] {
    --tw-drop-shadow-size: drop-shadow(var(--interface-panel-drop-shadow));
    --tw-drop-shadow: var(--tw-drop-shadow-size);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-blur {
    --tw-backdrop-blur: blur(8px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-blur-\[2px\] {
    --tw-backdrop-blur: blur(2px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-blur-md {
    --tw-backdrop-blur: blur(var(--blur-md));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-blur-sm {
    --tw-backdrop-blur: blur(var(--blur-sm));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-blur-xl {
    --tw-backdrop-blur: blur(var(--blur-xl));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[color\,box-shadow\,background-color\] {
    transition-property: color, box-shadow, background-color;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[color\,box-shadow\] {
    transition-property: color, box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[grid-template-columns\] {
    transition-property: grid-template-columns;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[opacity\,width\] {
    transition-property: opacity, width;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[width\] {
    transition-property: width;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-none\! {
    transition-property: none !important;
  }

  .duration-100 {
    --tw-duration: .1s;
    transition-duration: .1s;
  }

  .duration-150 {
    --tw-duration: .15s;
    transition-duration: .15s;
  }

  .duration-200 {
    --tw-duration: .2s;
    transition-duration: .2s;
  }

  .duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s;
  }

  .duration-1000 {
    --tw-duration: 1s;
    transition-duration: 1s;
  }

  .ease-in {
    --tw-ease: var(--ease-in);
    transition-timing-function: var(--ease-in);
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }

  .\!will-change-auto {
    will-change: auto !important;
  }

  .will-change-\[transform\,opacity\] {
    will-change: transform, opacity;
  }

  .will-change-auto {
    will-change: auto;
  }

  .contain-layout {
    --tw-contain-layout: layout;
    contain: var(--tw-contain-size, ) var(--tw-contain-layout, ) var(--tw-contain-paint, ) var(--tw-contain-style, );
  }

  .contain-size {
    --tw-contain-size: size;
    contain: var(--tw-contain-size, ) var(--tw-contain-layout, ) var(--tw-contain-paint, ) var(--tw-contain-style, );
  }

  .contain-style {
    --tw-contain-style: style;
    contain: var(--tw-contain-size, ) var(--tw-contain-layout, ) var(--tw-contain-paint, ) var(--tw-contain-style, );
  }

  .\!outline-none {
    --tw-outline-style: none !important;
    outline-style: none !important;
  }

  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }

  .outline-solid {
    --tw-outline-style: solid;
    outline-style: solid;
  }

  .select-none {
    -webkit-user-select: none;
    user-select: none;
  }

  .\[--_marquee-end\:min\(calc\(-100\%\+100cqw\)\,0px\)\] {
    --_marquee-end: min(calc(-100% + 100cqw), 0px);
  }

  .\[-webkit-box-orient\:vertical\] {
    -webkit-box-orient: vertical;
  }

  .\[-webkit-line-clamp\:2\] {
    -webkit-line-clamp: 2;
  }

  .\[vite\:preloadError\] {
    vite: preloadError;
  }

  .bg-subscription-gradient {
    background: var(--color-subscription-button-gradient);
  }

  .paused {
    animation-play-state: paused;
  }

  .ring-inset {
    --tw-ring-inset: inset;
  }

  .running {
    animation-play-state: running;
  }

  :is(.\*\:text-destructive-background > *) {
    color: var(--destructive-background);
  }

  .not-active\:bg-interface-panel-selected-surface\!:not(:active) {
    background-color: var(--interface-panel-selected-surface) !important;
  }

  .not-disabled\:bg-component-node-widget-background:not(:disabled) {
    background-color: var(--component-node-widget-background);
  }

  .not-disabled\:text-component-node-foreground:not(:disabled) {
    color: var(--component-node-foreground);
  }

  @media not all and (min-width: 48rem) {
    .not-md\:hidden {
      display: none;
    }
  }

  .group-focus-within\:text-base-foreground:is(:where(.group):focus-within *) {
    color: var(--base-foreground);
  }

  @media (hover: hover) {
    .group-hover\:visible:is(:where(.group):hover *) {
      visibility: visible;
    }

    .group-hover\:hidden:is(:where(.group):hover *) {
      display: none;
    }

    .group-hover\:scale-105:is(:where(.group):hover *) {
      --tw-scale-x: 105%;
      --tw-scale-y: 105%;
      --tw-scale-z: 105%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .group-hover\:bg-interface-button-hover-surface:is(:where(.group):hover *) {
      background-color: var(--interface-button-hover-surface);
    }

    .group-hover\:bg-interface-stroke:is(:where(.group):hover *) {
      background-color: var(--interface-stroke);
    }

    .group-hover\:bg-transparent:is(:where(.group):hover *) {
      background-color: #0000;
    }

    .group-hover\:text-base-foreground:is(:where(.group):hover *) {
      color: var(--base-foreground);
    }

    .group-hover\:text-primary:is(:where(.group):hover *) {
      color: var(--p-primary-color);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .group-hover\:text-primary:is(:where(.group):hover *) {
        color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
      }
    }

    .group-hover\:opacity-100:is(:where(.group):hover *) {
      opacity: 1;
    }

    .group-hover\/item\:scale-108:is(:where(.group\/item):hover *) {
      --tw-scale-x: 108%;
      --tw-scale-y: 108%;
      --tw-scale-z: 108%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .group-hover\/node\:opacity-100:is(:where(.group\/node):hover *) {
      opacity: 1;
    }

    .group-hover\/slot\:scale-125:is(:where(.group\/slot):hover *) {
      --tw-scale-x: 125%;
      --tw-scale-y: 125%;
      --tw-scale-z: 125%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .group-hover\/slot\:\[--node-component-slot-dot-outline-opacity-mult\:5\]:is(:where(.group\/slot):hover *) {
      --node-component-slot-dot-outline-opacity-mult: 5;
    }
  }

  .group-focus\:text-base-foreground:is(:where(.group):focus *) {
    color: var(--base-foreground);
  }

  .group-active\/item\:scale-95:is(:where(.group\/item):active *) {
    --tw-scale-x: 95%;
    --tw-scale-y: 95%;
    --tw-scale-z: 95%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .group-has-\[\.subbutton\:hover\]\:text-muted-foreground:is(:where(.group):has(.subbutton:hover) *) {
    color: var(--muted-foreground);
  }

  .group-data-\[selected\=true\]\:scale-105:is(:where(.group)[data-selected="true"] *) {
    --tw-scale-x: 105%;
    --tw-scale-y: 105%;
    --tw-scale-z: 105%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .group-\[\.is-draggable\]\:bg-component-node-widget-background-highlighted:is(:where(.group).is-draggable *) {
    background-color: var(--component-node-widget-background-highlighted);
  }

  .placeholder\:text-muted-foreground::placeholder {
    color: var(--muted-foreground);
  }

  .placeholder\:text-neutral-500::placeholder {
    color: var(--color-neutral-500);
  }

  .before\:pointer-events-none:before {
    content: var(--tw-content);
    pointer-events: none;
  }

  .before\:absolute:before {
    content: var(--tw-content);
    position: absolute;
  }

  .before\:-inset-1:before {
    content: var(--tw-content);
    inset: calc(var(--spacing) * -1);
  }

  .before\:-inset-1\.5:before {
    content: var(--tw-content);
    inset: calc(var(--spacing) * -1.5);
  }

  .before\:-inset-2:before {
    content: var(--tw-content);
    inset: calc(var(--spacing) * -2);
  }

  .before\:inset-0:before {
    content: var(--tw-content);
    inset: calc(var(--spacing) * 0);
  }

  .before\:-ml-50:before {
    content: var(--tw-content);
    margin-left: calc(var(--spacing) * -50);
  }

  .before\:block:before {
    content: var(--tw-content);
    display: block;
  }

  .before\:hidden:before {
    content: var(--tw-content);
    display: none;
  }

  .before\:size-4:before {
    content: var(--tw-content);
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }

  .before\:h-full:before {
    content: var(--tw-content);
    height: 100%;
  }

  .before\:w-50:before {
    content: var(--tw-content);
    width: calc(var(--spacing) * 50);
  }

  .before\:rounded-2xl:before {
    content: var(--tw-content);
    border-radius: var(--radius-2xl);
  }

  .before\:rounded-full:before {
    content: var(--tw-content);
    border-radius: 3.40282e38px;
  }

  .before\:rounded-none:before {
    content: var(--tw-content);
    border-radius: 0;
  }

  .before\:rounded-tl-2xl:before {
    content: var(--tw-content);
    border-top-left-radius: var(--radius-2xl);
  }

  .before\:rounded-tr-none:before {
    content: var(--tw-content);
    border-top-right-radius: 0;
  }

  .before\:rounded-br-2xl:before {
    content: var(--tw-content);
    border-bottom-right-radius: var(--radius-2xl);
  }

  .before\:rounded-bl-none:before {
    content: var(--tw-content);
    border-bottom-left-radius: 0;
  }

  .before\:bg-bypass\/60:before {
    content: var(--tw-content);
    background-color: #6a246a99;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .before\:bg-bypass\/60:before {
      background-color: color-mix(in oklab, var(--color-bypass) 60%, transparent);
    }
  }

  .before\:bg-transparent:before {
    content: var(--tw-content);
    background-color: #0000;
  }

  .before\:ring-2:before {
    content: var(--tw-content);
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .before\:ring-error:before {
    content: var(--tw-content);
    --tw-ring-color: var(--color-error);
  }

  .before\:ring-offset-0:before {
    content: var(--tw-content);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .after\:absolute:after {
    content: var(--tw-content);
    position: absolute;
  }

  .after\:inset-y-0:after {
    content: var(--tw-content);
    inset-block: calc(var(--spacing) * 0);
  }

  .after\:hidden:after {
    content: var(--tw-content);
    display: none;
  }

  .after\:w-5\/2:after {
    content: var(--tw-content);
    width: 250%;
  }

  .first\:mr-auto:first-child {
    margin-right: auto;
  }

  .first\:border-none:first-child {
    --tw-border-style: none;
    border-style: none;
  }

  .first\:pl-2:first-child {
    padding-left: calc(var(--spacing) * 2);
  }

  .last\:pr-2:last-child {
    padding-right: calc(var(--spacing) * 2);
  }

  .empty\:hidden:empty {
    display: none;
  }

  .focus-within\:border-node-component-border:focus-within {
    border-color: var(--node-component-border);
  }

  .focus-within\:bg-modal-card-background-hovered:focus-within {
    background-color: var(--modal-card-background-hovered);
  }

  .focus-within\:ring:focus-within {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-within\:ring-0:focus-within {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-within\:ring-1:focus-within {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-within\:ring-component-node-widget-background-highlighted:focus-within {
    --tw-ring-color: var(--component-node-widget-background-highlighted);
  }

  .focus-within\:ring-component-node-widget-background-highlighted\/80:focus-within {
    --tw-ring-color: color-mix(in oklab, var(--component-node-widget-background-highlighted) 80%, transparent);
  }

  .focus-within\:outline-component-node-widget-background-highlighted\/80:focus-within {
    outline-color: color-mix(in oklab, var(--component-node-widget-background-highlighted) 80%, transparent);
  }

  @media (hover: hover) {
    .hover\:scale-102:hover {
      --tw-scale-x: 102%;
      --tw-scale-y: 102%;
      --tw-scale-z: 102%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .hover\:scale-108:hover {
      --tw-scale-x: 108%;
      --tw-scale-y: 108%;
      --tw-scale-z: 108%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }

    .hover\:rounded-lg:hover {
      border-radius: var(--radius-lg);
    }

    .hover\:rounded-lg\!:hover {
      border-radius: var(--radius-lg) !important;
    }

    .hover\:border-base-foreground\/60:hover {
      border-color: var(--base-foreground);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-base-foreground\/60:hover {
        border-color: color-mix(in oklab, var(--base-foreground) 60%, transparent);
      }
    }

    .hover\:border-border-subtle\/50:hover {
      border-color: var(--border-subtle);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-border-subtle\/50:hover {
        border-color: color-mix(in oklab, var(--border-subtle) 50%, transparent);
      }
    }

    .hover\:border-interface-stroke:hover {
      border-color: var(--interface-stroke);
    }

    .hover\:border-neutral-400:hover {
      border-color: var(--color-neutral-400);
    }

    .hover\:border-neutral-500:hover {
      border-color: var(--color-neutral-500);
    }

    .hover\:border-secondary-background-hover:hover {
      border-color: var(--secondary-background-hover);
    }

    .hover\:bg-\[var\(--color-accent-blue\,\#0B8CE9\)\]\/90:hover {
      background-color: var(--color-accent-blue, #0b8ce9);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-\[var\(--color-accent-blue\,\#0B8CE9\)\]\/90:hover {
        background-color: color-mix(in oklab, var(--color-accent-blue, #0b8ce9) 90%, transparent);
      }
    }

    .hover\:bg-base-background:hover {
      background-color: var(--base-background);
    }

    .hover\:bg-base-foreground\/20:hover {
      background-color: var(--base-foreground);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-base-foreground\/20:hover {
        background-color: color-mix(in oklab, var(--base-foreground) 20%, transparent);
      }
    }

    .hover\:bg-base-foreground\/80:hover {
      background-color: var(--base-foreground);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-base-foreground\/80:hover {
        background-color: color-mix(in oklab, var(--base-foreground) 80%, transparent);
      }
    }

    .hover\:bg-blue-700:hover {
      background-color: var(--color-blue-700);
    }

    .hover\:bg-brand-yellow\/90:hover {
      background-color: var(--brand-yellow);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-brand-yellow\/90:hover {
        background-color: color-mix(in oklab, var(--brand-yellow) 90%, transparent);
      }
    }

    .hover\:bg-button-hover-surface:hover {
      background-color: var(--button-hover-surface);
    }

    .hover\:bg-comfy-input:hover {
      background-color: var(--comfy-input-bg);
    }

    .hover\:bg-comfy-menu-bg:hover {
      background-color: var(--comfy-menu-bg);
    }

    .hover\:bg-component-node-widget-background-hovered:hover {
      background-color: var(--component-node-widget-background-hovered);
    }

    .hover\:bg-danger-200\/80:hover {
      background-color: #d62952cc;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-danger-200\/80:hover {
        background-color: color-mix(in oklab, var(--color-danger-200) 80%, transparent);
      }
    }

    .hover\:bg-destructive-background-hover:hover {
      background-color: var(--destructive-background-hover);
    }

    .hover\:bg-destructive-background\/10:hover {
      background-color: var(--destructive-background);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-destructive-background\/10:hover {
        background-color: color-mix(in oklab, var(--destructive-background) 10%, transparent);
      }
    }

    .hover\:bg-green-700:hover {
      background-color: var(--color-green-700);
    }

    .hover\:bg-highlight:hover {
      background-color: var(--color-highlight);
    }

    .hover\:bg-interface-button-hover-surface:hover {
      background-color: var(--interface-button-hover-surface);
    }

    .hover\:bg-interface-button-hover-surface\!:hover {
      background-color: var(--interface-button-hover-surface) !important;
    }

    .hover\:bg-interface-menu-component-surface-hovered:hover {
      background-color: var(--interface-menu-component-surface-hovered);
    }

    .hover\:bg-interface-menu-component-surface-selected:hover {
      background-color: var(--interface-menu-component-surface-selected);
    }

    .hover\:bg-interface-menu-component-surface-selected\/50:hover {
      background-color: color-mix(in oklab, var(--interface-menu-component-surface-selected) 50%, transparent);
    }

    .hover\:bg-inverted-background-hover:hover {
      background-color: var(--inverted-background-hover);
    }

    .hover\:bg-modal-card-background-hovered:hover, .hover\:bg-modal-card-background-hovered\/20:hover {
      background-color: var(--modal-card-background-hovered);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-modal-card-background-hovered\/20:hover {
        background-color: color-mix(in oklab, var(--modal-card-background-hovered) 20%, transparent);
      }
    }

    .hover\:bg-neutral-100:hover {
      background-color: var(--color-neutral-100);
    }

    .hover\:bg-neutral-600:hover {
      background-color: var(--color-neutral-600);
    }

    .hover\:bg-neutral-700:hover {
      background-color: var(--color-neutral-700);
    }

    .hover\:bg-neutral-800\/80:hover {
      background-color: #262626cc;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-neutral-800\/80:hover {
        background-color: color-mix(in oklab, var(--color-neutral-800) 80%, transparent);
      }
    }

    .hover\:bg-node-component-surface-hovered:hover {
      background-color: var(--node-component-surface-hovered);
    }

    .hover\:bg-orange-700:hover {
      background-color: var(--color-orange-700);
    }

    .hover\:bg-primary-background-hover:hover, .hover\:bg-primary-background-hover\/30:hover {
      background-color: var(--primary-background-hover);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-primary-background-hover\/30:hover {
        background-color: color-mix(in oklab, var(--primary-background-hover) 30%, transparent);
      }
    }

    .hover\:bg-purple-700:hover {
      background-color: var(--color-purple-700);
    }

    .hover\:bg-secondary-background:hover {
      background-color: var(--secondary-background);
    }

    .hover\:bg-secondary-background-hover:hover {
      background-color: var(--secondary-background-hover);
    }

    .hover\:bg-secondary-background-selected:hover {
      background-color: var(--secondary-background-selected);
    }

    .hover\:bg-transparent:hover {
      background-color: #0000;
    }

    .hover\:bg-white\/10:hover {
      background-color: #ffffff1a;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-white\/10:hover {
        background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
      }
    }

    .hover\:bg-white\/20:hover {
      background-color: #fff3;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-white\/20:hover {
        background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
      }
    }

    .hover\:bg-white\/80:hover {
      background-color: #fffc;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-white\/80:hover {
        background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
      }
    }

    .hover\:bg-white\/90:hover {
      background-color: #ffffffe6;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-white\/90:hover {
        background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
      }
    }

    .hover\:bg-none:hover {
      background-image: none;
    }

    .hover\:bg-highlight:hover {
      background: var(--p-highlight-background);
      color: var(--p-highlight-color);
    }

    .hover\:text-azure-400:hover {
      color: var(--color-azure-400);
    }

    .hover\:text-azure-600:hover {
      color: var(--color-azure-600);
    }

    .hover\:text-base-foreground:hover, .hover\:text-base-foreground\/60:hover {
      color: var(--base-foreground);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-base-foreground\/60:hover {
        color: color-mix(in oklab, var(--base-foreground) 60%, transparent);
      }
    }

    .hover\:text-blue-300:hover {
      color: var(--color-blue-300);
    }

    .hover\:text-neutral-200:hover {
      color: var(--color-neutral-200);
    }

    .hover\:text-neutral-300:hover {
      color: var(--color-neutral-300);
    }

    .hover\:text-neutral-700:hover {
      color: var(--color-neutral-700);
    }

    .hover\:text-primary:hover {
      color: var(--p-primary-color);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-primary:hover {
        color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
      }
    }

    .hover\:underline:hover {
      text-decoration-line: underline;
    }

    .hover\:opacity-80:hover {
      opacity: .8;
    }

    .hover\:opacity-90:hover {
      opacity: .9;
    }

    .hover\:opacity-100:hover {
      opacity: 1;
    }

    .hover\:ring-1:hover {
      --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:ring-2:hover {
      --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:ring-7:hover {
      --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(7px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }

    .hover\:ring-black\/40:hover {
      --tw-ring-color: #0006;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:ring-black\/40:hover {
        --tw-ring-color: color-mix(in oklab, var(--color-black) 40%, transparent);
      }
    }

    .hover\:outline-component-node-widget-background-highlighted:hover {
      outline-color: var(--component-node-widget-background-highlighted);
    }

    .hover\:outline-component-node-widget-background-highlighted\/80:hover {
      outline-color: color-mix(in oklab, var(--component-node-widget-background-highlighted) 80%, transparent);
    }
  }

  .focus\:border-node-component-border:focus {
    border-color: var(--node-component-border);
  }

  .focus\:bg-button-hover-surface:focus {
    background-color: var(--button-hover-surface);
  }

  .focus\:bg-component-node-widget-background:focus {
    background-color: var(--component-node-widget-background);
  }

  .focus\:bg-danger-200\/80:focus {
    background-color: #d62952cc;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus\:bg-danger-200\/80:focus {
      background-color: color-mix(in oklab, var(--color-danger-200) 80%, transparent);
    }
  }

  .focus\:bg-highlight:focus {
    background-color: var(--color-highlight);
  }

  .focus\:bg-secondary-background:focus {
    background-color: var(--secondary-background);
  }

  .focus\:bg-secondary-background-hover:focus {
    background-color: var(--secondary-background-hover);
  }

  .focus\:bg-secondary-background-selected:focus {
    background-color: var(--secondary-background-selected);
  }

  .focus\:bg-highlight:focus {
    background: var(--p-highlight-background);
    color: var(--p-highlight-color);
  }

  .focus\:ring:focus, .focus\:ring-1:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:outline:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .focus\:outline-0:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 0;
  }

  .focus\:outline-node-component-border:focus {
    outline-color: var(--node-component-border);
  }

  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }

  .focus\:outline-solid:focus {
    --tw-outline-style: solid;
    outline-style: solid;
  }

  .focus-visible\:ring-1:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-2:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-black\/40:focus-visible {
    --tw-ring-color: #0006;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-black\/40:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-black) 40%, transparent);
    }
  }

  .focus-visible\:ring-brand-yellow\/60:focus-visible {
    --tw-ring-color: var(--brand-yellow);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-brand-yellow\/60:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--brand-yellow) 60%, transparent);
    }
  }

  .focus-visible\:ring-button-surface-contrast:focus-visible {
    --tw-ring-color: var(--button-surface-contrast);
  }

  .focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .focus-visible\:ring-offset-neutral-900:focus-visible {
    --tw-ring-offset-color: var(--color-neutral-900);
  }

  .focus-visible\:ring-offset-transparent:focus-visible {
    --tw-ring-offset-color: transparent;
  }

  .focus-visible\:ring-offset-white:focus-visible {
    --tw-ring-offset-color: var(--color-white);
  }

  .focus-visible\:outline-hidden:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  @media (forced-colors: active) {
    .focus-visible\:outline-hidden:focus-visible {
      outline-offset: 2px;
      outline: 2px solid #0000;
    }
  }

  .focus-visible\:outline:focus-visible {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .focus-visible\:outline-2:focus-visible {
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .focus-visible\:outline-node-component-outline:focus-visible {
    outline-color: var(--node-component-outline);
  }

  .focus-visible\:outline-white\/40:focus-visible {
    outline-color: #fff6;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:outline-white\/40:focus-visible {
      outline-color: color-mix(in oklab, var(--color-white) 40%, transparent);
    }
  }

  .focus-visible\:outline-none:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  .focus-visible\:ring-inset:focus-visible {
    --tw-ring-inset: inset;
  }

  .active\:scale-90:active {
    --tw-scale-x: 90%;
    --tw-scale-y: 90%;
    --tw-scale-z: 90%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .active\:scale-95:active {
    --tw-scale-x: 95%;
    --tw-scale-y: 95%;
    --tw-scale-z: 95%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .active\:scale-98:active {
    --tw-scale-x: 98%;
    --tw-scale-y: 98%;
    --tw-scale-z: 98%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .active\:bg-node-component-surface-selected:active {
    background-color: var(--component-surface-selected);
  }

  .disabled\:pointer-events-none:disabled {
    pointer-events: none;
  }

  .disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
  }

  .disabled\:bg-node-component-disabled:disabled {
    background-color: var(--node-component-disabled);
  }

  .disabled\:text-node-icon-disabled:disabled {
    color: var(--node-icon-disabled);
  }

  .disabled\:opacity-30:disabled {
    opacity: .3;
  }

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  .disabled\:opacity-60:disabled {
    opacity: .6;
  }

  :is(.\*\:has-\[textarea\]\:h-50 > *):has(:is(textarea)) {
    height: calc(var(--spacing) * 50);
  }

  .data-\[disabled\]\:pointer-events-none[data-disabled] {
    pointer-events: none;
  }

  .data-\[disabled\]\:w-0[data-disabled] {
    width: calc(var(--spacing) * 0);
  }

  .data-\[disabled\]\:opacity-0[data-disabled] {
    opacity: 0;
  }

  .data-\[disabled\]\:opacity-50[data-disabled] {
    opacity: .5;
  }

  .data-\[orientation\=horizontal\]\:h-0\.5[data-orientation="horizontal"] {
    height: calc(var(--spacing) * .5);
  }

  .data-\[orientation\=horizontal\]\:h-full[data-orientation="horizontal"] {
    height: 100%;
  }

  .data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] {
    width: 100%;
  }

  .data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] {
    height: 100%;
  }

  .data-\[orientation\=vertical\]\:min-h-44[data-orientation="vertical"] {
    min-height: calc(var(--spacing) * 44);
  }

  .data-\[orientation\=vertical\]\:w-0\.5[data-orientation="vertical"] {
    width: calc(var(--spacing) * .5);
  }

  .data-\[orientation\=vertical\]\:w-auto[data-orientation="vertical"] {
    width: auto;
  }

  .data-\[orientation\=vertical\]\:w-full[data-orientation="vertical"] {
    width: 100%;
  }

  .data-\[orientation\=vertical\]\:flex-col[data-orientation="vertical"] {
    flex-direction: column;
  }

  .data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
    color: var(--muted-foreground);
  }

  .data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
    --tw-translate-y: calc(var(--spacing) * 1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
    --tw-enter-translate-y: calc(var(--spacing) * 2 * -1);
  }

  .data-\[side\=left\]\:-translate-x-1[data-side="left"] {
    --tw-translate-x: calc(var(--spacing) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
    --tw-enter-translate-x: calc(var(--spacing) * 2);
  }

  .data-\[side\=right\]\:translate-x-1[data-side="right"] {
    --tw-translate-x: calc(var(--spacing) * 1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
    --tw-enter-translate-x: calc(var(--spacing) * 2 * -1);
  }

  .data-\[side\=top\]\:-translate-y-1[data-side="top"] {
    --tw-translate-y: calc(var(--spacing) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
    --tw-enter-translate-y: calc(var(--spacing) * 2);
  }

  .data-\[state\=active\]\:ring-2[data-state="active"] {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .data-\[state\=active\]\:ring-base-foreground[data-state="active"] {
    --tw-ring-color: var(--base-foreground);
  }

  .data-\[state\=active\]\:ring-primary[data-state="active"] {
    --tw-ring-color: var(--p-primary-color);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .data-\[state\=active\]\:ring-primary[data-state="active"] {
      --tw-ring-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }

  .data-\[state\=active\]\:ring-offset-1[data-state="active"] {
    --tw-ring-offset-width: 1px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  .data-\[state\=checked\]\:bg-secondary-background-selected[data-state="checked"] {
    background-color: var(--secondary-background-selected);
  }

  @media (hover: hover) {
    .data-\[state\=checked\]\:hover\:bg-secondary-background-selected[data-state="checked"]:hover {
      background-color: var(--secondary-background-selected);
    }
  }

  .data-\[state\=closed\]\:animate-collapsible-up[data-state="closed"] {
    animation: collapsible-up var(--tw-animation-duration, var(--tw-duration, .2s)) var(--tw-ease, ease-out) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
  }

  .data-\[state\=closed\]\:animate-out[data-state="closed"] {
    animation: exit var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
  }

  .data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
    --tw-exit-opacity: 0;
  }

  .data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
    --tw-exit-scale: .95;
  }

  .data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
    --p-leave-opacity: 0;
  }

  .data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
    --p-leave-scale: .95;
  }

  .data-\[state\=on\]\:bg-interface-menu-component-surface-selected[data-state="on"] {
    background-color: var(--interface-menu-component-surface-selected);
  }

  .data-\[state\=on\]\:text-text-primary[data-state="on"] {
    color: var(--text-primary);
  }

  .data-\[state\=open\]\:animate-collapsible-down[data-state="open"] {
    animation: collapsible-down var(--tw-animation-duration, var(--tw-duration, .2s)) var(--tw-ease, ease-out) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
  }

  .data-\[state\=open\]\:animate-in[data-state="open"] {
    animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
  }

  .data-\[state\=open\]\:fade-in-0[data-state="open"] {
    --tw-enter-opacity: 0;
  }

  .data-\[state\=open\]\:zoom-in-95[data-state="open"] {
    --tw-enter-scale: .95;
  }

  .data-\[state\=open\]\:fade-in-0[data-state="open"] {
    --p-enter-opacity: 0;
  }

  .data-\[state\=open\]\:zoom-in-95[data-state="open"] {
    --p-enter-scale: .95;
  }

  @media (prefers-reduced-motion: no-preference) {
    .motion-safe\:w-0 {
      width: calc(var(--spacing) * 0);
    }

    .motion-safe\:opacity-0 {
      opacity: 0;
    }

    .motion-safe\:group-focus-within\/sidebar-tab\:w-auto:is(:where(.group\/sidebar-tab):focus-within *) {
      width: auto;
    }

    .motion-safe\:group-focus-within\/sidebar-tab\:opacity-100:is(:where(.group\/sidebar-tab):focus-within *) {
      opacity: 1;
    }

    @media (hover: hover) {
      .motion-safe\:group-hover\:\[animation\:marquee-scroll_3s_linear_infinite_alternate\]:is(:where(.group):hover *) {
        animation: 3s linear infinite alternate marquee-scroll;
      }

      .motion-safe\:group-hover\:\[mask-image\:none\]:is(:where(.group):hover *) {
        -webkit-mask-image: none;
        mask-image: none;
      }

      .motion-safe\:group-hover\/sidebar-tab\:w-auto:is(:where(.group\/sidebar-tab):hover *) {
        width: auto;
      }

      .motion-safe\:group-hover\/sidebar-tab\:opacity-100:is(:where(.group\/sidebar-tab):hover *), .motion-safe\:group-hover\/tree-node\:opacity-100:is(:where(.group\/tree-node):hover *) {
        opacity: 1;
      }
    }
  }

  @media not all and (min-width: 48rem) {
    .max-md\:w-\[95\%\] {
      width: 95%;
    }

    .max-md\:min-w-0 {
      min-width: calc(var(--spacing) * 0);
    }
  }

  @media not all and (min-width: 40rem) {
    .max-sm\:hidden {
      display: none;
    }
  }

  @media (min-width: 1450px) {
    .min-\[1450px\]\:max-w-\[1724px\] {
      max-width: 1724px;
    }
  }

  @media (min-width: 48rem) {
    .md\:z-10 {
      z-index: 10;
    }

    .md\:mx-15 {
      margin-inline: calc(var(--spacing) * 15);
    }

    .md\:ml-auto {
      margin-left: auto;
    }

    .md\:inline {
      display: inline;
    }

    .md\:h-full {
      height: 100%;
    }

    .md\:max-h-none {
      max-height: none;
    }

    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:flex-row {
      flex-direction: row;
    }

    .md\:items-center {
      align-items: center;
    }

    .md\:justify-between {
      justify-content: space-between;
    }

    .md\:gap-2 {
      gap: calc(var(--spacing) * 2);
    }

    .md\:gap-24 {
      gap: calc(var(--spacing) * 24);
    }

    .md\:overflow-y-auto {
      overflow-y: auto;
    }

    .md\:overflow-y-visible {
      overflow-y: visible;
    }

    .md\:p-3 {
      padding: calc(var(--spacing) * 3);
    }

    .md\:p-16 {
      padding: calc(var(--spacing) * 16);
    }

    .md\:contain-size {
      --tw-contain-size: size;
      contain: var(--tw-contain-size, ) var(--tw-contain-layout, ) var(--tw-contain-paint, ) var(--tw-contain-style, );
    }
  }

  @media (min-width: 64rem) {
    .lg\:block {
      display: block;
    }

    .lg\:w-96 {
      width: calc(var(--spacing) * 96);
    }

    .lg\:w-\[500px\] {
      width: 500px;
    }

    .lg\:flex-row {
      flex-direction: row;
    }

    .lg\:items-stretch {
      align-items: stretch;
    }

    .lg\:text-2xl {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }

  @media (min-width: 80rem) {
    .xl\:flex-row {
      flex-direction: row;
    }
  }

  @media (min-width: 96rem) {
    .\32 xl\:max-w-\[1600px\] {
      max-width: 1600px;
    }

    .\32 xl\:max-w-full {
      max-width: 100%;
    }

    .\32 xl\:p-16 {
      padding: calc(var(--spacing) * 16);
    }

    .\32 xl\:px-4 {
      padding-inline: calc(var(--spacing) * 4);
    }
  }

  @media (prefers-color-scheme: dark) {
    .dark\:bg-gray-800 {
      background-color: var(--color-gray-800);
    }
  }

  @media (hover: none) {
    .touch\:w-auto {
      width: auto;
    }

    .touch\:opacity-100 {
      opacity: 1;
    }
  }

  .\[\&_\*\]\:\!font-inter * {
    font-family: var(--font-inter) !important;
  }

  .\[\&_\.p-popover-arrow\]\:hidden .p-popover-arrow {
    display: none;
  }

  .\[\&_svg\]\:pointer-events-none svg {
    pointer-events: none;
  }

  .\[\&_svg\]\:size-4 svg {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }

  .\[\&_svg\]\:shrink-0 svg {
    flex-shrink: 0;
  }

  .\[\&\.is-draggable\]\:cursor-grabbing.is-draggable {
    cursor: grabbing;
  }

  .\[\&\.is-draggable\]\:opacity-70.is-draggable {
    opacity: .7;
  }

  .\[\&\.is-draggable\]\:outline-4.is-draggable {
    outline-style: var(--tw-outline-style);
    outline-width: 4px;
  }

  .\[\&\.is-draggable\]\:outline-offset-0.is-draggable {
    outline-offset: 0px;
  }

  :is(.\*\*\:\[\.col-span-2\]\:grid-cols-1 *).col-span-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .\[\.floating-sidebar\]\:-mr-2.floating-sidebar {
    margin-right: calc(var(--spacing) * -2);
  }

  :is(.\*\:\[\.min-w-0\]\:w-24 > *).min-w-0 {
    width: calc(var(--spacing) * 24);
  }

  .\[\&\:not\(\:has\(\*\>\*\:not\(\:empty\)\)\)\]\:hidden:not(:has(* > :not(:empty))) {
    display: none;
  }

  .\[\&\>\*\]\:col-span-full > * {
    grid-column: 1 / -1;
  }

  .\[\&\>\*\]\:row-span-full > * {
    grid-row: 1 / -1;
  }

  .\[\&\>\*\]\:flex-1 > * {
    flex: 1;
  }

  .\[\&\>span\]\:truncate > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

@font-face {
  font-family: Inter;
  src: url("/fonts/inter-latin-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/inter-latin-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@property --tw-animation-delay {
  syntax: "*";
  inherits: false;
  initial-value: 0s;
}

@property --tw-animation-direction {
  syntax: "*";
  inherits: false;
  initial-value: normal;
}

@property --tw-animation-duration {
  syntax: "*";
  inherits: false
}

@property --tw-animation-fill-mode {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --tw-animation-iteration-count {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-exit-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-exit-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

:root {
  --fg-color: #000;
  --bg-color: #fff;
  --comfy-menu-bg: #353535;
  --comfy-menu-secondary-bg: #292929;
  --comfy-topbar-height: 2.5rem;
  --comfy-input-bg: #222;
  --input-text: #ddd;
  --descrip-text: #999;
  --drag-text: #ccc;
  --error-text: #f44;
  --border-color: #4e4e4e;
  --tr-even-bg-color: #222;
  --tr-odd-bg-color: #353535;
  --primary-bg: #236692;
  --primary-fg: #fff;
  --primary-hover-bg: #3485bb;
  --primary-hover-fg: #fff;
  --content-bg: #e0e0e0;
  --content-fg: #000;
  --content-hover-bg: #adadad;
  --content-hover-fg: #000;
  --button-surface: var(--color-white);
  --button-surface-contrast: var(--color-black);
  --subscription-button-gradient: linear-gradient(315deg, #69e6ff26 0%, #6349e980 100%), radial-gradient(70.71% 70.71% at 50% 50%, #3e63de26 0.01%, #42007b80 100%), linear-gradient(92deg, #d000ff 0.38%, #b009fe 37.07%, #3e1ffc 65.17%, #009dff 103.86%), var(--color-button-surface, #2d2e32);
  --code-text-color: #007aff;
  --code-bg-color: #60a5fa33;
  --code-block-bg-color: #3c3c3c1f;
  --accent-primary: var(--color-charcoal-700);
  --backdrop: var(--color-white);
  --button-hover-surface: var(--color-smoke-200);
  --button-active-surface: var(--color-smoke-400);
  --button-icon: var(--color-smoke-600);
  --dialog-surface: var(--color-neutral-200);
  --interface-menu-component-surface-hovered: var(--color-smoke-200);
  --interface-menu-component-surface-selected: var(--color-smoke-400);
  --interface-menu-keybind-surface-default: var(--color-smoke-500);
  --interface-menu-surface: var(--color-white);
  --interface-menu-stroke: var(--color-smoke-600);
  --interface-panel-surface: var(--color-white);
  --interface-stroke: var(--color-smoke-300);
  --nav-background: var(--color-white);
  --node-border: var(--color-smoke-300);
  --node-component-border: var(--color-smoke-400);
  --node-component-disabled: var(--color-alpha-ash-500-20);
  --node-component-executing: var(--color-blue-500);
  --node-component-header: var(--fg-color);
  --node-component-header-icon: var(--color-ash-800);
  --node-component-header-surface: var(--color-smoke-400);
  --node-component-outline: var(--color-black);
  --node-component-ring: rgb(from var(--color-smoke-500) r g b / 50%);
  --node-component-slot-dot-outline-opacity-mult: 1;
  --node-component-slot-dot-outline-opacity: 5%;
  --node-component-slot-dot-outline: var(--color-black);
  --node-component-slot-text: var(--color-ash-800);
  --node-component-surface-highlight: var(--color-ash-500);
  --node-component-surface-hovered: var(--color-smoke-200);
  --node-component-surface-selected: var(--color-charcoal-200);
  --node-component-surface: var(--color-white);
  --node-component-tooltip: var(--color-charcoal-700);
  --node-component-tooltip-border: var(--color-sand-100);
  --node-component-tooltip-surface: var(--color-white);
  --node-component-widget-input: var(--fg-color);
  --node-component-widget-input-surface: rgb(from var(--color-zinc-500) r g b / 10%);
  --node-component-widget-skeleton-surface: var(--color-zinc-300);
  --node-divider: var(--color-sand-100);
  --node-icon-disabled: var(--color-alpha-smoke-500-50);
  --node-stroke: var(--color-smoke-400);
  --node-stroke-selected: var(--color-accent-primary);
  --node-stroke-error: var(--color-error);
  --node-stroke-executing: var(--color-azure-600);
  --text-secondary: var(--color-ash-500);
  --text-primary: var(--color-charcoal-700);
  --input-surface: #00000026;
  --muted-foreground: var(--color-charcoal-200);
  --base-foreground: var(--color-charcoal-800);
  --brand-yellow: var(--color-electric-400);
  --brand-blue: var(--color-sapphire-700);
  --secondary-background: var(--color-smoke-200);
  --secondary-background-hover: var(--color-smoke-400);
  --secondary-background-selected: var(--color-smoke-600);
  --base-background: var(--color-white);
  --primary-background: var(--color-azure-400);
  --primary-background-hover: var(--color-cobalt-800);
  --destructive-background: var(--color-coral-500);
  --destructive-background-hover: var(--color-coral-600);
  --inverted-background-hover: var(--color-charcoal-600);
  --warning-background: var(--color-gold-400);
  --warning-background-hover: var(--color-gold-500);
  --success-background: var(--color-jade-600);
  --border-default: var(--color-smoke-600);
  --border-subtle: var(--color-smoke-400);
  --muted-background: var(--color-smoke-700);
  --accent-background: var(--color-smoke-800);
  --component-node-background: var(--color-white);
  --component-node-border: var(--color-border-default);
  --component-node-foreground: var(--base-foreground);
  --component-node-foreground-secondary: var(--color-muted-foreground);
  --component-node-widget-background: var(--secondary-background);
  --component-node-widget-background-hovered: var(--secondary-background-hover);
  --component-node-widget-background-selected: var(--secondary-background-selected);
  --component-node-widget-background-disabled: var(--color-alpha-ash-500-20);
  --component-node-widget-background-highlighted: var(--color-ash-500);
  --component-node-widget-promoted: var(--color-purple-700);
  --component-node-widget-advanced: var(--color-azure-400);
  --palette-contrast-mix-color: #fff;
  --palette-interface-panel-surface: var(--comfy-menu-bg);
  --palette-interface-stroke: var(--interface-panel-surface);
}

@supports (color: color-mix(in lab, red, red)) {
  :root {
    --palette-interface-stroke: color-mix(in srgb, var(--interface-panel-surface) 75.5%, var(--contrast-mix-color));
  }
}

:root {
  --palette-interface-panel-box-shadow: 1px 1px 8px 0 #0006;
  --palette-interface-panel-drop-shadow: 1px 1px 4px #0006;
  --palette-interface-panel-hover-surface: var(--interface-panel-surface);
}

@supports (color: color-mix(in lab, red, red)) {
  :root {
    --palette-interface-panel-hover-surface: color-mix(in srgb, var(--interface-panel-surface) 92.5%, var(--contrast-mix-color));
  }
}

:root {
  --palette-interface-panel-selected-surface: var(--interface-panel-surface);
}

@supports (color: color-mix(in lab, red, red)) {
  :root {
    --palette-interface-panel-selected-surface: color-mix(in srgb, var(--interface-panel-surface) 87.5%, var(--contrast-mix-color));
  }
}

:root {
  --palette-interface-button-hover-surface: var(--interface-panel-surface);
}

@supports (color: color-mix(in lab, red, red)) {
  :root {
    --palette-interface-button-hover-surface: color-mix(in srgb, var(--interface-panel-surface) 82%, var(--contrast-mix-color));
  }
}

:root {
  --modal-card-background: var(--secondary-background);
  --modal-card-background-hovered: var(--secondary-background-hover);
  --modal-card-border-highlighted: var(--secondary-background-selected);
  --modal-card-button-surface: var(--color-smoke-300);
  --modal-card-placeholder-background: var(--color-smoke-600);
  --modal-card-tag-background: var(--color-smoke-200);
  --modal-card-tag-foreground: var(--base-foreground);
  --modal-panel-background: var(--color-white);
}

.dark-theme {
  --fg-color: #fff;
  --bg-color: #202020;
  --content-bg: #4e4e4e;
  --content-fg: #fff;
  --content-hover-bg: #222;
  --content-hover-fg: #fff;
  --accent-primary: var(--color-white);
  --backdrop: var(--color-neutral-900);
  --button-surface: var(--color-charcoal-600);
  --button-surface-contrast: var(--color-white);
  --button-hover-surface: var(--color-charcoal-600);
  --button-active-surface: var(--color-charcoal-600);
  --button-icon: var(--color-smoke-800);
  --subscription-button-gradient: linear-gradient(315deg, #69e6ff26 0%, #6349e980 100%), radial-gradient(70.71% 70.71% at 50% 50%, #3e63de26 0.01%, #42007b80 100%), linear-gradient(92deg, #d000ff 0.38%, #b009fe 37.07%, #3e1ffc 65.17%, #009dff 103.86%), var(--color-button-surface, #2d2e32);
  --dialog-surface: var(--color-neutral-700);
  --interface-menu-component-surface-hovered: var(--color-charcoal-400);
  --interface-menu-component-surface-selected: var(--color-charcoal-300);
  --interface-menu-keybind-surface-default: var(--color-charcoal-200);
  --interface-menu-surface: var(--color-charcoal-800);
  --interface-menu-stroke: var(--color-ash-800);
  --interface-panel-surface: var(--color-charcoal-800);
  --interface-stroke: var(--color-charcoal-400);
  --nav-background: var(--color-charcoal-800);
  --node-border: var(--color-charcoal-500);
  --node-component-border: var(--color-ash-800);
  --node-component-border-error: var(--color-danger-100);
  --node-component-border-executing: var(--color-blue-500);
  --node-component-border-selected: var(--color-charcoal-200);
  --node-component-header-icon: var(--color-slate-300);
  --node-component-header-surface: var(--color-charcoal-800);
  --node-component-outline: var(--color-white);
  --node-component-ring: rgb(var(--color-smoke-500) / 20%);
  --node-component-slot-dot-outline-opacity: 10%;
  --node-component-slot-dot-outline: var(--color-white);
  --node-component-slot-text: var(--color-slate-200);
  --node-component-surface-highlight: var(--color-slate-100);
  --node-component-surface-hovered: var(--color-charcoal-600);
  --node-component-surface-selected: var(--color-charcoal-200);
  --node-component-surface: var(--color-charcoal-600);
  --node-component-tooltip: var(--color-white);
  --node-component-tooltip-border: var(--color-slate-300);
  --node-component-tooltip-surface: var(--color-charcoal-800);
  --node-component-widget-skeleton-surface: var(--color-zinc-800);
  --node-component-disabled: var(--color-alpha-charcoal-600-30);
  --node-divider: var(--color-charcoal-500);
  --node-icon-disabled: var(--color-alpha-ash-500-20);
  --node-stroke: var(--color-ash-800);
  --node-stroke-selected: var(--color-white);
  --node-stroke-error: var(--color-error);
  --node-stroke-executing: var(--color-azure-600);
  --color-interface-panel-job-progress-primary: var(--color-cobalt-800);
  --color-interface-panel-job-progress-secondary: var(--color-alpha-azure-600-30);
  --text-secondary: var(--color-slate-100);
  --text-primary: var(--color-white);
  --input-surface: #8282821a;
  --muted-foreground: var(--color-smoke-800);
  --base-foreground: var(--color-white);
  --brand-yellow: var(--color-electric-400);
  --brand-blue: var(--color-sapphire-700);
  --secondary-background: var(--color-charcoal-600);
  --secondary-background-hover: var(--color-charcoal-400);
  --secondary-background-selected: var(--color-charcoal-200);
  --base-background: var(--color-charcoal-800);
  --primary-background: var(--color-azure-600);
  --primary-background-hover: var(--color-azure-400);
  --destructive-background: var(--color-coral-700);
  --destructive-background-hover: var(--color-coral-600);
  --inverted-background-hover: var(--color-smoke-200);
  --warning-background: var(--color-gold-600);
  --warning-background-hover: var(--color-gold-500);
  --success-background: var(--color-jade-600);
  --border-default: var(--color-charcoal-200);
  --border-subtle: var(--color-charcoal-300);
  --muted-background: var(--color-charcoal-100);
  --accent-background: var(--color-charcoal-100);
  --component-node-background: var(--color-charcoal-600);
  --component-node-border: var(--color-charcoal-100);
  --component-node-foreground: var(--base-foreground);
  --component-node-foreground-secondary: var(--color-muted-foreground);
  --component-node-widget-background: var(--secondary-background-hover);
  --component-node-widget-background-hovered: var(--secondary-background-selected);
  --component-node-widget-background-selected: var(--color-charcoal-100);
  --component-node-widget-background-disabled: var(--color-alpha-charcoal-600-30);
  --component-node-widget-background-highlighted: var(--color-graphite-400);
  --component-node-widget-promoted: var(--color-purple-700);
  --component-node-widget-advanced: var(--color-azure-600);
  --modal-card-background: var(--secondary-background);
  --modal-card-background-hovered: var(--secondary-background-hover);
  --modal-card-border-highlighted: var(--color-ash-400);
  --modal-card-button-surface: var(--color-charcoal-300);
  --modal-card-placeholder-background: var(--secondary-background);
  --modal-card-tag-background: var(--color-ash-800);
  --modal-card-tag-foreground: var(--base-foreground);
  --modal-panel-background: var(--color-charcoal-600);
}

body {
  width: 100vw;
  min-width: -webkit-fill-available;
  max-width: -webkit-fill-available;
  height: 100vh;
  min-height: -webkit-fill-available;
  max-height: -webkit-fill-available;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.comfy-multiline-input {
  background-color: var(--comfy-input-bg);
  color: var(--input-text);
  resize: none;
  box-sizing: border-box;
  font-size: var(--comfy-textarea-font-size);
  border: none;
  padding: 2px;
  overflow: hidden auto;
}

.comfy-markdown {
  display: grid;
}

.comfy-markdown > textarea, .comfy-markdown .tiptap {
  grid-area: 1 / 1 / 2 / 2;
}

.comfy-markdown > textarea {
  opacity: 0;
  pointer-events: none;
}

.comfy-markdown.editing > textarea {
  opacity: 1;
  pointer-events: all;
}

.comfy-markdown.editing .tiptap {
  opacity: 0;
  pointer-events: none;
}

.comfy-markdown .tiptap {
  font-size: var(--comfy-textarea-font-size);
  overflow-y: auto;
}

.comfy-markdown .tiptap :first-child {
  margin-top: 0;
}

.comfy-markdown .tiptap :last-child {
  margin-bottom: 0;
}

.comfy-markdown .tiptap blockquote {
  border-left: solid;
  margin-left: 1em;
  padding-left: .5em;
}

.comfy-markdown .tiptap pre {
  border: thin dotted;
  border-radius: .5em;
  margin: .5em;
  padding: .5em;
}

.comfy-markdown .tiptap table {
  border-collapse: collapse;
}

.comfy-markdown .tiptap th {
  text-align: left;
  background: var(--comfy-menu-bg);
}

.comfy-markdown .tiptap th, .comfy-markdown .tiptap td {
  border: thin solid;
  padding: .5em;
}

.comfy-markdown-content {
  word-wrap: break-word;
  font-size: .875rem;
  line-height: 1.6;
}

.comfy-markdown-content h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 22px;
  font-weight: 700;
}

.comfy-markdown-content h1:first-child {
  margin-top: 0;
}

.comfy-markdown-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 700;
}

.comfy-markdown-content h2:first-child {
  margin-top: 0;
}

.comfy-markdown-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 700;
}

.comfy-markdown-content h3:first-child {
  margin-top: 0;
}

.comfy-markdown-content h4, .comfy-markdown-content h5, .comfy-markdown-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.comfy-markdown-content h4:first-child, .comfy-markdown-content h5:first-child, .comfy-markdown-content h6:first-child {
  margin-top: 0;
}

.comfy-markdown-content p {
  margin: 0 0 .5em;
}

.comfy-markdown-content p:last-child {
  margin-bottom: 0;
}

.comfy-markdown-content :first-child {
  margin-top: 0;
}

.comfy-markdown-content ul, .comfy-markdown-content ol {
  margin: .5rem 0;
  padding-left: 2rem;
}

.comfy-markdown-content ul ul, .comfy-markdown-content ol ol, .comfy-markdown-content ul ol, .comfy-markdown-content ol ul {
  margin: .5rem 0;
  padding-left: 1.5rem;
}

.comfy-markdown-content li {
  margin: .5rem 0;
}

.comfy-markdown-content code {
  color: var(--code-text-color);
  background-color: var(--code-bg-color);
  border-radius: .25rem;
  padding: .125rem .375rem;
  font-family: monospace;
}

.comfy-markdown-content pre {
  background-color: var(--code-block-bg-color);
  border-radius: .25rem;
  margin: 1rem 0;
  padding: 1rem;
  overflow-x: auto;
}

.comfy-markdown-content pre code {
  color: var(--p-text-color);
  background-color: #0000;
  padding: 0;
}

.comfy-markdown-content table {
  border-collapse: collapse;
  width: 100%;
}

.comfy-markdown-content th, .comfy-markdown-content td {
  padding: .5rem;
}

.comfy-markdown-content th {
  color: var(--fg-color);
}

.comfy-markdown-content td {
  color: var(--drag-text);
}

.comfy-markdown-content tr {
  border-bottom: 1px solid var(--content-bg);
}

.comfy-markdown-content tr:last-child {
  border-bottom: none;
}

.comfy-markdown-content thead {
  border-bottom: 1px solid var(--p-text-color);
}

.comfy-markdown-content a {
  color: var(--drag-text);
  text-decoration: underline;
}

.comfy-markdown-content img, .comfy-markdown-content video {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

.comfy-markdown-content blockquote {
  border-left: 3px solid var(--p-primary-color, var(--primary-bg));
  opacity: .8;
  margin: .5em 0;
  padding-left: .75em;
}

.comfy-markdown-content hr {
  border: none;
  border-top: 1px solid var(--p-border-color, var(--border-color));
  margin: 1em 0;
}

.comfy-markdown-content strong {
  font-weight: 700;
}

.comfy-markdown-content em {
  font-style: italic;
}

.comfy-modal {
  z-index: 100;
  background-color: var(--comfy-menu-bg);
  color: var(--error-text);
  border-radius: 10px;
  justify-content: center;
  max-width: 80vw;
  max-height: 80vh;
  padding: 30px 30px 10px;
  font-family: monospace;
  font-size: 15px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #888;
}

.comfy-modal-content {
  flex-direction: column;
  display: flex;
}

.comfy-modal p {
  white-space: pre-line;
  margin-bottom: 20px;
  overflow: auto;
}

.comfy-modal select, .comfy-modal input[type="button"], .comfy-modal input[type="checkbox"] {
  margin: 3px 3px 3px 4px;
}

.comfy-menu {
  text-align: center;
  z-index: 999;
  width: 190px;
  color: var(--descrip-text);
  background-color: var(--comfy-menu-bg);
  border-radius: 0 8px 8px;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  font-size: 15px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  box-shadow: 3px 3px 8px #0006;
}

.comfy-menu-header {
  display: flex;
}

.comfy-menu-actions {
  align-items: center;
  gap: 3px;
  height: 20px;
  font-size: 22px;
  display: flex;
  position: relative;
  top: -1px;
}

.comfy-menu .comfy-menu-actions button {
  cursor: pointer;
  font-size: inherit;
  background-color: #0000;
  border: none;
  padding: 0;
}

.comfy-menu .comfy-menu-actions .comfy-settings-btn {
  font-size: .6em;
}

button.comfy-close-menu-btn {
  color: #ccc;
  font-size: 1em;
  line-height: 12px;
  position: relative;
  top: -1px;
}

.comfy-menu-queue-size {
  flex: auto;
}

.comfy-menu button, .comfy-modal button {
  font-size: 20px;
}

.comfy-menu-btns {
  width: 100%;
  margin-bottom: 10px;
}

.comfy-menu-btns button {
  width: 50%;
  font-size: 10px;
  color: var(--descrip-text) !important;
}

.comfy-menu > button {
  width: 100%;
}

.comfy-btn, .comfy-menu > button, .comfy-menu-btns button, .comfy-menu .comfy-list button, .comfy-modal button {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  border-width: initial;
  border-color: var(--border-color);
  border-style: solid;
  border-radius: 8px;
  margin-top: 2px;
}

.comfy-btn:hover:not(:disabled), .comfy-menu > button:hover, .comfy-menu-btns button:hover, .comfy-menu .comfy-list button:hover, .comfy-modal button:hover, .comfy-menu-actions button:hover {
  filter: brightness(1.2);
  will-change: transform;
  cursor: pointer;
}

span.drag-handle {
  vertical-align: middle;
  letter-spacing: 2px;
  color: var(--drag-text);
  text-shadow: 1px 0 1px #000;
  touch-action: none;
  margin-top: -.4em;
  margin-left: -.2em;
  padding: 3px 4px;
  font-size: 12px;
  line-height: 5px;
  display: inline-block;
  overflow: hidden;
}

span.drag-handle:after {
  content: ".. .. ..";
}

.comfy-queue-btn {
  width: 100%;
}

.comfy-list {
  color: var(--descrip-text);
  background-color: var(--comfy-menu-bg);
  border-color: var(--border-color);
  border-style: solid;
  margin-bottom: 10px;
}

.comfy-list-items {
  background-color: var(--comfy-input-bg);
  min-height: 25px;
  max-height: 100px;
  padding: 5px;
  overflow-y: scroll;
}

.comfy-list h4 {
  min-width: 160px;
  margin: 0;
  padding: 3px;
  font-weight: 400;
}

.comfy-list-items button {
  font-size: 10px;
}

.comfy-list-actions {
  justify-content: center;
  gap: 5px;
  margin: 5px;
  display: flex;
}

.comfy-list-actions button {
  font-size: 12px;
}

button.comfy-queue-btn {
  margin: 6px 0 !important;
}

.comfy-modal.comfy-settings, .comfy-modal.comfy-manage-templates {
  text-align: center;
  color: var(--descrip-text);
  z-index: 99;
}

.comfy-modal.comfy-settings input[type="range"] {
  vertical-align: middle;
}

.comfy-modal.comfy-settings input[type="range"] + input[type="number"] {
  width: 3.5em;
}

.comfy-modal input, .comfy-modal select {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  border-color: var(--border-color);
  font-size: inherit;
  border-style: solid;
  border-radius: 8px;
}

.comfy-tooltip-indicator {
  -webkit-text-decoration: underline dashed;
  text-decoration: underline dashed;
}

@media only screen and (max-height: 850px) {
  .comfy-menu {
    border-radius: 0;
    inset: 0 0 0 auto !important;
  }

  .comfy-menu span.drag-handle {
    display: none;
  }

  .comfy-menu-queue-size {
    flex: unset;
  }

  .comfy-menu-header {
    justify-content: space-between;
  }

  .comfy-menu-actions {
    gap: 10px;
    font-size: 28px;
  }
}

.graphdialog {
  background-color: var(--comfy-menu-bg);
  z-index: 1500;
  min-height: 1em;
}

.graphdialog .name {
  color: var(--descrip-text);
  font-size: 14px;
}

.graphdialog button {
  margin-top: unset;
  vertical-align: unset;
  height: 1.6em;
  padding-right: 8px;
}

.graphdialog input, .graphdialog textarea, .graphdialog select {
  background-color: var(--comfy-input-bg);
  border: 2px solid;
  border-color: var(--border-color);
  color: var(--input-text);
  border-radius: 12px 0 0 12px;
}

dialog {
  box-shadow: 0 0 20px #888;
}

dialog::backdrop {
  background: #00000080;
}

.comfy-dialog.comfyui-dialog.comfy-modal {
  inset: 0;
  transform: none;
}

.comfy-dialog.comfy-modal {
  border-color: var(--bg-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
}

.comfy-dialog .comfy-modal-content {
  color: var(--fg-color);
  flex-flow: wrap;
  gap: 10px;
}

.comfy-dialog .comfy-modal-content h3 {
  margin-top: 0;
}

.comfy-dialog .comfy-modal-content > p {
  width: 100%;
}

.comfy-dialog .comfy-modal-content > .comfyui-button {
  flex: 1;
  justify-content: center;
}

.litegraph .dialog {
  z-index: 1;
}

.litegraph .litemenu-entry.has_submenu {
  padding-right: 20px;
  position: relative;
}

.litemenu-entry.has_submenu:after {
  content: ">";
  position: absolute;
  top: 0;
  right: 2px;
}

.litegraph.litecontextmenu, .litegraph.litecontextmenu.dark {
  background-color: var(--comfy-menu-bg);
  z-index: 9999 !important;
}

.litegraph.litecontextmenu .litemenu-entry.submenu, .litegraph.litecontextmenu.dark .litemenu-entry.submenu {
  background-color: var(--comfy-menu-bg);
  color: var(--fg-color);
}

.litegraph.litecontextmenu input {
  background-color: var(--comfy-input-bg);
  color: var(--input-text);
}

.comfy-context-menu-filter {
  box-sizing: border-box;
  border: 1px solid #999;
  width: calc(100% - 10px);
  margin: 0 0 5px 5px;
}

.comfy-img-preview {
  pointer-events: none;
  flex-wrap: wrap;
  place-content: flex-start center;
  display: flex;
  overflow: hidden;
}

.comfy-img-preview img {
  object-fit: contain;
  width: var(--comfy-img-preview-width);
  height: var(--comfy-img-preview-height);
}

.comfy-img-preview video {
  pointer-events: auto;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.comfy-missing-nodes li button {
  margin-left: 5px;
  font-size: 12px;
}

.litegraph.litesearchbox {
  background-color: var(--comfy-menu-bg);
  display: block;
  overflow: hidden;
  z-index: 9999 !important;
}

.litegraph.litesearchbox input, .litegraph.litesearchbox select {
  background-color: var(--comfy-input-bg);
  color: var(--input-text);
}

.litegraph.lite-search-item {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  filter: brightness(80%);
  will-change: transform;
  padding-left: .2em;
}

.litegraph.lite-search-item.generic_type {
  color: var(--input-text);
  filter: brightness(50%);
  will-change: transform;
}

audio.comfy-audio.empty-audio-widget {
  display: none;
}

#vue-app {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-autocomplete-overlay {
  max-width: 25vw;
}

.p-tree-node-content {
  padding: var(--comfy-tree-explorer-item-padding) !important;
}

.app-drag {
  app-region: drag;
}

.no-drag {
  app-region: no-drag;
}

.window-actions-spacer {
  width: calc(100vw - env(titlebar-area-width, 100vw));
}

.lg-node {
  -webkit-user-select: none;
  user-select: none;
}

.lg-node .lg-slot, .lg-node .lg-widget {
  transition: opacity .1s, font-size .1s;
}

.transform-pane--interacting .lg-node * {
  transition: none !important;
}

.transform-pane--interacting .lg-node {
  will-change: transform;
}

#maskEditor_brush {
  backgroundcolor: transparent;
  z-index: 8889;
  pointer-events: none;
  border-radius: 50%;
  outline: 1px dashed #000;
  position: absolute;
  overflow: visible;
  box-shadow: 0 0 0 1px #fff;
}

#maskEditor_brushPreviewGradient {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}

.maskEditor_sidePanelTitle {
  text-align: center;
  color: var(--descrip-text);
  margin-top: 10px;
  font-size: 15px;
}

.maskEditor_sidePanelBrushShapeCircle {
  border: 1px solid var(--border-color);
  pointer-events: auto;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-left: 7.5px;
  transition: background .1s;
}

.maskEditor_sidePanelBrushRange {
  appearance: none;
  cursor: pointer;
  background: none;
  width: 180px;
}

.maskEditor_sidePanelBrushRange::-webkit-slider-thumb {
  cursor: grab;
  background: var(--p-surface-700);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -8px;
}

.maskEditor_sidePanelBrushRange::-moz-range-thumb {
  cursor: grab;
  background: var(--p-surface-800);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.maskEditor_sidePanelBrushRange::-webkit-slider-runnable-track {
  background: var(--p-surface-700);
  height: 3px;
}

.maskEditor_sidePanelBrushRange::-moz-range-track {
  background: var(--p-surface-700);
  height: 3px;
}

.maskEditor_sidePanelBrushShapeSquare {
  border: 1px solid var(--border-color);
  pointer-events: auto;
  width: 35px;
  height: 35px;
  margin: 5px;
  transition: background .1s;
}

.maskEditor_brushShape_dark {
  background: none;
}

.maskEditor_brushShape_dark:hover {
  background: var(--p-surface-900);
}

.maskEditor_brushShape_light {
  background: none;
}

.maskEditor_brushShape_light:hover {
  background: var(--comfy-menu-bg);
}

.maskEditor_sidePanelLayer {
  width: 100%;
  height: 50px;
  display: flex;
}

.maskEditor_sidePanelLayerVisibilityContainer {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.maskEditor_sidePanelVisibilityToggle {
  pointer-events: auto;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.maskEditor_sidePanelLayerIconContainer {
  width: 60px;
  height: 50px;
  fill: var(--input-text);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.maskEditor_sidePanelLayerIconContainer svg {
  width: 30px;
  height: 30px;
}

.maskEditor_sidePanelBigButton {
  border: 1px solid var(--border-color);
  width: 85px;
  height: 30px;
  color: var(--input-text);
  pointer-events: auto;
  background: #0003;
  font-size: 15px;
  transition: background-color .1s;
}

.maskEditor_sidePanelBigButton:hover {
  background-color: var(--p-overlaybadge-outline-color);
  border: none;
}

.maskEditor_toolPanelContainer {
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.maskEditor_toolPanelContainerSelected svg {
  fill: var(--p-button-text-primary-color) !important;
}

.maskEditor_toolPanelContainerSelected .maskEditor_toolPanelIndicator {
  display: block;
}

.maskEditor_toolPanelContainer svg {
  aspect-ratio: 1;
  width: 75%;
  fill: var(--p-button-text-secondary-color);
}

.maskEditor_toolPanelContainerDark:hover {
  background-color: var(--p-surface-800);
}

.maskEditor_toolPanelContainerLight:hover {
  background-color: var(--p-surface-300);
}

.maskEditor_toolPanelIndicator {
  background: var(--p-button-text-primary-color);
  width: 4px;
  height: 100%;
  display: none;
  position: absolute;
  left: 0;
}

.maskEditor_sidePanelSeparator {
  background: var(--border-color);
  width: 100%;
  height: 2px;
  margin-top: 1.5em;
  margin-bottom: 5px;
}

#maskEditorCanvasContainer {
  width: 1000px;
  height: 667px;
  position: absolute;
  top: 280px;
  left: 359px;
}

.maskEditor_topPanelIconButton_dark {
  pointer-events: auto;
  background: var(--p-surface-800);
  border: 1px solid var(--p-form-field-border-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 30px;
  transition: background-color .1s;
  display: flex;
}

.maskEditor_topPanelIconButton_dark:hover {
  background-color: var(--p-surface-900);
}

.maskEditor_topPanelIconButton_dark svg {
  pointer-events: none;
  width: 25px;
  height: 25px;
  fill: var(--input-text);
}

.maskEditor_topPanelIconButton_light {
  pointer-events: auto;
  background: var(--comfy-menu-bg);
  border: 1px solid var(--p-form-field-border-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 30px;
  transition: background-color .1s;
  display: flex;
}

.maskEditor_topPanelIconButton_light:hover {
  background-color: var(--p-surface-300);
}

.maskEditor_topPanelIconButton_light svg {
  pointer-events: none;
  width: 25px;
  height: 25px;
  fill: var(--input-text);
}

.maskEditor_topPanelButton_dark {
  background: var(--p-surface-800);
  border: 1px solid var(--p-form-field-border-color);
  height: 30px;
  color: var(--input-text);
  pointer-events: auto;
  border-radius: 10px;
  width: 60px;
  transition: all .1s;
}

.maskEditor_topPanelButton_dark:hover {
  background-color: var(--p-surface-900);
}

.maskEditor_topPanelButton_light {
  background: var(--comfy-menu-bg);
  border: 1px solid var(--p-form-field-border-color);
  height: 30px;
  color: var(--input-text);
  pointer-events: auto;
  border-radius: 10px;
  width: 60px;
  transition: all .1s;
}

.maskEditor_topPanelButton_light:hover {
  background-color: var(--p-surface-300);
}

.maskEditor_sidePanel_paintBucket_Container {
  flex-direction: column;
  width: 180px;
  display: flex;
  position: relative;
}

.maskEditor_sidePanel_colorSelect_Container {
  align-items: center;
  gap: 5px;
  width: 180px;
  height: 30px;
  display: flex;
}

.maskEditor_sidePanel_colorSelect_tolerance_container {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.maskEditor_sidePanelContainerColumn {
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
  display: flex;
}

.maskEditor_sidePanelContainerRow {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  display: flex;
  position: relative;
}

.maskEditor_accent_bg_dark {
  background: var(--p-surface-800);
}

.maskEditor_accent_bg_very_dark {
  background: var(--p-surface-900);
}

.maskEditor_accent_bg_light {
  background: var(--p-surface-300);
}

.maskEditor_accent_bg_very_light {
  background: var(--comfy-menu-bg);
}

.maskEditor_sidePanelToggleContainer {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 0;
}

.maskEditor_sidePanelToggleSwitch {
  vertical-align: middle;
  background: var(--p-surface-300);
  border-radius: 16px;
  width: 40px;
  height: 24px;
  transition: background .25s;
  display: inline-block;
  position: relative;
}

.dark-theme .maskEditor_sidePanelToggleSwitch {
  background: var(--p-surface-700);
}

.maskEditor_sidePanelToggleSwitch:before, .maskEditor_sidePanelToggleSwitch:after {
  content: "";
}

.maskEditor_sidePanelToggleSwitch:before {
  background: linear-gradient(#fff 0%, #eee 100%);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: all .2s;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
}

.maskEditor_sidePanelToggleContainer:hover .maskEditor_sidePanelToggleSwitch:before {
  background: linear-gradient(#fff 0% 100%);
}

.maskEditor_sidePanelToggleCheckbox:checked + .maskEditor_sidePanelToggleSwitch {
  background: var(--p-button-text-primary-color);
}

.maskEditor_sidePanelToggleCheckbox:checked + .maskEditor_sidePanelToggleSwitch:before {
  background: var(--comfy-menu-bg);
  left: 20px;
}

.dark-theme .maskEditor_sidePanelToggleCheckbox:checked + .maskEditor_sidePanelToggleSwitch:before {
  background: var(--p-surface-900);
}

.maskEditor_sidePanelToggleCheckbox {
  visibility: hidden;
  position: absolute;
}

.maskEditor_sidePanelDropdown {
  border: 1px solid var(--p-form-field-border-color);
  background: var(--comfy-menu-bg);
  border-radius: 6px;
  height: 24px;
  padding-left: 5px;
  padding-right: 5px;
  transition: background .1s;
}

.maskEditor_sidePanelDropdown option {
  background: var(--comfy-menu-bg);
}

.maskEditor_sidePanelDropdown:focus {
  outline: 1px solid var(--p-surface-300);
}

.maskEditor_sidePanelDropdown option:hover {
  background: #fff;
}

.maskEditor_sidePanelDropdown option:active {
  background: var(--p-surface-300);
}

.dark-theme .maskEditor_sidePanelDropdown, .dark-theme .maskEditor_sidePanelDropdown option {
  background: var(--p-surface-900);
}

.dark-theme .maskEditor_sidePanelDropdown:focus {
  outline: 1px solid var(--p-button-text-primary-color);
}

.dark-theme .maskEditor_sidePanelDropdown option:active {
  background: var(--p-highlight-background);
}

.maskEditor_layerRow {
  border-radius: 10px;
  width: 100%;
  height: 50px;
}

.maskEditor_sidePanelLayerPreviewContainer {
  width: 40px;
  height: 30px;
}

.maskEditor_sidePanelLayerPreviewContainer > svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
  fill: var(--p-surface-100);
}

.maskEditor_sidePanelImageLayerImage {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.maskEditor_sidePanelSubTitle {
  text-align: left;
  color: var(--descrip-text);
  font-size: 12px;
}

.maskEditor_containerDropdown {
  position: absolute;
  right: 0;
}

.maskEditor_sidePanelLayerCheckbox {
  margin-left: 15px;
}

@media (prefers-reduced-motion: no-preference) {
  .list-scale-move, .list-scale-enter-active, .list-scale-leave-active {
    transition: opacity .15s, transform .15s;
  }

  .list-scale-enter-from, .list-scale-leave-to {
    opacity: 0;
    transform: scale(.7);
  }

  .list-scale-leave-active {
    width: 100%;
    position: absolute;
  }
}

@keyframes enter {
  from {
    opacity: var(--p-enter-opacity, 1);
    transform: translate3d(var(--p-enter-translate-x, 0), var(--p-enter-translate-y, 0), 0) scale3d(var(--p-enter-scale, 1), var(--p-enter-scale, 1), var(--p-enter-scale, 1)) rotate(var(--p-enter-rotate, 0));
  }
}

@keyframes leave {
  to {
    opacity: var(--p-leave-opacity, 1);
    transform: translate3d(var(--p-leave-translate-x, 0), var(--p-leave-translate-y, 0), 0) scale3d(var(--p-leave-scale, 1), var(--p-leave-scale, 1), var(--p-leave-scale, 1)) rotate(var(--p-leave-rotate, 0));
  }
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-divide-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-divide-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-gradient-position {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-stops {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-ordinal {
  syntax: "*";
  inherits: false
}

@property --tw-slashed-zero {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-figure {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-duration {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}

@property --tw-contain-size {
  syntax: "*";
  inherits: false
}

@property --tw-contain-layout {
  syntax: "*";
  inherits: false
}

@property --tw-contain-paint {
  syntax: "*";
  inherits: false
}

@property --tw-contain-style {
  syntax: "*";
  inherits: false
}

@property --tw-content {
  syntax: "*";
  inherits: false;
  initial-value: "";
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes exit {
  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
    filter: blur(var(--tw-exit-blur, 0));
  }
}

@keyframes collapsible-down {
  from {
    height: 0;
  }

  to {
    height: var(--radix-collapsible-content-height, var(--bits-collapsible-content-height, var(--reka-collapsible-content-height, var(--kb-collapsible-content-height, auto))));
  }
}

@keyframes collapsible-up {
  from {
    height: var(--radix-collapsible-content-height, var(--bits-collapsible-content-height, var(--reka-collapsible-content-height, var(--kb-collapsible-content-height, auto))));
  }

  to {
    height: 0;
  }
}
