@charset "UTF-8";@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}
.EZDrawer .EZDrawer__checkbox {
    display: none;
}
.EZDrawer .EZDrawer__checkbox:checked ~ .EZDrawer__overlay {
    display: block;
    opacity: 1;
}
.EZDrawer .EZDrawer__checkbox:checked ~ .EZDrawer__container {
    visibility: visible;
    transform: translate3d(0, 0, 0) !important;
}
.EZDrawer .EZDrawer__overlay {
    display: none;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}
.EZDrawer .EZDrawer__container {
    position: fixed;
    visibility: hidden;
    background: white;
    transition: all;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
.react-flow {
  direction: ltr;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  cursor: -webkit-grab;
  cursor: grab;
}
.react-flow__pane.selection {
    cursor: pointer;
  }
.react-flow__pane.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow .react-flow__edges {
  pointer-events: none;
  overflow: visible;
}
.react-flow__edge-path,
.react-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.react-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.react-flow__edge.animated path {
    stroke-dasharray: 5;
    -webkit-animation: dashdraw 0.5s linear infinite;
            animation: dashdraw 0.5s linear infinite;
  }
.react-flow__edge.animated path.react-flow__edge-interaction {
    stroke-dasharray: none;
    -webkit-animation: none;
            animation: none;
  }
.react-flow__edge.inactive {
    pointer-events: none;
  }
.react-flow__edge.selected,
  .react-flow__edge:focus,
  .react-flow__edge:focus-visible {
    outline: none;
  }
.react-flow__edge.selected .react-flow__edge-path,
  .react-flow__edge:focus .react-flow__edge-path,
  .react-flow__edge:focus-visible .react-flow__edge-path {
    stroke: #555;
  }
.react-flow__edge-textwrapper {
    pointer-events: all;
  }
.react-flow__edge-textbg {
    fill: white;
  }
.react-flow__edge .react-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
    stroke-dasharray: 5;
    -webkit-animation: dashdraw 0.5s linear infinite;
            animation: dashdraw 0.5s linear infinite;
  }
.react-flow__connectionline {
  z-index: 1001;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-flow__node {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: -webkit-grab;
  cursor: grab;
}
.react-flow__node.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: -webkit-grab;
    cursor: grab;
  }
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background: #1a192b;
  border: 1px solid white;
  border-radius: 100%;
}
.react-flow__handle.connectionindicator {
    pointer-events: all;
    cursor: crosshair;
  }
.react-flow__handle-bottom {
    top: auto;
    left: 50%;
    bottom: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-top {
    left: 50%;
    top: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-left {
    top: 50%;
    left: -4px;
    transform: translate(0, -50%);
  }
.react-flow__handle-right {
    right: -4px;
    top: 50%;
    transform: translate(0, -50%);
  }
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
    top: 0;
  }
.react-flow__panel.bottom {
    bottom: 0;
  }
.react-flow__panel.left {
    left: 0;
  }
.react-flow__panel.right {
    right: 0;
  }
.react-flow__panel.center {
    left: 50%;
    transform: translateX(-50%);
  }
.react-flow__attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
    text-decoration: none;
    color: #999;
  }
@-webkit-keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.react-flow__edge.updating .react-flow__edge-path {
      stroke: #777;
    }
.react-flow__edge-text {
    font-size: 10px;
  }
.react-flow__node.selectable:focus,
  .react-flow__node.selectable:focus-visible {
    outline: none;
  }
.react-flow__node-default,
.react-flow__node-input,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  color: #222;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #1a192b;
  background-color: white;
}
.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
      box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
    }
.react-flow__node-default.selectable.selected,
    .react-flow__node-default.selectable:focus,
    .react-flow__node-default.selectable:focus-visible,
    .react-flow__node-input.selectable.selected,
    .react-flow__node-input.selectable:focus,
    .react-flow__node-input.selectable:focus-visible,
    .react-flow__node-output.selectable.selected,
    .react-flow__node-output.selectable:focus,
    .react-flow__node-output.selectable:focus-visible,
    .react-flow__node-group.selectable.selected,
    .react-flow__node-group.selectable:focus,
    .react-flow__node-group.selectable:focus-visible {
      box-shadow: 0 0 0 0.5px #1a192b;
    }
.react-flow__node-group {
  background-color: rgba(240, 240, 240, 0.25);
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.react-flow__nodesselection-rect:focus,
  .react-flow__nodesselection-rect:focus-visible,
  .react-flow__selection:focus,
  .react-flow__selection:focus-visible {
    outline: none;
  }
.react-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__controls-button {
    border: none;
    background: #fefefe;
    border-bottom: 1px solid #eee;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    padding: 5px;
  }
.react-flow__controls-button:hover {
      background: #f4f4f4;
    }
.react-flow__controls-button svg {
      width: 100%;
      max-width: 12px;
      max-height: 12px;
    }
.react-flow__controls-button:disabled {
      pointer-events: none;
    }
.react-flow__controls-button:disabled svg {
        fill-opacity: 0.4;
      }
.react-flow__minimap {
  background-color: #fff;
}
.react-flow__minimap svg {
  display: block;
}
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
/* handle styles */
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: #3367d9;
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
/* line styles */
.react-flow__resize-control.line {
  border-color: #3367d9;
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}
.loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 2.5rem;
}
.loading-container .text {
  position: relative;
  font-size: 3em;
}
.loading-container .text span {
  display: inline-block;
  color: var(--text);
  text-transform: uppercase;
}
.loading-container .text span.wave {
  animation: waviy 1s infinite;
}
.loading-container .loading-container.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(var(--text-color), 0.2);
  border-radius: 8px;
}

@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-16px);
  }
}/*# sourceMappingURL=loading.css.map */.tooltip {
  position: absolute;
  z-index: 10000;
  background-color: var(--secondary-background);
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  margin: 1em;
  max-width: 25em;
  white-space: pre-wrap;
  word-wrap: break-word;
  --sh: rgba(var(--text-color), 0.2);
  --blur: 2px;
  --off: 2px;
}

.tooltip-right {
  transform: translate(5em, 100%);
}

.tooltip-right-admin {
  transform: translate(5em, 150%);
  overflow-wrap: break-word;
  z-index: 2;
}

.tooltip-left {
  transform: translate(-5em, 100%);
}

.tooltip-bottom {
  transform: translate(0, 125%);
}

.tooltip-bottom-no-wrap {
  transform: translateY(3.2em);
  white-space: nowrap;
}

.tooltip-top-no-wrap {
  transform: translateY(-1.5em);
  white-space: nowrap;
  filter: drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
}

.tooltip-bottom-down-center {
  transform: translateY(210%);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  box-sizing: border-box;
  left: 0;
  right: auto;
}

.tooltip.tooltip-workspace-name {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  box-sizing: border-box;
  left: 0;
  right: auto;
}

.tooltip-top {
  transform: translateY(-1.5em);
  filter: drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
}

.tooltip-right,
.tooltip-right-admin {
  transform: translate(5em, 100%);
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
}

.tooltip-right-admin {
  transform: translate(5em, 150%);
  z-index: 2;
}

.tooltip-left {
  transform: translate(-5em, 100%);
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh));
}

.tooltip-bottom,
.tooltip-bottom-down-center,
.tooltip.tooltip-workspace-name,
.tooltip-bottom-no-wrap {
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
}

.tooltip::after,
.tooltip::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.tooltip-top::after,
.tooltip-top-no-wrap::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--secondary-background);
}

.tooltip-bottom::after,
.tooltip-bottom-down-center::after,
.tooltip.tooltip-workspace-name::after,
.tooltip-bottom-no-wrap::after {
  left: 50%;
  transform: translateX(-50%);
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--secondary-background);
}

.tooltip-right::after,
.tooltip-right-admin::after {
  top: 50%;
  transform: translateY(-50%);
  left: -6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid var(--secondary-background);
}

.tooltip-left::after {
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--secondary-background);
}

.tooltip-top::before,
.tooltip-top-no-wrap::before {
  width: 10px;
  height: 10px;
  background: var(--secondary-background);
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
  bottom: -3px;
  filter: drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
  -webkit-mask: linear-gradient(to bottom, transparent 0 40%, #000 40% 100%);
  mask: linear-gradient(to bottom, transparent 0 40%, #000 40% 100%);
}

.tooltip-bottom::before,
.tooltip-bottom-down-center::before,
.tooltip.tooltip-workspace-name::before,
.tooltip-bottom-no-wrap::before {
  width: 10px;
  height: 10px;
  background: var(--secondary-background);
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
  top: -3px;
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
  -webkit-mask: linear-gradient(to top, transparent 0 40%, #000 40% 100%);
  mask: linear-gradient(to top, transparent 0 40%, #000 40% 100%);
}

.tooltip-right::before,
.tooltip-right-admin::before {
  width: 10px;
  height: 10px;
  background: var(--secondary-background);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: -3px;
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(calc(-1 * var(--off)) 0 var(--blur) var(--sh));
  -webkit-mask: linear-gradient(to right, transparent 0 40%, #000 40% 100%);
  mask: linear-gradient(to right, transparent 0 40%, #000 40% 100%);
}

.tooltip-left::before {
  width: 10px;
  height: 10px;
  background: var(--secondary-background);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: -3px;
  filter: drop-shadow(0 var(--off) var(--blur) var(--sh)) drop-shadow(0 calc(-1 * var(--off)) var(--blur) var(--sh)) drop-shadow(var(--off) 0 var(--blur) var(--sh));
  -webkit-mask: linear-gradient(to left, transparent 0 40%, #000 40% 100%);
  mask: linear-gradient(to left, transparent 0 40%, #000 40% 100%);
}

/* Fade in/out */
.tooltip-fade {
  animation: tooltip-fade-in 200ms ease-out both;
}

.tooltip-fade.is-leaving {
  animation: tooltip-fade-out 300ms ease-in both;
}

@keyframes tooltip-fade-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tooltip-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.98);
  }
} /* Scale in/out */
.tooltip-scale {
  animation: tt-scale-in 150ms ease-out both;
}

.tooltip-scale.is-leaving {
  animation: tt-scale-out 300ms ease-in both;
}

@keyframes tt-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tt-scale-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}/*# sourceMappingURL=tooltip.css.map */.timestamp-clock {
  color: var(--primary);
}/*# sourceMappingURL=timestamp-clock.css.map */:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */.layout-wrapper {
  display: flex;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}
.layout-wrapper .content {
  display: flex;
  height: 100%;
  flex-grow: 1;
}/*# sourceMappingURL=layout.css.map */.login-page {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-background);
  color: var(--text);
}
.login-page .title-container .apollo-logo {
  width: 15em;
  height: 15em;
}
.login-page .title-text {
  font-size: 2em;
  font-weight: 700;
  padding-top: 1em;
}
.login-page .form-container {
  max-width: 50%;
  min-width: 15%;
}
.login-page .form-container .info-container .field-container .input-text {
  margin-top: 1em;
  color: var(--text-color);
}
.login-page .form-container .info-container .field-container .field {
  width: 100%;
  position: relative;
  align-items: center;
}
.login-page .form-container .info-container .field-container .field .visability-icon-button {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-40%);
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  width: 2em;
}
.login-page .form-container .footer {
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-page .form-container .footer .submit-button {
  margin-top: 1em;
  width: 100%;
  background-color: var(--primary);
  color: var(--text);
  height: 2em;
  font-weight: 600;
  font-size: 1.3em;
  border-radius: 8px;
  border: none;
}
.login-page .form-container .footer .submit-button:hover:not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}
.login-page .form-container .footer .submit-button:disabled {
  opacity: 0.4;
}
.login-page .form-container .error-msg {
  color: var(--error-color);
}
.login-page .login-msg {
  margin-top: 1em;
  font-size: 0.9em;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 1em;
}
.login-page .login-msg .login-button {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}
.login-page .login-msg .login-button:hover {
  opacity: 0.7;
}/*# sourceMappingURL=login.css.map */
.animated-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  /* ========== ANIMACIÓN "FOLD" (modo loading) ========== */
  /* ========== ANIMACIÓN "FLOAT" (404, suave, no de carga) ========== */
}
.animated-logo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.animated-logo.animated-logo--fold svg #left #path1 {
  animation: fold-1 4s linear infinite alternate-reverse;
  animation-fill-mode: forwards;
}
.animated-logo.animated-logo--fold svg #left #path2 {
  animation: fold-2 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #left #path3 {
  animation: fold-3 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #left #path4 {
  animation: fold-4 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #left #path5 {
  animation: fold-5 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #left #path6 {
  animation: fold-6 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #right #path1 {
  animation: fold-right-1 4s linear infinite alternate-reverse;
  animation-fill-mode: forwards;
}
.animated-logo.animated-logo--fold svg #right #path2 {
  animation: fold-right-2 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #right #path3 {
  animation: fold-right-3 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #right #path4 {
  animation: fold-right-4 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #right #path5 {
  animation: fold-right-5 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--fold svg #right #path6 {
  animation: fold-right-6 4s linear infinite alternate-reverse;
}
.animated-logo.animated-logo--float svg {
  animation: logo-float 3s ease-in-out infinite;
}

/* --- float suave --- */
@keyframes logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* ========== KEYFRAMES FOLD ORIGINALES ========== */
@keyframes fold-1 {
  0% {
    rotate: 0deg;
    transform: translateY(0);
  }
  16% {
    rotate: 90deg;
    transform: translateY(-5.5rem);
  }
  32% {
    rotate: 180deg;
    transform: translate(-5.5rem, -5.5rem);
  }
  48% {
    rotate: 0deg;
    transform: translate(0rem, 2.8rem);
  }
  64% {
    rotate: 0deg;
    transform: scale(1, -1) translate(0, -8.3rem);
  }
  80% {
    rotate: 90deg;
    transform: translate(5.5rem, -5.5rem);
  }
  100% {
    rotate: -90deg;
    transform: translate(-11.05rem, 2.7rem);
    opacity: 1;
  }
}
@keyframes fold-2 {
  0%, 16% {
    rotate: 0deg;
    transform: translateY(0);
  }
  32% {
    rotate: 90deg;
    transform: translateY(-5.5rem);
  }
  48% {
    rotate: -90deg;
    transform: translate(-8.3rem, 0);
  }
  64% {
    rotate: -90deg;
    transform: scale(-1, 1) translate(2.7rem, 0);
  }
  80% {
    rotate: 0deg;
    transform: translate(0, 5.5rem);
  }
  100% {
    rotate: -180deg;
    transform: translate(-8.25rem, -11.03rem);
  }
}
@keyframes fold-3 {
  0%, 32% {
    rotate: 0deg;
    transform: translateY(0);
  }
  48% {
    rotate: -180deg;
    transform: translate(-5.5rem, -8.3rem);
  }
  64% {
    rotate: -180deg;
    transform: scale(1, -1) translate(-5.5rem, 2.7rem);
  }
  80% {
    rotate: -90deg;
    transform: translate(-11.05rem, 0rem);
  }
  100% {
    rotate: -270deg;
    transform: translate(5.5rem, -8.3rem);
  }
}
@keyframes fold-4 {
  0%, 48% {
    rotate: 0deg;
    transform: translateY(0);
  }
  64% {
    rotate: 0deg;
    transform: scale(1, -1) translate(0, -11.05rem);
  }
  80% {
    rotate: 90deg;
    transform: translate(5.5rem, -8.3rem);
  }
  100% {
    rotate: -90deg;
    transform: translate(-11.05rem, 0);
  }
}
@keyframes fold-5 {
  0%, 64% {
    rotate: 0deg;
    transform: translateY(0);
  }
  80% {
    rotate: 180deg;
    transform: translate(-5.5rem, -13.8rem);
  }
  100% {
    rotate: 0deg;
    transform: translate(2.7rem, 2.75rem);
  }
}
@keyframes fold-6 {
  0%, 80% {
    rotate: 0deg;
    transform: translateY(0);
  }
  100% {
    rotate: -180deg;
    transform: translate(-8.3rem, -16.5rem);
  }
}
@keyframes fold-right-1 {
  0% {
    rotate: 0deg;
    transform: translateY(0);
    transform-origin: top right;
  }
  16% {
    rotate: -90deg;
    transform: translate(0, -5.5rem);
    transform-origin: top right;
  }
  32% {
    rotate: -180deg;
    transform: translate(5.55rem, -5.55rem);
    transform-origin: top right;
  }
  48% {
    rotate: 0deg;
    transform: translate(0rem, 2.8rem);
    transform-origin: top right;
  }
  64% {
    rotate: 0deg;
    transform: scale(1, -1) translate(0, -8.3rem);
    transform-origin: top right;
  }
  80% {
    rotate: -90deg;
    transform: translate(-5.5rem, -5.5rem);
    transform-origin: top right;
  }
  100% {
    rotate: 90deg;
    transform: translate(11.05rem, 2.77rem);
    transform-origin: top right;
  }
}
@keyframes fold-right-2 {
  0%, 16% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translateY(0);
  }
  32% {
    transform-origin: top right;
    rotate: -90deg;
    transform: translateY(-5.5rem);
  }
  48% {
    transform-origin: top right;
    rotate: 90deg;
    transform: translate(8.3rem, 0);
  }
  64% {
    transform-origin: top right;
    rotate: 90deg;
    transform: scale(-1, 1) translate(-2.75rem, 0);
  }
  80% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translate(0, 5.5rem);
  }
  100% {
    transform-origin: top right;
    rotate: 180deg;
    transform: translate(8.32rem, -11.04rem);
  }
}
@keyframes fold-right-3 {
  0%, 32% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translateY(0);
  }
  48% {
    transform-origin: top right;
    rotate: 180deg;
    transform: translate(5.5rem, -8.3rem);
  }
  64% {
    transform-origin: top right;
    rotate: 180deg;
    transform: scale(1, -1) translate(5.55rem, 2.75rem);
  }
  80% {
    transform-origin: top right;
    rotate: 90deg;
    transform: translate(11.05rem, 0rem);
  }
  100% {
    transform-origin: top right;
    rotate: 270deg;
    transform: translate(-5.5rem, -8.3rem);
  }
}
@keyframes fold-right-4 {
  0%, 48% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translateY(0);
  }
  64% {
    transform-origin: top right;
    rotate: 0deg;
    transform: scale(1, -1) translate(0, -11.05rem);
  }
  80% {
    transform-origin: top right;
    rotate: -90deg;
    transform: translate(-5.5rem, -8.3rem);
  }
  100% {
    transform-origin: top right;
    rotate: 90deg;
    transform: translate(11.05rem, 0);
  }
}
@keyframes fold-right-5 {
  0%, 64% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translateY(0);
  }
  80% {
    transform-origin: top right;
    rotate: -180deg;
    transform: translate(5.5rem, -13.8rem);
  }
  100% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translate(-2.7rem, 2.75rem);
  }
}
@keyframes fold-right-6 {
  0%, 80% {
    transform-origin: top right;
    rotate: 0deg;
    transform: translateY(0);
  }
  100% {
    transform-origin: top right;
    rotate: 180deg;
    transform: translate(8.3rem, -16.5rem);
  }
}/*# sourceMappingURL=animated-logo.css.map */.not-found {
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--background);
  color: var(--text);
}

.not-found__card {
  padding: 3rem 2.5rem;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  min-width: 360px;
  text-align: center;
}

.not-found__subtitle--accent {
  font-weight: 600;
}

.not-found__title {
  font-size: 3.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
}

.not-found__subtitle {
  font-size: 1.3rem;
  color: var(--secondary-text);
  margin: 0;
}

.not-found__button {
  margin-top: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.not-found__button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.not-found__button:active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 480px) {
  .not-found__card {
    width: 90%;
    padding: 2.5rem 1.8rem;
  }
  .not-found__title {
    font-size: 2.8rem;
  }
}/*# sourceMappingURL=not-found.css.map */.experiments {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: calc(100% - var(--navbar-height));
  color: var(--text);
}/*# sourceMappingURL=experiments.css.map */.admin-dashboard {
  display: flex;
  width: 100%;
  background-color: var(--background);
  color: var(--text);
  padding: 2em;
  height: calc(100% - var(--navbar-height));
}
.admin-dashboard .flex-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: auto;
  margin: 0 2em;
}
.admin-dashboard .flex-content .admin-navbar {
  background-color: var(--secondary-background);
  border-radius: 4px;
  height: 3.5em;
  display: flex;
  align-items: center;
}
.admin-dashboard .flex-content .admin-navbar .title {
  font-size: 1.3em;
  font-weight: 600;
  padding: 1em;
}
.admin-dashboard .flex-content .content {
  grid-area: content;
  background-color: var(--background);
  border-radius: 4px;
  overflow-y: auto;
  height: calc(100% - 4.5em);
}

@media (max-width: 786px) {
  .admin-dashboard {
    display: block;
  }
  .admin-dashboard .flex-sidebar {
    height: 100%;
    width: 100%;
  }
  .admin-dashboard .flex-content {
    display: none;
  }
}/*# sourceMappingURL=admin-dashboard.css.map */.lom-configuration {
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  padding: 0 2em;
}
.lom-configuration .toggle-button {
  padding: 0.7em;
  background-color: var(--background);
  color: #fff;
  border: none;
  border-radius: 100%;
  aspect-ratio: 1;
  color: var(--text);
  border: 1px solid var(--secondary-text);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.lom-configuration .toggle-button:hover {
  cursor: pointer;
  background-color: var(--primary);
}
.lom-configuration .editors-containers {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1em;
}/*# sourceMappingURL=lom-configuration.css.map */.kpi-formula {
  width: 100%;
  position: relative;
  display: flex;
  flex-grow: 1;
  min-width: -moz-min-content;
  min-width: min-content;
  flex-direction: column;
}/*# sourceMappingURL=kpi-formula.css.map */.react-split {
  flex: 1;
  height: 100%;
  position: relative;
  width: 100%;
}
.react-split__pane {
  height: 100%;
  position: absolute;
  white-space: normal;
  width: 100%;
  overflow: hidden;
}
.react-split__sash {
  height: 100%;
  position: absolute;
  top: 0;
  transition: background-color 0.1s;
  width: 100%;
  z-index: 2;
}
.react-split__sash--disabled {
  pointer-events: none;
}
.react-split__sash--vertical {
  cursor: col-resize;
}
.react-split__sash--horizontal {
  cursor: row-resize;
}
.react-split__sash-content {
  width: 100%;
  height: 100%;
}
.react-split__sash-content--active {
  background-color: #175ede;
}
.react-split--dragging.react-split--vertical {
  cursor: col-resize;
}
.react-split--dragging.react-split--horizontal {
  cursor: row-resize;
}

body.react-split--disabled {
  user-select: none;
}

.split-sash-content {
  width: 100%;
  height: 100%;
}
.split-sash-content.split-sash-content-vscode.split-sash-content-active {
  background-color: #175ede;
}.required-solution {
  display: flex;
  height: 100%;
  flex-grow: 1;
}
.required-solution .toggle-button {
  padding: 0.7em;
  background-color: var(--background);
  border: none;
  border-radius: 100%;
  aspect-ratio: 1;
  color: var(--text);
  border: 1px solid rgba(var(--text-color), 0.2);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.required-solution .toggle-button:hover {
  cursor: pointer;
  background-color: var(--primary);
}
.required-solution .editors-containers {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1em;
  border-left: 1px solid rgba(var(--text-color), 0.2);
}/*# sourceMappingURL=required-solution.css.map */.datasets {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: calc(100% - var(--navbar-height));
  color: var(--text);
}/*# sourceMappingURL=datasets.css.map */.templates {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: calc(100% - var(--navbar-height));
  color: var(--text);
}/*# sourceMappingURL=templates.css.map */.workspace {
  width: 100%;
  background-color: var(--background);
  color: var(--text);
  height: calc(100% - var(--navbar-height));
}/*# sourceMappingURL=workspace.css.map */.projects {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: calc(100% - var(--navbar-height));
  color: var(--text);
}
.projects .projects-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  height: 100%;
  overflow-y: auto;
  padding: 2em;
}
.projects .projects-wrapper .title {
  font-size: 1.8em;
  font-weight: 600;
}
.projects .projects-wrapper .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .projects-wrapper .header .add-button {
  background-color: var(--primary);
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 24px;
  color: var(--white);
  font-weight: 500;
}
.projects .projects-wrapper .header .add-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.projects .projects-wrapper .filter-list {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.projects .projects-wrapper .filter-list .filter-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  gap: 0.25em;
  padding: 0.25em 0.5em;
  border: 1px solid var(--secondary-text);
  background-color: var(--background);
  outline: none;
  border-radius: 16px;
}
.projects .projects-wrapper .filter-list .filter-all:hover:not(:disabled) {
  cursor: pointer;
  background-color: var(--secondary-background);
}
.projects .projects-wrapper .filter-list .filter-all:disabled {
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: var(--disabled);
}
.projects .projects-wrapper .projects-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3em;
  gap: 1em;
}/*# sourceMappingURL=projects.css.map */.assistant {
  width: 100%;
  background-color: var(--background);
  color: var(--text);
  height: calc(100% - var(--navbar-height));
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3fr 1fr;
}/*# sourceMappingURL=assistant.css.map */.edgebutton {
  width: 20px;
  height: 20px;
  border: 1px solid var(--text);
  cursor: pointer;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-background);
}
.edgebutton:hover {
  background: var(--accent);
}

.edgebutton-foreignobject div {
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}

.react-flow__edge-path.selected {
  stroke: rgb(var(--dark-green-color));
  stroke-width: 2;
}/*# sourceMappingURL=button-edge.css.map */.reactflow-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.reactflow-wrapper .react-flow__minimap {
  background-color: var(--secondary-background);
}
.reactflow-wrapper .react-flow__controls > button {
  background-color: var(--secondary-background);
  fill: var(--secondary-text);
  border-bottom: 2px solid var(--background);
}
.reactflow-wrapper .actions-toolbar {
  display: flex;
  gap: 1em;
  position: absolute;
  top: 1em;
  left: 1em;
}
.reactflow-wrapper .toolbar-button {
  background: var(--secondary-background);
  width: 1.5em;
  height: 1.5em;
  font-size: 2em;
  border: none;
  border-radius: 50%;
  padding: 0.2em;
  color: var(--text);
  outline: none;
  box-shadow: 0 0 4px 0 rgba(var(--text-color), 0.2);
  transition: opacity 0.2s;
}
.reactflow-wrapper .toolbar-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.reactflow-wrapper .toolbar-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.reactflow-wrapper .toolbar-button.active {
  color: var(--primary);
}
.reactflow-wrapper .nodes-choices {
  position: absolute;
  min-width: 15em;
  background-color: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.2);
  top: 1em;
  right: 1em;
  z-index: 99;
  border-radius: 8px;
  color: var(--text);
}
.reactflow-wrapper .nodes-choices .text {
  text-align: center;
  margin-top: 0.5em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.reactflow-wrapper .nodes-choices .node-choise {
  border-radius: 8px;
  margin: 0.5em 1em;
  background-color: var(--background);
  cursor: grab;
  display: flex;
  align-items: center;
  gap: 1em;
  border-left: 2.5px solid var(--primary);
  border-radius: 8px;
  padding: 0.5em 1em;
  position: relative;
}
.reactflow-wrapper .nodes-choices .node-choise:before {
  content: ".";
  position: absolute;
  right: 1em;
  top: -0.05em;
  color: var(--text);
  text-shadow: 0 5px var(--text), 0 10px var(--text), 5px 0 var(--text), 5px 5px var(--text), 5px 10px var(--text);
}
.reactflow-wrapper .nodes-choices .node-choise:hover {
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 8px;
}
.reactflow-wrapper .tooltip {
  background-color: var(--secondary-background);
  color: var(--text);
  box-shadow: 0 0 4px 0 rgba(var(--text-color), 0.1);
  border-radius: 8px;
}

.react-flow__node.highlight {
  color: var(--text);
}

.react-flow__background {
  background-color: var(--background);
}

@media (max-width: 786px) {
  .reactflow-wrapper .nodes-choices {
    min-width: 8em;
  }
  .reactflow-wrapper .nodes-choices .node-choise .node-name {
    display: none;
  }
}/*# sourceMappingURL=flow.css.map */.base-node {
  border-radius: 4px;
  color: var(--text);
  box-shadow: 0 0 8px 4px rgba(var(--text-color), 0.1);
  background-color: var(--secondary-background);
  font-size: 0.7em;
}
.base-node:hover {
  outline: 1px solid var(--secondary);
}
.base-node .node-header {
  padding: 0.5em;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 0.5em;
}
.base-node .node-header .node-title {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3em;
}
.base-node .node-header .node-type {
  margin-top: 0.5em;
  font-size: 0.55em;
}
.base-node .top-handle {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -0.3em;
  border: 1px solid var(--secondary);
}
.base-node .bottom-handle {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -0.3em;
  border: 1px solid var(--secondary);
}
.base-node .no-params {
  text-align: center;
  font-size: 0.9em;
}/*# sourceMappingURL=base-node.css.map */.chromosome-node {
  border-radius: 4px;
  color: var(--text);
  background-color: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.1);
}
.chromosome-node:hover {
  outline: 1px solid var(--secondary);
}
.chromosome-node.unselected {
  opacity: 0.6;
}
.chromosome-node.selected-relative {
  box-shadow: 0 2px 12px 4px rgba(var(--light-green-color), 0.4);
}
.chromosome-node.selected {
  outline: 2px solid var(--primary);
}
.chromosome-node .node-header {
  padding: 0.5em;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 0.5em;
}
.chromosome-node .node-header .node-title {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3em;
}
.chromosome-node .node-header .node-title .label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  max-width: 10em;
  word-break: break-word;
}
.chromosome-node .node-header .node-title .label .edit-label {
  max-width: 10em;
  border-radius: 4px;
  font-size: 0.7em;
}
.chromosome-node .node-header .node-title .label .error-icon {
  color: var(--error-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chromosome-node .node-header .node-title .icon {
  color: var(--text);
  cursor: pointer;
}
.chromosome-node .node-header .node-title .icon:hover {
  opacity: 0.7;
}
.chromosome-node .node-header .node-title .icon.delete:hover {
  color: var(--error-color);
  opacity: 1;
}
.chromosome-node .node-header .node-type {
  margin-top: 0.5em;
  font-size: 0.55em;
}
.chromosome-node .fields-container {
  padding: 0 1em 1em 1em;
  font-size: 0.6em;
}
.chromosome-node .fields-container .group-title {
  color: var(--text);
  font-weight: 500;
  margin: 0.5em 0;
}
.chromosome-node .fields-container .fields {
  background-color: rgba(var(--text-color), 0.025);
  border-radius: 4px;
  padding: 0.5em;
  display: flex;
  gap: 3em;
  justify-content: space-between;
  align-items: center;
}
.chromosome-node .fields-container .fields .field-name {
  display: flex;
  gap: 0.5em;
  align-items: center;
  position: relative;
}
.chromosome-node .fields-container .fields .field-name .help-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  position: absolute;
  top: 0;
  left: -2em;
  transform: translateY(25%);
}
.chromosome-node .fields-container .fields .field-value {
  color: var(--primary);
}
.chromosome-node .fields-container .fields .field-value.edit {
  padding: 0.25em;
  font-size: 1em;
  border: 1px solid var(--secondary-background);
  max-width: 10em;
  border-radius: 4px;
}
.chromosome-node .footer {
  display: flex;
  justify-content: flex-end;
}
.chromosome-node .footer .delete-icon {
  outline: none;
  border: none;
  background-color: transparent;
  color: var(--text);
}
.chromosome-node .footer .delete-icon:hover {
  color: var(--error-color);
  cursor: pointer;
}
.chromosome-node .top-handle {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -0.3em;
  background: var(--background);
  border: 1px solid var(--primary);
}
.chromosome-node .bottom-handle {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -0.3em;
  background: var(--background);
  border: 1px solid var(--primary);
}
.chromosome-node .no-params {
  text-align: center;
  font-size: 0.9em;
}/*# sourceMappingURL=chromosome-node.css.map */.table-container table {
  font-size: 0.5em;
  width: 100%;
  text-align: center;
}
.table-container table thead {
  padding: 2em;
}
.table-container table thead tr {
  background-color: rgba(255, 255, 255, 0.2);
}
.table-container table thead tr th {
  padding: 0 2em;
}
.table-container table tbody {
  background-color: rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=dict-node.css.map */.list-container {
  display: flex;
  font-size: 0.5em;
  gap: 2em;
  text-align: center;
  width: 35em;
  display: flex;
  justify-content: center;
  padding: 0 1em 1em 1em;
}
.list-container table {
  width: 100%;
}
.list-container table tbody tr {
  background-color: rgba(255, 255, 255, 0.1);
}
.list-container table tbody tr td {
  padding: 0.5em;
  border-left: 1px solid var(--text);
}
.list-container table tbody tr td:last-child {
  border-right: 1px solid var(--text);
}/*# sourceMappingURL=array-node.css.map */.number-container {
  display: flex;
  justify-content: center;
  font-size: 0.7em;
  padding-bottom: 1em;
  text-align: center;
}
.number-container > * {
  width: 3em;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=int-node.css.map */.number-container {
  display: flex;
  justify-content: center;
  font-size: 0.7em;
  padding-bottom: 1em;
}
.number-container > * {
  width: 4.5em;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=float-node.css.map */.enum-list-container {
  font-size: 0.5em;
  width: 100%;
  text-align: center;
  padding: 0 4em 1em 4em;
}
.enum-list-container .option-wrapper {
  display: grid;
  align-items: center;
  gap: 0;
  margin-bottom: 1em;
}
.enum-list-container .option-wrapper [type=radio]:checked,
.enum-list-container .option-wrapper [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.enum-list-container .option-wrapper [type=radio]:checked + label,
.enum-list-container .option-wrapper [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  line-height: 12px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
}
.enum-list-container .option-wrapper [type=radio]:checked + label:before,
.enum-list-container .option-wrapper [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
}
.enum-list-container .option-wrapper [type=radio]:checked + label:after,
.enum-list-container .option-wrapper [type=radio]:not(:checked) + label:after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.enum-list-container .option-wrapper [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.enum-list-container .option-wrapper [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=enum-node.css.map */.bool-container {
  display: flex;
  justify-content: center;
  font-size: 0.7em;
  padding-bottom: 1em;
  text-align: center;
}
.bool-container > * {
  width: 5em;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=bool-node.css.map */.tabs {
  display: flex;
  position: relative;
  width: 100%;
}
.tabs.left {
  justify-content: flex-start;
}
.tabs.center {
  justify-content: center;
}
.tabs.right {
  justify-content: flex-end;
}
.tabs .tabs-container {
  display: flex;
  flex-grow: 1;
}
.tabs .tabs-container.left, .tabs .tabs-container.center {
  justify-content: flex-start;
}
.tabs .tabs-container.right {
  justify-content: flex-end;
}
.tabs .actions-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 2em;
}
.tabs .actions-container .action-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs .actions-container .action-button:hover {
  opacity: 0.7;
}

.tab {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 1;
  outline: none;
}
.tab.stretch {
  flex: 1;
  text-align: center;
}
.tab.active {
  color: var(--primary);
}

.underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: var(--primary);
  transition: transform 0.3s ease, width 0.3s ease;
}/*# sourceMappingURL=tabs.css.map */.lom-configuration-form {
  color: var(--text);
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.lom-configuration-form .type-label {
  font-size: 1.3em;
  margin: 0;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
}
.lom-configuration-form .nested-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.lom-configuration-form .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border-radius: 8px;
}
.lom-configuration-form .form-group .group-info {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.lom-configuration-form .form-group .group-info .group-label {
  display: flex;
  gap: 0.1em;
}
.lom-configuration-form .form-group .group-info .group-label .required {
  color: var(--error-color);
}
.lom-configuration-form .form-group .group-info .group-description {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.lom-configuration-form .form-group .group-field {
  width: auto;
  max-width: 20em;
}/*# sourceMappingURL=lom-configuration-form.css.map */.navbar-wrapper {
  background-color: var(--background);
  width: 100%;
  position: relative;
}
.navbar-wrapper .navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  color: var(--text);
  background-color: var(--secondary-background);
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  height: var(--navbar-height);
  grid-template-columns: 1fr auto;
  align-items: center;
}
.navbar-wrapper .navbar .navbar-details {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
}
.navbar-wrapper .navbar .navbar-details .navbar-logo {
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1.5em;
  font-weight: 600;
  color: inherit;
}
.navbar-wrapper .navbar .navbar-details .navbar-logo img {
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navbar-wrapper .navbar .navbar-details .navbar-logo .title {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.navbar-wrapper .navbar .navbar-details .navbar-logo .brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-center;
  line-height: 1;
  gap: 5px;
}
.navbar-wrapper .navbar .navbar-details .navbar-logo .version {
  font-size: 0.6em;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-wrapper .navbar .navbar-details .parent-space {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.navbar-wrapper .navbar .navbar-details .parent-space .col:first-child {
  min-width: 0;
  overflow: hidden;
}
.navbar-wrapper .navbar .navbar-details .navbar-col {
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-self: center;
}
.navbar-wrapper .navbar .navbar-details .col {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar-wrapper .navbar .navbar-details .saving-col {
  justify-self: right;
}
.navbar-wrapper .navbar .navbar-details .workspace-info,
.navbar-wrapper .navbar .navbar-details .workspace-info * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-wrapper .navbar .navbar-details .workspace-info {
  width: 100%;
}
.navbar-wrapper .navbar .navbar-details .workspace-info .title .unsaved {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.navbar-wrapper .navbar .navbar-details .workspace-info .last-update {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.navbar-wrapper .navbar .hamburger-wrapper {
  display: none;
}
.navbar-wrapper .navbar .hamburger-wrapper .menu-icon {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-size: 1.5em;
}
.navbar-wrapper .navbar .hamburger-wrapper .menu-icon:hover {
  cursor: pointer;
  opacity: 0.7;
}
.navbar-wrapper .navbar .saving-indicator {
  display: flex;
  justify-self: right;
  align-items: center;
  gap: 0.5em;
}
.navbar-wrapper .navbar .navbar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  padding: 0 1em;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.navbar-wrapper .navbar .navbar-controls .navbar-button {
  border-radius: 100%;
  aspect-ratio: 1;
  border: none;
  outline: none;
  background-color: rgba(var(--text-color), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}
.navbar-wrapper .navbar .navbar-controls .navbar-button span {
  font-size: 0.8em;
}
.navbar-wrapper .navbar .navbar-controls .navbar-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.navbar-wrapper .navbar .navbar-controls .tokens {
  background-color: rgba(var(--text-color), 0.05);
  padding: 0.25em 1em;
  border-radius: 25px;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  gap: 0.25em;
}
.navbar-wrapper .navbar .navbar-controls .tokens span {
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-wrapper .navbar-tabs,
.navbar-wrapper .sub-navbar {
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.navbar-wrapper .navbar-tabs.open,
.navbar-wrapper .sub-navbar.open {
  border-top: 1px solid rgba(var(--text-color), 0.2);
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
}
.navbar-wrapper .navbar-tabs .navbar-tab,
.navbar-wrapper .sub-navbar .navbar-tab {
  background-color: transparent;
  border: none;
  outline: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.25em;
}
.navbar-wrapper .navbar-tabs .navbar-tab.current,
.navbar-wrapper .sub-navbar .navbar-tab.current {
  font-weight: 600;
}
.navbar-wrapper .navbar-tabs .navbar-tab.current::after,
.navbar-wrapper .sub-navbar .navbar-tab.current::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  bottom: -0.5em;
  border-radius: 16px 16px 0 0;
}
.navbar-wrapper .navbar-tabs .navbar-tab.current:hover,
.navbar-wrapper .sub-navbar .navbar-tab.current:hover {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navbar-wrapper .navbar-tabs .navbar-tab:hover:not(.current):not(:disabled),
.navbar-wrapper .sub-navbar .navbar-tab:hover:not(.current):not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}
.navbar-wrapper .navbar-tabs .navbar-tab:disabled,
.navbar-wrapper .sub-navbar .navbar-tab:disabled {
  opacity: 0.5;
}
.navbar-wrapper .navbar-tabs .vertical-divider,
.navbar-wrapper .sub-navbar .vertical-divider {
  height: 1em;
  width: 1px;
  background-color: rgba(var(--text-color), 0.2);
}
.navbar-wrapper .sub-navbar {
  position: absolute;
  top: calc(0 + var(--navbar-height));
  width: 100%;
  z-index: 999;
  background-color: var(--secondary-background);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  height: var(--navbar-height);
  gap: 0;
}

@media (max-width: 786px) {
  .navbar-wrapper .navbar .navbar-tabs {
    display: none;
  }
  .navbar-wrapper .navbar .hamburger-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-wrapper .navbar .navbar-details .workspace-info {
    display: none;
  }
}
@media (max-width: 1450px) {
  .navbar-wrapper .navbar .navbar-details .workspace-info {
    font-size: 0.8em;
  }
  .navbar-wrapper .navbar .navbar-details .workspace-info .last-update {
    display: none;
  }
}
.workspace-not-saved-banner {
  font-size: 0.8em;
  text-align: center;
  color: var(--secondary-text);
  padding-top: 0.5em;
  padding-top: 0%;
}/*# sourceMappingURL=navbar.css.map */.dropdown-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.dropdown-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms, transform 300ms;
}

.dropdown-exit {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 300ms, transform 300ms;
}

.dropdown-menu {
  background-color: var(--secondary-background);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 8px;
  z-index: 1000;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dropdown-menu .dropdown-header {
  width: 100%;
  font-size: 0.9em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid rgba(var(--text-color), 0.1);
  text-align: center;
}
.dropdown-menu .dropdown-option {
  background-color: transparent;
  border: none;
  outline: none;
  text-align: left;
  padding: 0.5em;
  padding: 10px;
  width: 100%;
}
.dropdown-menu .dropdown-option:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border: none;
  outline: none;
  border-radius: 8px;
}
.dropdown-menu .dropdown-option.red {
  color: var(--error-color);
}

.tooltip-anchor--full {
  display: block;
  width: 100%;
}

.dropdown--admin {
  width: var(--orgs-dd-width);
  min-width: var(--orgs-dd-width);
  max-width: var(--orgs-dd-width);
  margin: 10px 0 0 0;
  z-index: 1;
}
.dropdown--admin .dropdown-option {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.2;
}/*# sourceMappingURL=dropdown-menu.css.map */
.card-container {
  width: 320px;
  background-color: var(--secondary-background);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-container:hover {
  cursor: pointer;
}
.card-container:hover .read-more::after {
  transform: translateX(5px);
}
.card-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(var(--text-color), 0.2);
}
.card-container .card-thumb-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.card-container .card-thumb-wrapper .card-thumb {
  display: flex;
  justify-content: center;
  position: relative;
  height: 150px;
}
.card-container .card-thumb-wrapper .card-thumb.cover {
  background-position: center;
  background-size: cover;
  width: 100%;
}
.card-container .card-content {
  padding: 1em;
  position: relative;
}
.card-container .card-content .card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.card-container .card-content .card-meta .labels-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.card-container .card-content .card-meta .labels-wrapper .label-chip {
  border: 1px solid var(--secondary-text);
  padding: 0.25em 0.5em;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.card-container .card-content .card-meta .asset-count {
  color: var(--secondary-text);
  font-size: 12px;
}
.card-container .card-content .text-wrapper {
  padding-top: 0.5em;
  display: flex;
  flex-direction: column;
}
.card-container .card-content .text-wrapper .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.card-container .card-content .text-wrapper .card-summary {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.card-container .card-chips {
  padding: 0 1em;
  font-size: 0.85em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.card-container .card-footer {
  margin-bottom: 1em;
  padding: 0 1em;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.card-container .card-footer .right {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: var(--secondary-text);
  gap: 1em;
}
.card-container .card-footer .menu-button-wrapper .menu-button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0.25em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-container .card-footer .menu-button-wrapper .menu-button:hover {
  background-color: rgba(var(--text-color), 0.1);
  cursor: pointer;
}
.card-container .card-footer .read-more {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.card-container .card-footer .read-more::after {
  content: "→";
  margin-left: 5px;
  transition: all 0.3s ease;
}

.card-skeleton {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3fr 2fr 1fr;
  gap: 1em;
  background-color: var(--secondary-background);
  border-radius: 8px;
  width: 20em;
  min-height: 20em;
  position: relative;
}
.card-skeleton .card-body-skeleton {
  padding: 0 1em;
  overflow: hidden;
}
.card-skeleton .card-footer-skeleton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1em;
}/*# sourceMappingURL=card.css.map */.accordion-checkbox-list {
  border-radius: 4px;
  width: 250px;
  margin: 10px 0;
  background-color: inherit;
  color: var(--text);
}
.accordion-checkbox-list .accordion-toggle {
  width: 100%;
  padding: 10px;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background-color: inherit;
}
.accordion-checkbox-list .accordion-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}/*# sourceMappingURL=accordion-checkbox-list.css.map */.run-button {
  margin: auto;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 450ms ease-in-out linear;
}
.run-button .run-icon {
  background-color: var(--primary);
  height: 3.5em;
  width: 3.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-background);
  border: none;
  border-radius: 50%;
  position: relative;
}
.run-button .run-icon:hover {
  cursor: pointer;
  opacity: 0.7;
}
.run-button .run-icon .icon {
  font-size: 1.5em;
}
.run-button .run-icon:disabled {
  background-color: rgb(117, 117, 117);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  border: none;
}
.run-button .run-icon:disabled::before {
  background-color: rgb(199, 205, 214);
}
.run-button .run-icon:disabled::after {
  color: var(--text);
}

.error-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
  gap: 0.5em;
}
.error-group .error-key {
  font-weight: 500;
  text-decoration: underline;
}
.error-group .error-values {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}/*# sourceMappingURL=run-button.css.map */.collection-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 100%;
  overflow-y: auto;
}
.collection-grid .header {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  gap: 1em;
  padding: 2em 2em 1em 2em;
  background-color: var(--background);
  z-index: 10;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
}
.collection-grid .header .title {
  font-size: 1.8em;
  font-weight: 600;
}
.collection-grid .header .actions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.collection-grid .header .actions-container .search-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
}
.collection-grid .header .actions-container .search-wrapper .items-so-far {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.collection-grid .header .actions-container .add-button {
  background-color: var(--primary);
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 24px;
  color: var(--white);
  font-weight: 500;
}
.collection-grid .header .actions-container .add-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.collection-grid .header .filter-list {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.collection-grid .header .filter-list .filter-all {
  display: inline-flex;
  align-items: center;
  align-content: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  gap: 0.25em;
  padding: 0.25em 0.5em;
  border: 1px solid var(--secondary-text);
  outline: none;
  border-radius: 16px;
}
.collection-grid .header .filter-list .filter-all:hover:not(:disabled) {
  cursor: pointer;
  background-color: var(--secondary-background);
}
.collection-grid .header .filter-list .filter-all:disabled {
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: var(--disabled);
}
.collection-grid .header .filter-list .filter-all__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.collection-grid .header .filter-list .filter-all__icon:hover {
  color: var(--error-color);
}
.collection-grid .header .filter-list .filter-all__icon svg {
  display: block;
  width: 14px;
  height: 14px;
}
.collection-grid .collection-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3em;
  gap: 1em;
}
.collection-grid .collection-list .collection-grid-table {
  font-size: 0.8em;
}
.collection-grid .collection-list .collection-grid-table .rdt_Table {
  margin-top: 1em;
  border-radius: 8px;
  background-color: var(--secondary-background);
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableHeadRow {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  color: var(--text);
  background-color: var(--secondary-background);
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody {
  max-height: 40em;
  overflow-y: auto;
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody .rdt_TableRow {
  color: var(--text);
  background-color: var(--secondary-background);
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody .rdt_TableRow:nth-child(even) {
  background-color: rgba(var(--text-color), 0.05);
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody .rdt_TableRow:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border: none;
  outline: none;
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody .rdt_TableRow button[type=button] {
  color: var(--text);
}
.collection-grid .collection-list .collection-grid-table .rdt_Table .rdt_TableBody .rdt_ExpanderRow {
  background-color: var(--background);
  color: var(--text);
  border-left: 2px solid var(--secondary);
}
.collection-grid .collection-list .collection-grid-table .rdt_Pagination {
  color: var(--text);
  background-color: var(--secondary-background);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.collection-grid .collection-list .collection-grid-table .rdt_Pagination button[type=button] {
  fill: var(--text);
}
.collection-grid .collection-list .collection-grid-table .no-experiments {
  color: var(--text);
  text-align: center;
  background-color: var(--secondary-background);
  font-weight: 600;
  padding: 1em;
  font-size: 1.2em;
}
.collection-grid .collection-list .collection-grid-table .load-more-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.collection-grid .collection-list .collection-grid-table .load-more-wrapper .load-more-button {
  width: 10em;
  text-align: center;
  background-color: var(--secondary);
  border: none;
  outline: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5em;
  margin: 1em 0 0 1em;
}
.collection-grid .collection-list .collection-grid-table .load-more-wrapper .load-more-button:hover {
  opacity: 0.7;
  cursor: pointer;
}
.collection-grid .collection-list .collection-grid-table .load-more-wrapper .load-more-button:disabled {
  background-color: var(--disabled);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.collection-grid .no-search-result {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
}
.collection-grid .no-search-result .title {
  font-weight: 500;
}
.collection-grid .no-search-result .subtitle {
  color: var(--secondary-text);
}
.collection-grid .no-search-result .action-button {
  background-color: var(--primary);
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 16px;
  margin-top: 1em;
  color: var(--white);
  font-weight: 500;
}
.collection-grid .no-search-result .action-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.collection-grid .publish-button {
  font-size: 10px;
  border: none;
  outline: none;
  background-color: rgba(var(--accent-color), 0.5);
  border: 2px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
}
.collection-grid .publish-button.published {
  background-color: rgba(var(--primary-color), 0.5);
  border: 2px solid var(--primary);
}
.collection-grid .publish-button.hover-publish {
  background-color: rgba(var(--secondary-color), 0.5);
  border: 2px solid var(--secondary);
}
.collection-grid .publish-button.publish-button.hover-unpublish {
  background-color: rgba(var(--accent-color), 0.5);
  border: 2px solid var(--accent);
}
.collection-grid .pagination {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  list-style: none;
  padding: 0;
}
.collection-grid .pagination li {
  margin: 0 0.25em;
  border-radius: 4px;
  padding: 8px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.collection-grid .pagination li.disabled {
  background-color: var(--disabled);
  color: var(--background);
}
.collection-grid .pagination li:hover:not(.collection-grid .pagination li.disabled) {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
}
.collection-grid .pagination li a {
  border-radius: 4px;
  text-decoration: none;
  padding: 8px 12px;
}
.collection-grid .pagination li.selected a {
  background-color: var(--primary);
}/*# sourceMappingURL=collection-grid.css.map */.label-menu {
  background-color: var(--secondary-background);
  height: calc(100vh - var(--navbar-height));
}
.label-menu .menu-tabs-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.label-menu .menu-tabs-container .menu-tab {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0.5em;
  width: 100%;
  font-size: 1em;
  border-top: 1px solid rgba(var(--text-color), 0.05);
}
.label-menu .menu-tabs-container .menu-tab:hover:not(.active) {
  cursor: pointer;
  background-color: var(--background);
}
.label-menu .menu-tabs-container .menu-tab.active {
  background-color: var(--background);
  border-left: 4px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
}
.label-menu .menu-tabs-container .menu-tab:last-child {
  border-bottom: 1px solid rgba(var(--text-color), 0.05);
}
.label-menu .menu-tabs-container .menu-tab .tab-count {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-text);
  font-size: 0.8em;
}
.label-menu .toggle-list {
  padding: 0.5em;
}
.label-menu .label-list {
  position: relative;
}
.label-menu .label-list .filter-icon {
  position: absolute;
  top: 1em;
  right: 0.5em;
  color: var(--text);
}

.label-menu--disabled {
  pointer-events: none;
  opacity: 0.6;
}/*# sourceMappingURL=label-menu.css.map */.dropzone-component .files-added {
  font-size: 0.8em;
  color: rgba(var(--text-color), 0.5);
}
.dropzone-component .dropzone-container .dropzone {
  border: 2px dotted rgba(var(--text-color), 0.5);
  height: 15em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(var(--text-color), 0.05);
  word-break: break-all;
  overflow-y: auto;
  padding: 1em 0;
}
.dropzone-component .dropzone-container .dropzone.dense {
  height: 8em;
  font-size: 0.7em;
}
.dropzone-component .dropzone-container .dropzone:hover {
  cursor: pointer;
  background-color: rgba(var(--secondary-color), 0.02);
}
.dropzone-component .dropzone-container .dropzone .thumbs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  height: 100%;
}
.dropzone-component .dropzone-container .dropzone .thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 8em;
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  padding: 0.5em;
  background-color: rgba(var(--text-color), 0.2);
  height: 5em;
}
.dropzone-component .dropzone-container .dropzone .thumb .remove-button {
  position: absolute;
  top: 0;
  left: 0;
}
.dropzone-component .dropzone-container .dropzone .thumb .remove-button:hover {
  cursor: pointer;
  color: var(--accent);
}
.dropzone-component .dropzone-container .dropzone .thumb .thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.dropzone-component .dropzone-container .dropzone .thumb .thumb-inner img,
.dropzone-component .dropzone-container .dropzone .thumb .thumb-inner .img-thumbnail {
  display: block;
  max-width: 100%;
  max-height: 50px;
}
.dropzone-component .dropzone-container .dropzone .thumb .thumb-inner span {
  font-size: 1.5em;
  color: var(--secondary);
}
.dropzone-component .dropzone-container .dropzone .thumb .thumb-inner .file-name {
  font-size: 0.7em;
  color: var(--secondary-color);
  text-align: center;
  word-wrap: break-word;
  margin: 0;
  overflow-y: auto;
  padding-bottom: 1em;
}
.dropzone-component .dropzone-container .dropzone .icon {
  font-size: 4em;
  color: var(--primary);
}
.dropzone-component .progress-bar {
  width: 100%;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
}
.dropzone-component .progress-bar.small {
  height: 10px;
}
.dropzone-component .progress-bar.small .bar-value {
  font-size: 0.5em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.dropzone-component .progress-bar .progress-bar-fill {
  height: 100%;
  background-color: #4caf50;
  text-align: center;
  color: white;
  border-radius: 4px;
  transition: width 0.2s ease-in-out;
}
.dropzone-component .actions {
  position: relative;
  width: 100%;
  padding-top: 1em;
}
.dropzone-component .actions .add {
  position: absolute;
  right: 0;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.dropzone-component .actions .add .icon {
  font-size: 1.3em;
}
.dropzone-component .actions .add:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.dropzone-component .actions .add:disabled {
  background-color: var(--disabled);
  color: var(--disabled-text);
  cursor: not-allowed;
}/*# sourceMappingURL=dropzone.css.map */.spinner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
.spinner.spin::before {
  animation: rotation 1s linear infinite;
  background: linear-gradient(0deg, rgba(var(--primary-color), 0.2) 33%, var(--primary) 100%);
}
.spinner::after, .spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.spinner::after {
  content: attr(data-content);
  background: var(--secondary-background);
  width: 18px;
  height: 18px;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner::before {
  background: var(--primary);
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}/*# sourceMappingURL=spinner.css.map */.table .table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table .table-header .table-title {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--primary);
}
.table .table-header .table-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  margin: 1em;
}
.table .table-header .table-controls .add-button {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 1em 2em;
  cursor: pointer;
  transition: all 0.3s;
}
.table .table-header .table-controls .add-button:hover {
  filter: brightness(0.9);
}
.table .table-header .table-controls .refresh-button {
  background-color: transparent;
  color: var(--secondary-text);
  border: none;
  outline: none;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table .table-header .table-controls .refresh-button:hover {
  filter: brightness(0.9);
}
.table .table-header .table-controls .refresh-button.spin {
  animation: spin 1s linear infinite;
}
.table .rdt_Table {
  border-radius: 8px;
  background-color: var(--secondary-background);
  overflow-x: hidden;
}
.table .rdt_Table .rdt_TableHeadRow {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  color: var(--text);
  background-color: var(--secondary-background);
}
.table .rdt_Table .rdt_TableBody {
  max-height: 40em;
}
.table .rdt_Table .rdt_TableBody .rdt_TableRow {
  color: var(--text);
  background-color: var(--secondary-background);
  font-size: 0.9em;
}
.table .rdt_Table .rdt_TableBody .rdt_TableRow:nth-child(even) {
  background-color: rgba(var(--text-color), 0.01);
}
.table .rdt_Table .rdt_TableBody .rdt_TableRow:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border: none;
  outline: none;
}
.table .rdt_Table .rdt_TableBody .rdt_TableRow button[type=button] {
  color: var(--text);
}
.table .rdt_Table .rdt_TableBody .rdt_ExpanderRow {
  background-color: var(--background);
  color: var(--text);
  border-left: 2px solid var(--secondary);
}
.table .rdt_Table input[type=checkbox] {
  accent-color: rgb(var(--dark-green-color));
}
.table .rdt_Pagination {
  color: var(--text);
  background-color: var(--secondary-background);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table .rdt_Pagination button[type=button] {
  fill: var(--text);
}
.table .rdt_Pagination select option {
  background-color: var(--secondary-background);
}
.table .no-data {
  background-color: var(--secondary-background);
  width: 100%;
  text-align: center;
  color: var(--text);
}
.table .no-data .no-data-image {
  width: 10em;
  height: 10em;
  color: var(--secondary-text);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=table.css.map */.chip {
  display: flex;
  align-items: center;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: rgba(var(--text-color), 0.1);
  color: rgba(var(--text-color), 0.5);
  cursor: default;
  border: 1px solid rgba(var(--text-color), 0.2);
}
.chip--clickable {
  cursor: pointer;
}
.chip__delete {
  margin-left: 0.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.chip__delete:hover {
  color: var(--error-color);
}

.chip--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}/*# sourceMappingURL=chip.css.map */.new-item {
  display: flex;
  align-items: center;
  padding: 4px 8px 4px 24px;
  margin: 2px 0;
}
.new-item.root-new-item {
  padding-left: 8px;
}
.new-item .icon {
  margin-right: 0.25em;
}
.new-item .folder-icon {
  color: var(--primary);
}
.new-item .file-icon {
  color: var(--white);
}
.new-item .new-item-input {
  flex-grow: 1;
  padding: 2px 4px;
  border: none;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
}
.new-item .new-item-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.2);
}
.new-item .new-item-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 3px;
  margin-left: 4px;
  font-size: 12px;
}
.new-item .cancel-btn:hover {
  color: var(--error-color);
}
.new-item .confirm-btn:hover {
  color: var(--primary);
}/*# sourceMappingURL=new-item-input.css.map */.tree-view {
  background-color: var(--background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 4px;
  overflow: auto;
  height: 100%;
  min-height: 300px;
  color: var(--text);
  font-size: 14px;
}
.tree-view .tree-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5em;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  margin-bottom: 8px;
  position: sticky;
  background-color: var(--background);
  z-index: 2;
  top: 0;
}
.tree-view .tree-content {
  padding: 4px 0;
}
.tree-view .root-drop-placeholder {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: 4px;
  background-color: rgba(var(--text-color), 0.05);
  outline: 2px dashed var(--secondary);
}
.tree-view .tree-node {
  margin: 2px 0;
}
.tree-view .tree-node .children {
  padding-left: 16px;
  position: relative;
}
.tree-view .tree-node .children::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 1px;
  height: 100%;
  background-color: rgba(var(--text-color), 0.2);
}
.tree-view .tree-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.tree-view .tree-item:hover {
  background-color: rgba(var(--text-color), 0.1);
}
.tree-view .tree-item:hover .action-buttons,
.tree-view .tree-item:hover .add-buttons {
  opacity: 1;
  visibility: visible;
}
.tree-view .tree-item.selected {
  background-color: rgba(var(--text-color), 0.1);
}
.tree-view .tree-item.selected::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  border-radius: 0 16px 16px 0;
  background: var(--primary);
}
.tree-view .tree-item.drag-over {
  background-color: rgba(var(--text-color), 0.05);
  outline: 2px dashed var(--secondary);
}
.tree-view .tree-item .item-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}
.tree-view .tree-item .item-content .icon-code {
  margin-right: 6px;
}
.tree-view .tree-item .item-content .folder-icon-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  margin-right: 6px;
}
.tree-view .tree-item .item-content .folder-icon-container .folder-icon {
  color: var(--primary);
}
.tree-view .tree-item .item-content .folder-icon-container .collapse-indicator {
  font-size: 0.8em;
  transition: transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tree-view .tree-item .item-content .folder-icon-container .collapse-indicator.closed {
  transform: rotate(-90deg);
}
.tree-view .tree-item .item-content span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tree-view .tree-item .item-content span.fixed-item {
  color: rgba(var(--text-color), 0.9);
}
.tree-view .action-buttons,
.tree-view .add-buttons {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  margin-left: auto;
}
.tree-view .action-btn,
.tree-view .add-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 2px;
  color: rgba(var(--text-color), 0.6);
}
.tree-view .action-btn:hover,
.tree-view .add-btn:hover {
  background-color: rgba(var(--text-color), 0.1);
  cursor: pointer;
}
.tree-view .action-btn .btn-icon,
.tree-view .add-btn .btn-icon {
  font-size: 12px;
}
.tree-view .action-btn .btn-icon-small,
.tree-view .add-btn .btn-icon-small {
  font-size: 8px;
  margin-left: -4px;
  margin-bottom: -4px;
}
.tree-view .delete-btn:hover {
  color: var(--error-color);
}
.tree-view .rename-input {
  padding: 2px 4px;
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 4px;
  outline: none;
  font-size: 14px;
}
.tree-view .rename-input:focus {
  border-color: rgba(var(--primary-color), 0.5);
}
.tree-view .rename-input-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.tree-view .rename-input-wrapper .rename-input {
  padding-right: 3.5em;
}
.tree-view .rename-input-wrapper .rename-extension {
  position: absolute;
  right: 8px;
  font-size: 14px;
  color: rgba(var(--text-color), 0.6);
  pointer-events: none;
}

.div-empty-space {
  display: flex;
  min-height: 100%;
  height: 100%;
}/*# sourceMappingURL=tree-view.css.map */.terminal {
  background-color: var(--background);
  color: var(--text-color);
  font-family: monospace;
  overflow-y: auto;
  border-top: 1px solid rgba(var(--text-color), 0.1);
  height: 100%;
}
.terminal .terminal-header {
  border-bottom: 1px solid rgba(var(--text-color), 0.1);
  background-color: rgba(var(--text-color), 0.01);
  margin-bottom: 0.5em;
  padding: 0.25em;
}
.terminal .terminal-line {
  white-space: pre-wrap;
}
.terminal .terminal-input-line {
  display: flex;
  align-items: center;
}
.terminal .terminal-input-line .terminal-prompt {
  margin-right: 5px;
}
.terminal .terminal-input-line .terminal-input {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-family: monospace;
  outline: none;
  width: 100%;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}/*# sourceMappingURL=terminal.css.map */.rc-slider {
  position: relative;
  width: 100%;
  height: 14px;
  padding: 5px 0;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e9e9e9;
  border-radius: 6px;
}
.rc-slider-track,
.rc-slider-tracks {
  position: absolute;
  height: 4px;
  background-color: #abe2fb;
  border-radius: 6px;
}
.rc-slider-track-draggable {
  z-index: 1;
  box-sizing: content-box;
  background-clip: content-box;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  transform: translateY(-5px);
}
.rc-slider-handle {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background-color: #fff;
  border: solid 2px #96dbfa;
  border-radius: 50%;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  opacity: 0.8;
  user-select: none;
  touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging-delete {
  opacity: 0;
}
.rc-slider-handle:focus {
  outline: none;
  box-shadow: none;
}
.rc-slider-handle:focus-visible {
  border-color: #2db7f5;
  box-shadow: 0 0 0 3px #96dbfa;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: #999;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  cursor: pointer;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-track {
  bottom: 0;
  left: 5px;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track-draggable {
  border-top: 0;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 5px solid rgba(0, 0, 0, 0);
  transform: translateX(-5px);
}
.rc-slider-vertical .rc-slider-handle {
  position: absolute;
  z-index: 1;
  margin-top: 0;
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-dot {
  margin-left: -2px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.rc-slider-tooltip {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  min-width: 24px;
  height: 24px;
  padding: 6px 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

.slider-value-badge {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  justify-content: center;
}

.slider-unit {
  font-size: 0.8em;
}

.slider-description {
  font-size: 0.8em;
  color: var(--secondary-text);
}

.slider-disabled-message {
  font-size: 0.8em;
  color: var(--error-color);
}

.slider-wrapper {
  position: relative;
  padding: 0 1em;
}

.slider-wrapper .rc-slider-track {
  border-radius: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.slider-wrapper .rc-slider-handle {
  background: var(--primary);
  border: 2px solid var(--white);
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-wrapper .rc-slider-handle:hover {
  transform: scale(1.1);
}

.slider-wrapper .rc-slider-handle:active {
  box-shadow: 0 0 0 8px rgba(var(--text-color), 0.15);
}

.slider-wrapper .rc-slider-handle:focus {
  box-shadow: 0 0 0 8px rgba(var(--text-color), 0.15);
  outline: none;
}

.slider-wrapper .rc-slider-disabled {
  background: transparent;
}

.slider-wrapper .rc-slider-disabled .rc-slider-rail {
  filter: brightness(0.7);
}

.slider-wrapper .rc-slider-disabled .rc-slider-handle {
  background: var(--disabled);
  filter: brightness(0.7);
  box-shadow: none;
  cursor: not-allowed;
}

.slider-wrapper .rc-slider-mark-text {
  color: var(--secondary-text);
  filter: brightness(0.9);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

.slider-wrapper .rc-slider-mark-text-active {
  color: var(--primary);
  font-weight: 600;
}

.slider-wrapper .rc-slider-dot-active {
  border-color: var(--primary);
}/*# sourceMappingURL=slider.css.map *//*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

@font-face {
	font-family: "codicon";
	font-display: block;
	src: url("./codicon.ttf?38dcd33a732ebca5a557e04831e9e235") format("truetype");
}

.codicon[class*='codicon-'] {
	font: normal normal normal 16px/1 codicon;
	display: inline-block;
	text-decoration: none;
	text-rendering: auto;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/*---------------------
 *  Modifiers
 *-------------------*/

@keyframes codicon-spin {
	100% {
		transform:rotate(360deg);
	}
}

.codicon-sync.codicon-modifier-spin,
.codicon-loading.codicon-modifier-spin,
.codicon-gear.codicon-modifier-spin {
	/* Use steps to throttle FPS to reduce CPU usage */
	animation: codicon-spin 1.5s steps(30) infinite;
}

.codicon-modifier-disabled {
	opacity: 0.5;
}

.codicon-modifier-hidden {
	opacity: 0;
}

/* custom speed & easing for loading icon */
.codicon-loading {
	animation-duration: 1s !important;
	animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
}

/*---------------------
 *  Icons
 *-------------------*/

.codicon-add:before { content: "\ea60" }
.codicon-plus:before { content: "\ea60" }
.codicon-gist-new:before { content: "\ea60" }
.codicon-repo-create:before { content: "\ea60" }
.codicon-lightbulb:before { content: "\ea61" }
.codicon-light-bulb:before { content: "\ea61" }
.codicon-repo:before { content: "\ea62" }
.codicon-repo-delete:before { content: "\ea62" }
.codicon-gist-fork:before { content: "\ea63" }
.codicon-repo-forked:before { content: "\ea63" }
.codicon-git-pull-request:before { content: "\ea64" }
.codicon-git-pull-request-abandoned:before { content: "\ea64" }
.codicon-record-keys:before { content: "\ea65" }
.codicon-keyboard:before { content: "\ea65" }
.codicon-tag:before { content: "\ea66" }
.codicon-git-pull-request-label:before { content: "\ea66" }
.codicon-tag-add:before { content: "\ea66" }
.codicon-tag-remove:before { content: "\ea66" }
.codicon-person:before { content: "\ea67" }
.codicon-person-follow:before { content: "\ea67" }
.codicon-person-outline:before { content: "\ea67" }
.codicon-person-filled:before { content: "\ea67" }
.codicon-git-branch:before { content: "\ea68" }
.codicon-git-branch-create:before { content: "\ea68" }
.codicon-git-branch-delete:before { content: "\ea68" }
.codicon-source-control:before { content: "\ea68" }
.codicon-mirror:before { content: "\ea69" }
.codicon-mirror-public:before { content: "\ea69" }
.codicon-star:before { content: "\ea6a" }
.codicon-star-add:before { content: "\ea6a" }
.codicon-star-delete:before { content: "\ea6a" }
.codicon-star-empty:before { content: "\ea6a" }
.codicon-comment:before { content: "\ea6b" }
.codicon-comment-add:before { content: "\ea6b" }
.codicon-alert:before { content: "\ea6c" }
.codicon-warning:before { content: "\ea6c" }
.codicon-search:before { content: "\ea6d" }
.codicon-search-save:before { content: "\ea6d" }
.codicon-log-out:before { content: "\ea6e" }
.codicon-sign-out:before { content: "\ea6e" }
.codicon-log-in:before { content: "\ea6f" }
.codicon-sign-in:before { content: "\ea6f" }
.codicon-eye:before { content: "\ea70" }
.codicon-eye-unwatch:before { content: "\ea70" }
.codicon-eye-watch:before { content: "\ea70" }
.codicon-circle-filled:before { content: "\ea71" }
.codicon-primitive-dot:before { content: "\ea71" }
.codicon-close-dirty:before { content: "\ea71" }
.codicon-debug-breakpoint:before { content: "\ea71" }
.codicon-debug-breakpoint-disabled:before { content: "\ea71" }
.codicon-debug-hint:before { content: "\ea71" }
.codicon-terminal-decoration-success:before { content: "\ea71" }
.codicon-primitive-square:before { content: "\ea72" }
.codicon-edit:before { content: "\ea73" }
.codicon-pencil:before { content: "\ea73" }
.codicon-info:before { content: "\ea74" }
.codicon-issue-opened:before { content: "\ea74" }
.codicon-gist-private:before { content: "\ea75" }
.codicon-git-fork-private:before { content: "\ea75" }
.codicon-lock:before { content: "\ea75" }
.codicon-mirror-private:before { content: "\ea75" }
.codicon-close:before { content: "\ea76" }
.codicon-remove-close:before { content: "\ea76" }
.codicon-x:before { content: "\ea76" }
.codicon-repo-sync:before { content: "\ea77" }
.codicon-sync:before { content: "\ea77" }
.codicon-clone:before { content: "\ea78" }
.codicon-desktop-download:before { content: "\ea78" }
.codicon-beaker:before { content: "\ea79" }
.codicon-microscope:before { content: "\ea79" }
.codicon-vm:before { content: "\ea7a" }
.codicon-device-desktop:before { content: "\ea7a" }
.codicon-file:before { content: "\ea7b" }
.codicon-file-text:before { content: "\ea7b" }
.codicon-more:before { content: "\ea7c" }
.codicon-ellipsis:before { content: "\ea7c" }
.codicon-kebab-horizontal:before { content: "\ea7c" }
.codicon-mail-reply:before { content: "\ea7d" }
.codicon-reply:before { content: "\ea7d" }
.codicon-organization:before { content: "\ea7e" }
.codicon-organization-filled:before { content: "\ea7e" }
.codicon-organization-outline:before { content: "\ea7e" }
.codicon-new-file:before { content: "\ea7f" }
.codicon-file-add:before { content: "\ea7f" }
.codicon-new-folder:before { content: "\ea80" }
.codicon-file-directory-create:before { content: "\ea80" }
.codicon-trash:before { content: "\ea81" }
.codicon-trashcan:before { content: "\ea81" }
.codicon-history:before { content: "\ea82" }
.codicon-clock:before { content: "\ea82" }
.codicon-folder:before { content: "\ea83" }
.codicon-file-directory:before { content: "\ea83" }
.codicon-symbol-folder:before { content: "\ea83" }
.codicon-logo-github:before { content: "\ea84" }
.codicon-mark-github:before { content: "\ea84" }
.codicon-github:before { content: "\ea84" }
.codicon-terminal:before { content: "\ea85" }
.codicon-console:before { content: "\ea85" }
.codicon-repl:before { content: "\ea85" }
.codicon-zap:before { content: "\ea86" }
.codicon-symbol-event:before { content: "\ea86" }
.codicon-error:before { content: "\ea87" }
.codicon-stop:before { content: "\ea87" }
.codicon-variable:before { content: "\ea88" }
.codicon-symbol-variable:before { content: "\ea88" }
.codicon-array:before { content: "\ea8a" }
.codicon-symbol-array:before { content: "\ea8a" }
.codicon-symbol-module:before { content: "\ea8b" }
.codicon-symbol-package:before { content: "\ea8b" }
.codicon-symbol-namespace:before { content: "\ea8b" }
.codicon-symbol-object:before { content: "\ea8b" }
.codicon-symbol-method:before { content: "\ea8c" }
.codicon-symbol-function:before { content: "\ea8c" }
.codicon-symbol-constructor:before { content: "\ea8c" }
.codicon-symbol-boolean:before { content: "\ea8f" }
.codicon-symbol-null:before { content: "\ea8f" }
.codicon-symbol-numeric:before { content: "\ea90" }
.codicon-symbol-number:before { content: "\ea90" }
.codicon-symbol-structure:before { content: "\ea91" }
.codicon-symbol-struct:before { content: "\ea91" }
.codicon-symbol-parameter:before { content: "\ea92" }
.codicon-symbol-type-parameter:before { content: "\ea92" }
.codicon-symbol-key:before { content: "\ea93" }
.codicon-symbol-text:before { content: "\ea93" }
.codicon-symbol-reference:before { content: "\ea94" }
.codicon-go-to-file:before { content: "\ea94" }
.codicon-symbol-enum:before { content: "\ea95" }
.codicon-symbol-value:before { content: "\ea95" }
.codicon-symbol-ruler:before { content: "\ea96" }
.codicon-symbol-unit:before { content: "\ea96" }
.codicon-activate-breakpoints:before { content: "\ea97" }
.codicon-archive:before { content: "\ea98" }
.codicon-arrow-both:before { content: "\ea99" }
.codicon-arrow-down:before { content: "\ea9a" }
.codicon-arrow-left:before { content: "\ea9b" }
.codicon-arrow-right:before { content: "\ea9c" }
.codicon-arrow-small-down:before { content: "\ea9d" }
.codicon-arrow-small-left:before { content: "\ea9e" }
.codicon-arrow-small-right:before { content: "\ea9f" }
.codicon-arrow-small-up:before { content: "\eaa0" }
.codicon-arrow-up:before { content: "\eaa1" }
.codicon-bell:before { content: "\eaa2" }
.codicon-bold:before { content: "\eaa3" }
.codicon-book:before { content: "\eaa4" }
.codicon-bookmark:before { content: "\eaa5" }
.codicon-debug-breakpoint-conditional-unverified:before { content: "\eaa6" }
.codicon-debug-breakpoint-conditional:before { content: "\eaa7" }
.codicon-debug-breakpoint-conditional-disabled:before { content: "\eaa7" }
.codicon-debug-breakpoint-data-unverified:before { content: "\eaa8" }
.codicon-debug-breakpoint-data:before { content: "\eaa9" }
.codicon-debug-breakpoint-data-disabled:before { content: "\eaa9" }
.codicon-debug-breakpoint-log-unverified:before { content: "\eaaa" }
.codicon-debug-breakpoint-log:before { content: "\eaab" }
.codicon-debug-breakpoint-log-disabled:before { content: "\eaab" }
.codicon-briefcase:before { content: "\eaac" }
.codicon-broadcast:before { content: "\eaad" }
.codicon-browser:before { content: "\eaae" }
.codicon-bug:before { content: "\eaaf" }
.codicon-calendar:before { content: "\eab0" }
.codicon-case-sensitive:before { content: "\eab1" }
.codicon-check:before { content: "\eab2" }
.codicon-checklist:before { content: "\eab3" }
.codicon-chevron-down:before { content: "\eab4" }
.codicon-chevron-left:before { content: "\eab5" }
.codicon-chevron-right:before { content: "\eab6" }
.codicon-chevron-up:before { content: "\eab7" }
.codicon-chrome-close:before { content: "\eab8" }
.codicon-chrome-maximize:before { content: "\eab9" }
.codicon-chrome-minimize:before { content: "\eaba" }
.codicon-chrome-restore:before { content: "\eabb" }
.codicon-circle-outline:before { content: "\eabc" }
.codicon-circle:before { content: "\eabc" }
.codicon-debug-breakpoint-unverified:before { content: "\eabc" }
.codicon-terminal-decoration-incomplete:before { content: "\eabc" }
.codicon-circle-slash:before { content: "\eabd" }
.codicon-circuit-board:before { content: "\eabe" }
.codicon-clear-all:before { content: "\eabf" }
.codicon-clippy:before { content: "\eac0" }
.codicon-close-all:before { content: "\eac1" }
.codicon-cloud-download:before { content: "\eac2" }
.codicon-cloud-upload:before { content: "\eac3" }
.codicon-code:before { content: "\eac4" }
.codicon-collapse-all:before { content: "\eac5" }
.codicon-color-mode:before { content: "\eac6" }
.codicon-comment-discussion:before { content: "\eac7" }
.codicon-credit-card:before { content: "\eac9" }
.codicon-dash:before { content: "\eacc" }
.codicon-dashboard:before { content: "\eacd" }
.codicon-database:before { content: "\eace" }
.codicon-debug-continue:before { content: "\eacf" }
.codicon-debug-disconnect:before { content: "\ead0" }
.codicon-debug-pause:before { content: "\ead1" }
.codicon-debug-restart:before { content: "\ead2" }
.codicon-debug-start:before { content: "\ead3" }
.codicon-debug-step-into:before { content: "\ead4" }
.codicon-debug-step-out:before { content: "\ead5" }
.codicon-debug-step-over:before { content: "\ead6" }
.codicon-debug-stop:before { content: "\ead7" }
.codicon-debug:before { content: "\ead8" }
.codicon-device-camera-video:before { content: "\ead9" }
.codicon-device-camera:before { content: "\eada" }
.codicon-device-mobile:before { content: "\eadb" }
.codicon-diff-added:before { content: "\eadc" }
.codicon-diff-ignored:before { content: "\eadd" }
.codicon-diff-modified:before { content: "\eade" }
.codicon-diff-removed:before { content: "\eadf" }
.codicon-diff-renamed:before { content: "\eae0" }
.codicon-diff:before { content: "\eae1" }
.codicon-diff-sidebyside:before { content: "\eae1" }
.codicon-discard:before { content: "\eae2" }
.codicon-editor-layout:before { content: "\eae3" }
.codicon-empty-window:before { content: "\eae4" }
.codicon-exclude:before { content: "\eae5" }
.codicon-extensions:before { content: "\eae6" }
.codicon-eye-closed:before { content: "\eae7" }
.codicon-file-binary:before { content: "\eae8" }
.codicon-file-code:before { content: "\eae9" }
.codicon-file-media:before { content: "\eaea" }
.codicon-file-pdf:before { content: "\eaeb" }
.codicon-file-submodule:before { content: "\eaec" }
.codicon-file-symlink-directory:before { content: "\eaed" }
.codicon-file-symlink-file:before { content: "\eaee" }
.codicon-file-zip:before { content: "\eaef" }
.codicon-files:before { content: "\eaf0" }
.codicon-filter:before { content: "\eaf1" }
.codicon-flame:before { content: "\eaf2" }
.codicon-fold-down:before { content: "\eaf3" }
.codicon-fold-up:before { content: "\eaf4" }
.codicon-fold:before { content: "\eaf5" }
.codicon-folder-active:before { content: "\eaf6" }
.codicon-folder-opened:before { content: "\eaf7" }
.codicon-gear:before { content: "\eaf8" }
.codicon-gift:before { content: "\eaf9" }
.codicon-gist-secret:before { content: "\eafa" }
.codicon-gist:before { content: "\eafb" }
.codicon-git-commit:before { content: "\eafc" }
.codicon-git-compare:before { content: "\eafd" }
.codicon-compare-changes:before { content: "\eafd" }
.codicon-git-merge:before { content: "\eafe" }
.codicon-github-action:before { content: "\eaff" }
.codicon-github-alt:before { content: "\eb00" }
.codicon-globe:before { content: "\eb01" }
.codicon-grabber:before { content: "\eb02" }
.codicon-graph:before { content: "\eb03" }
.codicon-gripper:before { content: "\eb04" }
.codicon-heart:before { content: "\eb05" }
.codicon-home:before { content: "\eb06" }
.codicon-horizontal-rule:before { content: "\eb07" }
.codicon-hubot:before { content: "\eb08" }
.codicon-inbox:before { content: "\eb09" }
.codicon-issue-reopened:before { content: "\eb0b" }
.codicon-issues:before { content: "\eb0c" }
.codicon-italic:before { content: "\eb0d" }
.codicon-jersey:before { content: "\eb0e" }
.codicon-json:before { content: "\eb0f" }
.codicon-kebab-vertical:before { content: "\eb10" }
.codicon-key:before { content: "\eb11" }
.codicon-law:before { content: "\eb12" }
.codicon-lightbulb-autofix:before { content: "\eb13" }
.codicon-link-external:before { content: "\eb14" }
.codicon-link:before { content: "\eb15" }
.codicon-list-ordered:before { content: "\eb16" }
.codicon-list-unordered:before { content: "\eb17" }
.codicon-live-share:before { content: "\eb18" }
.codicon-loading:before { content: "\eb19" }
.codicon-location:before { content: "\eb1a" }
.codicon-mail-read:before { content: "\eb1b" }
.codicon-mail:before { content: "\eb1c" }
.codicon-markdown:before { content: "\eb1d" }
.codicon-megaphone:before { content: "\eb1e" }
.codicon-mention:before { content: "\eb1f" }
.codicon-milestone:before { content: "\eb20" }
.codicon-git-pull-request-milestone:before { content: "\eb20" }
.codicon-mortar-board:before { content: "\eb21" }
.codicon-move:before { content: "\eb22" }
.codicon-multiple-windows:before { content: "\eb23" }
.codicon-mute:before { content: "\eb24" }
.codicon-no-newline:before { content: "\eb25" }
.codicon-note:before { content: "\eb26" }
.codicon-octoface:before { content: "\eb27" }
.codicon-open-preview:before { content: "\eb28" }
.codicon-package:before { content: "\eb29" }
.codicon-paintcan:before { content: "\eb2a" }
.codicon-pin:before { content: "\eb2b" }
.codicon-play:before { content: "\eb2c" }
.codicon-run:before { content: "\eb2c" }
.codicon-plug:before { content: "\eb2d" }
.codicon-preserve-case:before { content: "\eb2e" }
.codicon-preview:before { content: "\eb2f" }
.codicon-project:before { content: "\eb30" }
.codicon-pulse:before { content: "\eb31" }
.codicon-question:before { content: "\eb32" }
.codicon-quote:before { content: "\eb33" }
.codicon-radio-tower:before { content: "\eb34" }
.codicon-reactions:before { content: "\eb35" }
.codicon-references:before { content: "\eb36" }
.codicon-refresh:before { content: "\eb37" }
.codicon-regex:before { content: "\eb38" }
.codicon-remote-explorer:before { content: "\eb39" }
.codicon-remote:before { content: "\eb3a" }
.codicon-remove:before { content: "\eb3b" }
.codicon-replace-all:before { content: "\eb3c" }
.codicon-replace:before { content: "\eb3d" }
.codicon-repo-clone:before { content: "\eb3e" }
.codicon-repo-force-push:before { content: "\eb3f" }
.codicon-repo-pull:before { content: "\eb40" }
.codicon-repo-push:before { content: "\eb41" }
.codicon-report:before { content: "\eb42" }
.codicon-request-changes:before { content: "\eb43" }
.codicon-rocket:before { content: "\eb44" }
.codicon-root-folder-opened:before { content: "\eb45" }
.codicon-root-folder:before { content: "\eb46" }
.codicon-rss:before { content: "\eb47" }
.codicon-ruby:before { content: "\eb48" }
.codicon-save-all:before { content: "\eb49" }
.codicon-save-as:before { content: "\eb4a" }
.codicon-save:before { content: "\eb4b" }
.codicon-screen-full:before { content: "\eb4c" }
.codicon-screen-normal:before { content: "\eb4d" }
.codicon-search-stop:before { content: "\eb4e" }
.codicon-server:before { content: "\eb50" }
.codicon-settings-gear:before { content: "\eb51" }
.codicon-settings:before { content: "\eb52" }
.codicon-shield:before { content: "\eb53" }
.codicon-smiley:before { content: "\eb54" }
.codicon-sort-precedence:before { content: "\eb55" }
.codicon-split-horizontal:before { content: "\eb56" }
.codicon-split-vertical:before { content: "\eb57" }
.codicon-squirrel:before { content: "\eb58" }
.codicon-star-full:before { content: "\eb59" }
.codicon-star-half:before { content: "\eb5a" }
.codicon-symbol-class:before { content: "\eb5b" }
.codicon-symbol-color:before { content: "\eb5c" }
.codicon-symbol-constant:before { content: "\eb5d" }
.codicon-symbol-enum-member:before { content: "\eb5e" }
.codicon-symbol-field:before { content: "\eb5f" }
.codicon-symbol-file:before { content: "\eb60" }
.codicon-symbol-interface:before { content: "\eb61" }
.codicon-symbol-keyword:before { content: "\eb62" }
.codicon-symbol-misc:before { content: "\eb63" }
.codicon-symbol-operator:before { content: "\eb64" }
.codicon-symbol-property:before { content: "\eb65" }
.codicon-wrench:before { content: "\eb65" }
.codicon-wrench-subaction:before { content: "\eb65" }
.codicon-symbol-snippet:before { content: "\eb66" }
.codicon-tasklist:before { content: "\eb67" }
.codicon-telescope:before { content: "\eb68" }
.codicon-text-size:before { content: "\eb69" }
.codicon-three-bars:before { content: "\eb6a" }
.codicon-thumbsdown:before { content: "\eb6b" }
.codicon-thumbsup:before { content: "\eb6c" }
.codicon-tools:before { content: "\eb6d" }
.codicon-triangle-down:before { content: "\eb6e" }
.codicon-triangle-left:before { content: "\eb6f" }
.codicon-triangle-right:before { content: "\eb70" }
.codicon-triangle-up:before { content: "\eb71" }
.codicon-twitter:before { content: "\eb72" }
.codicon-unfold:before { content: "\eb73" }
.codicon-unlock:before { content: "\eb74" }
.codicon-unmute:before { content: "\eb75" }
.codicon-unverified:before { content: "\eb76" }
.codicon-verified:before { content: "\eb77" }
.codicon-versions:before { content: "\eb78" }
.codicon-vm-active:before { content: "\eb79" }
.codicon-vm-outline:before { content: "\eb7a" }
.codicon-vm-running:before { content: "\eb7b" }
.codicon-watch:before { content: "\eb7c" }
.codicon-whitespace:before { content: "\eb7d" }
.codicon-whole-word:before { content: "\eb7e" }
.codicon-window:before { content: "\eb7f" }
.codicon-word-wrap:before { content: "\eb80" }
.codicon-zoom-in:before { content: "\eb81" }
.codicon-zoom-out:before { content: "\eb82" }
.codicon-list-filter:before { content: "\eb83" }
.codicon-list-flat:before { content: "\eb84" }
.codicon-list-selection:before { content: "\eb85" }
.codicon-selection:before { content: "\eb85" }
.codicon-list-tree:before { content: "\eb86" }
.codicon-debug-breakpoint-function-unverified:before { content: "\eb87" }
.codicon-debug-breakpoint-function:before { content: "\eb88" }
.codicon-debug-breakpoint-function-disabled:before { content: "\eb88" }
.codicon-debug-stackframe-active:before { content: "\eb89" }
.codicon-circle-small-filled:before { content: "\eb8a" }
.codicon-debug-stackframe-dot:before { content: "\eb8a" }
.codicon-terminal-decoration-mark:before { content: "\eb8a" }
.codicon-debug-stackframe:before { content: "\eb8b" }
.codicon-debug-stackframe-focused:before { content: "\eb8b" }
.codicon-debug-breakpoint-unsupported:before { content: "\eb8c" }
.codicon-symbol-string:before { content: "\eb8d" }
.codicon-debug-reverse-continue:before { content: "\eb8e" }
.codicon-debug-step-back:before { content: "\eb8f" }
.codicon-debug-restart-frame:before { content: "\eb90" }
.codicon-debug-alt:before { content: "\eb91" }
.codicon-call-incoming:before { content: "\eb92" }
.codicon-call-outgoing:before { content: "\eb93" }
.codicon-menu:before { content: "\eb94" }
.codicon-expand-all:before { content: "\eb95" }
.codicon-feedback:before { content: "\eb96" }
.codicon-git-pull-request-reviewer:before { content: "\eb96" }
.codicon-group-by-ref-type:before { content: "\eb97" }
.codicon-ungroup-by-ref-type:before { content: "\eb98" }
.codicon-account:before { content: "\eb99" }
.codicon-git-pull-request-assignee:before { content: "\eb99" }
.codicon-bell-dot:before { content: "\eb9a" }
.codicon-debug-console:before { content: "\eb9b" }
.codicon-library:before { content: "\eb9c" }
.codicon-output:before { content: "\eb9d" }
.codicon-run-all:before { content: "\eb9e" }
.codicon-sync-ignored:before { content: "\eb9f" }
.codicon-pinned:before { content: "\eba0" }
.codicon-github-inverted:before { content: "\eba1" }
.codicon-server-process:before { content: "\eba2" }
.codicon-server-environment:before { content: "\eba3" }
.codicon-pass:before { content: "\eba4" }
.codicon-issue-closed:before { content: "\eba4" }
.codicon-stop-circle:before { content: "\eba5" }
.codicon-play-circle:before { content: "\eba6" }
.codicon-record:before { content: "\eba7" }
.codicon-debug-alt-small:before { content: "\eba8" }
.codicon-vm-connect:before { content: "\eba9" }
.codicon-cloud:before { content: "\ebaa" }
.codicon-merge:before { content: "\ebab" }
.codicon-export:before { content: "\ebac" }
.codicon-graph-left:before { content: "\ebad" }
.codicon-magnet:before { content: "\ebae" }
.codicon-notebook:before { content: "\ebaf" }
.codicon-redo:before { content: "\ebb0" }
.codicon-check-all:before { content: "\ebb1" }
.codicon-pinned-dirty:before { content: "\ebb2" }
.codicon-pass-filled:before { content: "\ebb3" }
.codicon-circle-large-filled:before { content: "\ebb4" }
.codicon-circle-large:before { content: "\ebb5" }
.codicon-circle-large-outline:before { content: "\ebb5" }
.codicon-combine:before { content: "\ebb6" }
.codicon-gather:before { content: "\ebb6" }
.codicon-table:before { content: "\ebb7" }
.codicon-variable-group:before { content: "\ebb8" }
.codicon-type-hierarchy:before { content: "\ebb9" }
.codicon-type-hierarchy-sub:before { content: "\ebba" }
.codicon-type-hierarchy-super:before { content: "\ebbb" }
.codicon-git-pull-request-create:before { content: "\ebbc" }
.codicon-run-above:before { content: "\ebbd" }
.codicon-run-below:before { content: "\ebbe" }
.codicon-notebook-template:before { content: "\ebbf" }
.codicon-debug-rerun:before { content: "\ebc0" }
.codicon-workspace-trusted:before { content: "\ebc1" }
.codicon-workspace-untrusted:before { content: "\ebc2" }
.codicon-workspace-unknown:before { content: "\ebc3" }
.codicon-terminal-cmd:before { content: "\ebc4" }
.codicon-terminal-debian:before { content: "\ebc5" }
.codicon-terminal-linux:before { content: "\ebc6" }
.codicon-terminal-powershell:before { content: "\ebc7" }
.codicon-terminal-tmux:before { content: "\ebc8" }
.codicon-terminal-ubuntu:before { content: "\ebc9" }
.codicon-terminal-bash:before { content: "\ebca" }
.codicon-arrow-swap:before { content: "\ebcb" }
.codicon-copy:before { content: "\ebcc" }
.codicon-person-add:before { content: "\ebcd" }
.codicon-filter-filled:before { content: "\ebce" }
.codicon-wand:before { content: "\ebcf" }
.codicon-debug-line-by-line:before { content: "\ebd0" }
.codicon-inspect:before { content: "\ebd1" }
.codicon-layers:before { content: "\ebd2" }
.codicon-layers-dot:before { content: "\ebd3" }
.codicon-layers-active:before { content: "\ebd4" }
.codicon-compass:before { content: "\ebd5" }
.codicon-compass-dot:before { content: "\ebd6" }
.codicon-compass-active:before { content: "\ebd7" }
.codicon-azure:before { content: "\ebd8" }
.codicon-issue-draft:before { content: "\ebd9" }
.codicon-git-pull-request-closed:before { content: "\ebda" }
.codicon-git-pull-request-draft:before { content: "\ebdb" }
.codicon-debug-all:before { content: "\ebdc" }
.codicon-debug-coverage:before { content: "\ebdd" }
.codicon-run-errors:before { content: "\ebde" }
.codicon-folder-library:before { content: "\ebdf" }
.codicon-debug-continue-small:before { content: "\ebe0" }
.codicon-beaker-stop:before { content: "\ebe1" }
.codicon-graph-line:before { content: "\ebe2" }
.codicon-graph-scatter:before { content: "\ebe3" }
.codicon-pie-chart:before { content: "\ebe4" }
.codicon-bracket:before { content: "\eb0f" }
.codicon-bracket-dot:before { content: "\ebe5" }
.codicon-bracket-error:before { content: "\ebe6" }
.codicon-lock-small:before { content: "\ebe7" }
.codicon-azure-devops:before { content: "\ebe8" }
.codicon-verified-filled:before { content: "\ebe9" }
.codicon-newline:before { content: "\ebea" }
.codicon-layout:before { content: "\ebeb" }
.codicon-layout-activitybar-left:before { content: "\ebec" }
.codicon-layout-activitybar-right:before { content: "\ebed" }
.codicon-layout-panel-left:before { content: "\ebee" }
.codicon-layout-panel-center:before { content: "\ebef" }
.codicon-layout-panel-justify:before { content: "\ebf0" }
.codicon-layout-panel-right:before { content: "\ebf1" }
.codicon-layout-panel:before { content: "\ebf2" }
.codicon-layout-sidebar-left:before { content: "\ebf3" }
.codicon-layout-sidebar-right:before { content: "\ebf4" }
.codicon-layout-statusbar:before { content: "\ebf5" }
.codicon-layout-menubar:before { content: "\ebf6" }
.codicon-layout-centered:before { content: "\ebf7" }
.codicon-target:before { content: "\ebf8" }
.codicon-indent:before { content: "\ebf9" }
.codicon-record-small:before { content: "\ebfa" }
.codicon-error-small:before { content: "\ebfb" }
.codicon-terminal-decoration-error:before { content: "\ebfb" }
.codicon-arrow-circle-down:before { content: "\ebfc" }
.codicon-arrow-circle-left:before { content: "\ebfd" }
.codicon-arrow-circle-right:before { content: "\ebfe" }
.codicon-arrow-circle-up:before { content: "\ebff" }
.codicon-layout-sidebar-right-off:before { content: "\ec00" }
.codicon-layout-panel-off:before { content: "\ec01" }
.codicon-layout-sidebar-left-off:before { content: "\ec02" }
.codicon-blank:before { content: "\ec03" }
.codicon-heart-filled:before { content: "\ec04" }
.codicon-map:before { content: "\ec05" }
.codicon-map-horizontal:before { content: "\ec05" }
.codicon-fold-horizontal:before { content: "\ec05" }
.codicon-map-filled:before { content: "\ec06" }
.codicon-map-horizontal-filled:before { content: "\ec06" }
.codicon-fold-horizontal-filled:before { content: "\ec06" }
.codicon-circle-small:before { content: "\ec07" }
.codicon-bell-slash:before { content: "\ec08" }
.codicon-bell-slash-dot:before { content: "\ec09" }
.codicon-comment-unresolved:before { content: "\ec0a" }
.codicon-git-pull-request-go-to-changes:before { content: "\ec0b" }
.codicon-git-pull-request-new-changes:before { content: "\ec0c" }
.codicon-search-fuzzy:before { content: "\ec0d" }
.codicon-comment-draft:before { content: "\ec0e" }
.codicon-send:before { content: "\ec0f" }
.codicon-sparkle:before { content: "\ec10" }
.codicon-insert:before { content: "\ec11" }
.codicon-mic:before { content: "\ec12" }
.codicon-thumbsdown-filled:before { content: "\ec13" }
.codicon-thumbsup-filled:before { content: "\ec14" }
.codicon-coffee:before { content: "\ec15" }
.codicon-snake:before { content: "\ec16" }
.codicon-game:before { content: "\ec17" }
.codicon-vr:before { content: "\ec18" }
.codicon-chip:before { content: "\ec19" }
.codicon-piano:before { content: "\ec1a" }
.codicon-music:before { content: "\ec1b" }
.codicon-mic-filled:before { content: "\ec1c" }
.codicon-repo-fetch:before { content: "\ec1d" }
.codicon-copilot:before { content: "\ec1e" }
.codicon-lightbulb-sparkle:before { content: "\ec1f" }
.codicon-robot:before { content: "\ec20" }
.codicon-sparkle-filled:before { content: "\ec21" }
.codicon-diff-single:before { content: "\ec22" }
.codicon-diff-multiple:before { content: "\ec23" }
.codicon-surround-with:before { content: "\ec24" }
.codicon-share:before { content: "\ec25" }
.codicon-git-stash:before { content: "\ec26" }
.codicon-git-stash-apply:before { content: "\ec27" }
.codicon-git-stash-pop:before { content: "\ec28" }
.codicon-vscode:before { content: "\ec29" }
.codicon-vscode-insiders:before { content: "\ec2a" }
.codicon-code-oss:before { content: "\ec2b" }
.codicon-run-coverage:before { content: "\ec2c" }
.codicon-run-all-coverage:before { content: "\ec2d" }
.codicon-coverage:before { content: "\ec2e" }
.codicon-github-project:before { content: "\ec2f" }
.codicon-map-vertical:before { content: "\ec30" }
.codicon-fold-vertical:before { content: "\ec30" }
.codicon-map-vertical-filled:before { content: "\ec31" }
.codicon-fold-vertical-filled:before { content: "\ec31" }
.codicon-go-to-search:before { content: "\ec32" }
.codicon-percentage:before { content: "\ec33" }
.codicon-sort-percentage:before { content: "\ec33" }
.codicon-git-fetch:before { content: "\f101" }
.vscode-editor-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  color: var(--text-color);
}
.vscode-editor-container .monaco-hover {
  position: fixed;
}
.vscode-editor-container .split-pane-content {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.vscode-editor-container .sidebar {
  height: 100%;
  background-color: rgba(var(--text-color), 0.02);
  border-right: 1px solid rgba(var(--text-color), 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.vscode-editor-container .sidebar-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vscode-editor-container .sidebar-title {
  padding: 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: #bbbbbb;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: sticky;
  top: 0;
  background-color: var(--background);
}
.vscode-editor-container .sidebar-title.divider {
  border-top: 1px solid rgba(var(--text-color), 0.2);
  margin-bottom: 1em;
}
.vscode-editor-container .sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.vscode-editor-container .packages-container {
  overflow-y: auto;
  height: 100%;
  border-top: 1px solid rgba(var(--text-color), 0.2);
}
.vscode-editor-container .packages-container .packages-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5em;
}
.vscode-editor-container .packages-container .packages-header .packages-search {
  font-size: 1.2em;
}
.vscode-editor-container .packages-container .packages-header .packages-search input {
  padding: 10px;
  height: 2.5em;
  font-size: 0.8em;
}
.vscode-editor-container .packages-container .packages {
  font-size: 0.9em;
  padding: 0 1em;
  color: rgba(var(--text-color), 0.6);
}
.vscode-editor-container .folder {
  margin-bottom: 5px;
}
.vscode-editor-container .folder-name {
  padding: 2px 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.vscode-editor-container .folder-children {
  padding-left: 12px;
}
.vscode-editor-container .file-item {
  padding: 2px 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vscode-editor-container .file-item:hover,
.vscode-editor-container .folder-name:hover {
  background-color: #2a2d2e;
}
.vscode-editor-container .file-item.active {
  background-color: #37373d;
}
.vscode-editor-container .editor-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.vscode-editor-container .editor-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  margin-bottom: 1em;
}
.vscode-editor-container .editor-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  font-size: 13px;
  background-color: var(--background);
  border-right: 1px solid rgba(var(--text-color), 0.2);
  cursor: pointer;
  height: 100%;
  padding: 1em;
  gap: 0.25em;
}
.vscode-editor-container .editor-tab.active {
  background-color: var(--secondary-background);
  border-top: 1px solid var(--primary);
}
.vscode-editor-container .tab-close {
  margin-left: 5px;
  opacity: 0.7;
}
.vscode-editor-container .tab-close:hover {
  opacity: 1;
  background-color: rgba(var(--text-color), 0.2);
  border-radius: 3px;
}
.vscode-editor-container .editor-content {
  flex: 1;
}
.vscode-editor-container .welcome-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(var(--text-color), 0.6);
}
.vscode-editor-container .welcome-screen h2 {
  font-size: 1.75em;
  margin-bottom: 0.5em;
  font-weight: normal;
}
.vscode-editor-container .welcome-screen p {
  font-size: 1em;
}

.swiggle-line {
  text-decoration: underline;
  text-decoration-color: var(--error-color);
  text-decoration-style: wavy;
  text-underline-offset: 1px;
}/*# sourceMappingURL=vs-code-editor.css.map */.admin-users {
  background-color: var(--secondary-background);
  border-radius: 4px;
}
.admin-users .group-tab.active {
  font-weight: 500;
}
.admin-users .group-tab span {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.admin-users .action-buttons {
  display: flex;
  align-items: center;
  gap: 1em;
}
.admin-users .action-buttons button {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.25em;
  background-color: var(--primary);
  border-radius: 4px;
  color: var(--white);
  padding: 0.25em 0.5em;
}
.admin-users .action-buttons button:last-child {
  background-color: var(--accent);
}
.admin-users .action-buttons button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}/*# sourceMappingURL=admin-users.css.map */.user-details {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--secondary-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.user-details .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.user-details .header .back {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
  border-radius: 4px;
  border: none;
  outline: none;
  color: var(--primary);
  background-color: transparent;
  font-weight: 500;
  font-size: 1em;
}
.user-details .header .back:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.user-details .header .form-buttons {
  display: flex;
  gap: 0.5em;
}
.user-details .header .edit-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
}
.user-details .header .edit-button.active {
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
}
.user-details .header .edit-button span {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.user-details .header .edit-button:hover {
  filter: brightness(0.9);
  cursor: pointer;
}
.user-details .header .save-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.user-details .header .save-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.user-details h2,
.user-details h3 {
  color: var(--primary);
  font-weight: 500;
}
.user-details .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .user-details .info-grid {
    grid-template-columns: 1fr;
  }
}
.user-details .field-wrapper {
  display: flex;
  flex-direction: column;
}
.user-details .field-wrapper label {
  font-weight: bold;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.user-details .field-wrapper span {
  padding: 0.5rem;
  background: var(--secondary-background);
  border-radius: 4px;
}
.user-details .skeleton {
  background: rgba(0, 0, 0, 0.05);
  height: 2rem;
  width: 100%;
  border-radius: 4px;
}/*# sourceMappingURL=user-details.css.map */.organization-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: var(--secondary-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.organization-details .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.organization-details .header .back {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
  border-radius: 4px;
  border: none;
  outline: none;
  color: var(--primary);
  background-color: transparent;
  font-weight: 500;
  font-size: 1em;
}
.organization-details .header .back:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.organization-details .header .form-buttons {
  display: flex;
  gap: 0.5em;
}
.organization-details .header .edit-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
}
.organization-details .header .edit-button.active {
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
}
.organization-details .header .edit-button span {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.organization-details .header .edit-button:hover {
  filter: brightness(0.9);
  cursor: pointer;
}
.organization-details .header .save-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.organization-details .header .save-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.organization-details .header .add-tokens-button {
  background: transparent;
  border: 1px solid var(--primary);
  outline: none;
  color: var(--primary);
  border-radius: 4px;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.organization-details .header .add-tokens-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.organization-details h2,
.organization-details h3 {
  color: var(--primary);
  font-weight: 500;
}
.organization-details .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .organization-details .info-grid {
    grid-template-columns: 1fr;
  }
}
.organization-details .info-grid .group-chips {
  display: flex;
  gap: 0.5em;
}
.organization-details .field-wrapper {
  display: flex;
  flex-direction: column;
}
.organization-details .field-wrapper label {
  font-weight: bold;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.organization-details .field-wrapper span {
  padding: 0.5rem;
  background: var(--secondary-background);
  border-radius: 4px;
}
.organization-details .skeleton {
  background: rgba(0, 0, 0, 0.05);
  height: 2rem;
  width: 100%;
  border-radius: 4px;
}/*# sourceMappingURL=organization-details.css.map */.new-user {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--secondary-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.new-user .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.new-user .header .back {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
  border-radius: 4px;
  border: none;
  outline: none;
  color: var(--primary);
  background-color: transparent;
  font-weight: 500;
  font-size: 1em;
}
.new-user .header .back:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.new-user .header .form-buttons {
  display: flex;
  gap: 0.5em;
}
.new-user .header .edit-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
}
.new-user .header .edit-button.active {
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
}
.new-user .header .edit-button span {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.new-user .header .edit-button:hover {
  filter: brightness(0.9);
  cursor: pointer;
}
.new-user .header .save-button {
  background: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 4px;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.new-user .header .save-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.new-user h2,
.new-user h3 {
  color: var(--primary);
  font-weight: 500;
}
.new-user .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .new-user .info-grid {
    grid-template-columns: 1fr;
  }
}
.new-user .field-wrapper {
  display: flex;
  flex-direction: column;
}
.new-user .field-wrapper label {
  font-weight: bold;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.new-user .field-wrapper span {
  padding: 0.5rem;
  background: var(--secondary-background);
  border-radius: 4px;
}
.new-user .skeleton {
  background: rgba(0, 0, 0, 0.05);
  height: 2rem;
  width: 100%;
  border-radius: 4px;
}/*# sourceMappingURL=new-user.css.map */.menu-sidebar {
  background-color: var(--secondary-background);
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 900;
}
.menu-sidebar.full {
  max-width: 100%;
}
.menu-sidebar .ps-sidebar-container {
  background-color: var(--secondary-background);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(var(--text-color), 0.2);
}
.menu-sidebar .info-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.menu-sidebar .info-container .menu-title {
  font-size: 0.8em;
  text-align: center;
  color: var(--secondary-text);
  padding-top: 0.5em;
}
.menu-sidebar .info-container .menu-group,
.menu-sidebar .info-container .action-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.menu-sidebar .menu-group,
.menu-sidebar .footer-actions-buttons {
  color: var(--text);
}
.menu-sidebar .menu-group .active,
.menu-sidebar .footer-actions-buttons .active {
  color: var(--primary);
}
.menu-sidebar .menu-group .active::before,
.menu-sidebar .footer-actions-buttons .active::before {
  content: "";
  position: absolute;
  top: 0;
  right: -0.6em;
  height: 100%;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: var(--primary);
}
.menu-sidebar .menu-group .ps-submenu-content,
.menu-sidebar .footer-actions-buttons .ps-submenu-content {
  background-color: transparent;
}
.menu-sidebar .menu-item {
  color: var(--text);
  position: relative;
}
.menu-sidebar .menu-item .validation-icon {
  position: absolute;
  top: 70%;
  left: 65%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
  color: var(--accent);
}
.menu-sidebar .menu-item .validation-icon.valid {
  color: var(--secondary);
}
.menu-sidebar .menu-item .ps-menu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.menu-sidebar .menu-item .ps-menu-label .export-icon {
  color: var(--primary);
}
.menu-sidebar .menu-item .ps-submenu-content {
  background-color: none;
}
.menu-sidebar .menu-item .ps-menu-button {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.menu-sidebar .menu-item .ps-menu-button:hover {
  background-color: rgba(var(--text-color), 0.1);
}
.menu-sidebar .footer-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
}
.menu-sidebar .footer-container .auto-save-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-sidebar .divider {
  border-top: 1px solid rgba(var(--text-color), 0.2);
}/*# sourceMappingURL=menu-sidebar.css.map */.admin-sidebar {
  padding: 0;
  position: relative;
  box-shadow: -5px -3px 12px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-radius: 4px;
}
.admin-sidebar:not(.collapsed) {
  min-width: 15em;
}
.admin-sidebar.full {
  width: 100%;
}
.admin-sidebar.collapsed {
  max-width: 4em;
}
.admin-sidebar.collapsed .header {
  padding: 1em 0 0.5em 1em;
}
.admin-sidebar .ps-sidebar-container {
  background-color: var(--secondary-background);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  position: relative;
}
.admin-sidebar .header {
  width: 100%;
  padding: 1.5em 0 1em 1.5em;
  display: flex;
  text-align: left;
  align-items: center;
  gap: 0.5em;
  font-size: 1.5em;
}
.admin-sidebar .header .title {
  gap: 0.5em;
  font-weight: 600;
  color: var(--text);
}
.admin-sidebar .header .title img {
  width: 35px;
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.admin-sidebar .menu-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 1em;
  margin: 0 1em;
}
.admin-sidebar .menu-wrapper .ps-menu-button {
  max-height: 2em;
  padding: 1em 0;
  border-radius: 8px;
}
.admin-sidebar .menu-wrapper .ps-menu-button:hover {
  color: var(--primary);
  color: var(--text);
  background-color: transparent;
}
.admin-sidebar .menu-wrapper .menu-item {
  color: var(--secondary-text);
  border-radius: 4px;
  gap: 0.5em;
  margin: 0.25em 0;
}
.admin-sidebar .menu-wrapper .menu-item.active {
  background-color: var(--primary);
  color: var(--text);
}
.admin-sidebar .menu-wrapper .menu-item.active::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
  height: 80%;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background-color: var(--primary);
}

@media (max-width: 786px) {
  .admin-sidebar .header {
    padding: 1em 0 0.5em 1em;
  }
}/*# sourceMappingURL=admin-sidebar.css.map */.text-field {
  width: 100%;
  background-color: rgba(var(--text-color), 0.05);
  outline: none;
  border: 1px solid rgba(var(--text-color), 0.2);
  color: var(--text);
  padding: 1em;
  border-radius: 8px;
  position: relative;
  box-sizing: border-box;
}
.text-field.underline {
  border: none;
  border-bottom: 1px solid rgba(var(--text-color), 0.25);
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  font-size: 1em;
  height: 1em;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.text-field.underline:focus {
  background-size: 100% 1px;
}
.text-field.bump-up {
  transform: translateY(-2px);
}
.text-field:disabled {
  background-color: transparent;
  cursor: not-allowed;
}
.text-field::-moz-placeholder {
  -moz-user-select: none;
       user-select: none;
}
.text-field::placeholder {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.text-field.text-area {
  height: 7em;
  resize: none;
}
.text-field.dense {
  height: 2em;
}

.text-field-wrap {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
}

.character-count {
  position: absolute;
  right: 0;
  font-size: 0.8em;
  color: var(--secondary-text);
}

.submit-text-field-button {
  position: absolute;
  right: 1em;
  bottom: 50%;
  transform: translateY(50%);
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 1.2em;
  color: var(--primary);
}
.submit-text-field-button:disabled {
  color: rgba(var(--text-color), 0.1);
}
.submit-text-field-button:hover:not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}

.text-field-wrapper {
  position: relative;
}

.text-field.with-eye {
  padding-right: 42px;
}

.text-field-eye {
  position: absolute;
  transform: translateX(-100%);
  border: 0;
  background: none;
  display: inline;
  align-items: center;
  align-self: center;
  justify-self: center;
  justify-content: center;
}

.text-field-eye:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.pw-checklist {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.25;
}

.pw-checklist li.ok {
  color: var(--primary);
}

.pw-checklist li.bad {
  color: var(--error-color);
}

.text-field:disabled::-moz-placeholder, .text-field[readonly]::-moz-placeholder {
  opacity: 0;
  color: transparent;
}

.text-field:disabled::placeholder,
.text-field[readonly]::placeholder {
  opacity: 0;
  color: transparent;
}/*# sourceMappingURL=text-field.css.map */.number-field {
  width: 100%;
  background-color: rgba(var(--text-color), 0.05);
  outline: none;
  border: 1px solid rgba(var(--text-color), 0.2);
  color: var(--text);
  padding: 1em;
  border-radius: 8px;
}

.error-field {
  border: 2px solid var(--error-color);
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.25em;
  color: var(--error-color);
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}/*# sourceMappingURL=number-field.css.map */.select-field-container .select-field {
  background-color: rgba(var(--text-color), 0.05);
  border-radius: 8px;
}
.select-field-container .select-field.dense {
  padding: 0.2em;
}
.select-field-container .select-field.dense .react-select__control {
  padding: 0;
  min-height: 3em;
  height: 3em;
}
.select-field-container .select-field .react-select__control {
  background-color: transparent;
  outline: none;
  padding: 0.2em;
  border-radius: 8px;
  font-size: 0.8em;
  box-shadow: none;
  border: 1px solid rgba(var(--text-color), 0.2);
}
.select-field-container .select-field .react-select__control:focus, .select-field-container .select-field .react-select__control:hover {
  cursor: pointer;
}
.select-field-container .select-field .react-select__control .react-select__input-container {
  color: var(--primary);
}
.select-field-container .select-field .react-select__control .react-select__multi-value {
  background-color: rgba(var(--text-color), 0.05);
  border: 1px solid var(--primary);
  border-radius: 8px;
}
.select-field-container .select-field .react-select__control .react-select__multi-value .react-select__multi-value__label {
  color: var(--text);
}
.select-field-container .select-field .react-select__control .react-select__multi-value .react-select__multi-value__remove:hover {
  background-color: transparent;
  color: var(--error-color);
}
.select-field-container .select-field .react-select__single-value {
  color: var(--text);
}
.select-field-container .select-field .react-select__menu {
  background-color: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.1);
  border-radius: 8px;
}
.select-field-container .select-field .react-select__menu .react-select__option:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
}
.select-field-container .select-field .react-select__menu .react-select__option--is-focused {
  background-color: transparent;
}
.select-field-container .select-field .react-select__menu .react-select__option--is-selected {
  border-radius: 4px;
  background-color: var(--primary);
}
.select-field-container .select-field .react-select__single-value {
  font-size: 14px;
}
.select-field-container .basic-select {
  border-radius: 4px;
  padding: 0.2em;
  background-color: rgba(var(--text-color), 0.05);
  color: var(--primary);
  font-size: 1em;
  border: 1px solid var(--secondary-background);
}
.select-field-container .basic-select:focus, .select-field-container .basic-select:hover {
  cursor: pointer;
  outline: none;
}
.select-field-container .basic-select option {
  background-color: var(--secondary-background);
  color: var(--text);
  font-size: 1.5em;
}/*# sourceMappingURL=select-field.css.map */.createable-select-field {
  background-color: rgba(var(--text-color), 0.05);
  border-radius: 8px;
}
.createable-select-field .react-select__control {
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  box-shadow: none;
  min-height: var(--rs-field-h, auto);
  height: var(--rs-field-h, auto);
  padding-block: 0;
}
.createable-select-field .react-select__control:focus, .createable-select-field .react-select__control:hover, .createable-select-field .react-select__control:focus-within, .createable-select-field .react-select__control.react-select__control--is-focused {
  cursor: pointer;
  border-color: var(--rs-hover-border, var(--secondary-background));
  outline-color: var(--rs-hover-border, var(--secondary-background));
}
.createable-select-field .react-select__control .react-select__single-value {
  color: var(--text);
}
.createable-select-field .react-select__control .react-select__input-container {
  color: var(--text);
}
.createable-select-field .react-select__control .react-select__multi-value {
  background-color: rgba(var(--text-color), 0.05);
  border: 1px solid var(--primary);
  border-radius: 8px;
}
.createable-select-field .react-select__control .react-select__multi-value .react-select__multi-value__label {
  color: var(--text);
}
.createable-select-field .react-select__control .react-select__multi-value .react-select__multi-value__remove:hover {
  background-color: transparent;
  color: var(--error-color);
}
.createable-select-field .createable-select-field {
  background-color: rgba(var(--text-color), 0.05);
  border-radius: 8px;
}
.createable-select-field .createable-select-field .react-select__control {
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  box-shadow: none;
  min-height: var(--rs-field-h, auto);
  height: var(--rs-field-h, auto);
  padding-block: 0;
}
.createable-select-field .createable-select-field .react-select__control:focus, .createable-select-field .createable-select-field .react-select__control:hover, .createable-select-field .createable-select-field .react-select__control:focus-within, .createable-select-field .createable-select-field .react-select__control.react-select__control--is-focused {
  cursor: pointer;
  border-color: var(--rs-hover-border, var(--secondary-background));
  outline-color: var(--rs-hover-border, var(--secondary-background));
}
.createable-select-field .createable-select-field .react-select__control .react-select__single-value {
  color: var(--text);
}
.createable-select-field .createable-select-field .react-select__control .react-select__input-container {
  color: var(--text);
}
.createable-select-field .createable-select-field .react-select__control .react-select__multi-value {
  background-color: rgba(var(--text-color), 0.05);
  border: 1px solid var(--primary);
  border-radius: 8px;
}
.createable-select-field .createable-select-field .react-select__control .react-select__multi-value .react-select__multi-value__label {
  color: var(--text);
}
.createable-select-field .createable-select-field .react-select__control .react-select__multi-value .react-select__multi-value__remove:hover {
  background-color: transparent;
  color: var(--error-color);
}
.createable-select-field .react-select__menu {
  background-color: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.1);
  border-radius: 8px;
}
.createable-select-field .react-select__menu .react-select__option:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
}
.createable-select-field .react-select__menu .react-select__option--is-focused {
  background-color: transparent;
}
.createable-select-field .react-select__menu .react-select__option--is-selected {
  border-radius: 4px;
  background-color: var(--primary);
}
.createable-select-field .react-select__control {
  min-height: var(--rs-field-h, auto);
  height: var(--rs-field-h, auto);
  padding-block: 0;
}
.createable-select-field .react-select__value-container {
  height: var(--rs-field-h, auto);
  padding-block: 0;
  align-items: center;
}
.createable-select-field .react-select__indicators {
  height: var(--rs-field-h, auto);
}
.createable-select-field .react-select__input-container {
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=createable-select-field.css.map */.toggle-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.toggle-container.spaced {
  justify-content: space-between;
}
.toggle-container .toggle-field {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toggle-container .toggle-field .toggle-track {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--text-color), 0.05);
  border-radius: inherit;
  border: 1px solid rgba(var(--text-color), 0.2);
  transition: background-color 0.25s ease-in-out;
  box-sizing: border-box;
}
.toggle-container .toggle-field .toggle-knob {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
  border: 1px solid rgba(var(--text-color), 0.2);
  z-index: 1;
  box-sizing: border-box;
  color: var(--error-color);
}
.toggle-container .toggle-field .toggle-knob svg {
  pointer-events: none;
}
.toggle-container .toggle-field.checked {
  color: var(--primary);
}
.toggle-container .toggle-field.checked .toggle-track {
  background-color: rgba(var(--primary-color), 0.15);
}
.toggle-container .toggle-field.checked .toggle-knob {
  background-color: rgba(var(--primary-color), 0.3);
  color: var(--primary);
  border: 1px solid var(--primary);
}/*# sourceMappingURL=toggle-field.css.map */.checkbox-field {
  border: none;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5em;
  cursor: default;
}
.checkbox-field:hover:not(:has(input:disabled)) {
  cursor: pointer;
}
.checkbox-field input[type=checkbox] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.checkbox-field input[type=checkbox]:checked ~ .checkbox-checkmark {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  cursor: pointer;
}
.checkbox-field input[type=checkbox]:checked ~ .checkbox-checkmark::after {
  display: block;
}
.checkbox-field .checkbox-checkmark {
  height: 1em;
  width: 1em;
  min-width: 1em;
  border: 1px solid var(--text);
  border-radius: 2px;
  position: relative;
  pointer-events: auto;
}
.checkbox-field .checkbox-checkmark::after {
  width: 2.5px;
  height: 5px;
  border: solid var(--text);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox-field:hover:not(:has(input:disabled)) input[type=checkbox]:not(:checked) ~ .checkbox-checkmark {
  border: 1px solid var(--secondary);
}
.checkbox-field .checkbox-label {
  margin-right: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.9em;
}
.checkbox-field .checkbox-checkmark::after {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0.25em;
  display: none;
}
.checkbox-field .disabled {
  border-color: rgba(var(--text-color), 0.1);
  color: rgba(var(--text-color), 0.5);
}/*# sourceMappingURL=checkbox-field.css.map */.search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-field .search-icon,
.search-field .clear-icon {
  margin-right: 0.5em;
  font-size: 1.2em;
  color: var(--secondary-text);
}
.search-field .clear-icon:hover {
  opacity: 0.7;
  cursor: pointer;
}
.search-field .search-input {
  height: 3.25em;
}
.search-field .search-input::-moz-placeholder {
  font-size: 1.2em;
}
.search-field .search-input::placeholder {
  font-size: 1.2em;
}/*# sourceMappingURL=search-field.css.map */.editable-text-field {
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}
.editable-text-field.loading.edit-mode {
  pointer-events: none;
  opacity: 0.5;
}
.editable-text-field.loading.edit-mode .edit-icon,
.editable-text-field.loading.edit-mode .text-field {
  visibility: hidden;
  width: 100%;
  display: block;
}
.editable-text-field .fade {
  position: relative;
  display: inline-block;
  align-self: center;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 70%, transparent);
  mask-image: linear-gradient(to right, #000 70%, transparent);
}
.editable-text-field .fade::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-background);
}
.editable-text-field .display-mode {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}
.editable-text-field .edit-mode {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  overflow: visible;
}
.editable-text-field .display-mode .name {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 1 auto;
}
.editable-text-field .display-mode .name:hover {
  text-decoration: underline;
}
.editable-text-field .display-mode .edit-icon-wrap {
  display: flex;
  align-items: center;
  justify-items: center;
  padding: auto;
}
.editable-text-field .display-mode .tool-tip-div {
  white-space: nowrap;
  flex: 0 1 auto;
  max-width: 90%;
}
.editable-text-field .display-mode .edit-icon {
  flex: 0 0 auto;
  flex-shrink: 0;
  visibility: hidden;
  align-self: center;
  margin: auto;
}
.editable-text-field .display-mode:hover .edit-icon {
  visibility: visible;
  cursor: pointer;
}
.editable-text-field .edit-mode {
  min-width: 0;
}
.editable-text-field .edit-mode .text-input-wrapper {
  flex: 1;
  min-width: 0;
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
}
.editable-text-field .edit-mode .text-field.underline {
  box-shadow: inset 0 -1px rgb(var(--gray-color));
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.editable-text-field .edit-mode .buttons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  margin-left: 4px;
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 40ms;
}
.editable-text-field .edit-mode .buttons > button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.editable-text-field .edit-mode .save-button,
.editable-text-field .edit-mode .cancel-button {
  flex-shrink: 0;
  margin-left: 4px;
  background: none;
  border: none;
  font-size: 1.2em;
  padding: 0;
}
.editable-text-field .edit-mode .save-button:hover:not(:disabled),
.editable-text-field .edit-mode .cancel-button:hover:not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}
.editable-text-field .edit-mode .save-button {
  color: var(--primary);
}
.editable-text-field .edit-mode .cancel-button {
  color: var(--accent);
}

.editable-text-field .edit-mode {
  animation: etf-in-left 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.editable-text-field .display-mode {
  animation: etf-in-right 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.editable-text-field .fade-to-edit {
  position: relative;
}

.editable-text-field.fade-to-edit .display-mode {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 240ms cubic-bezier(0.4, 0, 1, 1), transform 240ms cubic-bezier(0.4, 0, 1, 1);
  transition-delay: 180ms;
  opacity: 0;
  transform: translate3d(10px, 0, 0);
  pointer-events: none;
}

.editable-text-field.fade-to-display .edit-mode {
  opacity: 0;
  transform: translate3d(-6px, 0, 0);
  transition: opacity 240ms cubic-bezier(0.4, 0, 1, 1), transform 240ms cubic-bezier(0.4, 0, 1, 1);
}

@keyframes etf-in-left {
  from {
    opacity: 0;
    transform: translate3d(-6px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes etf-in-right {
  from {
    opacity: 0;
    transform: translate3d(6px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .editable-text-field .display-mode,
  .editable-text-field .edit-mode {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    transform: none !important;
  }
}/*# sourceMappingURL=editable-text-field.css.map */.tag-input-field .rti--container {
  --rti-bg: rgba(var(--text-color), 0.05);
  --rti-border: var(--secondary-background);
  --rti-main: "#3182ce";
  --rti-radius: 4px;
  --rti-s: "0.5rem";
  --rti-tag: rgba(var(--text-color), 0.1);
  --rti-tag-remove: "#e53e3e";
}
.tag-input-field .rti--container .rti--input {
  background-color: var(--text-color), 0.05;
}
.tag-input-field .rti--container .rti--tag {
  display: flex;
  align-items: center;
  padding: 0.25em 0.5em;
  margin: 0.2em;
  gap: 0.25em;
}
.tag-input-field .rti--container .rti--tag button {
  font-size: 1em;
}
.tag-input-field .rti--container:focus, .tag-input-field .rti--container:focus-within {
  border: 1px solid var(--primary);
}/*# sourceMappingURL=tag-input-field.css.map */.password-field-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.text-input {
  border-radius: 8px;
  background-color: rgba(var(--text-color), 0.05);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  white-space: nowrap;
  min-height: 100%;
  width: 100%;
  display: block;
}

.text-input:disabled,
.text-input[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
}

.text-input:disabled::-moz-placeholder, .text-input[readonly]::-moz-placeholder {
  color: transparent;
  opacity: 0;
}

.text-input:disabled::placeholder,
.text-input[readonly]::placeholder {
  color: transparent;
  opacity: 0;
}

.toggle-container {
  display: flex;
  gap: 0.5em;
}
.toggle-container.spaced {
  justify-content: space-between;
}
.toggle-container .toggle-field {
  position: relative;
  display: flex;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toggle-container .toggle-field .toggle-track {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--text-color), 0.05);
  border-radius: inherit;
  border: 1px solid rgba(var(--text-color), 0.2);
  transition: background-color 0.25s ease-in-out;
  box-sizing: border-box;
}
.toggle-container .toggle-field .toggle-knob {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
  border: 1px solid rgba(var(--text-color), 0.2);
  z-index: 1;
  box-sizing: border-box;
  color: var(--text-color);
}
.toggle-container .toggle-field .toggle-knob .toggle-icon {
  display: flex;
  justify-self: center;
  align-self: center;
}
.toggle-container .toggle-field .toggle-knob svg {
  pointer-events: none;
}/*# sourceMappingURL=password-field.css.map */.modal {
  box-sizing: border-box;
  background-color: var(--secondary-background);
  max-height: 98vh;
  max-width: 80%;
  min-width: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-radius: 1rem;
  border: 1px solid rgba(var(--text-color), 0.1);
  outline: none; /* Safari, Chrome and Opera > 12.1 */ /* Firefox < 16 */ /* Opera < 12.1 */
  animation: fadein 150ms;
  overflow-y: auto;
}
.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  font-size: 1.3em;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  color: var(--text);
}
.modal .modal-header .title {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.modal .modal-header .close {
  border: none;
  background: none;
  font-size: 1.3em;
  color: rgba(var(--text-color), 0.7);
}
.modal .modal-header .close :hover {
  cursor: pointer;
  color: rgba(var(--text-color), 0.4);
}
.modal .modal-content {
  display: block;
  color: var(--text);
  padding: 1rem 2rem 2rem 2rem;
  max-height: 100%;
  overflow-y: auto;
}

.overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--text-color), 0.2);
  z-index: 1000;
}

@keyframes fadein {
  from {
    opacity: 0;
    background-color: red;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 *//*# sourceMappingURL=base-modal.css.map */.run-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 100%;
  min-height: 0;
}
.run-modal .subtitle {
  padding-top: clamp(0.5em, 1.5vh, 1em);
}
.run-modal .run-id {
  padding-top: 1em;
}
.run-modal .run-id .id {
  color: var(--secondary);
}
.run-modal .error {
  color: var(--error-color);
}
.run-modal .experiment-config {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.run-modal .action-buttons {
  padding-top: clamp(0.5em, 1.5vh, 2em);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.run-modal .action-buttons .run-experiment-button {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 0.25em;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.run-modal .action-buttons .run-experiment-button:hover:not(:disabled) {
  cursor: pointer;
  filter: brightness(0.9);
}
.run-modal .action-buttons .run-experiment-button:disabled {
  background-color: var(--disabled);
  color: var(--disabled-text);
}/*# sourceMappingURL=run-modal.css.map */.contact-modal .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.contact-modal .footer-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-modal .footer-button .submit-button {
  background-color: var(--secondary);
  padding: 0.5em 2em;
  border-radius: 8px;
  outline: none;
  border: none;
  font-weight: 500;
  color: var(--text);
}
.contact-modal .footer-button .submit-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.contact-modal .error-msg {
  color: var(--error-color);
}/*# sourceMappingURL=contact-modal.css.map */.confirm-modal .description {
  color: var(--secondary-text);
}
.confirm-modal .actions {
  position: relative;
  width: 100%;
  padding-bottom: 0.5em;
}
.confirm-modal .actions .reset {
  position: absolute;
  right: 0;
  background-color: var(--error-color);
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 0.25em;
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.confirm-modal .actions .reset:hover {
  cursor: pointer;
  filter: brightness(0.9);
}/*# sourceMappingURL=confirm-modal.css.map */.upload-evl-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.upload-evl-modal .subtitle {
  color: var(--secondary-text);
}
.upload-evl-modal .monaco-container {
  width: 100%;
  height: 30em;
  display: flex;
  padding: 1em 0;
}
.upload-evl-modal .submit-button {
  outline: none;
  background-color: var(--primary);
  color: var(--background);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: none;
  padding: 0.5em;
  border-radius: 8px;
}
.upload-evl-modal .submit-button:disabled {
  background-color: rgba(var(--text-color), 0.1);
  font-weight: 400;
}
.upload-evl-modal .submit-button:hover:not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}/*# sourceMappingURL=upload-evl-modal.css.map */.approve-user-modal .actions-container {
  position: relative;
  width: 100%;
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.approve-user-modal .actions-container .actions-wrapper {
  align-items: center;
}
.approve-user-modal .actions-container .actions-wrapper label {
  font-weight: 500;
}
.approve-user-modal .actions-container .actions-wrapper .quota {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  gap: 1em;
}
.approve-user-modal .submit-button {
  position: absolute;
  right: 1em;
  bottom: 1em;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.approve-user-modal .submit-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}/*# sourceMappingURL=approve-user-modal.css.map */.create-organization-modal .actions-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  padding: 1em 0;
}
.create-organization-modal .actions-container .actions-wrapper {
  align-items: center;
}
.create-organization-modal .actions-container .actions-wrapper label {
  font-weight: 500;
}
.create-organization-modal .actions-container .actions-wrapper .quota {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  gap: 1em;
}
.create-organization-modal .submit-button {
  position: absolute;
  right: 1em;
  bottom: 1em;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.create-organization-modal .submit-button:hover:not(:disabled) {
  cursor: pointer;
  filter: brightness(0.9);
}
.create-organization-modal .submit-button:disabled {
  background-color: var(--disabled);
}/*# sourceMappingURL=create-organization-modal.css.map */.add-tokens-modal .description {
  color: var(--secondary-text);
}
.add-tokens-modal .actions {
  position: relative;
  width: 100%;
  padding-top: 1em;
  display: flex;
  justify-content: flex-end;
}
.add-tokens-modal .actions .reset {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 0.25em;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.add-tokens-modal .actions .reset:hover:not(:disabled) {
  cursor: pointer;
  filter: brightness(0.9);
}
.add-tokens-modal .actions .reset:disabled {
  background-color: var(--disabled);
  color: var(--disabled-text);
}/*# sourceMappingURL=add-tokens-modal.css.map */.best-chromosome-modal .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.best-chromosome-modal .header .action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.best-chromosome-modal .header .action-button {
  color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: transparent;
  padding: 0;
  border-radius: 8px;
  font-size: 1.5em;
}
.best-chromosome-modal .header .action-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.best-chromosome-modal .monaco-container {
  width: 100%;
  height: 30em;
  display: flex;
  padding: 1em 0;
}/*# sourceMappingURL=view-object-data-modal.css.map */.add-asset-modal {
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
}
.add-asset-modal .title {
  color: var(--primary);
  font-size: 1.3em;
}/*# sourceMappingURL=add-asset-modal.css.map */.no-selected-dataset-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.no-selected-dataset-modal .title {
  font-weight: 500;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.no-selected-dataset-modal .title .icon {
  width: 2em;
}
.no-selected-dataset-modal .content {
  padding: 0 2em;
}
.no-selected-dataset-modal .actions {
  padding-top: 2em;
}
.no-selected-dataset-modal .actions .confirm {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 500;
}
.no-selected-dataset-modal .actions .confirm:hover {
  cursor: pointer;
  filter: brightness(0.9);
}/*# sourceMappingURL=no-selected-dataset-modal.css.map */.replace-same-name-modal .actions-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  padding: 1em 0;
}
.replace-same-name-modal .actions-container .actions-wrapper {
  align-items: center;
}
.replace-same-name-modal .actions-container .actions-wrapper label {
  font-weight: 500;
}
.replace-same-name-modal .actions-container .actions-wrapper .name-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.replace-same-name-modal .actions-container .actions-wrapper .name-input-wrapper .name-input {
  padding-right: 4.5em;
}
.replace-same-name-modal .actions-container .actions-wrapper .name-input-wrapper .input-extension {
  position: absolute;
  right: 1em;
  color: var(--text-secondary);
  font-weight: 500;
  pointer-events: none;
}
.replace-same-name-modal .actions-container .actions-wrapper .quota {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  gap: 1em;
}
.replace-same-name-modal .submit-button {
  position: absolute;
  right: 1em;
  bottom: 1em;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.replace-same-name-modal .submit-button:hover:not(:disabled) {
  cursor: pointer;
  filter: brightness(0.9);
}
.replace-same-name-modal .submit-button:disabled {
  background-color: var(--disabled);
}/*# sourceMappingURL=replace-same-name-modal.css.map */.confirm-modal .actions .dont-close-btn, .confirm-modal .actions .save-btn, .confirm-modal .actions .close-no-saving-btn {
  justify-content: center;
  align-items: center;
  display: flex;
  border: none;
  outline: none;
  gap: 0.5em;
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: medium;
}
.confirm-modal .actions .dont-close-btn:hover, .confirm-modal .actions .save-btn:hover, .confirm-modal .actions .close-no-saving-btn:hover {
  cursor: pointer;
  filter: brightness(0.9);
}

.confirm-modal .description {
  color: var(--secondary-text);
}
.confirm-modal .actions {
  width: 100%;
  padding-bottom: 0.5em;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.confirm-modal .actions .close-no-saving-btn {
  background-color: var(--error-color);
  color: var(--white);
}
.confirm-modal .actions .save-btn {
  background-color: var(--primary);
  color: var(--white);
}
.confirm-modal .actions .dont-close-btn {
  color: var(--text);
}/*# sourceMappingURL=closing-not-saved-modal.css.map */.delete-collection-modal .title {
  word-break: break-all;
}
.delete-collection-modal .title span {
  font-weight: 500;
}
.delete-collection-modal .description {
  color: var(--secondary-text);
}
.delete-collection-modal .actions {
  position: relative;
  width: 100%;
  padding-bottom: 0.5em;
}
.delete-collection-modal .actions .delete {
  position: absolute;
  right: 0;
  background-color: var(--error-color);
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 8px;
}
.delete-collection-modal .actions .delete:hover {
  cursor: pointer;
  filter: brightness(0.9);
}/*# sourceMappingURL=delete-collection-item-modal.css.map */.card-modal {
  position: relative;
}
.card-modal .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.card-modal .form-container .checkboxes-wrapper {
  display: flex;
  gap: 1em;
}
.card-modal .footer-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-modal .footer-button .submit-button {
  background-color: var(--secondary);
  padding: 0.5em 2em;
  border-radius: 8px;
  outline: none;
  border: none;
  font-weight: 500;
  color: var(--text);
}
.card-modal .footer-button .submit-button:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.card-modal .error-msg {
  color: var(--error-color);
}/*# sourceMappingURL=card-modal.css.map */.dataset {
  padding: 2em;
}
.dataset .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}
.dataset .header .title {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 1.5em;
  font-weight: 600;
}
.dataset .header .title .btn {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dataset .header .title .btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
.dataset .header .title .back-button {
  font-size: 1.2em;
  color: var(--primary);
}
.dataset .header .title .delete-button {
  font-size: 0.7em;
  color: var(--error-color);
}
.dataset .header .actions-wrapper {
  display: flex;
  gap: 1em;
  align-items: center;
}
.dataset .dataset-assets .datasets-assets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
}
.dataset .dataset-assets .datasets-assets-header .files-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
}
.dataset .dataset-assets .datasets-assets-header .title {
  font-weight: 600;
}
.dataset .dataset-assets .datasets-assets-header .title .assets-count {
  color: var(--secondary-text);
  font-size: 0.9em;
}
.dataset .dataset-assets .datasets-assets-header .assets-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  gap: 0.4em;
}
.dataset .dataset-assets .datasets-assets-header .buttons-row {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
}
.dataset .dataset-assets .datasets-assets-header .download-assets-button {
  font-size: 1.2em;
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.3em;
}
.dataset .dataset-assets .datasets-assets-header .download-assets-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.dataset .dataset-assets .datasets-assets-header .add-assets-button {
  font-size: 1.2em;
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.3em;
}
.dataset .dataset-assets .datasets-assets-header .add-assets-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.dataset .dataset-assets .asset-name-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.dataset .dataset-assets .asset-name-wrapper .asset-icon {
  font-size: 1.5em;
  color: rgba(var(--text-color), 0.7);
}
.dataset .dataset-assets .asset-name-wrapper .asset-name {
  background-color: transparent;
  border: none;
  outline: none;
  text-align: left;
}
.dataset .dataset-assets .asset-name-wrapper .asset-name:hover {
  cursor: pointer;
  opacity: 0.7;
}
.dataset .rdt_Table {
  margin-top: 1em;
  border-radius: 8px;
  background-color: var(--secondary-background);
}
.dataset .rdt_Table .rdt_TableHeadRow {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  color: var(--text);
  background-color: var(--secondary-background);
}
.dataset .rdt_Table .rdt_TableBody {
  max-height: 40em;
  overflow-y: auto;
}
.dataset .rdt_Table .rdt_TableBody .rdt_TableRow {
  color: var(--text);
  background-color: var(--secondary-background);
  font-size: 0.9em;
}
.dataset .rdt_Table .rdt_TableBody .rdt_TableRow:nth-child(even) {
  background-color: rgba(var(--text-color), 0.01);
}
.dataset .rdt_Table .rdt_TableBody .rdt_TableRow:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border: none;
  outline: none;
}
.dataset .rdt_Table .rdt_TableBody .rdt_TableRow button[type=button] {
  color: var(--text);
}
.dataset .rdt_Table .rdt_TableBody .rdt_ExpanderRow {
  background-color: var(--background);
  color: var(--text);
  border-left: 2px solid var(--secondary);
}
.dataset .rdt_Table input[type=checkbox] {
  accent-color: rgb(var(--dark-green-color));
}
.dataset .rdt_Pagination {
  color: var(--text);
  background-color: var(--secondary-background);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dataset .rdt_Pagination button[type=button] {
  fill: var(--text);
}
.dataset .no-data {
  background-color: var(--secondary-background);
  width: 100%;
  text-align: center;
  color: var(--text);
  padding: 1em;
}

.progress-bar-container-download {
  display: none;
}

.datasets-assets-header .files-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
}
.datasets-assets-header .assets-controls-grid {
  display: grid;
  position: relative;
  grid-template-columns: auto max-content;
  grid-auto-rows: auto;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
  row-gap: 0.5em;
}
.datasets-assets-header .bar-value-download {
  margin-top: 25%;
  right: calc(85% + 0.5em);
  position: absolute;
  grid-column: 1;
  grid-row: 2;
  font-size: 0.85em;
  min-width: 3ch;
  text-align: right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  color: var(--text);
  opacity: 0.9;
}
.datasets-assets-header .progress-bar-download {
  position: absolute;
  margin-top: 30%;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}

.progress-bar-fill-download {
  height: 100%;
  background-color: #4caf50;
  transition: width 0.2s ease-in-out;
  border-radius: 4px;
}/*# sourceMappingURL=dataset.css.map */.assets-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-actions .action {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--primary);
}
.assets-actions .action:hover {
  cursor: pointer;
  opacity: 0.7;
}
.assets-actions .action.delete {
  color: var(--error-color);
}
.assets-actions .progress-bar-container {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.assets-actions .progress-bar-container .progress-bar {
  width: 5em;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
  height: 10px;
}
.assets-actions .progress-bar-container .progress-bar .progress-bar-fill {
  height: 100%;
  background-color: #4caf50;
  text-align: center;
  color: white;
  border-radius: 4px;
  transition: width 0.2s ease-in-out;
}
.assets-actions .progress-bar-container .bar-value {
  font-size: 0.8em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}/*# sourceMappingURL=assets-actions.css.map */.select-dataset {
  padding: 5em;
  width: 100%;
}
.select-dataset .selected-container {
  background-color: rgba(var(--accent-color), 0.1);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2em;
  position: relative;
}
.select-dataset .selected-container.selected {
  background-color: rgba(var(--secondary-color), 0.2);
  border: 2px solid var(--secondary);
}
.select-dataset .selected-container.selected .check-icon {
  background-color: rgba(var(--secondary-color), 0.2);
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.select-dataset .selected-container::after {
  content: "";
  position: absolute;
  top: -2em;
  right: -2em;
  width: 80px;
  height: 80px;
  background-color: var(--background);
  border-radius: 50%;
  z-index: 1;
}
.select-dataset .selected-container .check-icon {
  position: absolute;
  top: -0.4em;
  right: -0.4em;
  background-color: rgba(var(--accent-color), 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.2em;
  font-size: 4em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  z-index: 2;
}
.select-dataset .selected-container .header {
  font-size: 1.3em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.select-dataset .selected-container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-dataset .selected-container .content .details {
  display: flex;
  gap: 1em;
  flex-direction: column;
  justify-content: center;
}
.select-dataset .selected-container .content .details .title {
  font-size: 1.5em;
  font-weight: 500;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  text-align: left;
}
.select-dataset .selected-container .content .details .title:hover {
  cursor: pointer;
  text-decoration: underline;
}
.select-dataset .selected-container .content .details .description {
  font-size: 1em;
  color: var(--secondary-text);
}
.select-dataset .selected-container .content .details .icon {
  width: 1em;
  height: 1em;
}
.select-dataset .selected-container .footer {
  padding-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
.select-dataset .selected-container .footer .last-updated {
  font-size: 0.8em;
  color: var(--secondary-text);
}
.select-dataset .selected-container .footer .deselect-button {
  background-color: var(--accent);
  color: var(--background);
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  outline: none;
}
.select-dataset .selected-container .footer .deselect-button:hover {
  background-color: var(--error-color);
}
.select-dataset .select-area-container {
  padding-top: 5em;
  position: relative;
}
.select-dataset .select-area-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
}
.select-dataset .select-area-container .header .title {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 1em;
}
.select-dataset .select-area-container .header .refresh-button {
  background-color: var(--primary);
  padding: 0 0.5em;
  color: var(--white);
  border-radius: 8px;
  font-size: 1.5em;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
}
.select-dataset .select-area-container .header .refresh-button.loading {
  pointer-events: none;
  background-color: var(--secondary);
}
.select-dataset .select-area-container .header .refresh-button.loading svg {
  animation: spin 1s linear infinite;
}
.select-dataset .select-area-container .header .refresh-button:hover {
  opacity: 0.7;
  cursor: pointer;
}
.select-dataset .select-area-container .select-button {
  background-color: var(--primary);
  color: var(--background);
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 500;
  transition: background-color 0.3s;
  border: none;
  outline: none;
  position: absolute;
  width: 20%;
  bottom: -3em;
  right: 50%;
  transform: translateX(50%);
}
.select-dataset .select-area-container .select-button:hover:not(:disabled) {
  opacity: 0.7;
  cursor: pointer;
}
.select-dataset .select-area-container .select-button:disabled {
  background-color: var(--disabled);
}
.select-dataset .label-suffix {
  color: var(--secondary-text);
  font-size: 0.8em;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=select-dataset.css.map */.experiments-action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.experiments-action-buttons .action-button {
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0.5em;
  border-radius: 50%;
  color: var(--primary);
}
.experiments-action-buttons .action-button:hover {
  cursor: pointer;
  background-color: rgba(var(--green-color), 0.3);
}
.experiments-action-buttons .action-button .icon {
  font-size: 1.5em;
}
.experiments-action-buttons .action-button.terminate {
  color: rgb(var(--light-red-color));
}
.experiments-action-buttons .action-button.terminate:hover {
  background-color: rgba(var(--light-red-color), 0.2);
}
.experiments-action-buttons .action-button.dashboard {
  color: rgb(var(--light-blue-color));
}
.experiments-action-buttons .action-button.dashboard:hover {
  background-color: rgba(var(--light-blue-color), 0.2);
}/*# sourceMappingURL=experiments-action-buttons.css.map */.experiment-meta-data {
  margin: 0 auto;
  padding: 1em;
  background: var(--secondarbackground);
}
.experiment-meta-data .experiment-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.experiment-meta-data .basic-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5em;
}
.experiment-meta-data .detail-item {
  background: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  padding: 1em;
  transition: all 0.2s ease;
}
.experiment-meta-data .detail-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.experiment-meta-data .detail-item .detail-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.experiment-meta-data .detail-item .detail-header .detail-icon {
  color: var(--primary);
  font-size: 0.9em;
}
.experiment-meta-data .detail-item .detail-header .detail-label {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.025em;
}
.experiment-meta-data .detail-item .detail-value {
  color: var(--text-color);
  line-height: 1.4;
}
.experiment-meta-data .detail-item .detail-value .no-info {
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 400;
}
.experiment-meta-data .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1em;
}
.experiment-meta-data .metrics-grid .metric-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1em;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.experiment-meta-data .metrics-grid .metric-card .metric-icon {
  font-size: 1.5em;
  opacity: 0.8;
}
.experiment-meta-data .metrics-grid .metric-card .metric-content {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.experiment-meta-data .metrics-grid .metric-card .metric-content .metric-label {
  font-weight: 500;
}
.experiment-meta-data .metrics-grid .metric-card .metric-content .metric-value {
  font-size: 1.2em;
  font-weight: 700;
}
.experiment-meta-data .section {
  background: var(--secondary-background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  padding: 1em;
}
.experiment-meta-data .section .section-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
}
.experiment-meta-data .section .section-header svg {
  color: var(--primary);
  font-size: 1em;
}
.experiment-meta-data .section .section-header h4 {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  color: var(--text-color);
}
.experiment-meta-data .notes-section .section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.experiment-meta-data .notes-section .section-header .edit-icon:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.experiment-meta-data .notes-section .notes-content {
  margin-top: 0.5rem;
  white-space: pre-wrap;
}
.experiment-meta-data .notes-section .notes-edit {
  margin-top: 0.5rem;
}
.experiment-meta-data .notes-section .notes-edit .notes-textarea {
  width: 100%;
  padding: 0.5rem;
  font-family: inherit;
  border-radius: 6px;
  resize: vertical;
  background-color: var(--background);
}
.experiment-meta-data .notes-section .notes-edit .action-buttons-wrapper {
  display: flex;
  margin-top: 0.5rem;
}
.experiment-meta-data .notes-section .notes-edit .action-buttons-wrapper button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
.experiment-meta-data .notes-section .notes-edit .action-buttons-wrapper button:hover {
  filter: brightness(0.9);
}
.experiment-meta-data .notes-section .notes-edit .action-buttons-wrapper button.check-button {
  color: var(--primary);
}
.experiment-meta-data .notes-section .notes-edit .action-buttons-wrapper button.cancel-button {
  color: var(--error-color);
}
.experiment-meta-data .notes-section .notes-content {
  background: var(--background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 6px;
  padding: 0.75em;
  line-height: 1.5;
  color: var(--text-color);
  white-space: pre-wrap;
  font-size: 0.9em;
}
.experiment-meta-data .config-and-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .experiment-meta-data .config-and-history-grid {
    grid-template-columns: 1fr;
  }
}
.experiment-meta-data .configuration-section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.experiment-meta-data .configuration-section .dataset-button {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.75em 1em;
  background: var(--background);
  border: 2px solid rgba(var(--text-color), 0.2);
  border-radius: 6px;
  color: rgba(var(--text-color), 0.5);
  font-weight: 500;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.1s ease;
}
.experiment-meta-data .configuration-section .dataset-button:hover {
  background: var(--primary);
  color: var(--text);
  transform: translateY(-1px);
}
.experiment-meta-data .configuration-section .dataset-button .dataset-icon {
  font-size: 1em;
}
.experiment-meta-data .configuration-section .dataset-button .navigate-icon {
  margin-left: auto;
  font-size: 0.9em;
}
.experiment-meta-data .configuration-section .fitness-units h5 {
  margin: 0 0 0.75em 0;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--text-color);
}
.experiment-meta-data .configuration-section .fitness-units .fitness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5em;
}
.experiment-meta-data .configuration-section .fitness-units .fitness-grid .fitness-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em;
  background: var(--background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 4px;
  font-size: 0.85em;
}
.experiment-meta-data .configuration-section .fitness-units .fitness-grid .fitness-item .fitness-key {
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: capitalize;
}
.experiment-meta-data .configuration-section .fitness-units .fitness-grid .fitness-item .fitness-value {
  font-weight: 600;
  color: var(--text-color);
}
.experiment-meta-data .status-history {
  max-height: 150px;
  overflow-y: auto;
}
.experiment-meta-data .status-history .status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 300px;
  overflow-y: auto;
}
.experiment-meta-data .status-history .status-timeline .status-history-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 6px;
  position: relative;
}
.experiment-meta-data .status-history .status-timeline .status-history-item:not(:last-child) .status-line {
  position: absolute;
  left: 11px;
  top: 20px;
  bottom: -8px;
  width: 2px;
  background: rgba(var(--text-color), 0.2);
}
.experiment-meta-data .status-history .status-timeline .status-history-item .status-indicator {
  position: relative;
}
.experiment-meta-data .status-history .status-timeline .status-history-item .status-indicator .status-dot {
  font-size: 0.6rem;
  display: block;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid currentColor;
}
.experiment-meta-data .status-history .status-timeline .status-history-item .status-content {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  flex: 1;
}
.experiment-meta-data .status-history .status-timeline .status-history-item .status-content .status-text {
  font-weight: 600;
  font-size: 0.8em;
  color: inherit;
  text-transform: uppercase;
}
.experiment-meta-data .status-history .status-timeline .status-history-item .status-content .status-time {
  font-size: 0.8em;
  color: var(--text-secondary);
}
.experiment-meta-data .error-button, .experiment-meta-data .message-button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--error-color);
  color: var(--text);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.experiment-meta-data .error-button:hover, .experiment-meta-data .message-button:hover {
  background: var(--error-color);
  transform: translateY(-1px);
}
.experiment-meta-data .message-button {
  background: var(--primary);
}
.experiment-meta-data .message-button:hover {
  background: var(--primary);
}
.experiment-meta-data .loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}
.experiment-meta-data .no-experiment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 1em;
}
.experiment-meta-data .no-experiment svg {
  font-size: 2em;
  color: var(--error-color);
}

.error-modal-content .error-header {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
}
.error-modal-content .error-header .error-icon {
  color: var(--error-color);
  font-size: 1.25em;
}
.error-modal-content .error-header .message-icon {
  color: var(--primary);
  font-size: 1.25em;
}
.error-modal-content .error-header span {
  font-weight: 600;
  color: var(--text-color);
}
.error-modal-content .traceback-container {
  background: var(--background);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 8px;
  padding: 1em;
  max-height: 400px;
  overflow-y: auto;
}
.error-modal-content .traceback-container pre {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 0.875em;
  line-height: 1.4;
}
.error-modal-content .traceback-container pre code {
  color: var(--text-color);
}

@media (max-width: 768px) {
  .experiment-meta-data {
    padding: 1em;
  }
  .experiment-meta-data .metrics-grid {
    grid-template-columns: 1fr;
  }
  .experiment-meta-data .basic-info-section {
    grid-template-columns: 1fr;
  }
  .experiment-meta-data .configuration-section .fitness-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=experiment-meta-data.css.map */.experiments-charts {
  width: 100%;
  background-color: var(--secondary-background);
  border-radius: 8px;
}
.experiments-charts .charts-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 2em;
  gap: 1em;
}
.experiments-charts .charts-container .chart-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(var(--text-color), 0.2);
}
.experiments-charts .charts-container .chart-container.general:nth-child(1) {
  grid-column: 1/4;
}
.experiments-charts .charts-container .chart-container.general:nth-child(2) {
  grid-column: 4/6;
}
.experiments-charts .charts-container .chart-container.general:nth-child(3) {
  grid-column: 1/1;
}
.experiments-charts .charts-container .chart-container.general:nth-child(4) {
  grid-column: 2/4;
}
.experiments-charts .charts-container .chart-container.general:nth-child(5) {
  grid-column: 4/6;
}
.experiments-charts .charts-container .chart-container:has(.table-chart) {
  grid-column: span 3;
}
.experiments-charts .charts-container.custom {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 786px) {
  .experiments-charts .charts-container {
    grid-template-columns: 1fr !important;
  }
}/*# sourceMappingURL=experiments-charts.css.map *//* Celda "name" de la tabla */
.rdt_TableCell[data-column-id=name] {
  overflow: hidden;
  padding-inline: 8px;
}

/* Wrapper intermedio de RDT */
.rdt_TableCell[data-column-id=name] > [data-tag=allowRowEvents] {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

/* Tu parent (solo en la tabla) */
.rdt_TableCell[data-column-id=name] .experiment-name-div {
  display: flex;
  width: 100%;
  min-width: 0;
}

/* SOLO la instancia de la tabla */
.rdt_TableCell[data-column-id=name] .experiment-name-div .editable-text-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* SOLO la instancia de la tabla */
.rdt_TableCell[data-column-id=name] .experiment-name-div .editable-text-field .display-mode {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}/*# sourceMappingURL=experiment-name-field.css.map */.experiment {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  color: var(--text);
  overflow-y: auto;
}
.experiment .reporter-dashboard-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.experiment .reporter-dashboard-container .buttons {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  background-color: var(--background);
  padding: 1em;
}
.experiment .reporter-dashboard-container .buttons .back-button {
  outline: none;
  background-color: var(--primary);
  color: var(--text);
  font-size: 1.2em;
  width: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: none;
  padding: 0.2em;
  border-radius: 4px;
}
.experiment .reporter-dashboard-container .buttons .back-button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.experiment .reporter-dashboard-container .buttons .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.experiment .reporter-dashboard-container .buttons .experiment-info .name {
  font-size: 1.5em;
}
.experiment .reporter-dashboard-container .buttons .experiment-info .name span {
  font-weight: 600;
  color: var(--primary);
}
.experiment .reporter-dashboard-container .buttons .experiment-info .time {
  color: var(--secondary-text);
}
.experiment .reporter-dashboard-container .buttons .right-side {
  display: flex;
  align-items: center;
  gap: 2em;
}
.experiment .reporter-dashboard-container .buttons .right-side .run-time {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  padding: 0.25em 1em;
  border: 1px solid var(--primary);
  border-radius: 4px;
}
.experiment .reporter-dashboard-container .buttons .right-side .status-button {
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.experiment .reporter-dashboard-container .content {
  display: flex;
  flex-direction: column;
  gap: 0.5em 0.5em 0 0.5em;
  margin: 1em;
  border-radius: 4px;
  background-color: var(--background);
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
}
.experiment .reporter-dashboard-container .content .graphs-wrapper {
  height: 100%;
  overflow-y: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.experiment .reporter-dashboard-container .content .info-wrapper {
  color: var(--text);
  background-color: var(--secondary-background);
  border-radius: 4px;
}
.experiment .dot {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}/*# sourceMappingURL=experiment.css.map */.new-experiment-visualization {
  background: rgba(var(--text-color), 0.05);
  border: 1px solid rgba(var(--text-color), 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.viz-header {
  margin-bottom: 20px;
}

.viz-header h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.power-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8em;
}

.stat {
  color: var(--secondary-text);
}

.stat strong {
  color: var(--text);
  font-weight: 600;
}

.viz-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.concurrency-stack {
  position: relative;
  min-height: 120px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concurrency-layer {
  position: absolute;
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
  border: 2px solid rgba(var(--gray-color), 0.5);
  transition: all 0.3s ease;
}

.cpu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2px;
}

.cpu-cube {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cpu-cube.active {
  background: var(--primary);
  border-color: var(--primary);
}

.cpu-cube.inactive {
  background: rgba(var(--gray-color), 0.3);
  border-color: rgba(var(--gray-color), 1);
}

.overflow-indicator {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 0.1em 0.2em;
  font-size: 0.8em;
  font-weight: 600;
  z-index: 10;
}

.overflow-text {
  font-size: 1em;
}

.power-meter {
  flex: 1;
  max-width: 200px;
}

.meter-label {
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 8px;
}

.meter-bar {
  width: 100%;
  height: 12px;
  background: rgba(var(--gray-color), 0.3);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(var(--text-color), 0.5);
}

.meter-fill {
  height: 100%;
  transition: all 0.5s ease;
  border-radius: 6px;
  position: relative;
}

.meter-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
  color: var(--secondary-text);
}

@media (max-width: 640px) {
  .viz-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .power-meter {
    max-width: none;
  }
}/*# sourceMappingURL=new-experiment-visualization.css.map */.control-buttons {
  color: var(--text);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
}
.control-buttons .btn {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.control-buttons .btn:hover:not(:disabled) {
  cursor: pointer;
  opacity: 0.7;
}
.control-buttons .btn.run {
  background-color: var(--primary);
  border-color: var(--primary);
}
.control-buttons .btn:disabled {
  color: var(--disabled);
}
.control-buttons .loading-indicator {
  padding-right: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.control-buttons .loading-indicator .text {
  font-size: 0.8em;
}
.control-buttons .loading-indicator .progress-bar-container {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.control-buttons .loading-indicator .progress-bar-container .progress-bar {
  width: 5em;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
  height: 10px;
}
.control-buttons .loading-indicator .progress-bar-container .progress-bar .progress-bar-fill {
  height: 100%;
  background-color: #4caf50;
  text-align: center;
  color: white;
  border-radius: 4px;
  transition: width 0.2s ease-in-out;
}
.control-buttons .loading-indicator .progress-bar-container .bar-value {
  font-size: 0.8em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}/*# sourceMappingURL=control-buttons.css.map */.line-chart {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 1em;
}
.line-chart .chart-tooltip {
  background-color: var(--secondary-background);
  border-radius: 8px;
  padding: 0.25em 0;
  font-size: 0.9em;
}
.line-chart .chart-tooltip .tooltip-content {
  font-size: 1.2em;
  padding: 1em;
}
.line-chart .chart-tooltip .tooltip-content .x-key {
  padding-bottom: 0.5em;
}
.line-chart .chart-tooltip .tooltip-content .value {
  font-weight: 600;
}
.line-chart .btn {
  background-color: var(--primary);
  outline: none;
  border: none;
  border-radius: 50%;
  aspect-ratio: 1;
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 6.5em;
  width: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-chart .btn:hover {
  background-color: var(--secondary);
  cursor: pointer;
}
.line-chart .btn .icon {
  font-size: 1.5em;
}/*# sourceMappingURL=line-chart.css.map */.area-chart {
  box-sizing: border-box;
}/*# sourceMappingURL=area-chart.css.map */.value-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  padding: 1em;
  text-align: center;
  height: 100%;
}
.value-chart .value-chart-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 1.2em;
  position: relative;
  padding: 0.5em;
}
.value-chart .value-chart-item .value {
  font-weight: 600;
}
.value-chart .value-chart-item .value-chart-item-value {
  font-size: 2.5em;
  font-weight: 700;
}
.value-chart .value-chart-item::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(var(--text-color), 0.3);
  position: absolute;
  right: -1.5em;
  top: 0;
}
.value-chart .value-chart-item:last-child::before {
  display: none;
}
.value-chart .value-chart-item::after {
  content: "";
  width: 100%;
  height: 0.5em;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  margin-top: 0.5em;
  border-radius: 8px;
}
.value-chart.vertical {
  flex-direction: column;
  gap: 2em;
  padding: 1em;
}
.value-chart.vertical .value-chart-item::before {
  width: 100%;
  height: 1px;
  background: rgba(var(--text-color), 0.3);
  position: absolute;
  top: -0.5em;
  left: 0;
}
.value-chart.vertical .value-chart-item:last-child::before {
  display: block;
}
.value-chart.vertical .value-chart-item:first-child::before {
  display: none;
}/*# sourceMappingURL=value-chart.css.map */.table-chart .title {
  padding: 1em;
  font-size: 1.1em;
  color: var(--primary);
  font-weight: 600;
}
.table-chart .rdt_Table {
  margin-top: 1em;
  border-radius: 8px;
  background-color: var(--secondary-background);
  max-height: 30em;
}
.table-chart .rdt_Table .rdt_TableBody {
  max-height: 40em;
  overflow-y: auto;
}
.table-chart .rdt_Table .rdt_TableBody .rdt_TableRow {
  color: var(--text);
  background-color: var(--secondary-background);
  font-size: 0.9em;
}
.table-chart .rdt_Table .rdt_TableBody .rdt_TableRow:nth-child(even) {
  background-color: rgba(var(--text-color), 0.05);
}
.table-chart .rdt_Table .rdt_TableBody .rdt_TableRow:hover {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
  border: none;
  outline: none;
}
.table-chart .rdt_Table .rdt_TableBody .rdt_TableRow button[type=button] {
  color: var(--text);
}
.table-chart .rdt_Table .rdt_TableBody .rdt_ExpanderRow {
  background-color: var(--background);
  color: var(--text);
  border-left: 2px solid var(--secondary);
}
.table-chart .rdt_Pagination {
  color: var(--text);
  background-color: var(--secondary-background);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-chart .rdt_Pagination button[type=button] {
  fill: var(--text);
}/*# sourceMappingURL=table-chart.css.map */.chatbot-conversation {
  padding: 3em 0;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  border-bottom: 2px solid var(--secondary-background);
}
.chatbot-conversation .messages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3em;
  padding: 1em;
  margin: 0 25em;
}
.chatbot-conversation .footer-wrapper {
  position: relative;
  width: 100%;
}
.chatbot-conversation .error-message {
  background-color: rgba(var(--accent-color), 0.1);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1em;
  position: relative;
  margin: 0 30em;
}
.chatbot-conversation .buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0 30em;
}
.chatbot-conversation .buttons-wrapper button {
  padding: 0.5em 1em;
  background-color: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.chatbot-conversation .buttons-wrapper button:hover:not(:disabled) {
  cursor: pointer;
  background-color: var(--secondary);
}
.chatbot-conversation .buttons-wrapper button:disabled {
  background-color: var(--secondary-text);
  cursor: default;
}
.chatbot-conversation .buttons-wrapper button:last-child {
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--text);
}
.chatbot-conversation .loader {
  margin: 0 30em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--secondary-text);
}/*# sourceMappingURL=chatbot-conversation.css.map */.chatbot-input {
  margin: 5em 30em 0 30em;
  display: grid;
  grid-template-columns: 1fr 20fr;
  gap: 1em;
}
.chatbot-input .new-conversation-button {
  height: 7em;
  border: 1px solid var(--secondary-background);
  border-radius: 8px;
  background-color: rgba(var(--text-color), 0.05);
  color: var(--text);
  outline: none;
}
.chatbot-input .new-conversation-button:hover:not(:disabled) {
  cursor: pointer;
  background-color: rgba(var(--text-color), 0.1);
}
.chatbot-input .new-conversation-button:disabled {
  background-color: var(--disabled);
}/*# sourceMappingURL=chatbot-input.css.map */.chatbot-message .identification-header {
  display: flex;
  align-items: center;
  gap: 1em;
  color: var(--secondary-text);
}
.chatbot-message .identification-header .avatar {
  background-color: var(--secondary-background);
  padding: 0.75em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-message .identification-header .avatar .icon {
  font-size: 1.2em;
}
.chatbot-message .identification-header .name {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.1em;
}
.chatbot-message .identification-header .copy-button {
  color: var(--secondary-text);
  background-color: var(--secondary-background);
  border-radius: 50%;
  padding: 0.5em 0.65em;
  border: none;
  outline: none;
}
.chatbot-message .identification-header .copy-button:hover {
  cursor: pointer;
  background-color: var(--secondary-text);
  color: var(--secondary-background);
}
.chatbot-message .message-body {
  padding-top: 0.5em;
  padding-left: 4em;
}/*# sourceMappingURL=chatbot-message.css.map */.organizations-field__single-link, .organizations-field {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  border-radius: 4px;
  user-select: none;
  background-color: rgba(var(--text-color), 0.05);
  border: 1px solid rgba(var(--text-color), 0.2);
  line-height: 1;
  transition: opacity 0.15s ease, transform 0.06s ease, filter 0.15s ease;
}
.organizations-field__single-link:hover, .organizations-field:hover {
  filter: brightness(0.98);
  opacity: 0.7;
  cursor: pointer;
}
.organizations-field__single-link:active, .organizations-field:active {
  transform: translateY(1px);
}
.organizations-field__single-link:focus-visible, .organizations-field:focus-visible {
  outline: 2px solid rgba(var(--text-color), 0.35);
  outline-offset: 2px;
}

.organizations-field {
  min-width: 0;
  position: relative;
}
.organizations-field__empty {
  color: rgba(var(--text-color), 0.45);
}

.organizations-field__single-link {
  min-width: 0;
  flex: 1 1 auto;
  display: block;
  max-width: 100%;
  font: inherit;
  color: inherit;
  line-height: 1.2;
  padding: calc(0.25em + 0.5rem);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.dropdown-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35em;
  width: 100%;
  padding: calc(0.25em + 0.5rem);
  box-sizing: border-box;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  line-height: 1.2;
}

.span-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25em;
}

.arrow {
  display: block;
  line-height: 0;
  vertical-align: middle;
}

.organizations-field__single-link {
  font: inherit;
  color: inherit;
  line-height: 1.2;
  padding: calc(0.25em + 0.5rem);
  overflow-wrap: break-word;
}

.orgs-linklike {
  color: inherit;
  text-decoration: none;
}
.orgs-linklike:hover, .orgs-linklike:focus {
  text-decoration: underline;
}

.organizations-dropdown,
.dropdown-menu {
  --menu-border: 1px solid rgba(var(--text-color), 0.2);
  background: var(--secondary-background);
  background: color-mix(in srgb, var(--secondary-background) 95%, rgb(var(--text-color)) 5%);
  border: var(--menu-border);
  border-radius: 4px;
}
.organizations-dropdown .dropdown-header,
.dropdown-menu .dropdown-header {
  color: inherit;
  font-weight: bold;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
}
.organizations-dropdown .dropdown-option,
.dropdown-menu .dropdown-option {
  border: 0;
  min-width: 100%;
  text-align: left;
  line-height: 1.2;
  color: rgb(var(--text-color, 17, 24, 39));
  cursor: pointer;
  border-top: 1px solid rgba(var(--text-color), 0.2);
}
.organizations-dropdown .dropdown-option:hover, .organizations-dropdown .dropdown-option:focus,
.dropdown-menu .dropdown-option:hover,
.dropdown-menu .dropdown-option:focus {
  background: rgba(var(--text-color), 0.06);
}
.organizations-dropdown .dropdown-option.is-active,
.dropdown-menu .dropdown-option.is-active {
  background: rgba(var(--text-color), 0.1);
}.App, .route {
  display: flex;
  flex-grow: 1;
  height: 100%;
}

.react-flow__attribution a {
  display: none;
}

html,
body,
#root {
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: var(--background);

  --white-color: 255, 255, 255;
  --white: rgb(var(--white-color));
  --navbar-height: 4em;
}

body {
  color-scheme: dark light;
}

[data-theme='light'] {
  color-scheme: light;
  --text: rgb(0, 39, 39);
  --text-color: 0, 39, 39;
  --secondary-text: rgb(153, 157, 172);
  --background: #f3f4f6;
  --secondary-background: #ffffff;
  --primary-color: 27, 192, 99;
  --primary: rgb(var(--primary-color));
  --secondary-color: 116, 213, 193;
  --secondary: rgb(var(--secondary-color));
  --accent-color: 241, 160, 140;
  --accent: rgb(var(--accent-color));
  --error-color: rgb(228, 92, 92);
  --disabled: rgb(204, 211, 217);

  --green-color: 90, 207, 90;
  --light-green-color: 127, 222, 127;
  --red-color: 255, 30, 30;
  --light-red-color: 250, 107, 107;
  --orange-color: 255, 165, 0;
  --blue-color: 169, 187, 255;
  --light-blue-color: 107, 174, 250;
  --purple-color: 240, 149, 255;
  --cyan-color: 25, 197, 197;
  --yellow-color: 211 206 125;
  --light-purple-color: 240, 149, 255;
  --dark-green-color: 28, 160, 28;
  --gray-color: 200, 202, 220;
}

[data-theme='dark'] {
  color-scheme: dark;
  --text: white;
  --text-color: 255, 255, 255;
  --secondary-text: rgb(163, 171, 184);
  --background: rgb(0, 0, 7);
  --secondary-background: rgb(30, 30, 30);
  --primary-color: 27, 192, 99;
  --primary: rgb(var(--primary-color));
  --secondary-color: 51, 191, 171;
  --secondary: rgb(var(--secondary-color));
  --accent-color: 241, 160, 140;
  --accent: rgb(var(--accent-color));
  --error-color: rgb(228, 92, 92);
  --disabled: rgb(38, 42, 48);

  --green-color: 0, 128, 0;
  --light-green-color: 121, 255, 112;
  --red-color: 255, 30, 30;
  --light-red-color: 250, 107, 107;
  --orange-color: 255, 165, 0;
  --blue-color: 46, 46, 223;
  --light-blue-color: 107, 174, 250;
  --purple-color: 128, 0, 128;
  --light-purple-color: 240, 149, 255;
  --cyan-color: 25, 184, 184;
  --yellow-color: 255 240 0;
  --dark-green-color: 28, 160, 28;
  --gray-color: 200, 202, 220;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Rubik', 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family:
    source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

* {
  box-sizing: border-box;
  scrollbar-color: #3a8ef74d var(--general-background-color);
  scrollbar-width: thin;
  font-family: inherit;
}
