:root {
  --lf-tabs-list-height: 52px;
}

.lf-tab-background {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  transition:
    width 0.3s ease,
    transform 0.3s ease;
}
:root {
  /* CSS variables */
}
/* Isolate editor content from external/client CSS by reverting all properties.
 * IMPORTANT: We exclude SVG elements and their children from this rule because
 * 'all: revert' breaks SVG rendering (paths don't display, transforms don't work).
 * SVG has its own rendering model and doesn't need CSS isolation the same way text content does.
 */
.sd-editor-scoped,
.sd-editor-scoped :where(*:not(svg):not(svg *):not(.annotation):not([data-drag-handle])),
.sd-editor-scoped :where(*:not(svg):not(svg *)::before),
.sd-editor-scoped :where(*:not(svg):not(svg *)::after) {
  all: revert;
  box-sizing: border-box;
}
/* Ensure SVG display properties for proper rendering */
.sd-editor-scoped svg {
  display: inline-block;
  overflow: visible;
}
.sd-editor-scoped {
  display: block;
}
/*
 * Visual Regression Testing:
 * This CSS isolation is critical for protecting editor content from external stylesheets.
 * Visual regression tests should be added to the visual testing repository to ensure:
 * 1. Text content is not affected by aggressive global CSS
 * 2. SVG shapes (shape groups, vector shapes) render correctly
 * 3. No visual regressions when client applications have conflicting styles
 *
 * Reference: PR #1219 - "improve style scoping in the editor to prevent external styles affecting content"
 * Reference: PR #1236 - "shape groups" (this fix ensures both isolation AND SVG rendering work)
 */
.sd-input-active {
  border: 1px solid #1355ff !important;
}
.sd-super-editor-html .ProseMirror {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  outline: none;
}
.super-editor a {
  color: initial;
  -webkit-text-decoration: auto;
          text-decoration: auto;
}
.presentation-editor__selection-caret {
  animation: superdoc-caret-blink 1.2s steps(2, start) infinite;
}
.presentation-editor__permission-overlay {
  pointer-events: none;
}
.presentation-editor__permission-highlight {
  border-radius: 2px;
  background-color: rgba(199, 200, 217, 0.55);
}
@keyframes superdoc-caret-blink {
  0%,
  45% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}
/**
 * Basic ProseMirror styles.
 * https://github.com/ProseMirror/prosemirror-view/blob/master/style/prosemirror.css
 *
 * All selectors are scoped under .sd-editor-scoped to prevent bleeding into host apps.
 * See: SD-1850
 */
.sd-editor-scoped .ProseMirror {
  position: relative;
  /* We use "all: revert" to isolate the editor content from external stylesheets. This makes the "contenteditable" not editable on Safari devices. So we need to keep this. */
  -webkit-user-modify: read-write-plaintext-only;
  word-wrap: break-word;
  white-space: pre-wrap;
  white-space: break-spaces;
  font-variant-ligatures: none;
  font-feature-settings: 'liga' 0; /* the above doesn't seem to work in Edge */
  z-index: 0; /* Needed to place images behind text with lower z-index */
}
.sd-editor-scoped .ProseMirror pre {
  white-space: pre-wrap;
}
.sd-editor-scoped .ProseMirror ol,
.sd-editor-scoped .ProseMirror ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  padding-left: 0;
  list-style: none;
}
.sd-editor-scoped .ProseMirror li::marker {
  content: none;
  padding: 0;
  margin: 0;
}
.sd-editor-scoped .ProseMirror li > p {
  margin: 0;
  padding: 0;
  display: inline-block;
}
/**
 * Hide marker for indented lists.
 * If a list-item contains a list but doesn't contain a "p" tag with text.
 */
.sd-editor-scoped .ProseMirror ol {
  margin: 0;
}
.sd-editor-scoped .ProseMirror li:has(> ul:first-child, > ol:first-child):not(:has(> p)) {
  list-style-type: none;
}
.sd-editor-scoped .ProseMirror li:has(> ul:first-child, > ol:first-child):not(:has(> p))::marker {
  content: '';
}
.sd-editor-scoped .ProseMirror-hideselection *::-moz-selection {
  background: transparent;
}
.sd-editor-scoped .ProseMirror-hideselection *::selection {
  background: transparent;
}
.sd-editor-scoped .ProseMirror-hideselection *::-moz-selection {
  background: transparent;
}
.sd-editor-scoped .ProseMirror-hideselection * {
  caret-color: transparent;
}
/* Allow selection visibility in viewing mode when allowSelectionInViewMode is enabled */
.presentation-editor--allow-selection .ProseMirror-hideselection *::-moz-selection {
  background: Highlight;
  background: -moz-Highlight;
}
.presentation-editor--allow-selection .ProseMirror-hideselection *::selection {
  background: Highlight;
  background: -moz-Highlight;
}
.presentation-editor--allow-selection .ProseMirror-hideselection *::-moz-selection {
  background: Highlight;
}
.presentation-editor--allow-selection .ProseMirror-hideselection * {
  caret-color: auto;
}
/* See https://github.com/ProseMirror/prosemirror/issues/1421#issuecomment-1759320191 */
.sd-editor-scoped .ProseMirror [draggable][contenteditable='false'] {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.sd-editor-scoped .ProseMirror-selectednode {
  outline: 2px solid #8cf;
}
/* Make sure li selections wrap around markers */
.sd-editor-scoped li.ProseMirror-selectednode {
  outline: none;
}
.sd-editor-scoped li.ProseMirror-selectednode:after {
  content: '';
  position: absolute;
  left: -32px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  border: 2px solid #8cf;
  pointer-events: none;
}
.sd-editor-scoped .ProseMirror img {
  height: auto;
  max-width: 100%;
}
/* Protect against generic img rules */
.sd-editor-scoped img.ProseMirror-separator {
  display: inline !important;
  border: none !important;
  margin: 0 !important;
}
.sd-editor-scoped .ProseMirror .sd-editor-tab {
  display: inline-block;
  vertical-align: text-bottom;
}
.sd-editor-scoped .ProseMirror u .sd-editor-tab {
  white-space: pre;
  border-bottom: 1px solid #000;
  margin-bottom: 1.5px;
}
/*
Tables
https://github.com/ProseMirror/prosemirror-tables/blob/master/style/tables.css
https://github.com/ProseMirror/prosemirror-tables/blob/master/demo/index.html
*/
.sd-editor-scoped .ProseMirror.resize-cursor {
  cursor: ew-resize;
  cursor: col-resize;
}
.sd-editor-scoped .ProseMirror .tableWrapper {
  --table-border-width: 1px;
  --offset: 2px;

  overflow-x: auto;
  scrollbar-width: thin;
  overflow: visible; /* Allow table to extend beyond margins */

  /*
  The border width does not need to be multiplied by two,
  for tables it works differently. */
  width: calc(100% + (var(--table-border-width) + var(--offset)));
}
.sd-editor-scoped .ProseMirror table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
  margin: 0;
  /* width: 100%; */
}
/* Header/footer editors: constrain table to the editor's available width.
   Raw DOCX grid <col> widths may exceed the section's content area.
   table-layout:auto treats col widths as preferred (not hard) constraints,
   so the browser can redistribute columns to fit within width:100%.
   !important overrides inline styles set by TableView.updateTable()
   which resets styles via table.style.cssText. */
.sd-editor-scoped .ProseMirror.sd-header-footer table {
  table-layout: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}
.sd-editor-scoped .ProseMirror tr {
  position: relative;
}
.sd-editor-scoped .ProseMirror td,
.sd-editor-scoped .ProseMirror th {
  min-width: 0;
  position: relative;
  vertical-align: top;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.sd-editor-scoped .ProseMirror td[data-placeholder],
.sd-editor-scoped .ProseMirror th[data-placeholder] {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.sd-editor-scoped .ProseMirror td[data-placeholder] > *,
.sd-editor-scoped .ProseMirror th[data-placeholder] > * {
  display: none !important;
}
.sd-editor-scoped .ProseMirror th {
  font-weight: bold;
  text-align: left;
}
.sd-editor-scoped .ProseMirror table .column-resize-handle {
  position: absolute;
  right: -2px;
  top: 0;
  bottom: -2px; /* 0 */
  width: 4px;
  z-index: 20;
  background-color: #adf;
  pointer-events: none;
}
.sd-editor-scoped .ProseMirror table .selectedCell:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(200, 200, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}
/* Tables - end */
/* Track changes */
.sd-editor-scoped .ProseMirror .track-insert-dec,
.sd-editor-scoped .ProseMirror .track-delete-dec,
.sd-editor-scoped .ProseMirror .track-format-dec {
  pointer-events: none;
}
.sd-editor-scoped .ProseMirror .track-insert-dec.hidden,
.sd-editor-scoped .ProseMirror .track-delete-dec.hidden {
  display: none;
}
.sd-editor-scoped .ProseMirror .track-insert-dec.highlighted {
  border-top: 1px dashed var(--sd-tracked-changes-insert-border, #00853d);
  border-bottom: 1px dashed var(--sd-tracked-changes-insert-border, #00853d);
  background-color: var(--sd-tracked-changes-insert-background, #399c7222);
}
.sd-editor-scoped .ProseMirror .track-delete-dec.highlighted {
  border-top: 1px dashed var(--sd-tracked-changes-delete-border, #cb0e47);
  border-bottom: 1px dashed var(--sd-tracked-changes-delete-border, #cb0e47);
  background-color: var(--sd-tracked-changes-delete-background, #cb0e4722);
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
}
.sd-editor-scoped .ProseMirror .track-format-dec.highlighted {
  border-bottom: 2px solid var(--sd-tracked-changes-format-border, gold);
}
.sd-editor-scoped .ProseMirror .track-delete-widget {
  visibility: hidden;
}
/* Track changes - end */
/* Collaboration cursors */
.sd-editor-scoped .ProseMirror > .ProseMirror-yjs-cursor:first-child {
  margin-top: 16px;
}
.sd-editor-scoped .ProseMirror-yjs-cursor {
  position: relative;
  margin-left: -1px;
  margin-right: -1px;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-color: orange;
  word-break: normal;
  pointer-events: none;
}
.sd-editor-scoped .ProseMirror-yjs-cursor > div {
  position: absolute;
  top: -1.05em;
  left: -1px;
  font-size: 13px;
  background-color: rgb(250, 129, 0);
  font-family: serif;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: white;
  padding-left: 2px;
  padding-right: 2px;
  white-space: nowrap;
}
/* Collaboration cursors - end */
/* Presentation Editor Remote Cursors */
.presentation-editor__selection-layer--local,
.presentation-editor__selection-layer--remote {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.presentation-editor__remote-caret {
  position: absolute;
  pointer-events: none;
}
.presentation-editor__remote-label {
  position: absolute;
  font-size: 13px;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  line-height: normal;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Drop shadow for better readability over varied backgrounds */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  /* Ensure labels appear above selections */
  z-index: 1;
}
.presentation-editor__remote-selection {
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
  /* Better color blending with text (multiply mode shows text more clearly through highlights) */
  mix-blend-mode: multiply;
}
/* Presentation Editor Remote Cursors - end */
/* Footnotes */
.sd-editor-scoped .sd-footnote-ref {
  font-size: 0.75em;
  line-height: 1;
  vertical-align: super;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/* Image placeholder */
.sd-editor-scoped .ProseMirror placeholder {
  display: inline;
  border: 1px solid #ccc;
  color: #ccc;
}
.sd-editor-scoped .ProseMirror placeholder:after {
  content: '☁';
  font-size: 200%;
  line-height: 0.1;
  font-weight: bold;
}
/* Gapcursor */
.sd-editor-scoped .ProseMirror-gapcursor {
  display: none;
  pointer-events: none;
  position: absolute;
  margin: 0;
}
.sd-editor-scoped .ProseMirror-gapcursor:after {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  width: 20px;
  border-top: 1px solid black;
  animation: superdoc-cursor-blink 1.1s steps(2, start) infinite;
}
@keyframes superdoc-cursor-blink {
  to {
    visibility: hidden;
  }
}
.sd-editor-scoped .ProseMirror-focused .ProseMirror-gapcursor {
  display: block;
}
.sd-editor-scoped .ProseMirror div[data-type='contentBlock'] {
  position: absolute;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}
.sd-editor-scoped .ProseMirror div[data-horizontal-rule='true'] {
  position: relative;
  z-index: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: auto;
  align-self: flex-end;
}
.sd-editor-scoped .sd-editor-dropcap {
  float: left;
  display: flex;
  align-items: baseline;
  margin-top: -5px;
}
.sd-editor-scoped .ProseMirror-search-match {
  background-color: #ffff0054;
}
.sd-editor-scoped .ProseMirror-active-search-match {
  background-color: #ff6a0054;
}
.sd-editor-scoped .ProseMirror span.sd-custom-selection::-moz-selection {
  background: transparent;
}
.sd-editor-scoped .ProseMirror span.sd-custom-selection::selection {
  background: transparent;
}
.sd-editor-scoped .sd-custom-selection {
  background-color: #d9d9d9;
  border-radius: 0.1em;
}
.superdoc-toolbar svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  pointer-events: none;
}
.superdoc-toolbar svg path {
    stroke: currentColor;
  }
.sd-editor-toolbar-dropdown .toolbar-dropdown-option .dropdown-select-icon {
  display: flex;
  width: 12px;
  height: 12px;
}
/* Custom toolbar styling */
/* AI button icon styling with gradient */
.super-editor .toolbar-icon__icon--ai {
  position: relative;
  z-index: 1;
}
.super-editor .toolbar-icon__icon--ai svg {
  fill: transparent;
}
.super-editor .toolbar-icon__icon--ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    270deg,
    rgba(218, 215, 118, 0.5) -20%,
    rgba(191, 100, 100, 1) 30%,
    rgba(77, 82, 217, 1) 60%,
    rgb(255, 219, 102) 150%
  );
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.7-53.3L160 80l-53.3-26.7L80 0 53.3 53.3 0 80l53.3 26.7L80 160zm352 128l-26.7 53.3L352 368l53.3 26.7L432 448l26.7-53.3L512 368l-53.3-26.7L432 288zm70.6-193.8L417.8 9.4C411.5 3.1 403.3 0 395.2 0c-8.2 0-16.4 3.1-22.6 9.4L9.4 372.5c-12.5 12.5-12.5 32.8 0 45.3l84.9 84.9c6.3 6.3 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l363.1-363.2c12.5-12.5 12.5-32.8 0-45.2zM359.5 203.5l-50.9-50.9 86.6-86.6 50.9 50.9-86.6 86.6z'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.7-53.3L160 80l-53.3-26.7L80 0 53.3 53.3 0 80l53.3 26.7L80 160zm352 128l-26.7 53.3L352 368l53.3 26.7L432 448l26.7-53.3L512 368l-53.3-26.7L432 288zm70.6-193.8L417.8 9.4C411.5 3.1 403.3 0 395.2 0c-8.2 0-16.4 3.1-22.6 9.4L9.4 372.5c-12.5 12.5-12.5 32.8 0 45.3l84.9 84.9c6.3 6.3 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l363.1-363.2c12.5-12.5 12.5-32.8 0-45.2zM359.5 203.5l-50.9-50.9 86.6-86.6 50.9 50.9-86.6 86.6z'/></svg>")
    center / contain no-repeat;
  filter: brightness(1.2);
  transition: filter 0.2s ease;
}
.super-editor .toolbar-icon__icon--ai:hover::before {
  filter: brightness(1.3);
}
/* AI text appear animation */
@keyframes superdoc-aiTextAppear {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.super-editor .sd-ai-text-appear {
  display: inline;
  opacity: 0;
  animation: superdoc-aiTextAppear 0.7s ease-out forwards;
  animation-fill-mode: both;
  will-change: opacity, transform;
  /* Ensure each mark is treated as a separate animation context */
  contain: content;
}
.super-editor .sd-ai-loader {
  display: flex;
  justify-content: flex-start;
}
.super-editor .sd-ai-loader > img {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
}
@keyframes superdoc-ai-pulse {
  0% {
    background-color: rgba(99, 102, 241, 0.1);
  }
  50% {
    background-color: rgba(99, 102, 241, 0.375);
  }
  100% {
    background-color: rgba(99, 102, 241, 0.1);
  }
}
.super-editor .sd-ai-highlight-pulse {
  animation: superdoc-ai-pulse 1.5s ease-in-out infinite;
}
.super-editor .sd-editor-auto-page-number,
.super-editor .sd-editor-auto-total-pages {
  transition: all 250ms ease;
  border-bottom: 1px solid #9a9a9a;
  cursor: not-allowed;
}
.super-editor .sd-editor-auto-page-number:hover,
.super-editor .sd-editor-auto-total-pages:hover {
  border-bottom-color: #4f4f4f;
}
.super-editor .sd-editor-auto-page-number-content {
  pointer-events: none;
}
.super-editor .ProseMirror.view-mode .sd-editor-auto-page-number,
  .super-editor .ProseMirror.view-mode .sd-editor-auto-total-pages {
    border: none;
  }
.sd-editor-popover {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px 0px rgba(50, 50, 50, 0.15);
  padding: 0;
  width: auto;
  height: auto;
  font-size: 14px;
  color: #333;
  z-index: 1000;
}
.sd-editor-popover .popover-header {
  font-weight: bold;
  margin-bottom: 8px;
}
.tippy-box[data-theme~='sd-editor-popover'] {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border: none !important;
  padding: 0 !important;
}
.tippy-box[data-theme~='sd-editor-popover'] .tippy-arrow {
  color: #fff;
  border: 1px solid #dbdbdb;
}
.tippy-box[data-theme~='sd-editor-popover'] .tippy-content {
  padding: 0;
}
.sd-editor-placeholder::before {
  content: attr(data-placeholder);
  color: #aaa;
  pointer-events: none;
  display: block;
  height: 0;
}
.sd-editor-mention {
  background-color: #1355ff15;
  color: #222;
  font-weight: 400;
  border-radius: 3px;
  padding: 0 5px;
  cursor: default;
  display: inline-block;
  box-sizing: border-box;
}
.sd-editor-comment-highlight {
  transition: background-color 250ms ease;
}
.sd-editor-comment-highlight:hover {
  background-color: var(--sd-comments-highlight-hover, #1354ff55);
}
.sd-editor-comment-highlight.sd-custom-selection {
  background-color: #d6c0c6 !important;
}
/* Resize handles container */
.sd-editor-resize-container.sd-editor-scoped {
  position: absolute;
  pointer-events: none;
  z-index: 11;
}
/* Resize handles */
.sd-editor-scoped .sd-editor-resize-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #4dabf7;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transition: all 0.1s ease;
}
.sd-editor-scoped .sd-editor-resize-handle:hover {
  background-color: #228be6;
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
/* Handle positions */
.sd-editor-scoped .sd-editor-resize-handle-nw {
  top: -6px;
  left: -6px;
  cursor: nwse-resize;
}
.sd-editor-scoped .sd-editor-resize-handle-ne {
  top: -6px;
  right: -6px;
  cursor: nesw-resize;
}
.sd-editor-scoped .sd-editor-resize-handle-sw {
  bottom: -6px;
  left: -6px;
  cursor: nesw-resize;
}
.sd-editor-scoped .sd-editor-resize-handle-se {
  bottom: -6px;
  right: -6px;
  cursor: nwse-resize;
}
/* Hide handles when editor loses focus */
.sd-editor-scoped .ProseMirror:not(.ProseMirror-focused) .sd-editor-resize-container {
  display: none;
}
/* Smooth transitions for resizing */
.sd-editor-scoped .sd-editor-resizable-wrapper * {
  transition: none;
}
.sd-editor-scoped .sd-editor-resizable-wrapper *:not([style*='width']) {
  transition: all 0.2s ease;
}
/* Resize feedback indicator */
.sd-editor-scoped .sd-editor-resizable-wrapper::after {
  content: 'Drag corners to resize';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(77, 171, 247, 0.9);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 12;
}
.sd-editor-scoped .sd-editor-resizable-wrapper:hover::after {
  opacity: 1;
}
.super-editor .sd-document-section-block {
  background-color: #fafafa;
  border: 1px solid #ababab;
  border-radius: 4px;
  position: relative;
}
.super-editor .sd-document-section-block-info {
  position: absolute;
  top: -19px;
  left: -1px;
  max-width: 100px;
  min-width: 0;
  height: 18px;
  border: 1px solid #ababab;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 0 8px;
  align-items: center;
  font-size: 10px;
  display: none;
  z-index: 100;
  background-color: #fafafa;
}
.super-editor .sd-document-section-block:hover {
  border-radius: 0 4px 4px 4px;
}
.super-editor .sd-document-section-block:hover .sd-document-section-block-info {
  display: flex;
  align-items: center;
}
.super-editor .sd-document-section-block-info span {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.super-editor .ProseMirror.view-mode .sd-document-section-block {
  background: none;
  border: none;
}
.super-editor .ProseMirror.view-mode .sd-document-section-block-info {
  display: none;
}
.super-editor .sd-structured-content,
.super-editor .sd-structured-content-block {
  padding: 1px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid transparent;
  position: relative;
}
.super-editor .sd-structured-content:has(img),
.super-editor .sd-structured-content:has(img) .sd-structured-content__content {
  display: inline-block;
}
/* Hover (not selected): light grey background, no handle */
.super-editor .sd-structured-content:not(.ProseMirror-selectednode):hover {
  background-color: var(--sd-content-controls-inline-hover-bg, #f2f2f2);
}
.super-editor .sd-structured-content-block:not(.ProseMirror-selectednode):hover {
  background-color: var(--sd-content-controls-block-hover-bg, #f2f2f2);
}
/* Selected: border + handle visible */
.super-editor .sd-structured-content.ProseMirror-selectednode {
  border-color: var(--sd-content-controls-inline-border, #629be7);
}
.super-editor .sd-structured-content-block.ProseMirror-selectednode {
  border-color: var(--sd-content-controls-block-border, #629be7);
}
.super-editor .sd-structured-content-draggable {
  font-size: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2px;
  bottom: 100%;
  width: calc(100% - 4px);
  max-width: 110px;
  min-width: 0;
  height: 18px;
  padding: 0 4px;
  border: 1px solid var(--sd-content-controls-label-border, #629be7);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background-color: var(--sd-content-controls-label-bg, #629be7ee);
  color: var(--sd-content-controls-label-text, #ffffff);
  box-sizing: border-box;
  z-index: 10;
  cursor: grab;
  display: none;
}
.super-editor .sd-structured-content-draggable span {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* Handle only visible when selected */
.super-editor .sd-structured-content.ProseMirror-selectednode .sd-structured-content-draggable,
.super-editor .sd-structured-content-block.ProseMirror-selectednode .sd-structured-content-draggable {
  display: inline-flex;
}
.super-editor .ProseMirror.view-mode .sd-structured-content,
.super-editor .ProseMirror.view-mode .sd-structured-content-block {
  padding: 0;
  border: none;
}
.super-editor .ProseMirror.view-mode .sd-structured-content-draggable {
  display: none;
}
.presentation-editor--viewing .sd-structured-content,
.presentation-editor--viewing .sd-structured-content-block {
  padding: 0;
  border: none;
}
.presentation-editor--viewing .sd-structured-content-draggable {
  display: none;
}
.sd-vector-shape {
  display: inline-block;
  vertical-align: bottom;
}
.sd-vector-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sd-shape-group {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  border: 1px dashed transparent;
  transition: border-color 0.2s ease;
}
.sd-shape-group:hover {
  border-color: rgba(91, 155, 213, 0.3);
}
.sd-shape-group svg {
  display: block;
}
.sd-shape-group[data-selected] {
  border-color: rgba(91, 155, 213, 0.6);
  background-color: rgba(91, 155, 213, 0.05);
}
/* Ensure shapes within the group are properly positioned */
.sd-shape-group svg g {
  transform-origin: top left;
}

.selected[data-v-72af6874] {
  background-color: #dbdbdb;
}
.mentions-container[data-v-72af6874] {
  outline: none !important;
  border: none;
  max-height: 300px;
  overflow-y: auto;
}
.mentions-container[data-v-72af6874]:focus {
  border: none;
  outline: none !important;
}
.user-row[data-v-72af6874] {
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* Add isolation styles */
.prosemirror-isolated[data-v-f421c401] {
  /* Make sure the component is above ProseMirror in z-index */
  z-index: 100;
  position: relative;
}
.ai-writer[data-v-f421c401] {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  border-radius: 5px;
  overflow-y: scroll;
  /* Firefox */
  scrollbar-width: none;
  /* Internet Explorer and Edge */
  -ms-overflow-style: none;

  padding: 0.75rem;
  box-shadow: 0 0 2px 2px #7715b366;
  border: 1px solid #7715b3;
}

/* Chrome, Safari, and Opera */
.ai-writer[data-v-f421c401]::-webkit-scrollbar {
  display: none;
}

/* Replace .ai-editable with .ai-textarea */
.ai-textarea[data-v-f421c401] {
  padding-left: 8px;
  width: 100%;
  color: #47484a;
  font-size: var(--sd-ui-font-size-200, 12px);
  border: none;
  background: transparent;
  outline: none;
  resize: none;
  overflow: hidden;
  height: 100%;
  font-family: var(--sd-ui-font-family, Arial, Helvetica, sans-serif);
}

/* Add specific styles for textarea placeholder */
.ai-textarea[data-v-f421c401]::-moz-placeholder {
  color: #666;
  font-weight: 400;
}
.ai-textarea[data-v-f421c401]::placeholder {
  color: #666;
  font-weight: 400;
}
.ai-user-input-field[data-v-f421c401] {
  line-height: 13px;
  display: flex;
  flex-direction: row;
  min-height: 50px;
  resize: none;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
}
.ai-textarea-icon[data-v-f421c401] {
  display: block;
  font-weight: 800;
  font-size: var(--sd-ui-font-size-400, 14px);
  width: 16px;
  height: 16px;
}
.ai-textarea-icon svg[data-v-f421c401] {
  height: 16px;
  width: 16px;
}
.ai-textarea-icon.loading[data-v-f421c401] {
  animation: spin-f421c401 2s linear infinite;
}
.loading i[data-v-f421c401] {
  display: flex;
}
.error[data-v-f421c401] {
  fill: #ed4337;
}
.ai-submit-button[data-v-f421c401] {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.ai-submit-button[data-v-f421c401]:hover {
  opacity: 0.8;
}
@keyframes spin-f421c401 {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
.ai-loader[data-v-f421c401] {
  display: flex;
  height: 14px;
  justify-content: flex-end;
  align-items: center;
}

.alignment-buttons[data-v-4b6c5a81] {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.alignment-buttons .button-icon[data-v-4b6c5a81] {
    cursor: pointer;
    padding: 5px;
    font-size: var(--sd-ui-font-size-600, 16px);
    color: var(--sd-ui-dropdown-text, #47484a);
    width: 25px;
    height: 25px;
    border-radius: var(--sd-ui-dropdown-option-radius, 3px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.alignment-buttons .button-icon[data-v-4b6c5a81]:hover {
      background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
      color: var(--sd-ui-dropdown-hover-text, #47484a);
}
.alignment-buttons .button-icon[data-v-4b6c5a81] svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
}
.alignment-buttons.high-contrast .button-icon[data-v-4b6c5a81]:hover {
        background-color: #000;
        color: #fff;
}

.document-mode[data-v-ea69d147] {
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}
.document-mode[data-v-ea69d147] svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.document-mode .option-item[data-v-ea69d147] {
    display: flex;
    flex-direction: row;
    background-color: var(--sd-ui-dropdown-bg, #ffffff);
    padding: 10px;
    border-radius: var(--sd-ui-dropdown-option-radius, 3px);
    cursor: pointer;
    box-sizing: border-box;
}
.document-mode .option-item[data-v-ea69d147]:hover {
      background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
}
.document-mode.high-contrast .option-item[data-v-ea69d147]:hover {
        background-color: #000;
        color: #fff;
}
.document-mode.high-contrast .option-item:hover .icon-column__icon[data-v-ea69d147] {
          color: #fff;
}
.document-mode.high-contrast .option-item:hover .text-column > .document-mode-type[data-v-ea69d147],
          .document-mode.high-contrast .option-item:hover .text-column > .document-mode-description[data-v-ea69d147] {
            color: #fff;
}
.disabled[data-v-ea69d147] {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}
.document-mode-column[data-v-ea69d147] {
  display: flex;
  flex-direction: column;
}
.document-mode-type[data-v-ea69d147] {
  font-weight: 400;
  font-size: var(--sd-ui-font-size-500, 15px);
  color: var(--sd-ui-text, #47484a);
}
.icon-column[data-v-ea69d147] {
  margin-right: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  color: var(--sd-ui-text, #47484a);
  height: 100%;
  box-sizing: border-box;
}
.icon-column__icon[data-v-ea69d147] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 18px;
    color: var(--sd-ui-text, #47484a);
}
.icon-column__icon[data-v-ea69d147] svg {
  width: auto;
  /* needed for safari */
  max-height: 18px;
}
.document-mode-description[data-v-ea69d147] {
  font-size: var(--sd-ui-font-size-200, 12px);
  color: var(--sd-ui-text-muted, #666666);
}

.style-name[data-v-3b605553] {
  padding: 16px 10px;
  color: var(--sd-ui-dropdown-text, #47484a);
}
.style-name[data-v-3b605553]:hover {
  background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
  color: var(--sd-ui-dropdown-hover-text, #47484a);
}
.linked-style-buttons[data-v-3b605553] {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  max-height: 400px;
  width: 200px;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.link-input-wrapper[data-v-4bf9f4db] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-input-ctn[data-v-4bf9f4db] {
  width: 320px;
  display: flex;
  flex-direction: column;
  padding: 1em;
  border-radius: var(--sd-ui-radius, 6px);
  background-color: var(--sd-ui-dropdown-bg, #ffffff);
  box-sizing: border-box;
}
.link-input-ctn[data-v-4bf9f4db] svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.link-input-ctn .input-row[data-v-4bf9f4db] {
    align-content: baseline;
    display: flex;
    align-items: center;
    font-size: var(--sd-ui-font-size-600, 16px);
}
.link-input-ctn .input-row input[data-v-4bf9f4db] {
      font-size: var(--sd-ui-font-size-300, 13px);
      flex-grow: 1;
      padding: 10px;
      border-radius: var(--sd-ui-radius, 6px);
      padding-left: 32px;
      box-shadow: var(--sd-ui-shadow, 0 4px 12px rgba(0, 0, 0, 0.12));
      color: var(--sd-ui-text-muted, #666666);
      border: 1px solid var(--sd-ui-border, #dbdbdb);
      box-sizing: border-box;
}
.link-input-ctn .input-row input[data-v-4bf9f4db]:active,
      .link-input-ctn .input-row input[data-v-4bf9f4db]:focus {
        outline: none;
        border: 1px solid var(--sd-ui-action, #1355ff);
}
.link-input-ctn .input-row input[readonly][data-v-4bf9f4db] {
        background-color: var(--sd-ui-disabled-bg, #f5f5f5);
        cursor: default;
        color: var(--sd-ui-text-disabled, #888);
        border-color: var(--sd-ui-border, #e0e0e0);
}
.link-input-ctn .input-row input[readonly][data-v-4bf9f4db]:active,
        .link-input-ctn .input-row input[readonly][data-v-4bf9f4db]:focus {
          border-color: var(--sd-ui-border, #e0e0e0);
}
.link-input-ctn .input-icon[data-v-4bf9f4db] {
    position: absolute;
    left: 25px;
    width: auto;
    color: var(--sd-ui-text-disabled, #ababab);
    pointer-events: none;
}
.link-input-ctn .input-icon[data-v-4bf9f4db]:not(.text-input-icon) {
    transform: rotate(45deg);
    height: 12px;
}
.link-input-ctn.high-contrast .input-icon[data-v-4bf9f4db] {
      color: var(--sd-ui-text, #47484a);
}
.link-input-ctn.high-contrast .input-row input[data-v-4bf9f4db] {
      color: var(--sd-ui-text, #47484a);
      border-color: var(--sd-ui-text, #47484a);
}
.open-link-icon[data-v-4bf9f4db] {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.open-link-icon[data-v-4bf9f4db]:hover {
  color: var(--sd-ui-action, #1355ff);
  background-color: var(--sd-ui-bg, #ffffff);
  border: 1px solid var(--sd-ui-border, #dbdbdb);
}
.open-link-icon[data-v-4bf9f4db] svg {
  width: 15px;
  height: 15px;
}
.disabled[data-v-4bf9f4db] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.link-buttons[data-v-4bf9f4db] {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.remove-btn__icon[data-v-4bf9f4db] {
  display: inline-flex;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-right: 4px;
}
.link-buttons button[data-v-4bf9f4db] {
  margin-left: 5px;
}
.disable-btn[data-v-4bf9f4db] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.go-to-anchor a[data-v-4bf9f4db] {
  font-size: var(--sd-ui-font-size-400, 14px);
  text-decoration: underline;
}
.clickable[data-v-4bf9f4db] {
  cursor: pointer;
}
.link-title[data-v-4bf9f4db] {
  font-size: var(--sd-ui-font-size-400, 14px);
  font-weight: 600;
  color: var(--sd-ui-text, #47484a);
  margin-bottom: 10px;
}
.hasBottomMargin[data-v-4bf9f4db] {
  margin-bottom: 1em;
}
.remove-btn[data-v-4bf9f4db] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--sd-ui-radius, 6px);
  outline: none;
  background-color: var(--sd-ui-bg, #ffffff);
  color: var(--sd-ui-text, #47484a);
  font-weight: 400;
  font-size: var(--sd-ui-font-size-300, 13px);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--sd-ui-border, #dbdbdb);
  box-sizing: border-box;
}
.remove-btn[data-v-4bf9f4db]:hover {
  background-color: var(--sd-ui-hover-bg, #dbdbdb);
}
.submit-btn[data-v-4bf9f4db] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--sd-ui-radius, 6px);
  outline: none;
  border: none;
  background-color: var(--sd-ui-action, #1355ff);
  color: var(--sd-ui-action-text, #ffffff);
  font-weight: 400;
  font-size: var(--sd-ui-font-size-300, 13px);
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* &.high-contrast {
    background-color: black;
  } */
.submit-btn[data-v-4bf9f4db]:hover {
    background-color: var(--sd-ui-action-hover, #0f44cc);
}
.error[data-v-4bf9f4db] {
  border-color: red !important;
  background-color: #ff00001a;
}
.submit[data-v-4bf9f4db] {
  cursor: pointer;
}

.option-row[data-v-31aed9ae] {
  display: flex;
  flex-direction: row;
}
.option[data-v-31aed9ae] {
  border-radius: 50%;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}
.option[data-v-31aed9ae]:hover {
  background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
}
.option__icon[data-v-31aed9ae] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.option__check[data-v-31aed9ae] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: absolute;
}

.options-grid-wrap[data-v-83e0eecc] {
  padding: 5px;
  border-radius: var(--sd-ui-radius, 6px);
}
.none-option[data-v-83e0eecc] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
}
.none-option[data-v-83e0eecc]:hover {
    opacity: 0.65;
}
.none-icon[data-v-83e0eecc] {
  width: 16px;
}
.option-grid-ctn[data-v-83e0eecc] {
  display: flex;
  flex-direction: column;
  background-color: var(--sd-ui-dropdown-bg, #ffffff);
  z-index: 3;
  box-sizing: border-box;
}
.option-grid-ctn__subtitle[data-v-83e0eecc] {
    padding: 3px;
    font-size: var(--sd-ui-font-size-200, 12px);
    font-weight: 600;
}
.option-grid-ctn[data-v-83e0eecc] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.toolbar-table-grid-wrapper .toolbar-table-grid[data-v-7e8a6d4e] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    padding: 8px;
    box-sizing: border-box;
}
.toolbar-table-grid-wrapper .toolbar-table-grid__item[data-v-7e8a6d4e] {
    width: 20px;
    height: 20px;
    border: 1px solid var(--sd-ui-border, #dbdbdb);
    cursor: pointer;
    transition: all 0.15s;
}
.toolbar-table-grid-wrapper .toolbar-table-grid__item.selected[data-v-7e8a6d4e] {
    background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
}
.toolbar-table-grid-wrapper.high-contrast .toolbar-table-grid__item[data-v-7e8a6d4e] {
      border-color: #000;
}
.toolbar-table-grid-wrapper.high-contrast .toolbar-table-grid__item.selected[data-v-7e8a6d4e] {
      background: #000;
}
.toolbar-table-grid-wrapper .toolbar-table-grid-value[data-v-7e8a6d4e] {
    font-size: var(--sd-ui-font-size-300, 13px);
    line-height: 1.1;
    padding: 0px 8px 2px;
}

.toolbar-table-actions[data-v-1cf87812] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  box-sizing: border-box;
}
.toolbar-table-actions[data-v-1cf87812] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.toolbar-table-actions__item[data-v-1cf87812] {
  display: flex;
  gap: 5px;
  background-color: var(--sd-ui-dropdown-bg, #ffffff);
  padding: 4px 10px;
  border-radius: var(--sd-ui-dropdown-option-radius, 3px);
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}
.toolbar-table-actions__item[data-v-1cf87812]:hover {
  background-color: var(--sd-ui-dropdown-hover-bg, #d8dee5);
}
.toolbar-table-actions__item--border[data-v-1cf87812]:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  left: -10px;
  right: 0;
  height: 1px;
  width: calc(100% + 20px);
  background: var(--sd-ui-border, #dbdbdb);
}
.toolbar-table-actions__icon[data-v-1cf87812] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  color: var(--sd-ui-text, #47484a);
  box-sizing: border-box;
}
.toolbar-table-actions__icon-wrapper[data-v-1cf87812] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 14px;
  color: var(--sd-ui-text, #47484a);
}
.toolbar-table-actions__icon-wrapper[data-v-1cf87812] svg {
  width: auto;
  max-height: 14px;
}
.toolbar-table-actions__label[data-v-1cf87812] {
  font-size: var(--sd-ui-font-size-500, 15px);
  font-weight: 400;
  color: var(--sd-ui-text, #47484a);
  white-space: nowrap;
}

.search-input-ctn[data-v-3dcfeb08] {
  padding: 10px;
  border-radius: var(--sd-ui-radius, 6px);
}
.search-input-ctn .search-input[data-v-3dcfeb08] {
    min-width: 200px;
    font-size: var(--sd-ui-font-size-300, 13px);
    flex-grow: 1;
    padding: 10px;
    border-radius: var(--sd-ui-radius, 6px);
    color: var(--sd-ui-text-muted, #666666);
    border: 1px solid var(--sd-ui-border, #dbdbdb);
    box-sizing: border-box;
    box-shadow: var(--sd-ui-shadow, 0 4px 12px rgba(0, 0, 0, 0.12));
}
.search-input-ctn .search-input[data-v-3dcfeb08]:active,
    .search-input-ctn .search-input[data-v-3dcfeb08]:focus {
      outline: none;
      border: 1px solid var(--sd-ui-action, #1355ff);
}
.search-input-ctn .row[data-v-3dcfeb08] {
    display: flex;
}
.search-input-ctn .row.submit[data-v-3dcfeb08] {
      margin-top: 10px;
      flex-direction: row-reverse;
}
.search-input-ctn .submit-btn[data-v-3dcfeb08] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--sd-ui-radius, 6px);
    outline: none;
    border: none;
    background-color: var(--sd-ui-action, #1355ff);
    color: white;
    font-weight: 400;
    font-size: var(--sd-ui-font-size-300, 13px);
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.toolbar-icon[data-v-a900b1e2] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toolbar-icon__icon[data-v-a900b1e2] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 16px;
}
.toolbar-icon__icon--highlight[data-v-a900b1e2] {
    width: 16px;
    margin-left: 3px;
    margin-bottom: 1px;
}
.toolbar-icon__icon[data-v-a900b1e2] svg {
  width: auto; /* needed for safari */
  max-height: 16px;
}
.toolbar-icon__icon--color[data-v-a900b1e2] svg {
  max-height: 14px;
  margin-top: -3px;
}
.color-bar[data-v-a900b1e2] {
  border-radius: 4px;
  position: absolute;
  z-index: 5;
  height: 4px;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 16px;
}

.toolbar-item[data-v-730da969] {
  position: relative;
  z-index: 1;
  min-width: 30px;
  margin: 0 calc(var(--sd-ui-toolbar-item-gap, 2px) / 2);
}
.visually-hidden[data-v-730da969] {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.toolbar-button[data-v-730da969] {
  padding: var(--sd-ui-toolbar-item-padding, 5px);
  height: var(--sd-ui-toolbar-height, 32px);
  max-height: var(--sd-ui-toolbar-height, 32px);
  border-radius: var(--sd-ui-radius, 6px);
  overflow-y: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sd-ui-toolbar-button-text, #47484a);
  transition: all 0.2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  box-sizing: border-box;
}
.toolbar-button[data-v-730da969]:hover {
  background-color: var(--sd-ui-toolbar-button-hover-bg, var(--sd-ui-hover-bg, #dbdbdb));
}
.toolbar-button:hover .toolbar-icon.high-contrast[data-v-730da969] {
      color: #fff;
}
.toolbar-button:hover.high-contrast[data-v-730da969] {
    background-color: #000;
    color: #fff;
}
.toolbar-button[data-v-730da969]:active,
.active[data-v-730da969] {
  background-color: var(--sd-ui-toolbar-button-active-bg, var(--sd-ui-active-bg, #c8d0d8));
}
.button-label[data-v-730da969] {
  overflow: hidden;
  width: 100%;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--sd-ui-font-size-500, 15px);
  margin: 5px;
}
.toolbar-icon + .dropdown-caret[data-v-730da969] {
  margin-left: 4px;
}
.left[data-v-730da969],
.right[data-v-730da969] {
  width: 50%;
  height: 100%;
  background-color: #dbdbdb;
  border-radius: 60%;
}
.has-inline-text-input[data-v-730da969]:hover {
  cursor: text;
}
.disabled[data-v-730da969] {
  cursor: default;
}
.disabled[data-v-730da969]:hover {
  cursor: default;
  background-color: initial;
}
.disabled .toolbar-icon[data-v-730da969],
.disabled .caret[data-v-730da969],
.disabled .button-label[data-v-730da969] {
  opacity: 0.35;
}
.caret[data-v-730da969] {
  font-size: 1em;
  padding-left: 2px;
  padding-right: 2px;
}
.button-text-input[data-v-730da969] {
  color: var(--sd-ui-toolbar-button-text, #47484a);
  border-radius: 4px;
  text-align: center;
  width: 30px;
  font-size: var(--sd-ui-font-size-400, 14px);
  margin-right: 5px;
  font-weight: 400;
  background-color: transparent;
  padding: 2px 0;
  outline: none;
  border: 1px solid var(--sd-ui-border, #dbdbdb);
  box-sizing: border-box;
}
.button-text-input.high-contrast[data-v-730da969] {
    background-color: #fff;
}
.button-text-input--font-size[data-v-730da969] {
  width: 36px;
}
.button-text-input[data-v-730da969]::-moz-placeholder {
  color: var(--sd-ui-toolbar-button-text, #47484a);
}
.button-text-input[data-v-730da969]::placeholder {
  color: var(--sd-ui-toolbar-button-text, #47484a);
}
.dropdown-caret[data-v-730da969] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  width: 10px;
  height: 10px;
}
@media (max-width: 1280px) {
.toolbar-item--doc-mode .button-label[data-v-730da969] {
    display: none;
}
.toolbar-item--doc-mode .toolbar-icon[data-v-730da969] {
    margin-right: 5px;
}
.toolbar-item--linked-styles[data-v-730da969] {
    width: auto !important;
}
.toolbar-item--linked-styles .button-label[data-v-730da969] {
    display: none;
}
}

.toolbar-separator[data-v-f9554a5e] {
  height: var(--sd-ui-toolbar-height, 32px);
  border-radius: var(--sd-ui-radius, 6px);
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-ui-border, #dbdbdb);
  transition: all 0.2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}
.toolbar-separator .separator-inner[data-v-f9554a5e] {
  width: 1.5px;
  height: 20px;
}

.overflow-menu[data-v-575efcc3] {
  position: relative;
}
.overflow-menu_items[data-v-575efcc3] {
    position: absolute;
    width: 200px;
    top: calc(100% + 3px);
    right: 0;
    padding: 4px 8px;
    background-color: var(--sd-ui-dropdown-bg, #fff);
    border-radius: var(--sd-ui-radius, 6px);
    z-index: 100;
    box-shadow: var(--sd-ui-dropdown-shadow, 0 8px 24px rgba(0, 0, 0, 0.16));
    box-sizing: border-box;
}
.superdoc-toolbar-overflow[data-v-575efcc3] {
  min-width: auto !important;
  max-width: 200px;
  flex-wrap: wrap;
}
@media (max-width: 300px) {
.overflow-menu_items[data-v-575efcc3] {
    right: auto;
    left: 0;
    transform: translateX(-50%);
}
}

.toolbar-dropdown[data-v-ec217292] {
  display: inline-flex;
}
.toolbar-dropdown-trigger[data-v-ec217292] {
  display: inline-flex;
}
.toolbar-dropdown-menu[data-v-ec217292] {
  min-width: 80px;
  padding: 4px;
  border-radius: var(--sd-ui-radius, 6px);
  background: var(--sd-ui-dropdown-bg, #fff);
  border: 1px solid var(--sd-ui-dropdown-border, #e4e6eb);
  box-shadow: var(--sd-ui-dropdown-shadow, 0 8px 24px rgba(0, 0, 0, 0.16));
  box-sizing: border-box;
}
.toolbar-dropdown-menu.toolbar-dropdown-menu--render-only[data-v-ec217292] {
  padding: 0;
}
.toolbar-dropdown-option[data-v-ec217292] {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--sd-ui-dropdown-option-radius, 3px);
  cursor: pointer;
  font-size: var(--sd-ui-font-size-400, 14px);
  color: var(--sd-ui-dropdown-text, #47484a);
  transition: background-color 0.2s ease-out;
  box-sizing: border-box;
}
.toolbar-dropdown-option__icon[data-v-ec217292] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-right: 6px;
}
.toolbar-dropdown-option__icon[data-v-ec217292] .dropdown-select-icon {
  display: flex;
  width: 12px;
  height: 12px;
}
.toolbar-dropdown-option[data-v-ec217292]:hover {
  background: var(--sd-ui-dropdown-hover-bg, #d8dee5);
  color: var(--sd-ui-dropdown-hover-text, #47484a);
}
.toolbar-dropdown-option.selected[data-v-ec217292] {
  background: var(--sd-ui-dropdown-active-bg, #d8dee5);
  color: var(--sd-ui-dropdown-selected-text, #47484a);
}
.toolbar-dropdown-menu.high-contrast .toolbar-dropdown-option[data-v-ec217292]:not(.render):hover {
  background: #000;
  color: #fff;
}
.toolbar-dropdown-menu.high-contrast .toolbar-dropdown-option:not(.render).selected[data-v-ec217292] {
  background: #000;
  color: #fff;
}
.toolbar-dropdown-option.disabled[data-v-ec217292] {
  opacity: 0.5;
  cursor: not-allowed;
}
.toolbar-dropdown-option.render[data-v-ec217292] {
  padding: 0;
  cursor: default;
  background: transparent;
  color: inherit;
}
.toolbar-dropdown-option.render[data-v-ec217292]:hover,
.toolbar-dropdown-option.render.selected[data-v-ec217292] {
  background: transparent;
  color: inherit;
}
.fade-in-scale-up-transition-enter-active[data-v-ec217292],
.fade-in-scale-up-transition-leave-active[data-v-ec217292] {
  transform-origin: top left;
}
.fade-in-scale-up-transition-enter-active[data-v-ec217292] {
  transition:
    opacity 0.2s cubic-bezier(0, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.fade-in-scale-up-transition-leave-active[data-v-ec217292] {
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 1, 1),
    transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}
.fade-in-scale-up-transition-enter-from[data-v-ec217292],
.fade-in-scale-up-transition-leave-to[data-v-ec217292] {
  opacity: 0;
  transform: scale(0.9);
}
.fade-in-scale-up-transition-leave-from[data-v-ec217292],
.fade-in-scale-up-transition-enter-to[data-v-ec217292] {
  opacity: 1;
  transform: scale(1);
}

.sd-tooltip-trigger[data-v-fab615b0] {
  display: inline-flex;
}
.sd-tooltip-content[data-v-fab615b0] {
  background-color: var(--sd-ui-tooltip-bg, #262626);
  color: var(--sd-ui-tooltip-text, #fff);
  font-size: var(--sd-ui-font-size-400, 14px);
  line-height: 1.3;
  border-radius: var(--sd-ui-tooltip-radius, 6px);
  padding: 8px 14px;
  box-shadow: var(--sd-ui-tooltip-shadow, 0 3px 12px rgba(0, 0, 0, 0.28));
  pointer-events: auto;
  white-space: nowrap;
}
.sd-tooltip-arrow[data-v-fab615b0] {
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--sd-ui-tooltip-bg, #262626);
  transform: translateX(-50%) rotate(45deg);
}
.fade-in-scale-up-transition-enter-active[data-v-fab615b0],
.fade-in-scale-up-transition-leave-active[data-v-fab615b0] {
  transform-origin: bottom center;
}
.fade-in-scale-up-transition-enter-active[data-v-fab615b0] {
  transition:
    opacity 0.2s cubic-bezier(0, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.fade-in-scale-up-transition-leave-active[data-v-fab615b0] {
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 1, 1),
    transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}
.fade-in-scale-up-transition-enter-from[data-v-fab615b0],
.fade-in-scale-up-transition-leave-to[data-v-fab615b0] {
  opacity: 0;
  transform: scale(0.9);
}
.fade-in-scale-up-transition-leave-from[data-v-fab615b0],
.fade-in-scale-up-transition-enter-to[data-v-fab615b0] {
  opacity: 1;
  transform: scale(1);
}

.button-group[data-v-069cac8b] {
  display: flex;
}

.superdoc-toolbar[data-v-e654491a] {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: var(--sd-ui-toolbar-bg, var(--sd-ui-bg, #ffffff));
  padding: var(--sd-ui-toolbar-padding-y, 4px) var(--sd-ui-toolbar-padding-x, 16px);
  box-sizing: border-box;
  font-family: var(--sd-ui-font-family, Arial, Helvetica, sans-serif);
  position: relative;
  z-index: var(--sd-ui-toolbar-z-index, 10);
}
@media (max-width: 1280px) {
.superdoc-toolbar-group-side[data-v-e654491a] {
    min-width: auto !important;
}
}
@media (max-width: 768px) {
.superdoc-toolbar[data-v-e654491a] {
    padding: 4px 10px;
    justify-content: inherit;
}
}

.context-menu {
  position: fixed;
  z-index: 50;
  width: 180px;
  color: var(--sd-ui-menu-text, #47484a);
  background: var(--sd-ui-menu-bg, #ffffff);
  border-radius: var(--sd-ui-menu-radius, 0);
  overflow: hidden;
  box-shadow: var(--sd-ui-menu-shadow, 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 10px 20px rgba(0, 0, 0, 0.1));
  margin-top: 0.5rem;
  font-size: var(--sd-ui-menu-font-size, 12px);
}

/* Hide the input but keep it functional */
.context-menu-hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.context-menu-items {
  max-height: 300px;
  overflow-y: auto;
}
.context-menu-search {
  padding: 0.5rem;
  border-bottom: 1px solid var(--sd-ui-menu-border, #eee);
}
.context-menu-search input {
  width: 100%;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--sd-ui-menu-input-border, #ddd);
  outline: none;
}
.context-menu-search input:focus {
  border-color: var(--sd-ui-menu-input-focus-border, #0096fd);
}

/* Remove unused group styles */
.context-menu-group-label {
  display: none;
}
.context-menu-item {
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.15s ease;
  display: flex;
  align-items: center;
}
.context-menu-item:hover {
  background: var(--sd-ui-menu-item-hover-bg, #f5f5f5);
}
.context-menu-item.is-selected {
  background: var(--sd-ui-menu-item-active-bg, #edf6ff);
  color: var(--sd-ui-menu-item-active-text, #0096fd);
  fill: var(--sd-ui-menu-item-active-text, #0096fd);
}
.context-menu-item-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.context-menu .context-menu-item-icon svg {
  height: 12px;
  width: 12px;
}
.context-menu-custom-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.context-menu-default-content {
  display: flex;
  align-items: center;
  width: 100%;
}
.popover {
  background: var(--sd-ui-menu-bg, #ffffff);
  border-radius: var(--sd-ui-menu-radius, 0);
  box-shadow: var(--sd-ui-menu-shadow, 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 10px 20px rgba(0, 0, 0, 0.1));
  z-index: 100;
}
.context-menu-divider {
  height: 1px;
  background: var(--sd-ui-menu-border, #eee);
  margin: 4px 0;
}
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
/**
 * Wrapper provides the scaled layout width so the container sizes correctly.
 * Width is set via inline style (wrapperStyle computed).
 */
.ruler-wrapper[data-v-3816faf0] {
  /* width set via inline style */
  /* height set via inline style */
  /* overflow set via inline style */
}

/**
 * Inner ruler uses scaled width with zoom-spaced tick positions.
 * Width is set via inline style (rulerStyle computed).
 */
.ruler[data-v-3816faf0] {
  /* width set via inline style */
  /* height set via inline style */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  color: #666;
}
.vertical-indicator[data-v-3816faf0] {
  position: absolute;
  height: 0px;
  min-width: 1px;
  background-color: #aaa;
  top: 20px;
  z-index: 100;
}
.margin-handle[data-v-3816faf0] {
  width: 56px;
  min-width: 5px;
  max-width: 5px;
  background-color: var(--ruler-handle-color);
  height: 20px;
  cursor: grab;
  position: absolute;
  margin-left: -2px;
  border-radius: 4px 4px 0 0;
  transition: background-color 250ms ease;
  z-index: 10;
}
.margin-handle[data-v-3816faf0]:hover {
  background-color: var(--ruler-handle-active-color);
}
.ruler-tick[data-v-3816faf0] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.numbering[data-v-3816faf0] {
  position: absolute;
  top: -16px;
  left: -2px;
  font-size: var(--sd-ui-font-size-50, 10px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.numbering--edge-start[data-v-3816faf0] {
  left: 0;
}

/* @remarks - popover adds a slight shadow, this can be removed if needed */
.generic-popover[data-v-e57bf610] {
  background-color: var(--sd-popover-bg, white);
  position: absolute;
  z-index: var(--sd-popover-z-index, 1000);
  border-radius: var(--sd-popover-radius, 6px);
  box-shadow: var(--sd-popover-shadow, 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 10px 20px rgba(0, 0, 0, 0.1));
  min-width: var(--sd-popover-min-width, 120px);
  min-height: var(--sd-popover-min-height, 40px);
}

.placeholder-editor[data-v-15a65206] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 1in;
}
.placeholder-title[data-v-15a65206] {
  display: flex;
  justify-content: center;
}
.placeholder-block[data-v-15a65206] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.placeholder-line[data-v-15a65206] {
  width: 100%;
  height: 16px;
  border-radius: 2px;
  background-color: #ebebeb;
}
.placeholder-line--30[data-v-15a65206] {
  width: 30%;
}
.placeholder-line--60[data-v-15a65206] {
  width: 60%;
}
.placeholder-line--70[data-v-15a65206] {
  width: 70%;
}

.superdoc-table-resize-overlay[data-v-c80fe077] {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-handle[data-v-c80fe077] {
  position: absolute;
  cursor: col-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 15;
}
.resize-handle[data-v-c80fe077]::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(74, 144, 226, 0.3);
  transform: translateX(-1px);
  transition:
    background-color 0.2s ease,
    width 0.2s ease;
}
.resize-handle[data-v-c80fe077]:hover::before {
  background-color: #4a90e2;
  width: 3px;
  transform: translateX(-1.5px);
}
.resize-handle--active[data-v-c80fe077]::before {
  background-color: #4a90e2;
  width: 2px;
  transform: translateX(-1px);
}
.resize-handle--row[data-v-c80fe077] {
  cursor: row-resize;
}
.resize-handle--row[data-v-c80fe077]::before {
  left: 0;
  top: 50%;
  width: inherit;
  height: 2px;
  transform: translateY(-1px);
}
.resize-handle--row[data-v-c80fe077]:hover::before {
  height: 3px;
  width: inherit;
  transform: translateY(-1.5px);
}
.resize-handle--row.resize-handle--active[data-v-c80fe077]::before {
  height: 2px;
  width: inherit;
  transform: translateY(-1px);
}
.resize-guideline[data-v-c80fe077] {
  position: absolute;
  background-color: #4a90e2;
  pointer-events: none;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.5);
}

.superdoc-image-resize-overlay[data-v-55df65b5] {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: visible;
}
.resize-handle[data-v-55df65b5] {
  position: absolute;
  width: var(--v0803aabd);
  height: var(--v0803aabd);
  background-color: #ffffff;
  border: 2px solid #4a90e2;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: var(--v3efefbc4);
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.resize-handle[data-v-55df65b5]:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  background-color: #4a90e2;
  border-color: #ffffff;
}
.resize-handle--active[data-v-55df65b5] {
  transform: scale(1.2);
  background-color: #4a90e2;
  border-color: #ffffff;
}
.resize-guideline[data-v-55df65b5] {
  position: absolute;
  background-color: rgba(74, 144, 226, 0.1);
  pointer-events: none;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.5);
}

.editor-element[data-v-49d8fff7] {
  position: relative;
}
.super-editor-container[data-v-49d8fff7] {
  width: auto;
  height: auto;
  /* min-width is controlled via inline style (containerStyle) to scale with zoom */
  min-height: 11in;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Web layout mode (OOXML ST_View 'web'): content reflows to fit container */
.super-editor-container.web-layout[data-v-49d8fff7] {
  min-height: unset;
  min-width: unset;
  width: 100%;
}
.super-editor-container.web-layout .super-editor[data-v-49d8fff7] {
  width: 100%;
}
.super-editor-container.web-layout .editor-element[data-v-49d8fff7] {
  width: 100%;
}

/* Web layout: ensure editor fills screen width and content reflows (WCAG AA) */
.super-editor-container.web-layout[data-v-49d8fff7] .ProseMirror {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}
.super-editor-container.web-layout[data-v-49d8fff7] .ProseMirror p,
.super-editor-container.web-layout[data-v-49d8fff7] .ProseMirror div,
.super-editor-container.web-layout[data-v-49d8fff7] .ProseMirror li {
  max-width: 100%;
  overflow-wrap: break-word;
}
.ruler-host[data-v-49d8fff7] {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: var(--sd-ui-ruler-z-index, 10);
  background: var(--sd-ui-ruler-bg, var(--sd-ui-bg, #ffffff));
}
.ruler[data-v-49d8fff7] {
  margin-bottom: 2px;
}
.super-editor[data-v-49d8fff7] {
  color: initial;
  overflow: hidden;
  position: relative;
}

.super-editor[data-v-7a59c63b] {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #999;
  outline: none;
  transition: border 0.2s ease;
  background-color: white;
}
.super-input[data-v-7a59c63b] {
  font-size: 13px;
  font-family: inherit;
}
.editor-element[data-v-7a59c63b] {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
}
.super-input-active[data-v-7a59c63b] {
  border: 1px solid #007bff;
  outline: none;
}
:root {
  /* SuperDoc CSS Variables */

  /* Primitive: colors */
  --sd-color-blue-50: #ebf0ff;
  --sd-color-blue-100: #d6e1ff;
  --sd-color-blue-200: #adc3ff;
  --sd-color-blue-300: #85a5ff;
  --sd-color-blue-400: #5c87ff;
  --sd-color-blue-500: #1355ff;
  --sd-color-blue-600: #0f44cc;
  --sd-color-blue-700: #0b3399;
  --sd-color-blue-800: #082266;
  --sd-color-blue-900: #041133;

  --sd-color-gray-50: #fafafa;
  --sd-color-gray-100: #f5f5f5;
  --sd-color-gray-200: #f2f2f2;
  --sd-color-gray-300: #e0e0e0;
  --sd-color-gray-400: #dbdbdb;
  --sd-color-gray-500: #ababab;
  --sd-color-gray-600: #888888;
  --sd-color-gray-700: #666666;
  --sd-color-gray-800: #424242;
  --sd-color-gray-900: #212121;

  --sd-color-red-500: #ed4337;
  --sd-color-green-500: #00853d;
  --sd-color-rose-500: #cb0e47;

  /* Primitive: font-size */
  --sd-font-size-50: 10px;
  --sd-font-size-100: 11px;
  --sd-font-size-200: 12px;
  --sd-font-size-300: 13px;
  --sd-font-size-400: 14px;
  --sd-font-size-500: 15px;
  --sd-font-size-600: 16px;

  /* Primitive: radius — old names (--sd-radius-sm/md/lg) honored via fallback */
  --sd-radius-50: var(--sd-radius-sm, 4px);
  --sd-radius-100: 6px;
  --sd-radius-200: var(--sd-radius-md, 8px);
  --sd-radius-300: var(--sd-radius-lg, 12px);

  /*
   * UI: general (semantic tier)
   *
   * These are the "5-variable theme" — change these and the entire UI updates.
   * Component-specific variables below cascade from these defaults.
   *
   * Old-name fallbacks (var(--sd-old-name, ...)) honor pre-existing customer
   * overrides. They resolve at computed-value time, so setting the old name on
   * any element still works. These fallbacks will be removed in the next major.
   */
  --sd-ui-font-family: var(--sd-font-family, Arial, Helvetica, sans-serif);
  --sd-ui-text: var(--sd-text-primary, #47484a);
  --sd-ui-text-muted: var(--sd-text-muted, var(--sd-color-gray-700));
  --sd-ui-text-disabled: var(--sd-text-placeholder, var(--sd-color-gray-500));
  --sd-ui-bg: var(--sd-surface-card, #ffffff);
  --sd-ui-hover-bg: var(--sd-surface-hover, var(--sd-color-gray-400));
  --sd-ui-active-bg: #c8d0d8;
  --sd-ui-disabled-bg: var(--sd-surface-muted, var(--sd-color-gray-100));
  --sd-ui-border: var(--sd-border-default, var(--sd-color-gray-400));
  --sd-ui-action: var(--sd-action-primary, var(--sd-color-blue-500));
  --sd-ui-action-hover: var(--sd-action-primary-hover, var(--sd-color-blue-600));
  --sd-ui-action-text: #ffffff;
  --sd-ui-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  --sd-ui-radius: var(--sd-radius-100);

  --sd-ui-font-size-50: var(--sd-font-size-50);
  --sd-ui-font-size-100: var(--sd-font-size-100);
  --sd-ui-font-size-200: var(--sd-font-size-200);
  --sd-ui-font-size-300: var(--sd-font-size-300);
  --sd-ui-font-size-400: var(--sd-font-size-400);
  --sd-ui-font-size-500: var(--sd-font-size-500);
  --sd-ui-font-size-600: var(--sd-font-size-600);

  /* UI: dropdown — cascades from semantic tier */
  --sd-ui-dropdown-border: var(--sd-ui-border);
  --sd-ui-dropdown-bg: var(--sd-ui-bg);
  --sd-ui-dropdown-option-radius: 3px;
  --sd-ui-dropdown-text: var(--sd-ui-text);
  --sd-ui-dropdown-hover-text: var(--sd-ui-dropdown-text);
  --sd-ui-dropdown-selected-text: var(--sd-ui-dropdown-text);
  --sd-ui-dropdown-hover-bg: var(--sd-ui-hover-bg);
  --sd-ui-dropdown-active-bg: var(--sd-ui-active-bg);
  --sd-ui-dropdown-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);

  /* UI: tooltip — intentionally inverted palette (dark bg, light text) */
  --sd-ui-tooltip-bg: #262626;
  --sd-ui-tooltip-text: #ffffff;
  --sd-ui-tooltip-radius: var(--sd-radius-100);
  --sd-ui-tooltip-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);

  /* UI: toolbar — cascades from semantic tier */
  --sd-ui-toolbar-height: 32px;
  --sd-ui-toolbar-padding-x: 16px;
  --sd-ui-toolbar-padding-y: 4px;
  --sd-ui-toolbar-item-gap: 2px;
  --sd-ui-toolbar-item-padding: 5px;
  --sd-ui-toolbar-bg: var(--sd-ui-bg);
  --sd-ui-toolbar-button-text: var(--sd-ui-text);
  --sd-ui-toolbar-button-hover-bg: var(--sd-ui-hover-bg);
  --sd-ui-toolbar-button-active-bg: var(--sd-ui-active-bg);
  --sd-ui-toolbar-z-index: 10;
  --sd-ui-ruler-bg: var(--sd-ui-bg);
  --sd-ui-ruler-z-index: 10;

  /* UI: context menu — cascades from semantic tier */
  --sd-ui-menu-bg: var(--sd-ui-bg);
  --sd-ui-menu-text: var(--sd-ui-text);
  --sd-ui-menu-font-size: var(--sd-font-size-200);
  --sd-ui-menu-radius: 0;
  --sd-ui-menu-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 10px 20px rgba(0, 0, 0, 0.1);
  --sd-ui-menu-border: var(--sd-ui-border);
  --sd-ui-menu-input-border: var(--sd-ui-border);
  --sd-ui-menu-input-focus-border: var(--sd-ui-action);
  --sd-ui-menu-item-hover-bg: var(--sd-ui-hover-bg);
  --sd-ui-menu-item-active-bg: var(--sd-ui-active-bg);
  --sd-ui-menu-item-active-text: var(--sd-ui-action);

  /* UI: tools */
  --sd-ui-tools-gap: 6px;
  --sd-ui-tools-item-size: 50px;
  --sd-ui-tools-item-radius: var(--sd-radius-300);
  --sd-ui-tools-item-bg: rgba(219, 219, 219, 0.6);
  --sd-ui-tools-icon-size: 20px;

  /* UI: comments — cascades from semantic tier, old names honored via fallback */
  --sd-ui-comments-card-bg: var(--sd-comment-bg, #f3f6fd);
  --sd-ui-comments-card-hover-bg: var(--sd-comment-bg-hover, var(--sd-ui-comments-card-bg));
  --sd-ui-comments-card-active-bg: var(--sd-comment-bg-active, var(--sd-ui-bg));
  --sd-ui-comments-card-resolved-bg: var(--sd-comment-bg-resolved, var(--sd-ui-disabled-bg));
  --sd-ui-comments-card-active-border: var(--sd-comment-border-active, var(--sd-ui-border));
  --sd-ui-comments-card-radius: var(--sd-comment-radius, var(--sd-radius-300));
  --sd-ui-comments-card-padding: var(--sd-comment-padding, 16px);
  --sd-ui-comments-card-shadow: var(--sd-comment-shadow, 0px 4px 12px 0px rgba(50, 50, 50, 0.15));
  --sd-ui-comments-separator: var(--sd-comment-separator, var(--sd-ui-border));
  --sd-ui-comments-transition: var(--sd-comment-transition, all 200ms ease);
  --sd-ui-comments-author-text: var(--sd-comment-author-color, var(--sd-ui-text));
  --sd-ui-comments-author-size: var(--sd-comment-author-size, var(--sd-font-size-400));
  --sd-ui-comments-author-weight: var(--sd-comment-author-weight, 600);
  --sd-ui-comments-tag-text: var(--sd-ui-text-muted);
  --sd-ui-comments-tag-bg: var(--sd-color-gray-200);
  --sd-ui-comments-timestamp-text: var(--sd-comment-time-color, var(--sd-ui-text-muted));
  --sd-ui-comments-timestamp-size: var(--sd-comment-time-size, var(--sd-font-size-200));
  --sd-ui-comments-body-text: var(--sd-ui-text);
  --sd-ui-comments-body-size: var(--sd-comment-body-size, var(--sd-font-size-400));
  --sd-ui-comments-resolved-text: var(--sd-color-green-500);
  --sd-ui-comments-insert-text: var(--sd-comment-tc-insert-color, var(--sd-color-green-500));
  --sd-ui-comments-delete-text: var(--sd-comment-tc-delete-color, var(--sd-color-rose-500));
  --sd-ui-comments-dropdown-border: var(--sd-ui-border);
  --sd-ui-comments-dropdown-bg: var(--sd-ui-bg);
  --sd-ui-comments-dropdown-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --sd-ui-comments-option-size: var(--sd-font-size-400);
  --sd-ui-comments-option-text: var(--sd-ui-comments-body-text);
  --sd-ui-comments-option-hover-text: var(--sd-ui-comments-option-text);
  --sd-ui-comments-option-selected-text: var(--sd-ui-comments-option-text);
  --sd-ui-comments-option-hover-bg: var(--sd-ui-hover-bg);
  --sd-ui-comments-input-bg: var(--sd-ui-bg);
  --sd-ui-comments-input-border: var(--sd-ui-border);
  --sd-ui-comments-internal-bg: var(--sd-comment-internal-bg, #cde6e6);
  --sd-ui-comments-external-bg: var(--sd-comment-external-bg, #f5cfda);

  /* Styles: comments — old names honored via fallback */
  --sd-comments-highlight-external-base: #b1124b;
  --sd-comments-highlight-external: var(--sd-comment-highlight-external, #b1124b40);
  --sd-comments-highlight-external-active: #b1124b66;
  --sd-comments-highlight-external-faded: #b1124b20;
  --sd-comments-highlight-internal-base: #078383;
  --sd-comments-highlight-internal: var(--sd-comment-highlight-internal, #07838340);
  --sd-comments-highlight-internal-active: #07838366;
  --sd-comments-highlight-internal-faded: #07838320;
  --sd-comments-highlight-external-nested-border: #b1124b99;
  --sd-comments-highlight-internal-nested-border: #07838399;
  --sd-comments-highlight-hover: #1354ff55;
  --sd-comments-selection-background: #1354ff55;

  /* Styles: tracked changes — old names honored via fallback */
  --sd-tracked-changes-insert-background: var(--sd-track-insert-bg, #399c7222);
  --sd-tracked-changes-insert-border: var(--sd-track-insert-border, #00853d);
  --sd-tracked-changes-delete-background: var(--sd-track-delete-bg, #cb0e4722);
  --sd-tracked-changes-delete-border: var(--sd-track-delete-border, #cb0e47);
  --sd-tracked-changes-format-border: var(--sd-track-format-border, gold);
  --sd-tracked-changes-insert-background-focused: #399c7244;
  --sd-tracked-changes-delete-background-focused: #cb0e4744;
  --sd-tracked-changes-format-background-focused: #ffd70033;

  /* Styles: content controls (SDT) — blue accent, intentionally standalone */
  --sd-content-controls-block-border: #629be7;
  --sd-content-controls-block-hover-bg: var(--sd-ui-hover-bg);
  --sd-content-controls-inline-border: #629be7;
  --sd-content-controls-inline-hover-bg: var(--sd-ui-hover-bg);
  --sd-content-controls-label-border: #629be7;
  --sd-content-controls-label-bg: #629be7ee;
  --sd-content-controls-label-text: #ffffff;
  --sd-content-controls-lock-hover-bg: rgba(98, 155, 231, 0.08);

  /* Styles: layout — cascades from semantic tier */
  --sd-layout-page-bg: var(--sd-ui-bg);
  --sd-layout-page-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
/*
 * Backward-compatible aliases for renamed CSS variables.
 *
 * Most old names are honored via var() fallbacks in variables.css — if a
 * customer sets --sd-comment-bg, the new --sd-ui-comments-card-bg picks it up
 * automatically. This file only covers aliases where the old name maps to a
 * different concept (no direct 1:1 fallback possible).
 *
 * These aliases will be removed in the next major version.
 */
:root {
  /* Old semantic names that map to primitives (no new-token equivalent) */
  --sd-surface-canvas: var(--sd-color-gray-50);
  --sd-surface-selected: var(--sd-color-blue-100);
  --sd-text-secondary: var(--sd-color-gray-700);

  /* Old names that map to a different concept in the new system */
  --sd-surface-page: var(--sd-ui-bg);
  --sd-border-subtle: var(--sd-ui-comments-separator);
  --sd-border-focus: var(--sd-ui-action);
}
/* Preset theme: Docs-like */
.sd-theme-docs {
  /* UI base */
  --sd-ui-font-family: Arial, sans-serif;
  --sd-ui-text: #202124;
  --sd-ui-bg: #f1f3f4;
  --sd-ui-border: #dadce0;
  --sd-ui-action: #1a73e8;
  --sd-ui-action-hover: #185abc;

  /* UI: toolbar/dropdown/context */
  --sd-ui-toolbar-bg: #f0f4f9;
  --sd-ui-toolbar-button-text: #3c4043;
  --sd-ui-toolbar-button-hover-bg: #e8eaed;
  --sd-ui-toolbar-button-active-bg: #d2e3fc;
  --sd-ui-toolbar-item-padding: 4px;

  --sd-ui-dropdown-border: #dadce0;
  --sd-ui-dropdown-bg: #ffffff;
  --sd-ui-dropdown-hover-bg: #e8eaed;
  --sd-ui-dropdown-active-bg: #d2e3fc;
  --sd-ui-dropdown-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);

  --sd-ui-menu-bg: #ffffff;
  --sd-ui-menu-border: #dadce0;
  --sd-ui-menu-shadow: 0 1px 2px rgba(60, 64, 67, 0.25), 0 3px 8px rgba(60, 64, 67, 0.18);
  --sd-ui-menu-item-hover-bg: #e8eaed;
  --sd-ui-menu-item-active-bg: #d2e3fc;

  /* Comments */
  --sd-ui-comments-card-bg: #d7dde8;
  --sd-ui-comments-card-active-bg: #ffffff;
  --sd-ui-comments-card-active-border: #c7cdd6;
  --sd-ui-comments-card-shadow: 0 1px 2px rgba(60, 64, 67, 0.2), 0 2px 6px rgba(60, 64, 67, 0.18);
  --sd-ui-comments-separator: #c7cdd6;
  --sd-ui-comments-timestamp-text: #5f6368;
  --sd-ui-comments-option-hover-bg: #e8eaed;
  --sd-ui-comments-input-border: #80868b;

  --sd-comments-highlight-external-base: #f9ab00;
  --sd-comments-highlight-external: #f9ab0033;
  --sd-comments-highlight-external-active: #f9ab0044;
  --sd-comments-highlight-external-faded: #f9ab001f;
  --sd-comments-highlight-external-nested-border: #f9ab0088;
  --sd-comments-highlight-internal-base: #188038;
  --sd-comments-highlight-internal: #18803833;
  --sd-comments-highlight-internal-active: #18803844;
  --sd-comments-highlight-internal-faded: #1880381f;
  --sd-comments-highlight-internal-nested-border: #18803888;

  /* Layout */
  --sd-layout-page-bg: #ffffff;
  --sd-layout-page-shadow: 0 1px 2px rgba(60, 64, 67, 0.2), 0 2px 6px rgba(60, 64, 67, 0.12);
}
/* Preset theme: Microsoft Word-like */
.sd-theme-word {
  /* UI base */
  --sd-ui-font-family: 'Segoe UI', Arial, sans-serif;
  --sd-ui-text: #323130;
  --sd-ui-bg: #f3f2f1;
  --sd-ui-border: #d2d0ce;
  --sd-ui-action: #185abd;
  --sd-ui-action-hover: #134a9e;

  /* UI: toolbar/dropdown/context */
  --sd-ui-toolbar-bg: #f3f2f1;
  --sd-ui-toolbar-button-text: #201f1e;
  --sd-ui-toolbar-button-hover-bg: #e8e6e4;
  --sd-ui-toolbar-button-active-bg: #d2d0ce;
  --sd-ui-toolbar-item-padding: 4px;

  --sd-ui-dropdown-border: #d2d0ce;
  --sd-ui-dropdown-bg: #ffffff;
  --sd-ui-dropdown-hover-bg: #e8e6e4;
  --sd-ui-dropdown-active-bg: #d2d0ce;
  --sd-ui-dropdown-shadow: 0 1px 2px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.08);

  --sd-ui-menu-bg: #ffffff;
  --sd-ui-menu-border: #d2d0ce;
  --sd-ui-menu-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
  --sd-ui-menu-item-hover-bg: #f3f2f1;
  --sd-ui-menu-item-active-bg: #edebe9;

  /* Comments */
  --sd-ui-comments-card-bg: #ebebeb;
  --sd-ui-comments-card-active-bg: #ffffff;
  --sd-ui-comments-card-active-border: #d2d0ce;
  --sd-ui-comments-card-shadow: 0 2px 4px rgba(0, 0, 0, 0.16), 0 10px 20px rgba(0, 0, 0, 0.1);
  --sd-ui-comments-separator: #c8c6c4;
  --sd-ui-comments-timestamp-text: #605e5c;
  --sd-ui-comments-option-hover-bg: #f3f2f1;
  --sd-ui-comments-input-border: #8a8886;

  --sd-comments-highlight-external-base: #8a8886;
  --sd-comments-highlight-external: #8a888633;
  --sd-comments-highlight-external-active: #8a888655;
  --sd-comments-highlight-external-faded: #8a88861f;
  --sd-comments-highlight-external-nested-border: #8a888688;
  --sd-comments-highlight-internal-base: #0f6cbd;
  --sd-comments-highlight-internal: #0f6cbd33;
  --sd-comments-highlight-internal-active: #0f6cbd55;
  --sd-comments-highlight-internal-faded: #0f6cbd1f;
  --sd-comments-highlight-internal-nested-border: #0f6cbd88;

  /* Layout */
  --sd-layout-page-bg: #ffffff;
  --sd-layout-page-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.08);
}
/* Preset theme: Blueprint */
.sd-theme-blueprint {
  /* UI base */
  --sd-ui-font-family: 'IBM Plex Sans', 'Segoe UI', Arial, sans-serif;
  --sd-ui-text: #0f172a;
  --sd-ui-text-muted: #334155;
  --sd-ui-text-disabled: #64748b;
  --sd-ui-bg: #e8eff5;
  --sd-ui-hover-bg: #d3e2ef;
  --sd-ui-active-bg: #bfd4e6;
  --sd-ui-border: #9fb4c7;
  --sd-ui-action: #0f766e;
  --sd-ui-action-hover: #115e59;
  --sd-ui-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);

  /* Toolbar / dropdown / context */
  --sd-ui-toolbar-bg: #dbe6f0;
  --sd-ui-toolbar-button-text: #0f172a;
  --sd-ui-toolbar-button-hover-bg: #c9dced;
  --sd-ui-toolbar-button-active-bg: #b7cee3;
  --sd-ui-dropdown-bg: #ffffff;
  --sd-ui-dropdown-border: #8ea5b8;
  --sd-ui-dropdown-hover-bg: #e7f0f8;
  --sd-ui-dropdown-active-bg: #cde2f3;
  --sd-ui-dropdown-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  --sd-ui-menu-bg: #ffffff;
  --sd-ui-menu-border: #8ea5b8;
  --sd-ui-menu-item-hover-bg: #e2eef8;
  --sd-ui-menu-item-active-bg: #cde2f3;
  --sd-ui-menu-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);

  /* Layout */
  --sd-layout-page-bg: #ffffff;
  --sd-layout-page-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);

  /* Comments */
  --sd-ui-comments-card-bg: #dbe7f2;
  --sd-ui-comments-card-active-bg: #ffffff;
  --sd-ui-comments-card-active-border: #8ea5b8;
  --sd-ui-comments-card-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  --sd-ui-comments-input-border: #7f96aa;
  --sd-ui-comments-separator: #9fb4c7;
  --sd-ui-comments-timestamp-text: #475569;

  /* Highlights */
  --sd-comments-highlight-external-base: #b45309;
  --sd-comments-highlight-external: #b4530933;
  --sd-comments-highlight-external-active: #b4530944;
  --sd-comments-highlight-external-faded: #b453091f;
  --sd-comments-highlight-external-nested-border: #b4530988;
  --sd-comments-highlight-internal-base: #0f766e;
  --sd-comments-highlight-internal: #0f766e33;
  --sd-comments-highlight-internal-active: #0f766e44;
  --sd-comments-highlight-internal-faded: #0f766e1f;
  --sd-comments-highlight-internal-nested-border: #0f766e88;
}
.superdoc *,
.superdoc ::before,
.superdoc ::after,
.superdoc-toolbar *,
.superdoc-toolbar ::before,
.superdoc-toolbar ::after {
  box-sizing: border-box;
}
.superdoc .disabled,
.super-editor .disabled,
.superdoc-toolbar .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.super-editor h1,
.super-editor h2,
.super-editor h3,
.super-editor h4,
.super-editor h5,
.super-editor h6 {
  font-size: unset;
  font-weight: unset;
  margin: 0;
  padding: 0;
}
.super-editor p {
  padding: 0;
  margin: 0;
}
.sd-button {
  border-radius: 8px;
  background-color: white;
  padding: 8px 12px;
  outline: none;
  border: 1px solid #dbdbdb;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 250ms ease;
}
.sd-button:hover {
  background-color: #dbdbdb;
}
.sd-button.primary {
  background-color: #1355ff;
  border: none;
  color: white;
}
.sd-button.primary:hover {
  background-color: #0d3fcc;
}
.sd-comment-box {
  width: 300px;
}
.superdoc-field {
  border-radius: 8px;
  padding: 12px;
  outline: none;
  border: 1px solid #dbdbdb;
  width: 100%;
}
.superdoc-field:focus,
.superdoc-field:active {
  border: 1px solid #1355ff;
}
.superdoc-field .ProseMirror {
  border: 0;
  outline: 0;
  margin: 0;
}
.sd-editor-placeholder::before {
  content: attr(data-placeholder);
  color: #aaa;
  pointer-events: none;
  display: block;
  height: 0;
}
.superdoc svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
/* Override global svg styles above for AI Writer error state */
.superdoc .ai-textarea-icon.error > svg {
  fill: #ed4337;
}
/* Web Layout Mode (OOXML ST_View 'web') - content reflows to container width */
.superdoc--web-layout,
.superdoc--web-layout .superdoc__layers,
.superdoc--web-layout .superdoc__document,
.superdoc--web-layout .superdoc__sub-document {
  width: 100%;
}

.comments-dropdown[data-v-06634377] {
  display: inline-flex;
}
.comments-dropdown__trigger[data-v-06634377] {
  display: inline-flex;
}
.comments-dropdown__menu[data-v-06634377] {
  min-width: 120px;
  border-radius: 8px;
  border: 1px solid var(--sd-ui-comments-dropdown-border, #dbdbdb);
  background: var(--sd-ui-comments-dropdown-bg, #fff);
  box-shadow: var(--sd-ui-comments-dropdown-shadow, 0 8px 24px rgba(0, 0, 0, 0.12));
  padding: 4px;
  box-sizing: border-box;
}
.comments-dropdown__option[data-v-06634377] {
  font-size: var(--sd-ui-comments-option-size, 14px);
  color: var(--sd-ui-comments-option-text, #212121);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
}
.comments-dropdown__option[data-v-06634377]:hover {
  background-color: var(--sd-ui-comments-option-hover-bg, #f3f3f5);
  color: var(--sd-ui-comments-option-hover-text, #212121);
}
.comments-dropdown__option.disabled[data-v-06634377] {
  opacity: 0.5;
  pointer-events: none;
}
.comments-dropdown__option-icon[data-v-06634377] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.comments-dropdown__option-icon[data-v-06634377] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.comment-option[data-v-db3cadc7] {
  display: flex;
  align-items: center;
  font-size: 11px;
}
.comment-option i[data-v-db3cadc7] {
  font-size: 11px;
}
.option-state[data-v-db3cadc7] {
  margin: 0 7px;
}
.active-icon[data-v-db3cadc7] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.active-icon[data-v-db3cadc7] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.dropdown-caret[data-v-db3cadc7] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 10px;
  height: 16px;
}
.dropdown-caret[data-v-db3cadc7] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.internal-dropdown[data-v-db3cadc7] {
  transition: all 250ms ease;
  display: inline-flex;
  cursor: pointer;
  border-radius: 50px;
  padding: 2px 8px;
}
.internal-dropdown[data-v-db3cadc7]:hover {
  background-color: #f3f3f5;
}

.user-container[data-v-c95b2073] {
  border-radius: 50%;
  border: var(--sd-comment-avatar-border, 2px solid #333);
  font-size: var(--sd-comment-avatar-font-size, 11px);
  font-weight: 600;
  color: var(--sd-comment-avatar-color, #fff);
  background-color: var(--sd-comment-avatar-bg, #00000098);

  width: var(--sd-comment-avatar-size, 28px);
  height: var(--sd-comment-avatar-size, 28px);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
img[data-v-c95b2073] {
  border-radius: 50%;
  width: 100%;
  background-color: transparent;
}

.comment-header[data-v-08cc1e8b] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.comment-header-left[data-v-08cc1e8b] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-info[data-v-08cc1e8b] {
  display: flex;
  flex-direction: column;
}
.user-name[data-v-08cc1e8b] {
  font-size: var(--sd-ui-comments-author-size, 14px);
  font-weight: var(--sd-ui-comments-author-weight, 600);
  color: var(--sd-ui-comments-author-text, #212121);
  line-height: 1.2em;
}
.imported-tag[data-v-08cc1e8b] {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sd-ui-comments-tag-text, #888888);
  background: var(--sd-ui-comments-tag-bg, #f2f2f2);
  border-radius: 3px;
  padding: 1px 4px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.4;
}
.user-timestamp[data-v-08cc1e8b] {
  line-height: 1.2em;
  font-size: var(--sd-ui-comments-timestamp-size, 12px);
  color: var(--sd-ui-comments-timestamp-text, #888888);
}
.overflow-menu[data-v-08cc1e8b] {
  flex-shrink: 1;
  display: flex;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
.overflow-menu.is-visible[data-v-08cc1e8b] {
  opacity: 1;
  pointer-events: auto;
}
.overflow-menu__icon[data-v-08cc1e8b] {
  display: flex;
  box-sizing: content-box;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  padding: 3px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 250ms ease;
}
.overflow-menu__icon[data-v-08cc1e8b]:hover {
  background-color: var(--sd-ui-comments-separator, #dbdbdb);
}
.overflow-menu__icon[data-v-08cc1e8b] svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.overflow-icon[data-v-08cc1e8b] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 10px;
  height: 16px;
}

.comment-entry[data-v-93ebf2d2] {
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  transition: all 250ms ease;
}

.comments-dialog[data-v-92af819e] {
  display: flex;
  flex-direction: column;
  padding: var(--sd-ui-comments-card-padding, 16px);
  border-radius: var(--sd-ui-comments-card-radius, 12px);
  background-color: var(--sd-ui-comments-card-bg, #f3f6fd);
  border: 1px solid transparent;
  font-family: var(--sd-ui-font-family, Arial, Helvetica, sans-serif);
  font-size: var(--sd-ui-comments-body-size, 14px);
  line-height: 1.5;
  transition: var(--sd-ui-comments-transition, all 200ms ease);
  box-shadow: none;
  z-index: 5;
  max-width: 300px;
  min-width: 200px;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.comments-dialog[data-v-92af819e]:not(.is-active) {
  cursor: pointer;
}
.comments-dialog[data-v-92af819e]:not(.is-active):not(.is-resolved):hover {
  background-color: var(--sd-ui-comments-card-hover-bg, #f3f6fd);
}
.comments-dialog[data-v-92af819e]:not(.is-resolved):hover .overflow-menu {
  opacity: 1;
  pointer-events: auto;
}
.comments-dialog.is-active[data-v-92af819e] {
  background-color: var(--sd-ui-comments-card-active-bg, #ffffff);
  border-color: var(--sd-ui-comments-card-active-border, #e0e0e0);
  box-shadow: var(--sd-ui-comments-card-shadow, 0px 4px 12px 0px rgba(50, 50, 50, 0.15));
  z-index: 10;
}
.comments-dialog.is-resolved[data-v-92af819e] {
  background-color: var(--sd-ui-comments-card-resolved-bg, #f0f0f0);
}
.comment-separator[data-v-92af819e] {
  background-color: var(--sd-ui-comments-separator, #e0e0e0);
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
.comment[data-v-92af819e] {
  font-size: var(--sd-ui-comments-body-size, 14px);
  line-height: 1.5;
  color: var(--sd-ui-comments-body-text, #212121);
  margin: 4px 0 0 0;
}
.comment[data-v-92af819e] p {
  margin: 0;
}
.tracked-change[data-v-92af819e] {
  font-size: var(--sd-ui-comments-body-size, 14px);
  line-height: 1.5;
  color: var(--sd-ui-comments-body-text, #212121);
  margin: 4px 0 0 0;
}
.change-type[data-v-92af819e] {
  color: var(--sd-ui-comments-body-text, #212121);
}
.tracked-change-text[data-v-92af819e] {
  color: var(--sd-ui-comments-body-text, #212121);
}
.tracked-change-text.is-deleted[data-v-92af819e] {
  color: var(--sd-ui-comments-delete-text, #cb0e47);
}
.tracked-change-text.is-inserted[data-v-92af819e] {
  color: var(--sd-ui-comments-insert-text, #00853d);
  font-weight: 500;
}

/* ── Resolved badge ── */
.resolved-badge[data-v-92af819e] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--sd-ui-comments-resolved-text, #00853d);
  margin-bottom: 4px;
}
.resolved-badge__icon[data-v-92af819e] {
  display: inline-flex;
  width: 12px;
  height: 12px;
}
.resolved-badge__icon[data-v-92af819e] svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ── Text truncation ── */
.comment.is-truncated[data-v-92af819e],
.tracked-change.is-truncated[data-v-92af819e] {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show-more-toggle[data-v-92af819e] {
  font-size: 12px;
  color: var(--sd-ui-action, #1355ff);
  cursor: pointer;
  font-weight: 500;
  margin-top: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.show-more-toggle[data-v-92af819e]:hover {
  text-decoration: underline;
}

/* ── Thread collapse ── */
.collapsed-replies[data-v-92af819e] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--sd-ui-action, #1355ff);
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.collapsed-replies[data-v-92af819e]:hover {
  text-decoration: underline;
}
.collapsed-avatars[data-v-92af819e] {
  display: flex;
}
.collapsed-avatars .mini-avatar[data-v-92af819e] {
  --sd-comment-avatar-size: 20px;
  --sd-comment-avatar-font-size: 8px;
  margin-left: -4px;
  border: 2px solid var(--sd-ui-comments-card-active-bg, #ffffff);
}
.collapsed-avatars .mini-avatar[data-v-92af819e]:first-child {
  margin-left: 0;
}

/* ── New comment input ── */
.new-comment-input-wrapper[data-v-92af819e] {
  border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
  border-radius: 12px;
  padding: 8.5px 10.5px;
  background: var(--sd-ui-comments-input-bg, #ffffff);
  margin-top: 4px;
  max-height: 150px;
  overflow-y: auto;
}
.new-comment-input-wrapper[data-v-92af819e] .comment-entry {
  border-radius: 0;
}
.new-comment-input-wrapper[data-v-92af819e] .input-section {
  margin: 0;
}
.new-comment-input-wrapper[data-v-92af819e] .superdoc-field {
  font-size: 14px;
  border: none;
  padding: 0;
  border-radius: 0;
}
.new-comment-input-wrapper[data-v-92af819e] .superdoc-field:focus,
.new-comment-input-wrapper[data-v-92af819e] .superdoc-field:active {
  border: none;
}
.new-comment-input-wrapper[data-v-92af819e] .sd-editor-placeholder::before {
  content: 'Comment or add others with @';
}

/* ── Reply pill & expanded input ── */
.reply-pill[data-v-92af819e] {
  padding: 8.5px 10.5px;
  border: 1.5px solid transparent;
  border-radius: 9999px;
  font-size: 14px;
  color: var(--sd-color-gray-500, #ababab);
  background: var(--sd-color-gray-100, #f5f5f5);
  margin-top: 10px;
  cursor: text;
  transition: background 150ms ease;
}
.reply-pill[data-v-92af819e]:hover {
  background: var(--sd-color-gray-200, #f2f2f2);
}
.reply-expanded[data-v-92af819e] {
  margin-top: 10px;
}
.reply-input-wrapper[data-v-92af819e] {
  border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
  border-radius: 12px;
  padding: 8.5px 10.5px;
  background: var(--sd-ui-comments-input-bg, #ffffff);
  max-height: 150px;
  overflow-y: auto;
}
.reply-input-wrapper[data-v-92af819e] .comment-entry {
  border-radius: 0;
}
.reply-input-wrapper[data-v-92af819e] .input-section {
  margin: 0;
}
.reply-input-wrapper[data-v-92af819e] .superdoc-field {
  font-size: 14px;
  border: none;
  padding: 0;
  border-radius: 0;
}
.reply-input-wrapper[data-v-92af819e] .superdoc-field:focus,
.reply-input-wrapper[data-v-92af819e] .superdoc-field:active {
  border: none;
}
.reply-input-wrapper[data-v-92af819e] .sd-editor-placeholder::before {
  content: 'Reply or add others with @';
}
.reply-actions[data-v-92af819e] {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.reply-btn-cancel[data-v-92af819e] {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--sd-ui-text-muted, #666666);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 150ms;
}
.reply-btn-cancel[data-v-92af819e]:hover {
  color: var(--sd-ui-text, #212121);
}
.reply-btn-primary[data-v-92af819e] {
  background: var(--sd-ui-action, #1355ff);
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--sd-ui-action-text, #ffffff);
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 9999px;
  font-family: inherit;
  transition: background 150ms;
}
.reply-btn-primary[data-v-92af819e]:hover {
  background: var(--sd-ui-action-hover, #0f44cc);
}
.reply-btn-primary.is-disabled[data-v-92af819e] {
  background: var(--sd-color-gray-400, #dbdbdb);
  color: var(--sd-color-gray-600, #888888);
  cursor: default;
  pointer-events: none;
}
.existing-internal-input[data-v-92af819e] {
  margin-bottom: 10px;
}
.internal-dropdown[data-v-92af819e] {
  display: inline-block;
}

.comments-list[data-v-12d3e3dd] {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
}
.comment-item[data-v-12d3e3dd] {
  margin-bottom: 10px;
}
.comment-title[data-v-12d3e3dd] {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}
.sd-comment-anchor {
  position: absolute;
  cursor: pointer;
  z-index: 3;
  border-radius: 33px;
  transition: background-color 250ms ease;
}

.sd-highlight {
  cursor: pointer;
  border-radius: 8px;
  background-color: #ddaf0955;
  mix-blend-mode: multiply;
  transition: background-color 250ms ease;
}

.sd-initial-highlight {
  background-color: #1355ff7f;
}

.sd-highlight:hover,
.sd-highlight:hover .sd-highlight-active {
  background-color: #ddaf0999;
}

.sd-highlight-active {
  background-color: #1355ff7f;
}

.comment-doc[data-v-ec1c18ad] {
  position: relative;
}
.comments-layer[data-v-ec1c18ad] {
  position: relative;
}
.sd-comment-anchor[data-v-ec1c18ad] {
  position: absolute;
  cursor: pointer;
  z-index: 3;
  border-radius: 4px;
  transition: background-color 250ms ease;
}
.bypass[data-v-ec1c18ad] {
  display: none;
}
.comments-container[data-v-ec1c18ad] {
  /* pointer-events: none;  */
}

.comment-placeholder[data-v-852963a2] {
  position: absolute;
  width: 300px;
  transition: top 0.3s ease;
}
.floating-comment[data-v-852963a2] {
  position: relative;
  display: block;
  min-width: 300px;
}
.sidebar-container[data-v-852963a2] {
  position: absolute;
  width: 300px;
  min-height: 300px;
  transition: transform 0.3s ease;
  will-change: transform;
}
.section-wrapper[data-v-852963a2] {
  position: relative;
  min-height: 100%;
  width: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  /* SD-2034: smooth min-height changes to prevent scrollbar flash */
  transition: min-height 0.5s ease-out;
}

.text-field[data-v-f3984d30] {
  white-space: nowrap;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  margin: 0;
  display: flex;
  align-items: center;
}

.paragraph-field[data-v-ce5a87b3] {
  margin: 0;
  padding: 1px;
}

.image-field[data-v-7dd69850] {
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 2px;
}
img[data-v-7dd69850] {
  max-height: 100%;
}

.checkbox-container[data-v-0620a58a] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  height: 100%;
}
.checkbox-preview[data-v-0620a58a] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  width: 100%;
  height: 100%;
}
.checkbox-editing-placeholder[data-v-0620a58a] {
  width: 100%;
  height: 100%;
}

.select-container[data-v-1e49d9b3] {
  padding: 1px;
}

.field-container[data-v-22e6ae02] {
  border-radius: 2px;
  background-color: #efd0f0 !important;
  border: 2px solid #b015b3;
}
.field-container--no-style[data-v-22e6ae02] {
  background: none !important;
  border-color: transparent;
}

.whiteboard-page[data-v-c876c9b5] {
  position: absolute;
  left: 0;
  top: 0;
}

.whiteboard-layer[data-v-8448a15a] {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.superdoc-html-viewer[data-v-da3494ba] {
  font-family: initial;
  color: initial;
  width: 100%;
  height: auto;
  position: relative;
}
.superdoc-html-viewer__document[data-v-da3494ba] {
  width: 100%;
  height: auto;
}
.superdoc-html-viewer__content[data-v-da3494ba] {
  width: 100%;
  min-width: 800px;
  padding: 38px 75px 75px;
}

.ai-highlight-layer[data-v-497b8118] {
  position: relative;
}
.ai-highlight-anchor[data-v-497b8118] {
  position: absolute;
  cursor: pointer;
  z-index: 3;
  border-radius: 4px;
  transition: background-color 250ms ease;
}
.bypass[data-v-497b8118] {
  display: none;
}

.superdoc[data-v-28ad9ad9] {
  display: flex;
}
.right-sidebar[data-v-28ad9ad9] {
  min-width: 320px;
  height: 100%;
}
.floating-comments[data-v-28ad9ad9] {
  min-width: 300px;
  width: 300px;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}
.superdoc__layers[data-v-28ad9ad9] {
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
.superdoc__document[data-v-28ad9ad9] {
  width: 100%;
  position: relative;
}
.superdoc__sub-document[data-v-28ad9ad9] {
  width: 100%;
  position: relative;
}
.superdoc__selection-layer[data-v-28ad9ad9] {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: 10;
  pointer-events: none;
}
.superdoc__temp-selection[data-v-28ad9ad9] {
  position: absolute;
}
.superdoc__comments-layer[data-v-28ad9ad9] {
  /* position: absolute; */
  top: 0;
  height: 100%;
  position: relative;
}
.superdoc__right-sidebar[data-v-28ad9ad9] {
  width: 320px;
  min-width: 320px;
  padding: 0 10px;
  min-height: 100%;
  position: relative;
  z-index: 2;
}

/* Tools styles */
.tools[data-v-28ad9ad9] {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--sd-ui-tools-gap, 6px);
}
.tools-item[data-v-28ad9ad9] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--sd-ui-tools-item-size, 50px);
  height: var(--sd-ui-tools-item-size, 50px);
  background-color: var(--sd-ui-tools-item-bg, rgba(219, 219, 219, 0.6));
  border-radius: var(--sd-ui-tools-item-radius, 12px);
  cursor: pointer;
  position: relative;
}
.tools-item i[data-v-28ad9ad9] {
  cursor: pointer;
}
.superdoc__tools-icon[data-v-28ad9ad9] {
  width: var(--sd-ui-tools-icon-size, 20px);
  height: var(--sd-ui-tools-icon-size, 20px);
  flex-shrink: 0;
}

/* Tools styles - end */

/* .docx {
  border: 1px solid #dfdfdf;
  pointer-events: auto;
} */

/* 834px is iPad screen size in portrait orientation */
@media (max-width: 834px) {
.superdoc .superdoc__layers[data-v-28ad9ad9] {
    margin: 0;
    border: 0 !important;
    box-shadow: none;
}
.superdoc__sub-document[data-v-28ad9ad9] {
    max-width: 100%;
}
.superdoc__right-sidebar[data-v-28ad9ad9] {
    padding: 10px;
    width: 55px;
    position: relative;
}
}

/* AI Writer styles */
.ai-writer-container[data-v-28ad9ad9] {
  position: fixed;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Remove the AI Sidebar styles */
/* .ai-sidebar-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
} */
.ai-tool > svg[data-v-28ad9ad9] {
  fill: transparent;
}
.ai-tool[data-v-28ad9ad9]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;

  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(218, 215, 118, 0.5) -20%,
    rgba(191, 100, 100, 1) 30%,
    rgba(77, 82, 217, 1) 60%,
    rgb(255, 219, 102) 150%
  );
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.7-53.3L160 80l-53.3-26.7L80 0 53.3 53.3 0 80l53.3 26.7L80 160zm352 128l-26.7 53.3L352 368l53.3 26.7L432 448l26.7-53.3L512 368l-53.3-26.7L432 288zm70.6-193.8L417.8 9.4C411.5 3.1 403.3 0 395.2 0c-8.2 0-16.4 3.1-22.6 9.4L9.4 372.5c-12.5 12.5-12.5 32.8 0 45.3l84.9 84.9c6.3 6.3 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l363.1-363.2c12.5-12.5 12.5-32.8 0-45.2zM359.5 203.5l-50.9-50.9 86.6-86.6 50.9 50.9-86.6 86.6z'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.7-53.3L160 80l-53.3-26.7L80 0 53.3 53.3 0 80l53.3 26.7L80 160zm352 128l-26.7 53.3L352 368l53.3 26.7L432 448l26.7-53.3L512 368l-53.3-26.7L432 288zm70.6-193.8L417.8 9.4C411.5 3.1 403.3 0 395.2 0c-8.2 0-16.4 3.1-22.6 9.4L9.4 372.5c-12.5 12.5-12.5 32.8 0 45.3l84.9 84.9c6.3 6.3 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l363.1-363.2c12.5-12.5 12.5-32.8 0-45.2zM359.5 203.5l-50.9-50.9 86.6-86.6 50.9 50.9-86.6 86.6z'/></svg>")
    center / contain no-repeat;
  filter: brightness(1.2);
  transition: filter 0.2s ease;
}
.ai-tool[data-v-28ad9ad9]:hover::before {
  filter: brightness(1.3);
}

/* Tools styles - end */

.sd-pdf-viewer-page[data-v-d7a9857d] {
  --user-unit: 1;
  --total-scale-factor: calc(var(--scale-factor) * var(--user-unit));
  --scale-round-x: 1px;
  --scale-round-y: 1px;

  width: 816px;
  height: 1056px;
  /* margin: 1px auto -8px; */
  position: relative;
  overflow: visible;
  /* border: 9px solid transparent; */
  background-clip: content-box;
  background-color: #fff;
  box-sizing: content-box;
  margin: 0 0 calc(var(--scale-factor) * 10px);
}
.sd-pdf-viewer-page[data-v-d7a9857d]:last-child {
  margin: 0;
}
.sd-pdf-viewer-page__canvas-wrapper[data-v-d7a9857d] {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.sd-pdf-viewer-page__canvas[data-v-d7a9857d] {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  contain: content;
}

/* Text layer style */
.sd-pdf-viewer-page__text-layer {
  --csstools-color-scheme--light: initial;
  color-scheme: only light;

  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: clip;
  opacity: 1;
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  caret-color: CanvasText;
  z-index: 0;
}
.sd-pdf-viewer-page__text-layer.highlighting {
  touch-action: none;
}
.sd-pdf-viewer-page__text-layer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  transform-origin: 0% 0%;
}
.sd-pdf-viewer-page__text-layer {
  --min-font-size: 1;
  --text-scale-factor: calc(var(--total-scale-factor) * var(--min-font-size));
  --min-font-size-inv: calc(1 / var(--min-font-size));
}
.sd-pdf-viewer-page__text-layer > :not(.markedContent),
.sd-pdf-viewer-page__text-layer .markedContent span:not(.markedContent) {
  z-index: 1;

  --font-height: 0;
  font-size: calc(var(--text-scale-factor) * var(--font-height));

  --scale-x: 1;
  --rotate: 0deg;
  transform: rotate(var(--rotate)) scaleX(var(--scale-x)) scale(var(--min-font-size-inv));
}
.sd-pdf-viewer-page__text-layer .markedContent {
  display: contents;
}
.sd-pdf-viewer-page__text-layer span[role='img'] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}
.sd-pdf-viewer-page__text-layer .highlight {
  --highlight-bg-color: rgb(180 0 170 / 0.25);
  --highlight-selected-bg-color: rgb(0 100 0 / 0.25);
  --highlight-backdrop-filter: none;
  --highlight-selected-backdrop-filter: none;
}
@media screen and (forced-colors: active) {
.sd-pdf-viewer-page__text-layer.highlight {
    --highlight-bg-color: transparent;
    --highlight-selected-bg-color: transparent;
    --highlight-backdrop-filter: var(--hcm-highlight-filter);
    --highlight-selected-backdrop-filter: var(--hcm-highlight-selected-filter);
}
}
.sd-pdf-viewer-page__text-layer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  backdrop-filter: var(--highlight-backdrop-filter);
  border-radius: 4px;
}
.appended:is(.sd-pdf-viewer-page__text-layer .highlight) {
  position: initial;
}
.begin:is(.sd-pdf-viewer-page__text-layer .highlight) {
  border-radius: 4px 0 0 4px;
}
.end:is(.sd-pdf-viewer-page__text-layer .highlight) {
  border-radius: 0 4px 4px 0;
}
.middle:is(.sd-pdf-viewer-page__text-layer .highlight) {
  border-radius: 0;
}
.selected:is(.sd-pdf-viewer-page__text-layer .highlight) {
  background-color: var(--highlight-selected-bg-color);
  backdrop-filter: var(--highlight-selected-backdrop-filter);
}
.sd-pdf-viewer-page__text-layer ::-moz-selection {
  background: rgba(0 0 255 / 0.25);
  background: color-mix(in srgb, AccentColor, transparent 75%);
}
.sd-pdf-viewer-page__text-layer ::selection {
  background: rgba(0 0 255 / 0.25);
  background: color-mix(in srgb, AccentColor, transparent 75%);
}
.sd-pdf-viewer-page__text-layer br::-moz-selection {
  background: transparent;
}
.sd-pdf-viewer-page__text-layer br::selection {
  background: transparent;
}
.sd-pdf-viewer-page__text-layer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: 0;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.textLayer.selecting .endOfContent {
  top: 0;
}

.sd-pdf-viewer-document[data-v-2152178b] {
  position: relative;
  width: 100%;
}
.sd-pdf-viewer-document__wrapper[data-v-2152178b] {
  width: 100%;
  padding-bottom: 10px;
}

.sd-pdf-viewer[data-v-c47c92bc] {
  width: 100%;
  position: relative;
}
.sd-pdf-viewer__main[data-v-c47c92bc] {
  width: 100%;
}
.from-counsel-content span.reference,
.from-counsel-content span.labels {
  display: none;
}

.from-counsel-content .text-body {
  font-size: inherit;
  line-height: inherit;
}

.from-counsel-content a {
  text-decoration-line: none;
}

.from-counsel-content ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: decimal;
  padding-inline-start: 1.25rem;
}

.from-counsel-content ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: disc;
  padding-inline-start: 1.25rem;
}

.from-counsel-content li {
  margin-bottom: 0.25rem;
}
/**
 * Content Control Chrome — variable highlighting spec.
 *
 * Shared by the web template editor and the contract-run fill viewer. SuperDoc
 * paints content controls into a PresentationEditor DOM using:
 *   `.superdoc-structured-content-inline` for inline variables
 *   `.superdoc-structured-content-block` for conditional blocks
 *   `data-sdt-tag="lf-var-{uuid}"` for LegalFly variables
 *
 * `cc-chrome-plugin.ts` adds the `data-cc-*` state attributes consumed here.
 */

:root {
  --lf-var-slate: #111316;
  --lf-var-text: #1a1d23;
  --lf-var-fill: #e0e7ff;
  --lf-var-fill-hover: #d5deff;
  --lf-var-fill-active: #abb8ff;
  --lf-cond-l1: #2563eb;
  --lf-cond-l2: #0f766e;
  --lf-cond-l3: #a16207;
  --lf-cond-l4: #7c3aed;
}

#template-superdoc,
#contract-run-superdoc {
  position: relative;
}

#template-superdoc .superdoc,
#contract-run-superdoc .superdoc {
  line-height: 1.75;
}

/* ─── Inline variable chips ────────────────────────────────────────────── */

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'] {
  display: inline;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--lf-var-fill);
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
  vertical-align: baseline;
  white-space: inherit;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    filter 120ms ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent']
  *:not(.superdoc-structured-content-inline__label) {
  background: transparent !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-conditional-state] {
  background: var(--lf-var-fill);
  color: inherit;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive'] {
  background: var(--lf-var-fill);
  color: inherit;
  opacity: 0.58;
  filter: grayscale(0.25);
  text-decoration: line-through !important;
  text-decoration-color: rgba(17, 19, 22, 0.28) !important;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive']
  *:not(.superdoc-structured-content-inline__label) {
  text-decoration: line-through !important;
  text-decoration-color: rgba(17, 19, 22, 0.28) !important;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-empty='true'] {
  background: var(--lf-var-fill);
  color: inherit;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-value-source='manual'] {
  background: var(--lf-var-fill);
  color: inherit;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-value-source='ai'] {
  background: var(--lf-var-fill);
  color: inherit;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-invalid='true'] {
  background: var(--lf-var-fill);
  color: inherit;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent']:hover,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].sdt-hover {
  background: var(--lf-var-fill-hover);
  filter: none;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent']:not(
    [data-cc-value-source]
  ):not([data-cc-invalid]):hover,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent']:not(
    [data-cc-value-source]
  ):not([data-cc-invalid]).sdt-hover,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-empty='true']:hover,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-empty='true'].sdt-hover {
  background: var(--lf-var-fill-hover);
}

@media (prefers-reduced-motion: no-preference) {
  .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-new='true'] {
    animation: lf-var-pop 250ms ease-out;
  }
}

@media (prefers-reduced-motion: reduce) {
  .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-cc-new='true'] {
    animation: lf-fade-in 160ms ease-out both;
  }
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true'],
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true'] {
  border-color: transparent;
  outline: 0;
  outline-offset: 0;
  background: var(--lf-var-fill-active) !important;
  color: inherit !important;
  filter: none;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode::-moz-selection, .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode
  *::-moz-selection, .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']::-moz-selection, .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']
  *::-moz-selection, .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']::-moz-selection, .superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']
  *::-moz-selection {
  background: var(--lf-var-fill-active) !important;
  color: inherit !important;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode
  *,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode::selection,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode
  *::selection,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']
  *,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']::selection,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']
  *::selection,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']
  *,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']::selection,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']
  *::selection {
  background: var(--lf-var-fill-active) !important;
  color: inherit !important;
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode
  img,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']
  img,
.superdoc-structured-content-inline[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']
  img {
  border-radius: 3px;
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lf-var-fill-active) 55%, transparent);
}

.superdoc-structured-content-inline[data-sdt-tag^='lf-var-']
  .superdoc-structured-content-inline__label {
  display: none !important;
}

/* SuperDoc can paint image-only SDTs directly on the image element instead of
   the inline text-chip wrapper. Keep the visual affordance without changing
   image layout. */
:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'] {
  border-radius: 3px;
  cursor: pointer;
  outline: 1px solid color-mix(in srgb, var(--lf-var-fill-active) 42%, transparent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lf-var-fill) 45%, transparent);
  transition:
    box-shadow 120ms ease,
    filter 120ms ease,
    outline-color 120ms ease;
}

:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent']:hover,
:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].sdt-hover {
  filter: brightness(0.96);
  outline-color: color-mix(in srgb, var(--lf-var-fill-active) 60%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lf-var-fill-hover) 55%, transparent);
}

:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode,
:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true'],
:is(
    img,
    .superdoc-inline-image,
    .superdoc-inline-image-clip-wrapper
  )[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true'] {
  outline: 2px solid color-mix(in srgb, var(--lf-var-fill-active) 80%, transparent);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lf-var-fill-active) 55%, transparent);
  filter: none;
}

[data-lf-image-sdt-container='true'][data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'] {
  cursor: pointer;
}

[data-lf-image-sdt-container='true'][data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'].ProseMirror-selectednode
  img,
[data-lf-image-sdt-container='true'][data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-selected-occurrence='true']
  img,
[data-lf-image-sdt-container='true'][data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'][data-cc-active='true']
  img {
  border-radius: 3px;
  outline: 2px solid color-mix(in srgb, var(--lf-var-fill-active) 80%, transparent);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lf-var-fill-active) 55%, transparent);
  filter: none;
}

/* ─── Conditional blocks ───────────────────────────────────────────────── */

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-sdt-type='structuredContent'] {
  position: relative;
  margin: 14px 0;
  padding: 10px 16px;
  border-left: 3px solid var(--lf-cond-l1);
  border-radius: 0 6px 6px 0;
  background: color-mix(in srgb, var(--lf-var-slate) 3%, transparent);
  box-shadow: none;
  color: var(--lf-var-text);
  font-family: var(--lf-font-sans, 'Inter', system-ui, sans-serif);
  font-size: 13px;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    filter 120ms ease,
    opacity 120ms ease;
  cursor: default;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-depth='2'] {
  margin-left: 20px;
  padding-left: 14px;
  border-left-width: 2px;
  border-left-color: var(--lf-cond-l2);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-depth='3'] {
  margin-left: 18px;
  padding-left: 14px;
  border-left-width: 2px;
  border-left-color: var(--lf-cond-l3);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-depth='4'] {
  margin-left: 16px;
  padding-left: 14px;
  border-left-width: 2px;
  border-left-style: dashed;
  border-left-color: var(--lf-cond-l4);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-active='true'],
.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-selected-occurrence='true'] {
  border-left-color: var(--lf-var-fill-active);
  background: color-mix(in srgb, var(--lf-var-fill-active) 24%, transparent);
  box-shadow:
    inset 10px 0 0 color-mix(in srgb, var(--lf-var-fill-active) 34%, transparent),
    0 0 0 1px color-mix(in srgb, var(--lf-var-fill-active) 45%, transparent);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'] > [data-cc-cond-header='true'] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-family: var(--lf-font-sans, 'Inter', system-ui, sans-serif);
  pointer-events: auto;
  cursor: pointer;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true']
  [data-cc-cond-header-pill='true'] {
  padding: 2px 6px;
  border-radius: 4px;
  background: #444;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true'][data-cc-depth='2']
  [data-cc-cond-header-pill='true'] {
  background: #666;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true'][data-cc-depth='3']
  [data-cc-cond-header-pill='true'] {
  background: #888;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true'][data-cc-depth='4']
  [data-cc-cond-header-pill='true'] {
  background: #aaa;
  color: #333;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true']
  [data-cc-cond-header-var='true'] {
  border-bottom: 1px dashed #bbb;
  color: var(--lf-var-slate);
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  > [data-cc-cond-header='true']
  [data-cc-cond-header-op='true'] {
  color: #888;
  font-size: 11px;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'] > [data-cc-cond-header='true']:hover {
  filter: brightness(0.92);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive'] {
  border-left-color: #9ca3af;
  background: rgba(156, 163, 175, 0.035);
  color: rgba(17, 19, 22, 0.6);
  opacity: 0.58;
  filter: grayscale(0.25);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive']
  > [data-cc-cond-header='true']
  [data-cc-cond-header-pill='true'] {
  background: #6b7280;
  color: #fff;
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive']
  > :not([data-cc-cond-header='true']),
.superdoc-structured-content-block[data-sdt-tag^='lf-var-'][data-cc-conditional-state='inactive']
  > :not([data-cc-cond-header='true'])
  * {
  text-decoration: line-through;
  text-decoration-color: rgba(17, 19, 22, 0.28);
}

.superdoc-structured-content-block[data-sdt-tag^='lf-var-']
  .superdoc-structured-content-block__label {
  display: none !important;
}

/* SuperDoc cannot keep block SDT wrappers in the prepared viewer DOCX. The
   plugin draws these viewer-only range gutters from DB metadata so rendered
   conditionals remain visible and focusable from the sidebar. */
.lf-conditional-range-overlay[data-lf-conditional-range='true'][data-sdt-tag^='lf-var-'] {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border-left: 3px solid var(--lf-cond-l1);
  border-radius: 0 5px 5px 0;
  background: color-mix(in srgb, var(--lf-cond-l1) 6%, transparent);
  box-shadow: inset 10px 0 0 color-mix(in srgb, var(--lf-cond-l1) 8%, transparent);
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    opacity 120ms ease;
}

.lf-conditional-range-overlay[data-cc-depth='2'] {
  border-left-color: var(--lf-cond-l2);
  background: color-mix(in srgb, var(--lf-cond-l2) 6%, transparent);
  box-shadow: inset 10px 0 0 color-mix(in srgb, var(--lf-cond-l2) 8%, transparent);
}

.lf-conditional-range-overlay[data-cc-depth='3'] {
  border-left-color: var(--lf-cond-l3);
  background: color-mix(in srgb, var(--lf-cond-l3) 6%, transparent);
  box-shadow: inset 10px 0 0 color-mix(in srgb, var(--lf-cond-l3) 8%, transparent);
}

.lf-conditional-range-overlay[data-cc-depth='4'] {
  border-left-color: var(--lf-cond-l4);
  border-left-style: dashed;
  background: color-mix(in srgb, var(--lf-cond-l4) 6%, transparent);
  box-shadow: inset 10px 0 0 color-mix(in srgb, var(--lf-cond-l4) 8%, transparent);
}

.lf-conditional-range-overlay[data-cc-conditional-state='inactive'] {
  border-left-color: #6b7280;
  background: rgba(107, 114, 128, 0.05);
  box-shadow: inset 10px 0 0 rgba(107, 114, 128, 0.08);
  opacity: 0.62;
}

.lf-conditional-range-overlay.ProseMirror-selectednode,
.lf-conditional-range-overlay[data-cc-selected-occurrence='true'],
.lf-conditional-range-overlay[data-cc-active='true'] {
  border-left-color: var(--lf-var-fill-active);
  background: color-mix(in srgb, var(--lf-var-fill-active) 24%, transparent);
  box-shadow:
    inset 10px 0 0 color-mix(in srgb, var(--lf-var-fill-active) 34%, transparent),
    0 0 0 1px color-mix(in srgb, var(--lf-var-fill-active) 45%, transparent);
}

.lf-conditional-range-overlay [data-lf-conditional-range-label='true'] {
  position: absolute;
  left: 5px;
  top: -18px;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 3px;
  background: var(--lf-var-slate);
  color: #fff;
  padding: 1px 5px;
  font-family: var(--lf-font-sans, 'Inter', system-ui, sans-serif);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 120ms ease,
    visibility 120ms ease;
}

.lf-conditional-range-overlay[data-cc-hover='true'] [data-lf-conditional-range-label='true'] {
  opacity: 1;
  visibility: visible;
}
:root {
  --lf-motion-highlight: color-mix(in srgb, var(--lf-var-fill-active, #abb8ff) 60%, transparent);
}

.para-flash,
.var-pop,
.lf-fade-in {
  animation: lf-fade-in 160ms ease-out both;
}

.skel-wave {
  background-image: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, currentColor 7%, transparent),
    transparent
  );
  background-size: 220% 100%;
}

@keyframes lf-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lf-var-pop {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lf-para-flash {
  0%,
  35% {
    background-color: var(--lf-motion-highlight);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--lf-var-fill-active, #abb8ff) 32%, transparent);
  }
  100% {
    background-color: transparent;
    box-shadow: 0 0 0 6px transparent;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .para-flash {
    animation: lf-para-flash 1.4s ease-out;
  }

  .var-pop {
    animation: lf-var-pop 250ms ease-out;
  }

  .step-glow {
    animation: lf-step-glow 1.45s ease-in-out infinite;
  }

  .skel-wave {
    animation: lf-skel-wave 1.35s ease-in-out infinite;
  }

  .lf-progress-indeterminate {
    animation: lf-progress-indeterminate 1.25s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-glow,
  .skel-wave,
  .lf-progress-indeterminate {
    animation: none;
  }
}

@keyframes lf-step-glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes lf-skel-wave {
  from {
    background-position: 220% 0;
  }
  to {
    background-position: -220% 0;
  }
}

@keyframes lf-progress-indeterminate {
  0% {
    transform: translateX(-125%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(325%);
  }
}
::view-transition-group(conversation) {
  animation-duration: 200ms;
}
.table-container {
  overflow-x: auto;
  width: 100%;
  max-width: var(--lf-content-width);
  position: relative;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
  html {
    --font-scale: 1;
  }

  :root,
  :host {
    --radius: 0.5rem;
    --lf-progress-card-height: 90px;
    --lf-side-pane-width-sm: 368px;
    --lf-side-pane-width-md: 450px;
  }

  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none !important;
  }
  html {
    --font-scale: 1;
  }

  :root {
    --lf-body-padding: 8px;
    --lf-content-padding-x: 48px;
    --lf-content-padding-y: 32px;
    --lf-content-row-height: 54px;
    --lf-sidebar-width: 64px;
    --lf-template-width: 80%;
    --lf-header-height: 0px;
    --lf-navigation-height: calc(
      100dvh - var(--lf-body-padding) - var(--lf-body-padding) - var(--lf-header-banner-height)
    );
    --lf-header-banner-height: 0px;
    --lf-content-height: calc(
      100dvh - var(--lf-body-padding) - var(--lf-body-padding) - var(--lf-header-height) -
        var(--lf-header-banner-height)
    );
    --lf-content-with-progress-height: calc(
      var(--lf-content-height) - var(--lf-body-padding) - var(--lf-progress-card-height)
    );

    --lf-conversation-list-width: 280px;
    --lf-menu-button-height: 40px;

    --lf-store-detail-navigation-gap: 0.75rem;
    --lf-store-detail-content-padding: 1rem;
    --lf-store-detail-header-height: 76px;
    --lf-store-detail-image-height: calc(
      var(--lf-content-height) - var(--lf-content-row-height) -
        var(--lf-store-detail-navigation-gap) - var(--lf-store-detail-header-height) -
        var(--lf-store-detail-content-padding)
    );
    --lf-translate-files-bottom-bar-height: 40px;
    --lf-translate-text-box-height: 460px;
    --lf-translate-box-height: calc(
      var(--lf-translate-text-box-height) - var(--lf-translate-files-bottom-bar-height)
    );
    --lf-knowledge-header-height: 56px;

    --lf-conversation-max-width: 820px;
    --lf-knowledge-content-height: calc(
      100dvh - var(--lf-body-padding) - var(--lf-body-padding) - var(--lf-header-height)
    );
    --lf-knowledge-content-with-progress-height: calc(
      var(--lf-knowledge-content-height) - var(--lf-body-padding) - var(--lf-progress-card-height) +
        1px
    );

    --lf-legal-radar-header-height: 250px;

    --lf-legal-radar-panel-height: calc(var(--lf-content-height) + var(--lf-header-height));
  }

  @media (min-width: 768px) {
    :root {
      --lf-body-padding: 12px;
    }
  }

  body {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}

  html,
  body,
  #root {
  height: 100%;
}
.\!container {
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}
.prose {
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, 1));
  max-width: 100%;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  font-family: Inter;
  font-family: sans-serif;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 600;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
  font-family: Inter;
  font-family: sans-serif;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
  text-decoration: underline;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  font-weight: 600;
  margin-top: 1.25em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  font-style: italic;
  color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, 1));
  border-inline-start-width: 0.25rem;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  background-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  padding: 0.5rem 1rem;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  font-family: inherit;
  color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: ;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: ;
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin: 1rem 0;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, 1));
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  margin: 1rem 3rem;
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
  border: none !important;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
  font-style: italic;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose {
  font-family: Inter;
  font-family: sans-serif;
  word-break: break-word;
  font-weight: 400;
}
.prose :where(del):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: line-through;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, 1));
}
.prose :where(s):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: line-through;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, 1));
}
.prose :where(del[data-disabled]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: none;
}
.prose :where(ins):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: underline;
  color: hsl(var(--lf-content-body-success) / var(--lf-content-body-success-opacity, 1));
}
.prose :where(ins[data-disabled]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: none;
  color: inherit;
}
.prose :where(li strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead tr th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tbody tr:hover):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, 1));
}
.prose :where(td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding: 1rem 0 !important;
}
.prose :where(caption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 300;
  margin:  0 1rem 3rem;
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 12px), 1px);
}
.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.1111111em;
}
.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-inline-end: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-inline-start: 0.3571429em;
}
.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose {
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, 1));
  max-width: 100%;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  font-family: Inter;
  font-family: sans-serif;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 600;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
  font-family: Inter;
  font-family: sans-serif;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
  text-decoration: underline;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, 1));
  font-weight: 600;
  margin-top: 1.25em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  font-style: italic;
  color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, 1));
  border-inline-start-width: 0.25rem;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  background-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  padding: 0.5rem 1rem;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 16px), 1px);
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  color: inherit;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 600;
  font-family: inherit;
  color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: ;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: ;
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin: 1rem 0;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, 1));
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
  margin: 1rem 3rem;
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
  border: none !important;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
  font-style: italic;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose {
  font-family: Inter;
  font-family: sans-serif;
  word-break: break-word;
  font-weight: 400;
}
.prose :where(del):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: line-through;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, 1));
}
.prose :where(s):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: line-through;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, 1));
}
.prose :where(del[data-disabled]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: none;
}
.prose :where(ins):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: underline;
  color: hsl(var(--lf-content-body-success) / var(--lf-content-body-success-opacity, 1));
}
.prose :where(ins[data-disabled]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-decoration: none;
  color: inherit;
}
.prose :where(li strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead tr th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 14px), 1px);
}
.prose :where(tbody tr:hover):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, 1));
}
.prose :where(td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding: 1rem 0 !important;
}
.prose :where(caption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 300;
  margin:  0 1rem 3rem;
  font-family: Inter;
  font-family: sans-serif;
  font-size: round(calc(var(--font-scale) * 12px), 1px);
}
.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.1111111em;
}
.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-inline-end: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-inline-start: 0.3571429em;
}
.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.\!pointer-events-auto {
  pointer-events: auto !important;
}
.pointer-events-auto {
  pointer-events: auto;
}
.\!visible {
  visibility: visible !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-inset-x-6 {
  left: -1.5rem;
  right: -1.5rem;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.inset-y-\[2px\] {
  top: 2px;
  bottom: 2px;
}
.\!top-1\/3 {
  top: 33.333333% !important;
}
.\!top-2\/3 {
  top: 66.666667% !important;
}
.-bottom-1 {
  bottom: -0.25rem;
}
.-bottom-1\.5 {
  bottom: -0.375rem;
}
.-end-1 {
  inset-inline-end: -0.25rem;
}
.-end-1\.5 {
  inset-inline-end: -0.375rem;
}
.-end-3 {
  inset-inline-end: -0.75rem;
}
.-end-4 {
  inset-inline-end: -1rem;
}
.-end-8 {
  inset-inline-end: -2rem;
}
.-start-1\.5 {
  inset-inline-start: -0.375rem;
}
.-start-10 {
  inset-inline-start: -2.5rem;
}
.-start-16 {
  inset-inline-start: -4rem;
}
.-start-3 {
  inset-inline-start: -0.75rem;
}
.-start-8 {
  inset-inline-start: -2rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-1\.5 {
  top: -0.375rem;
}
.-top-3 {
  top: -0.75rem;
}
.-top-5 {
  top: -1.25rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-1 {
  bottom: 0.25rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-3 {
  bottom: 0.75rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.bottom-7 {
  bottom: 1.75rem;
}
.bottom-\[-12px\] {
  bottom: -12px;
}
.bottom-\[-2px\] {
  bottom: -2px;
}
.bottom-\[-4\.1rem\] {
  bottom: -4.1rem;
}
.end-0 {
  inset-inline-end: 0px;
}
.end-1 {
  inset-inline-end: 0.25rem;
}
.end-2 {
  inset-inline-end: 0.5rem;
}
.end-3 {
  inset-inline-end: 0.75rem;
}
.end-4 {
  inset-inline-end: 1rem;
}
.end-6 {
  inset-inline-end: 1.5rem;
}
.end-8 {
  inset-inline-end: 2rem;
}
.end-\[-12px\] {
  inset-inline-end: -12px;
}
.start-0 {
  inset-inline-start: 0px;
}
.start-1 {
  inset-inline-start: 0.25rem;
}
.start-1\/2 {
  inset-inline-start: 50%;
}
.start-3 {
  inset-inline-start: 0.75rem;
}
.start-5 {
  inset-inline-start: 1.25rem;
}
.start-9 {
  inset-inline-start: 2.25rem;
}
.start-\[32px\] {
  inset-inline-start: 32px;
}
.start-\[40px\] {
  inset-inline-start: 40px;
}
.start-\[calc\(50\%\+0\.475rem\)\] {
  inset-inline-start: calc(50% + 0.475rem);
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-11 {
  top: 2.75rem;
}
.top-16 {
  top: 4rem;
}
.top-2 {
  top: 0.5rem;
}
.top-2\.5 {
  top: 0.625rem;
}
.top-3 {
  top: 0.75rem;
}
.top-4 {
  top: 1rem;
}
.top-8 {
  top: 2rem;
}
.top-\[18px\] {
  top: 18px;
}
.top-\[2px\] {
  top: 2px;
}
.top-\[5px\] {
  top: 5px;
}
.top-\[7px\] {
  top: 7px;
}
.top-\[var\(--category-top\)\] {
  top: var(--category-top);
}
.top-\[var\(--lf-body-padding\)\] {
  top: var(--lf-body-padding);
}
.top-\[var\(--search-top\)\] {
  top: var(--search-top);
}
.top-auto {
  top: auto;
}
.top-full {
  top: 100%;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[110\] {
  z-index: 110;
}
.z-\[118\] {
  z-index: 118;
}
.z-\[120\] {
  z-index: 120;
}
.z-\[149\] {
  z-index: 149;
}
.z-\[150\] {
  z-index: 150;
}
.z-\[160\] {
  z-index: 160;
}
.z-\[200\] {
  z-index: 200;
}
.z-\[5\] {
  z-index: 5;
}
.z-\[9999\] {
  z-index: 9999;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-span-full {
  grid-column: 1 / -1;
}
.\!m-0 {
  margin: 0px !important;
}
.-m-1 {
  margin: -0.25rem;
}
.-m-4 {
  margin: -1rem;
}
.m-0 {
  margin: 0px;
}
.m-0\.5 {
  margin: 0.125rem;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-auto {
  margin: auto;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-0\.5 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.\!mb-0 {
  margin-bottom: 0px !important;
}
.\!mt-2 {
  margin-top: 0.5rem !important;
}
.-me-2 {
  margin-inline-end: -0.5rem;
}
.-ms-3 {
  margin-inline-start: -0.75rem;
}
.-mt-0\.5 {
  margin-top: -0.125rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.-mt-3 {
  margin-top: -0.75rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1\.5 {
  margin-bottom: 0.375rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2\.5 {
  margin-bottom: 0.625rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-auto {
  margin-bottom: auto;
}
.me-1 {
  margin-inline-end: 0.25rem;
}
.me-1\.5 {
  margin-inline-end: 0.375rem;
}
.me-2 {
  margin-inline-end: 0.5rem;
}
.me-3 {
  margin-inline-end: 0.75rem;
}
.me-4 {
  margin-inline-end: 1rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.ms-0 {
  margin-inline-start: 0px;
}
.ms-0\.5 {
  margin-inline-start: 0.125rem;
}
.ms-1 {
  margin-inline-start: 0.25rem;
}
.ms-1\.5 {
  margin-inline-start: 0.375rem;
}
.ms-2 {
  margin-inline-start: 0.5rem;
}
.ms-3 {
  margin-inline-start: 0.75rem;
}
.ms-4 {
  margin-inline-start: 1rem;
}
.ms-6 {
  margin-inline-start: 1.5rem;
}
.ms-8 {
  margin-inline-start: 2rem;
}
.ms-auto {
  margin-inline-start: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[-3px\] {
  margin-top: -3px;
}
.mt-\[6px\] {
  margin-top: 6px;
}
.mt-auto {
  margin-top: auto;
}
.mt-px {
  margin-top: 1px;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.\!line-clamp-none {
  overflow: visible !important;
  display: block !important;
  -webkit-box-orient: horizontal !important;
  -webkit-line-clamp: none !important;
}
.line-clamp-none {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.\!flex {
  display: flex !important;
}
.flex {
  display: flex;
}
.\!inline-flex {
  display: inline-flex !important;
}
.inline-flex {
  display: inline-flex;
}
.\!table {
  display: table !important;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.table-row {
  display: table-row;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.\!size-7 {
  width: 1.75rem !important;
  height: 1.75rem !important;
}
.size-1 {
  width: 0.25rem;
  height: 0.25rem;
}
.size-1\.5 {
  width: 0.375rem;
  height: 0.375rem;
}
.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}
.size-11 {
  width: 2.75rem;
  height: 2.75rem;
}
.size-12 {
  width: 3rem;
  height: 3rem;
}
.size-14 {
  width: 3.5rem;
  height: 3.5rem;
}
.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}
.size-2\.5 {
  width: 0.625rem;
  height: 0.625rem;
}
.size-3 {
  width: 0.75rem;
  height: 0.75rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}
.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.size-7 {
  width: 1.75rem;
  height: 1.75rem;
}
.size-8 {
  width: 2rem;
  height: 2rem;
}
.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}
.size-\[18px\] {
  width: 18px;
  height: 18px;
}
.size-auto {
  width: auto;
  height: auto;
}
.size-full {
  width: 100%;
  height: 100%;
}
.\!h-12 {
  height: 3rem !important;
}
.\!h-7 {
  height: 1.75rem !important;
}
.\!h-\[865px\] {
  height: 865px !important;
}
.\!h-auto {
  height: auto !important;
}
.\!h-content {
  height: var(--lf-content-height) !important;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-1\/3 {
  height: 33.333333%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-28 {
  height: 7rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[104px\] {
  height: 104px;
}
.h-\[10px\] {
  height: 10px;
}
.h-\[150px\] {
  height: 150px;
}
.h-\[15px\] {
  height: 15px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[22px\] {
  height: 22px;
}
.h-\[28px\] {
  height: 28px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[30vh\] {
  height: 30vh;
}
.h-\[328px\] {
  height: 328px;
}
.h-\[34px\] {
  height: 34px;
}
.h-\[38dvh\] {
  height: 38dvh;
}
.h-\[3px\] {
  height: 3px;
}
.h-\[400px\] {
  height: 400px;
}
.h-\[46px\] {
  height: 46px;
}
.h-\[52px\] {
  height: 52px;
}
.h-\[600px\] {
  height: 600px;
}
.h-\[76px\] {
  height: 76px;
}
.h-\[7px\] {
  height: 7px;
}
.h-\[90vh\] {
  height: 90vh;
}
.h-\[calc\(100dvh-var\(--lf-body-padding\)\*2\)\] {
  height: calc(100dvh - var(--lf-body-padding) * 2);
}
.h-\[var\(--lf-tabs-list-height\)\] {
  height: var(--lf-tabs-list-height);
}
.h-\[var\(--lf-translate-files-bottom-bar-height\)\] {
  height: var(--lf-translate-files-bottom-bar-height);
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-\[var\(--tab-height\)\] {
  height: var(--tab-height);
}
.h-auto {
  height: auto;
}
.h-content {
  height: var(--lf-content-height);
}
.h-content-row {
  height: var(--lf-content-row-height);
}
.h-content-with-progress {
  height: var(--lf-content-with-progress-height);
}
.h-dvh {
  height: 100dvh;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-knowledge-header {
  height: var(--lf-knowledge-header-height);
}
.h-legal-radar-panel {
  height: var(--lf-legal-radar-panel-height);
}
.h-navigation {
  height: var(--lf-navigation-height);
}
.h-progress-card {
  height: var(--lf-progress-card-height);
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.\!max-h-\[90vh\] {
  max-height: 90vh !important;
}
.max-h-11 {
  max-height: 2.75rem;
}
.max-h-14 {
  max-height: 3.5rem;
}
.max-h-28 {
  max-height: 7rem;
}
.max-h-40 {
  max-height: 10rem;
}
.max-h-48 {
  max-height: 12rem;
}
.max-h-5 {
  max-height: 1.25rem;
}
.max-h-56 {
  max-height: 14rem;
}
.max-h-64 {
  max-height: 16rem;
}
.max-h-7 {
  max-height: 1.75rem;
}
.max-h-72 {
  max-height: 18rem;
}
.max-h-80 {
  max-height: 20rem;
}
.max-h-9 {
  max-height: 2.25rem;
}
.max-h-96 {
  max-height: 24rem;
}
.max-h-\[100px\] {
  max-height: 100px;
}
.max-h-\[180px\] {
  max-height: 180px;
}
.max-h-\[200px\] {
  max-height: 200px;
}
.max-h-\[20vh\] {
  max-height: 20vh;
}
.max-h-\[240px\] {
  max-height: 240px;
}
.max-h-\[25rem\] {
  max-height: 25rem;
}
.max-h-\[260px\] {
  max-height: 260px;
}
.max-h-\[270px\] {
  max-height: 270px;
}
.max-h-\[280px\] {
  max-height: 280px;
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[305px\] {
  max-height: 305px;
}
.max-h-\[30vh\] {
  max-height: 30vh;
}
.max-h-\[320px\] {
  max-height: 320px;
}
.max-h-\[33vh\] {
  max-height: 33vh;
}
.max-h-\[400px\] {
  max-height: 400px;
}
.max-h-\[500px\] {
  max-height: 500px;
}
.max-h-\[600px\] {
  max-height: 600px;
}
.max-h-\[60vh\] {
  max-height: 60vh;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.max-h-\[80vh\] {
  max-height: 80vh;
}
.max-h-\[86vh\] {
  max-height: 86vh;
}
.max-h-\[90\%\] {
  max-height: 90%;
}
.max-h-\[calc\(100vh-2rem\)\] {
  max-height: calc(100vh - 2rem);
}
.max-h-\[calc\(var\(--radix-popover-content-available-height\)-4rem\)\] {
  max-height: calc(var(--radix-popover-content-available-height) - 4rem);
}
.max-h-\[calc\(var\(--radix-tooltip-content-available-height\)_-_1rem\)\] {
  max-height: calc(var(--radix-tooltip-content-available-height) - 1rem);
}
.max-h-\[min\(520px\2c var\(--radix-dropdown-menu-content-available-height\)\)\] {
  max-height: min(520px,var(--radix-dropdown-menu-content-available-height));
}
.max-h-\[min\(640px\2c calc\(100vh-220px\)\)\] {
  max-height: min(640px,calc(100vh - 220px));
}
.max-h-\[min\(640px\2c calc\(100vh-240px\)\)\] {
  max-height: min(640px,calc(100vh - 240px));
}
.max-h-\[min\(640px\2c calc\(100vh-96px\)\)\] {
  max-height: min(640px,calc(100vh - 96px));
}
.max-h-\[min\(660px\2c calc\(100vh-220px\)\)\] {
  max-height: min(660px,calc(100vh - 220px));
}
.max-h-\[min\(700px\2c calc\(100vh-220px\)\)\] {
  max-height: min(700px,calc(100vh - 220px));
}
.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
  max-height: var(--radix-dropdown-menu-content-available-height);
}
.max-h-none {
  max-height: none;
}
.max-h-screen {
  max-height: 100vh;
}
.\!min-h-0 {
  min-height: 0px !important;
}
.\!min-h-12 {
  min-height: 3rem !important;
}
.\!min-h-7 {
  min-height: 1.75rem !important;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-1\.5 {
  min-height: 0.375rem;
}
.min-h-10 {
  min-height: 2.5rem;
}
.min-h-11 {
  min-height: 2.75rem;
}
.min-h-12 {
  min-height: 3rem;
}
.min-h-14 {
  min-height: 3.5rem;
}
.min-h-2 {
  min-height: 0.5rem;
}
.min-h-20 {
  min-height: 5rem;
}
.min-h-24 {
  min-height: 6rem;
}
.min-h-28 {
  min-height: 7rem;
}
.min-h-3 {
  min-height: 0.75rem;
}
.min-h-32 {
  min-height: 8rem;
}
.min-h-4 {
  min-height: 1rem;
}
.min-h-40 {
  min-height: 10rem;
}
.min-h-48 {
  min-height: 12rem;
}
.min-h-5 {
  min-height: 1.25rem;
}
.min-h-6 {
  min-height: 1.5rem;
}
.min-h-64 {
  min-height: 16rem;
}
.min-h-7 {
  min-height: 1.75rem;
}
.min-h-8 {
  min-height: 2rem;
}
.min-h-9 {
  min-height: 2.25rem;
}
.min-h-\[--lf-content-row-height\] {
  min-height: var(--lf-content-row-height);
}
.min-h-\[104px\] {
  min-height: 104px;
}
.min-h-\[132px\] {
  min-height: 132px;
}
.min-h-\[140px\] {
  min-height: 140px;
}
.min-h-\[148px\] {
  min-height: 148px;
}
.min-h-\[15px\] {
  min-height: 15px;
}
.min-h-\[18px\] {
  min-height: 18px;
}
.min-h-\[190px\] {
  min-height: 190px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[206px\] {
  min-height: 206px;
}
.min-h-\[260px\] {
  min-height: 260px;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-\[30px\] {
  min-height: 30px;
}
.min-h-\[320px\] {
  min-height: 320px;
}
.min-h-\[328px\] {
  min-height: 328px;
}
.min-h-\[42dvh\] {
  min-height: 42dvh;
}
.min-h-\[46dvh\] {
  min-height: 46dvh;
}
.min-h-\[52px\] {
  min-height: 52px;
}
.min-h-\[54px\] {
  min-height: 54px;
}
.min-h-\[58px\] {
  min-height: 58px;
}
.min-h-\[60px\] {
  min-height: 60px;
}
.min-h-\[62px\] {
  min-height: 62px;
}
.min-h-\[68px\] {
  min-height: 68px;
}
.min-h-\[7px\] {
  min-height: 7px;
}
.min-h-\[88px\] {
  min-height: 88px;
}
.min-h-\[92px\] {
  min-height: 92px;
}
.min-h-\[min\(720px\2c 100\%\)\] {
  min-height: min(720px,100%);
}
.min-h-\[var\(--lf-progress-card-height\)\] {
  min-height: var(--lf-progress-card-height);
}
.min-h-\[var\(--lf-translate-box-height\)\] {
  min-height: var(--lf-translate-box-height);
}
.min-h-copilot-input {
  min-height: 120px;
}
.min-h-copilot-input-minimal {
  min-height: 42px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-px {
  min-height: 1px;
}
.\!w-\[1166px\] {
  width: 1166px !important;
}
.\!w-\[min\(450px\2c calc\(100vw-32px\)\)\] {
  width: min(450px,calc(100vw - 32px)) !important;
}
.\!w-\[min\(460px\2c calc\(100vw-32px\)\)\] {
  width: min(460px,calc(100vw - 32px)) !important;
}
.\!w-\[min\(560px\2c calc\(100vw-32px\)\)\] {
  width: min(560px,calc(100vw - 32px)) !important;
}
.\!w-\[min\(620px\2c 94vw\)\] {
  width: min(620px,94vw) !important;
}
.\!w-\[min\(640px\2c calc\(100vw-32px\)\)\] {
  width: min(640px,calc(100vw - 32px)) !important;
}
.\!w-auto {
  width: auto !important;
}
.\!w-full {
  width: 100% !important;
}
.w-0 {
  width: 0px;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1 {
  width: 0.25rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-10 {
  width: 2.5rem;
}
.w-10\/12 {
  width: 83.333333%;
}
.w-11 {
  width: 2.75rem;
}
.w-11\/12 {
  width: 91.666667%;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-2\/5 {
  width: 40%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-28 {
  width: 7rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/4 {
  width: 75%;
}
.w-3\/5 {
  width: 60%;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-4\/5 {
  width: 80%;
}
.w-40 {
  width: 10rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-5\/6 {
  width: 83.333333%;
}
.w-52 {
  width: 13rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-96 {
  width: 24rem;
}
.w-\[--radix-popover-trigger-width\] {
  width: var(--radix-popover-trigger-width);
}
.w-\[--sidebar-width\] {
  width: var(--sidebar-width);
}
.w-\[100px\] {
  width: 100px;
}
.w-\[10px\] {
  width: 10px;
}
.w-\[13px\] {
  width: 13px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[150px\] {
  width: 150px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[184px\] {
  width: 184px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[220px\] {
  width: 220px;
}
.w-\[27px\] {
  width: 27px;
}
.w-\[280px\] {
  width: 280px;
}
.w-\[28px\] {
  width: 28px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[34px\] {
  width: 34px;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[360px\] {
  width: 360px;
}
.w-\[365px\] {
  width: 365px;
}
.w-\[380px\] {
  width: 380px;
}
.w-\[3px\] {
  width: 3px;
}
.w-\[400px\] {
  width: 400px;
}
.w-\[420px\] {
  width: 420px;
}
.w-\[450px\] {
  width: 450px;
}
.w-\[480px\] {
  width: 480px;
}
.w-\[7px\] {
  width: 7px;
}
.w-\[90\%\] {
  width: 90%;
}
.w-\[95\%\] {
  width: 95%;
}
.w-\[95vw\] {
  width: 95vw;
}
.w-\[calc\(100\%-40px\)\] {
  width: calc(100% - 40px);
}
.w-\[calc\(3rem\+var\(--lf-template-width\)\)\] {
  width: calc(3rem + var(--lf-template-width));
}
.w-\[min\(620px\2c calc\(100vw-var\(--lf-body-padding\)\*2\)\)\] {
  width: min(620px,calc(100vw - var(--lf-body-padding) * 2));
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.\!min-w-7 {
  min-width: 1.75rem !important;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-1\.5 {
  min-width: 0.375rem;
}
.min-w-10 {
  min-width: 2.5rem;
}
.min-w-12 {
  min-width: 3rem;
}
.min-w-16 {
  min-width: 4rem;
}
.min-w-2 {
  min-width: 0.5rem;
}
.min-w-28 {
  min-width: 7rem;
}
.min-w-3 {
  min-width: 0.75rem;
}
.min-w-3\.5 {
  min-width: 0.875rem;
}
.min-w-32 {
  min-width: 8rem;
}
.min-w-4 {
  min-width: 1rem;
}
.min-w-44 {
  min-width: 11rem;
}
.min-w-48 {
  min-width: 12rem;
}
.min-w-5 {
  min-width: 1.25rem;
}
.min-w-52 {
  min-width: 13rem;
}
.min-w-6 {
  min-width: 1.5rem;
}
.min-w-60 {
  min-width: 15rem;
}
.min-w-64 {
  min-width: 16rem;
}
.min-w-7 {
  min-width: 1.75rem;
}
.min-w-8 {
  min-width: 2rem;
}
.min-w-80 {
  min-width: 20rem;
}
.min-w-\[112px\] {
  min-width: 112px;
}
.min-w-\[116px\] {
  min-width: 116px;
}
.min-w-\[150px\] {
  min-width: 150px;
}
.min-w-\[15px\] {
  min-width: 15px;
}
.min-w-\[18px\] {
  min-width: 18px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[220px\] {
  min-width: 220px;
}
.min-w-\[50vw\] {
  min-width: 50vw;
}
.min-w-\[76px\] {
  min-width: 76px;
}
.min-w-\[7px\] {
  min-width: 7px;
}
.min-w-\[84px\] {
  min-width: 84px;
}
.min-w-\[90\%\] {
  min-width: 90%;
}
.min-w-\[var\(--radix-popover-trigger-width\)\] {
  min-width: var(--radix-popover-trigger-width);
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.min-w-full {
  min-width: 100%;
}
.min-w-px {
  min-width: 1px;
}
.\!max-w-\[450px\] {
  max-width: 450px !important;
}
.\!max-w-\[460px\] {
  max-width: 460px !important;
}
.\!max-w-\[560px\] {
  max-width: 560px !important;
}
.\!max-w-\[90vw\] {
  max-width: 90vw !important;
}
.\!max-w-screen-sm {
  max-width: 640px !important;
}
.max-w-0 {
  max-width: 0px;
}
.max-w-28 {
  max-width: 7rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-32 {
  max-width: 8rem;
}
.max-w-40 {
  max-width: 10rem;
}
.max-w-48 {
  max-width: 12rem;
}
.max-w-52 {
  max-width: 13rem;
}
.max-w-56 {
  max-width: 14rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-64 {
  max-width: 16rem;
}
.max-w-72 {
  max-width: 18rem;
}
.max-w-80 {
  max-width: 20rem;
}
.max-w-96 {
  max-width: 24rem;
}
.max-w-\[100dvw\] {
  max-width: 100dvw;
}
.max-w-\[128px\] {
  max-width: 128px;
}
.max-w-\[12rem\] {
  max-width: 12rem;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.max-w-\[180px\] {
  max-width: 180px;
}
.max-w-\[220px\] {
  max-width: 220px;
}
.max-w-\[270px\] {
  max-width: 270px;
}
.max-w-\[280px\] {
  max-width: 280px;
}
.max-w-\[28ch\] {
  max-width: 28ch;
}
.max-w-\[30\%\] {
  max-width: 30%;
}
.max-w-\[340px\] {
  max-width: 340px;
}
.max-w-\[40ch\] {
  max-width: 40ch;
}
.max-w-\[410px\] {
  max-width: 410px;
}
.max-w-\[42ch\] {
  max-width: 42ch;
}
.max-w-\[45\%\] {
  max-width: 45%;
}
.max-w-\[50\%\] {
  max-width: 50%;
}
.max-w-\[55px\] {
  max-width: 55px;
}
.max-w-\[720px\] {
  max-width: 720px;
}
.max-w-\[75\%\] {
  max-width: 75%;
}
.max-w-\[760px\] {
  max-width: 760px;
}
.max-w-\[80\%\] {
  max-width: 80%;
}
.max-w-\[85\%\] {
  max-width: 85%;
}
.max-w-\[90\%\] {
  max-width: 90%;
}
.max-w-\[95\%\] {
  max-width: 95%;
}
.max-w-\[95vw\] {
  max-width: 95vw;
}
.max-w-\[967px\] {
  max-width: 967px;
}
.max-w-\[min\(184px\2c 100\%\)\] {
  max-width: min(184px,100%);
}
.max-w-\[min\(220px\2c 100\%\)\] {
  max-width: min(220px,100%);
}
.max-w-\[var\(--radix-select-trigger-width\)\] {
  max-width: var(--radix-select-trigger-width);
}
.max-w-conversation {
  max-width: var(--lf-conversation-max-width);
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-min {
  max-width: -moz-min-content;
  max-width: min-content;
}
.max-w-none {
  max-width: none;
}
.max-w-screen-md {
  max-width: 768px;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.\!flex-1 {
  flex: 1 1 0% !important;
}
.\!flex-none {
  flex: none !important;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-2 {
  flex: 2 2 0%;
}
.flex-3 {
  flex: 3 3 0%;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.grow {
  flex-grow: 1;
}
.basis-1\/2 {
  flex-basis: 50%;
}
.table-auto {
  table-layout: auto;
}
.table-fixed {
  table-layout: fixed;
}
.caption-bottom {
  caption-side: bottom;
}
.border-collapse {
  border-collapse: collapse;
}
.border-separate {
  border-collapse: separate;
}
.origin-bottom {
  transform-origin: bottom;
}
.origin-left {
  transform-origin: left;
}
.origin-top-right {
  transform-origin: top right;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-2 {
  --tw-translate-x: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-45 {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.97\] {
  --tw-scale-x: 0.97;
  --tw-scale-y: 0.97;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-x-0 {
  --tw-scale-x: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform-gpu {
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!animate-none {
  animation: none !important;
}
.animate-\[drafting-pencil_0\.8s_ease-in-out_infinite\] {
  animation: drafting-pencil 0.8s ease-in-out infinite;
}
@keyframes grow-from-top-right {

  0% {
    transform: translate(calc(100% - 0.75rem), calc(-100% + 0.75rem)) scale(0.35);
    opacity: 0;
    grid-template-rows: 0fr;
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    grid-template-rows: 1fr;
  }
}
.animate-grow-from-top-right {
  animation: grow-from-top-right 400ms cubic-bezier(0.4, 1, 0.6, 1) both;
}
@keyframes ping {

  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-secure {

  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}
.animate-pulse-secure {
  animation: pulse-secure 2s ease-in-out infinite;
}
@keyframes shimmer {

  0%, 100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}
.animate-shimmer {
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shrink-to-top-right {

  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    grid-template-rows: 1fr;
  }

  100% {
    transform: translate(calc(100% - 0.75rem), calc(-100% + 0.75rem)) scale(0.35);
    opacity: 0;
    grid-template-rows: 0fr;
  }
}
.animate-shrink-to-top-right {
  animation: shrink-to-top-right 400ms cubic-bezier(0.4, 1, 0.6, 1) both;
}
@keyframes loading {

  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0;
  }
}
.animate-skeleton {
  animation: loading 2.15s linear infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spinner {

  0%, 30%, 100% {
    background-color: hsl(var(--lf-spinner-from));
    transform: scaleY(1);
  }

  15% {
    background-color: hsl(var(--lf-spinner-to));
    transform: scaleY(1.5);
  }
}
.animate-spinner {
  animation: spinner 1.3s infinite ease-in-out;
}
@keyframes spotlight {

  0%, 3% {
    background-position: 100% 0;
  }

  97%, 100% {
    background-position: 0% 0;
  }
}
.animate-spotlight {
  animation: spotlight 2s linear infinite;
}
@keyframes upload-bounce-in {

  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-upload-bounce-in {
  animation: upload-bounce-in 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes upload-row-in {

  0% {
    transform: translateX(12px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-upload-row-in {
  animation: upload-row-in 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes upload-shimmer {

  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}
.animate-upload-shimmer {
  animation: upload-shimmer 2s infinite linear;
}
@keyframes upload-slide-down {

  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
.animate-upload-slide-down {
  animation: upload-slide-down 300ms cubic-bezier(0.4, 0, 1, 1) both;
}
@keyframes upload-slide-up {

  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-upload-slide-up {
  animation: upload-slide-up 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes voice-wave {

  0%, 100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}
.animate-voice-wave {
  animation: voice-wave 1.2s ease-in-out infinite;
}
.cursor-auto {
  cursor: auto;
}
.cursor-col-resize {
  cursor: col-resize;
}
.cursor-default {
  cursor: default;
}
.cursor-ew-resize {
  cursor: ew-resize;
}
.cursor-grab {
  cursor: grab;
}
.cursor-grabbing {
  cursor: grabbing;
}
.cursor-help {
  cursor: help;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-ns-resize {
  cursor: ns-resize;
}
.cursor-pointer {
  cursor: pointer;
}
.touch-none {
  touch-action: none;
}
.touch-manipulation {
  touch-action: manipulation;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.resize-none {
  resize: none;
}
.resize-y {
  resize: vertical;
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-\[110px_1fr\] {
  grid-template-columns: 110px 1fr;
}
.grid-cols-\[1fr_2fr\] {
  grid-template-columns: 1fr 2fr;
}
.grid-cols-\[1fr_auto\] {
  grid-template-columns: 1fr auto;
}
.grid-cols-\[1fr_auto_auto_auto_auto\] {
  grid-template-columns: 1fr auto auto auto auto;
}
.grid-cols-\[20px_1fr\] {
  grid-template-columns: 20px 1fr;
}
.grid-cols-\[40px_minmax\(0\2c 1fr\)_72px_64px_96px\] {
  grid-template-columns: 40px minmax(0,1fr) 72px 64px 96px;
}
.grid-cols-\[auto_1fr_auto\] {
  grid-template-columns: auto 1fr auto;
}
.grid-cols-\[minmax\(0\2c 1fr\)_auto\] {
  grid-template-columns: minmax(0,1fr) auto;
}
.grid-rows-\[0fr\] {
  grid-template-rows: 0fr;
}
.grid-rows-\[1fr\] {
  grid-template-rows: 1fr;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-content-center {
  place-content: center;
}
.place-items-start {
  place-items: start;
}
.place-items-center {
  place-items: center;
}
.content-center {
  align-content: center;
}
.content-start {
  align-content: flex-start;
}
.\!items-start {
  align-items: flex-start !important;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.\!items-center {
  align-items: center !important;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-normal {
  justify-content: normal;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.\!justify-center {
  justify-content: center !important;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.\!gap-1 {
  gap: 0.25rem !important;
}
.gap-0 {
  gap: 0px;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-3\.5 {
  gap: 0.875rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-px {
  gap: 1px;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-0\.5 {
  row-gap: 0.125rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-stroke-frail > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, var(--tw-divide-opacity)));
}
.divide-stroke-weak > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-divide-opacity)));
}
.divide-stroke-weaker > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-divide-opacity)));
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.self-stretch {
  align-self: stretch;
}
.justify-self-end {
  justify-self: end;
}
.justify-self-center {
  justify-self: center;
}
.\!overflow-auto {
  overflow: auto !important;
}
.overflow-auto {
  overflow: auto;
}
.\!overflow-hidden {
  overflow: hidden !important;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.\!overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.\!overflow-x-clip {
  overflow-x: clip !important;
}
.overflow-x-clip {
  overflow-x: clip;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.text-clip {
  text-overflow: clip;
}
.whitespace-normal {
  white-space: normal;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}
.break-normal {
  overflow-wrap: normal;
  word-break: normal;
}
.break-words {
  overflow-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-\[0\.625rem\] {
  border-radius: 0.625rem;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[12px\] {
  border-radius: 12px;
}
.rounded-\[3px\] {
  border-radius: 3px;
}
.rounded-\[4px\] {
  border-radius: 4px;
}
.rounded-\[50\%\] {
  border-radius: 50%;
}
.rounded-\[6px\] {
  border-radius: 6px;
}
.rounded-\[8px\] {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl {
  border-radius: calc(var(--radius) + 2px);
}
.rounded-xs {
  border-radius: calc(var(--radius) - 6px);
}
.rounded-xxl {
  border-radius: calc(var(--radius) + 4px);
}
.rounded-b-md {
  border-bottom-right-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-e-lg {
  border-start-end-radius: var(--radius);
  border-end-end-radius: var(--radius);
}
.rounded-e-md {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.rounded-e-none {
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}
.rounded-s-lg {
  border-start-start-radius: var(--radius);
  border-end-start-radius: var(--radius);
}
.rounded-s-md {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.rounded-s-none {
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}
.rounded-t-md {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.rounded-t-xl {
  border-top-left-radius: calc(var(--radius) + 2px);
  border-top-right-radius: calc(var(--radius) + 2px);
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-\[1\.5px\] {
  border-width: 1.5px;
}
.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-e {
  border-inline-end-width: 1px;
}
.border-e-0 {
  border-inline-end-width: 0px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-s {
  border-inline-start-width: 1px;
}
.border-s-0 {
  border-inline-start-width: 0px;
}
.border-s-2 {
  border-inline-start-width: 2px;
}
.border-s-4 {
  border-inline-start-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.\!border-stroke-weaker {
  --tw-border-opacity: 1 !important;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity))) !important;
}
.\!border-transparent {
  border-color: transparent !important;
}
.border-\[\#888\] {
  --tw-border-opacity: 1;
  border-color: rgb(136 136 136 / var(--tw-border-opacity, 1));
}
.border-\[\#bbb\] {
  --tw-border-opacity: 1;
  border-color: rgb(187 187 187 / var(--tw-border-opacity, 1));
}
.border-\[\#ccc\] {
  --tw-border-opacity: 1;
  border-color: rgb(204 204 204 / var(--tw-border-opacity, 1));
}
.border-\[\#d0cdc7\] {
  --tw-border-opacity: 1;
  border-color: rgb(208 205 199 / var(--tw-border-opacity, 1));
}
.border-fill-brand {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-border-opacity)));
}
.border-fill-error-weaker {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-error-weaker) / var(--lf-fill-error-weaker-opacity, var(--tw-border-opacity)));
}
.border-fill-highlight-strongest {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-highlight-strongest) / var(--lf-fill-highlight-strongest-opacity, var(--tw-border-opacity)));
}
.border-fill-invert {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-border-opacity)));
}
.border-fill-maximal {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-border-opacity)));
}
.border-fill-success-weaker {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-success-weaker) / var(--lf-fill-success-weaker-opacity, var(--tw-border-opacity)));
}
.border-fill-warning-weaker {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-fill-warning-weaker) / var(--lf-fill-warning-weaker-opacity, var(--tw-border-opacity)));
}
.border-partner-qistas\/30 {
  border-color: hsl(var(--lf-partner-qistas) / 0.3);
}
.border-risk-fill-high {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, var(--tw-border-opacity)));
}
.border-risk-fill-low {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-risk-fill-low) / var(--lf-risk-fill-low-opacity, var(--tw-border-opacity)));
}
.border-risk-fill-mid {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-risk-fill-mid) / var(--lf-risk-fill-mid-opacity, var(--tw-border-opacity)));
}
.border-stroke-brand {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-brand) / var(--lf-stroke-brand-opacity, var(--tw-border-opacity)));
}
.border-stroke-disabled {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-disabled) / var(--lf-stroke-disabled-opacity, var(--tw-border-opacity)));
}
.border-stroke-error-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-strong) / var(--lf-stroke-error-strong-opacity, var(--tw-border-opacity)));
}
.border-stroke-error-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-weak) / var(--lf-stroke-error-weak-opacity, var(--tw-border-opacity)));
}
.border-stroke-error-weakest {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-weakest) / var(--lf-stroke-error-weakest-opacity, var(--tw-border-opacity)));
}
.border-stroke-focus-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-strong) / var(--lf-stroke-focus-strong-opacity, var(--tw-border-opacity)));
}
.border-stroke-focus-strongest {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-strongest) / var(--lf-stroke-focus-strongest-opacity, var(--tw-border-opacity)));
}
.border-stroke-focus-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-weak) / var(--lf-stroke-focus-weak-opacity, var(--tw-border-opacity)));
}
.border-stroke-frail {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, var(--tw-border-opacity)));
}
.border-stroke-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
.border-stroke-success-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-border-opacity)));
}
.border-stroke-success-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-weak) / var(--lf-stroke-success-weak-opacity, var(--tw-border-opacity)));
}
.border-stroke-success-weakest {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-weakest) / var(--lf-stroke-success-weakest-opacity, var(--tw-border-opacity)));
}
.border-stroke-warning-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-warning-strong) / var(--lf-stroke-warning-strong-opacity, var(--tw-border-opacity)));
}
.border-stroke-warning-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-warning-weak) / var(--lf-stroke-warning-weak-opacity, var(--tw-border-opacity)));
}
.border-stroke-warning-weakest {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-warning-weakest) / var(--lf-stroke-warning-weakest-opacity, var(--tw-border-opacity)));
}
.border-stroke-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.border-stroke-weaker {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.border-stroke-weaker\/50 {
  border-color: hsl(var(--lf-stroke-weaker) / 0.5);
}
.border-transparent {
  border-color: transparent;
}
.border-b-fill-invert {
  --tw-border-opacity: 1;
  border-bottom-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-border-opacity)));
}
.border-s-\[\#8A9BFF\] {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(138 155 255 / var(--tw-border-opacity, 1));
}
.border-s-transparent {
  border-inline-start-color: transparent;
}
.border-t-icon-weak {
  --tw-border-opacity: 1;
  border-top-color: hsl(var(--lf-icon-weak) / var(--lf-icon-weak-opacity, var(--tw-border-opacity)));
}
.border-t-transparent {
  border-top-color: transparent;
}
.\!bg-fill-error-strong {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-error-strong) / var(--lf-fill-error-strong-opacity, var(--tw-bg-opacity))) !important;
}
.\!bg-fill-maximal {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity))) !important;
}
.\!bg-fill-reference\/10 {
  background-color: hsl(var(--lf-fill-reference) / 0.1) !important;
}
.\!bg-fill-success-strong {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-success-strong) / var(--lf-fill-success-strong-opacity, var(--tw-bg-opacity))) !important;
}
.\!bg-transparent {
  background-color: transparent !important;
}
.bg-\[\#16A34A\] {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-\[\#2563EB\] {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-\[\#D4DB23\] {
  --tw-bg-opacity: 1;
  background-color: rgb(212 219 35 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E3F2FF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(227 242 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EFF6FF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FEFFE8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 255 232 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.4\)\] {
  background-color: rgba(0,0,0,0.4);
}
.bg-\[rgba\(17\2c 19\2c 22\2c 0\.03\)\] {
  background-color: rgba(17,19,22,0.03);
}
.bg-\[rgba\(17\2c 19\2c 22\2c 0\.05\)\] {
  background-color: rgba(17,19,22,0.05);
}
.bg-\[rgba\(17\2c 19\2c 22\2c 0\.06\)\] {
  background-color: rgba(17,19,22,0.06);
}
.bg-\[rgba\(17\2c 19\2c 22\2c 0\.08\)\] {
  background-color: rgba(17,19,22,0.08);
}
.bg-\[rgba\(204\2c 212\2c 255\2c 0\.18\)\] {
  background-color: rgba(204,212,255,0.18);
}
.bg-\[rgba\(22\2c 163\2c 74\2c 0\.12\)\] {
  background-color: rgba(22,163,74,0.12);
}
.bg-\[rgba\(245\2c 158\2c 11\2c 0\.14\)\] {
  background-color: rgba(245,158,11,0.14);
}
.bg-carousel-dot-active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-carousel-dot-active) / var(--lf-carousel-dot-active-opacity, var(--tw-bg-opacity)));
}
.bg-carousel-dot-inactive {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-carousel-dot-inactive) / var(--lf-carousel-dot-inactive-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-constant-dark {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-constant-dark) / var(--lf-content-body-constant-dark-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-constant-dark\/20 {
  background-color: hsl(var(--lf-content-body-constant-dark) / 0.2);
}
.bg-content-body-constant-light {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-constant-light) / var(--lf-content-body-constant-light-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-error {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-invert {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-invert) / var(--lf-content-body-invert-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-success {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-success) / var(--lf-content-body-success-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-tags {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-tags) / var(--lf-content-body-tags-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-warning {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-warning) / var(--lf-content-body-warning-opacity, var(--tw-bg-opacity)));
}
.bg-content-body-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-brand {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.bg-fill-brand\/10 {
  background-color: hsl(var(--lf-fill-brand) / 0.1);
}
.bg-fill-error-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-strong) / var(--lf-fill-error-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-error-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-strongest) / var(--lf-fill-error-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-error-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weak) / var(--lf-fill-error-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-error-weaker {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weaker) / var(--lf-fill-error-weaker-opacity, var(--tw-bg-opacity)));
}
.bg-fill-error-weaker\/40 {
  background-color: hsl(var(--lf-fill-error-weaker) / 0.4);
}
.bg-fill-error-weakest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weakest) / var(--lf-fill-error-weakest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-error-weakest\/5 {
  background-color: hsl(var(--lf-fill-error-weakest) / 0.05);
}
.bg-fill-highlight-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-strong) / var(--lf-fill-highlight-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-highlight-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-strongest) / var(--lf-fill-highlight-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-highlight-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-weak) / var(--lf-fill-highlight-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-stronger {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-superstrong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-superstrong) / var(--lf-fill-hover-superstrong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-hover-weak\/40 {
  background-color: hsl(var(--lf-fill-hover-weak) / 0.4);
}
.bg-fill-invert {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-bg-opacity)));
}
.bg-fill-maximal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
.bg-fill-maximal\/80 {
  background-color: hsl(var(--lf-fill-maximal) / 0.8);
}
.bg-fill-pressed-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strong) / var(--lf-fill-pressed-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-pressed-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-weak) / var(--lf-fill-pressed-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-reference\/10 {
  background-color: hsl(var(--lf-fill-reference) / 0.1);
}
.bg-fill-reference\/15 {
  background-color: hsl(var(--lf-fill-reference) / 0.15);
}
.bg-fill-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-strong\/50 {
  background-color: hsl(var(--lf-fill-strong) / 0.5);
}
.bg-fill-stronger {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-stronger) / var(--lf-fill-stronger-opacity, var(--tw-bg-opacity)));
}
.bg-fill-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-success-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-strong) / var(--lf-fill-success-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-success-strong\/20 {
  background-color: hsl(var(--lf-fill-success-strong) / 0.2);
}
.bg-fill-success-weaker {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-weaker) / var(--lf-fill-success-weaker-opacity, var(--tw-bg-opacity)));
}
.bg-fill-success-weaker\/40 {
  background-color: hsl(var(--lf-fill-success-weaker) / 0.4);
}
.bg-fill-success-weakest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-weakest) / var(--lf-fill-success-weakest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-superstrong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-superstrong) / var(--lf-fill-superstrong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-warning-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-warning-strong) / var(--lf-fill-warning-strong-opacity, var(--tw-bg-opacity)));
}
.bg-fill-warning-weaker {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-warning-weaker) / var(--lf-fill-warning-weaker-opacity, var(--tw-bg-opacity)));
}
.bg-fill-warning-weaker\/40 {
  background-color: hsl(var(--lf-fill-warning-weaker) / 0.4);
}
.bg-fill-warning-weakest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-warning-weakest) / var(--lf-fill-warning-weakest-opacity, var(--tw-bg-opacity)));
}
.bg-fill-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.bg-fill-weaker {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weaker) / var(--lf-fill-weaker-opacity, var(--tw-bg-opacity)));
}
.bg-icon-disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-icon-disabled) / var(--lf-icon-disabled-opacity, var(--tw-bg-opacity)));
}
.bg-icon-error {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-icon-error) / var(--lf-icon-error-opacity, var(--tw-bg-opacity)));
}
.bg-icon-info\/15 {
  background-color: hsl(var(--lf-icon-info) / 0.15);
}
.bg-icon-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-icon-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-icon-weak) / var(--lf-icon-weak-opacity, var(--tw-bg-opacity)));
}
.bg-knowledge-icon-bg-clauses {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-knowledge-icon-bg-clauses) / var(--lf-knowledge-icon-bg-clauses-opacity, var(--tw-bg-opacity)));
}
.bg-knowledge-icon-bg-document {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-knowledge-icon-bg-document) / var(--lf-knowledge-icon-bg-document-opacity, var(--tw-bg-opacity)));
}
.bg-knowledge-icon-bg-email {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-knowledge-icon-bg-email) / var(--lf-knowledge-icon-bg-email-opacity, var(--tw-bg-opacity)));
}
.bg-knowledge-icon-bg-qa {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-knowledge-icon-bg-qa) / var(--lf-knowledge-icon-bg-qa-opacity, var(--tw-bg-opacity)));
}
.bg-knowledge-icon-bg-webSource {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-knowledge-icon-bg-webSource) / var(--lf-knowledge-icon-bg-webSource-opacity, var(--tw-bg-opacity)));
}
.bg-navigation-fill-press {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-navigation-fill-press) / var(--lf-navigation-fill-press-opacity, var(--tw-bg-opacity)));
}
.bg-partner-qistas\/5 {
  background-color: hsl(var(--lf-partner-qistas) / 0.05);
}
.bg-risk-fill-high {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, var(--tw-bg-opacity)));
}
.bg-risk-fill-high\/10 {
  background-color: hsl(var(--lf-risk-fill-high) / 0.1);
}
.bg-risk-fill-low {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-low) / var(--lf-risk-fill-low-opacity, var(--tw-bg-opacity)));
}
.bg-risk-fill-mid {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-mid) / var(--lf-risk-fill-mid-opacity, var(--tw-bg-opacity)));
}
.bg-risk-fill-neutral {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-neutral) / var(--lf-risk-fill-neutral-opacity, var(--tw-bg-opacity)));
}
.bg-risk-glow-neutral\/30 {
  background-color: hsl(var(--lf-risk-glow-neutral) / 0.3);
}
.bg-stroke-error-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-error-weak) / var(--lf-stroke-error-weak-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-focus-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-focus-strong) / var(--lf-stroke-focus-strong-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-focus-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-focus-strongest) / var(--lf-stroke-focus-strongest-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-frail {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-success-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-bg-opacity)));
}
.bg-stroke-weaker {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-bg-opacity)));
}
.bg-surface-base {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-base) / var(--lf-surface-base-opacity, var(--tw-bg-opacity)));
}
.bg-surface-card {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-card) / var(--lf-surface-card-opacity, var(--tw-bg-opacity)));
}
.bg-surface-invert {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-invert) / var(--lf-surface-invert-opacity, var(--tw-bg-opacity)));
}
.bg-surface-main {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-main) / var(--lf-surface-main-opacity, var(--tw-bg-opacity)));
}
.bg-surface-main\/90 {
  background-color: hsl(var(--lf-surface-main) / 0.9);
}
.bg-surface-modal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
.bg-surface-nav {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-nav) / var(--lf-surface-nav-opacity, var(--tw-bg-opacity)));
}
.bg-surface-overlay {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-overlay) / var(--lf-surface-overlay-opacity, var(--tw-bg-opacity)));
}
.bg-surface-white {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
.bg-transparent {
  background-color: transparent;
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[rgba\(11\2c 30\2c 58\2c 0\.85\)\] {
  --tw-gradient-from: rgba(11,30,58,0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(11, 30, 58, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-dropzone-start {
  --tw-gradient-from: hsl(var(--lf-dropzone-start) / var(--lf-dropzone-start-opacity, 1)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--lf-dropzone-start) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-fill-maximal {
  --tw-gradient-from: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, 1)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--lf-fill-maximal) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-fill-strongest {
  --tw-gradient-from: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, 1)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--lf-fill-strongest) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-stroke-weaker {
  --tw-gradient-from: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, 1)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--lf-stroke-weaker) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-surface-nav {
  --tw-gradient-from: hsl(var(--lf-surface-nav) / var(--lf-surface-nav-opacity, 1)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--lf-surface-nav) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-0\% {
  --tw-gradient-from-position: 0%;
}
.from-30\% {
  --tw-gradient-from-position: 30%;
}
.from-60\% {
  --tw-gradient-from-position: 60%;
}
.via-\[rgba\(11\2c 30\2c 58\2c 0\.45\)\] {
  --tw-gradient-to: rgba(11, 30, 58, 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(11,30,58,0.45) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-fill-maximal {
  --tw-gradient-to: hsl(var(--lf-fill-maximal) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, 1)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-stroke-frail {
  --tw-gradient-to: hsl(var(--lf-stroke-frail) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, 1)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-stroke-strong {
  --tw-gradient-to: hsl(var(--lf-stroke-strong) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, 1)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-stroke-weak {
  --tw-gradient-to: hsl(var(--lf-stroke-weak) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-25\% {
  --tw-gradient-via-position: 25%;
}
.via-50\% {
  --tw-gradient-via-position: 50%;
}
.via-75\% {
  --tw-gradient-via-position: 75%;
}
.to-dropzone-stop\/20 {
  --tw-gradient-to: hsl(var(--lf-dropzone-stop) / 0.2) var(--tw-gradient-to-position);
}
.to-fill-brand\/15 {
  --tw-gradient-to: hsl(var(--lf-fill-brand) / 0.15) var(--tw-gradient-to-position);
}
.to-fill-hover-weak {
  --tw-gradient-to: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, 1)) var(--tw-gradient-to-position);
}
.to-stroke-strongest {
  --tw-gradient-to: hsl(var(--lf-stroke-strongest) / var(--lf-stroke-strongest-opacity, 1)) var(--tw-gradient-to-position);
}
.to-surface-nav {
  --tw-gradient-to: hsl(var(--lf-surface-nav) / var(--lf-surface-nav-opacity, 1)) var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-100\% {
  --tw-gradient-to-position: 100%;
}
.bg-\[length\:200\%_100\%\] {
  background-size: 200% 100%;
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.fill-fill-invert {
  fill: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, 1));
}
.fill-icon-strongest {
  fill: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, 1));
}
.fill-none {
  fill: none;
}
.fill-risk-fill-high {
  fill: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, 1));
}
.fill-risk-fill-low {
  fill: hsl(var(--lf-risk-fill-low) / var(--lf-risk-fill-low-opacity, 1));
}
.fill-risk-fill-mid {
  fill: hsl(var(--lf-risk-fill-mid) / var(--lf-risk-fill-mid-opacity, 1));
}
.fill-surface-invert {
  fill: hsl(var(--lf-surface-invert) / var(--lf-surface-invert-opacity, 1));
}
.fill-transparent {
  fill: transparent;
}
.stroke-icon-strongest {
  stroke: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, 1));
}
.stroke-risk-fill-high {
  stroke: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, 1));
}
.stroke-risk-fill-low {
  stroke: hsl(var(--lf-risk-fill-low) / var(--lf-risk-fill-low-opacity, 1));
}
.stroke-risk-fill-mid {
  stroke: hsl(var(--lf-risk-fill-mid) / var(--lf-risk-fill-mid-opacity, 1));
}
.stroke-stroke-weaker {
  stroke: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, 1));
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-0\.5 {
  padding: 0.125rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[2px\] {
  padding: 2px;
}
.p-\[3px\] {
  padding: 3px;
}
.p-body {
  padding: var(--lf-body-padding);
}
.p-px {
  padding: 1px;
}
.\!px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.\!px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.\!py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[6px\] {
  padding-left: 6px;
  padding-right: 6px;
}
.px-content-x {
  padding-left: var(--lf-content-padding-x);
  padding-right: var(--lf-content-padding-x);
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[60px\] {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-\[7px\] {
  padding-top: 7px;
  padding-bottom: 7px;
}
.py-content-y {
  padding-top: var(--lf-content-padding-y);
  padding-bottom: var(--lf-content-padding-y);
}
.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-14 {
  padding-bottom: 3.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-3\.5 {
  padding-bottom: 0.875rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pe-1 {
  padding-inline-end: 0.25rem;
}
.pe-1\.5 {
  padding-inline-end: 0.375rem;
}
.pe-10 {
  padding-inline-end: 2.5rem;
}
.pe-12 {
  padding-inline-end: 3rem;
}
.pe-16 {
  padding-inline-end: 4rem;
}
.pe-2 {
  padding-inline-end: 0.5rem;
}
.pe-20 {
  padding-inline-end: 5rem;
}
.pe-24 {
  padding-inline-end: 6rem;
}
.pe-28 {
  padding-inline-end: 7rem;
}
.pe-3 {
  padding-inline-end: 0.75rem;
}
.pe-4 {
  padding-inline-end: 1rem;
}
.pe-40 {
  padding-inline-end: 10rem;
}
.pe-5 {
  padding-inline-end: 1.25rem;
}
.pe-6 {
  padding-inline-end: 1.5rem;
}
.pe-8 {
  padding-inline-end: 2rem;
}
.pe-9 {
  padding-inline-end: 2.25rem;
}
.ps-0 {
  padding-inline-start: 0px;
}
.ps-0\.5 {
  padding-inline-start: 0.125rem;
}
.ps-1\.5 {
  padding-inline-start: 0.375rem;
}
.ps-10 {
  padding-inline-start: 2.5rem;
}
.ps-2 {
  padding-inline-start: 0.5rem;
}
.ps-3 {
  padding-inline-start: 0.75rem;
}
.ps-4 {
  padding-inline-start: 1rem;
}
.ps-5 {
  padding-inline-start: 1.25rem;
}
.ps-6 {
  padding-inline-start: 1.5rem;
}
.ps-8 {
  padding-inline-start: 2rem;
}
.ps-\[22px\] {
  padding-inline-start: 22px;
}
.ps-\[50px\] {
  padding-inline-start: 50px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-0\.5 {
  padding-top: 0.125rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-2\.5 {
  padding-top: 0.625rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-3\.5 {
  padding-top: 0.875rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.align-baseline {
  vertical-align: baseline;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.font-writer {
  font-family: Legal Gothic, serif;
}
.\!text-body-small-light {
  font-size: round(calc(var(--font-scale) * 14px), 1px) !important;
  line-height: round(calc(var(--font-scale) * 20px), 1px) !important;
  font-weight: 300 !important;
}
.\!text-caption {
  font-size: round(calc(var(--font-scale) * 12px), 1px) !important;
  line-height: round(calc(var(--font-scale) * 16px), 1px) !important;
  font-weight: 400 !important;
}
.text-\[0\.75rem\] {
  font-size: 0.75rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[22px\] {
  font-size: 22px;
}
.text-\[8px\] {
  font-size: 8px;
}
.text-\[9px\] {
  font-size: 9px;
}
.text-body {
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
}
.text-body-large {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 24px), 1px);
  font-weight: 400;
}
.text-body-large-light {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 24px), 1px);
  font-weight: 300;
}
.text-body-large-semibold {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 24px), 1px);
  font-weight: 600;
}
.text-body-light {
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 300;
}
.text-body-semibold {
  font-size: round(calc(var(--font-scale) * 16px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
}
.text-body-small {
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
}
.text-body-small-bold {
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 700;
}
.text-body-small-light {
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 300;
}
.text-body-small-semibold {
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 600;
}
.text-caption {
  font-size: round(calc(var(--font-scale) * 12px), 1px);
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 400;
}
.text-caption-light {
  font-size: round(calc(var(--font-scale) * 12px), 1px);
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 300;
}
.text-caption-semibold {
  font-size: round(calc(var(--font-scale) * 12px), 1px);
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 600;
}
.text-display {
  font-size: round(calc(var(--font-scale) * 64px), 1px);
  line-height: round(calc(var(--font-scale) * 72px), 1px);
  font-weight: 400;
}
.text-heading {
  font-size: round(calc(var(--font-scale) * 24px), 1px);
  line-height: round(calc(var(--font-scale) * 32px), 1px);
  font-weight: 400;
}
.text-heading-light {
  font-size: round(calc(var(--font-scale) * 24px), 1px);
  line-height: round(calc(var(--font-scale) * 32px), 1px);
  font-weight: 300;
}
.text-heading-semibold {
  font-size: round(calc(var(--font-scale) * 24px), 1px);
  line-height: round(calc(var(--font-scale) * 32px), 1px);
  font-weight: 600;
}
.text-heading2 {
  font-size: round(calc(var(--font-scale) * 32px), 1px);
  line-height: round(calc(var(--font-scale) * 40px), 1px);
  font-weight: 400;
}
.text-heading3 {
  font-size: round(calc(var(--font-scale) * 24px), 1px);
  line-height: round(calc(var(--font-scale) * 40px), 1px);
  font-weight: 400;
}
.text-subheading {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 28px), 1px);
  font-weight: 400;
}
.text-subheading-light {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 28px), 1px);
  font-weight: 300;
}
.text-subheading-semibold {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 28px), 1px);
  font-weight: 600;
}
.text-title {
  font-size: round(calc(var(--font-scale) * 48px), 1px);
  line-height: round(calc(var(--font-scale) * 56px), 1px);
  font-weight: 400;
}
.\!font-medium {
  font-weight: 500 !important;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.\!leading-none {
  line-height: 1 !important;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.\!text-\[\#111316\] {
  --tw-text-opacity: 1 !important;
  color: rgb(17 19 22 / var(--tw-text-opacity, 1)) !important;
}
.\!text-content-body-weak {
  --tw-text-opacity: 1 !important;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity))) !important;
}
.text-\[\#0e6a3c\] {
  --tw-text-opacity: 1;
  color: rgb(14 106 60 / var(--tw-text-opacity, 1));
}
.text-\[\#111316\] {
  --tw-text-opacity: 1;
  color: rgb(17 19 22 / var(--tw-text-opacity, 1));
}
.text-\[\#15803D\] {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-\[\#1A4D73\] {
  --tw-text-opacity: 1;
  color: rgb(26 77 115 / var(--tw-text-opacity, 1));
}
.text-\[\#1f4ba8\] {
  --tw-text-opacity: 1;
  color: rgb(31 75 168 / var(--tw-text-opacity, 1));
}
.text-\[\#2563EB\] {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-\[\#444\] {
  --tw-text-opacity: 1;
  color: rgb(68 68 68 / var(--tw-text-opacity, 1));
}
.text-\[\#666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.text-\[\#6B6D0E\] {
  --tw-text-opacity: 1;
  color: rgb(107 109 14 / var(--tw-text-opacity, 1));
}
.text-\[\#D97706\] {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-\[inherit\] {
  color: inherit;
}
.text-content-body {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}
.text-content-body-constant-dark {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-dark) / var(--lf-content-body-constant-dark-opacity, var(--tw-text-opacity)));
}
.text-content-body-constant-light {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-light) / var(--lf-content-body-constant-light-opacity, var(--tw-text-opacity)));
}
.text-content-body-constant-light\/80 {
  color: hsl(var(--lf-content-body-constant-light) / 0.8);
}
.text-content-body-disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-disabled) / var(--lf-content-body-disabled-opacity, var(--tw-text-opacity)));
}
.text-content-body-error {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, var(--tw-text-opacity)));
}
.text-content-body-highlight {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-highlight) / var(--lf-content-body-highlight-opacity, var(--tw-text-opacity)));
}
.text-content-body-invert {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-invert) / var(--lf-content-body-invert-opacity, var(--tw-text-opacity)));
}
.text-content-body-link-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-link-strong) / var(--lf-content-body-link-strong-opacity, var(--tw-text-opacity)));
}
.text-content-body-link-weak {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-link-weak) / var(--lf-content-body-link-weak-opacity, var(--tw-text-opacity)));
}
.text-content-body-placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-placeholder) / var(--lf-content-body-placeholder-opacity, var(--tw-text-opacity)));
}
.text-content-body-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, var(--tw-text-opacity)));
}
.text-content-body-success {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-success) / var(--lf-content-body-success-opacity, var(--tw-text-opacity)));
}
.text-content-body-tags {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-tags) / var(--lf-content-body-tags-opacity, var(--tw-text-opacity)));
}
.text-content-body-warning {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-warning) / var(--lf-content-body-warning-opacity, var(--tw-text-opacity)));
}
.text-content-body-weak {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity)));
}
.text-content-heading {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-heading) / var(--lf-content-heading-opacity, var(--tw-text-opacity)));
}
.text-fill-error-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-fill-error-strong) / var(--lf-fill-error-strong-opacity, var(--tw-text-opacity)));
}
.text-fill-maximal {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-text-opacity)));
}
.text-fill-success-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-fill-success-strong) / var(--lf-fill-success-strong-opacity, var(--tw-text-opacity)));
}
.text-fill-warning-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-fill-warning-strong) / var(--lf-fill-warning-strong-opacity, var(--tw-text-opacity)));
}
.text-fill-weaker {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-fill-weaker) / var(--lf-fill-weaker-opacity, var(--tw-text-opacity)));
}
.text-icon-constant {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-constant) / var(--lf-icon-constant-opacity, var(--tw-text-opacity)));
}
.text-icon-error {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-error) / var(--lf-icon-error-opacity, var(--tw-text-opacity)));
}
.text-icon-highlight {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-highlight) / var(--lf-icon-highlight-opacity, var(--tw-text-opacity)));
}
.text-icon-info {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-info) / var(--lf-icon-info-opacity, var(--tw-text-opacity)));
}
.text-icon-strong {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-strong) / var(--lf-icon-strong-opacity, var(--tw-text-opacity)));
}
.text-icon-strongest {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, var(--tw-text-opacity)));
}
.text-icon-success {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-success) / var(--lf-icon-success-opacity, var(--tw-text-opacity)));
}
.text-icon-weak {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-weak) / var(--lf-icon-weak-opacity, var(--tw-text-opacity)));
}
.text-icon-weaker {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-weaker) / var(--lf-icon-weaker-opacity, var(--tw-text-opacity)));
}
.text-navigation-text {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-navigation-text) / var(--lf-navigation-text-opacity, var(--tw-text-opacity)));
}
.text-risk-fill-high {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, var(--tw-text-opacity)));
}
.text-stroke-warning-strongest {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-stroke-warning-strongest) / var(--lf-stroke-warning-strongest-opacity, var(--tw-text-opacity)));
}
.text-stroke-weaker {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-text-opacity)));
}
.text-surface-main {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-surface-main) / var(--lf-surface-main-opacity, var(--tw-text-opacity)));
}
.text-surface-nav {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-surface-nav) / var(--lf-surface-nav-opacity, var(--tw-text-opacity)));
}
.text-surface-white {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-text-opacity)));
}
.underline {
  text-decoration-line: underline;
}
.line-through {
  text-decoration-line: line-through;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-stroke-error-strong {
  text-decoration-color: hsl(var(--lf-stroke-error-strong) / var(--lf-stroke-error-strong-opacity, 1));
}
.decoration-stroke-weak {
  text-decoration-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.underline-offset-2 {
  text-underline-offset: 2px;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.underline-offset-8 {
  text-underline-offset: 8px;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-55 {
  opacity: 0.55;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_12px_28px_rgba\(17\2c 19\2c 22\2c 0\.14\)\2c 0_1px_3px_rgba\(17\2c 19\2c 22\2c 0\.08\)\] {
  --tw-shadow: 0 12px 28px rgba(17,19,22,0.14),0 1px 3px rgba(17,19,22,0.08);
  --tw-shadow-colored: 0 12px 28px var(--tw-shadow-color), 0 1px 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_1px_2px_rgba\(17\2c 19\2c 22\2c 0\.04\)\] {
  --tw-shadow: 0 1px 2px rgba(17,19,22,0.04);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_1px_2px_rgba\(17\2c 19\2c 22\2c 0\.06\)\] {
  --tw-shadow: 0 1px 2px rgba(17,19,22,0.06);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_1px_2px_rgba\(17\2c 19\2c 22\2c 0\.08\)\] {
  --tw-shadow: 0 1px 2px rgba(17,19,22,0.08);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_8px_18px_rgba\(17\2c 19\2c 22\2c 0\.12\)\2c 0_1px_2px_rgba\(17\2c 19\2c 22\2c 0\.08\)\] {
  --tw-shadow: 0 8px 18px rgba(17,19,22,0.12),0 1px 2px rgba(17,19,22,0.08);
  --tw-shadow-colored: 0 8px 18px var(--tw-shadow-color), 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_4px_34px_0px_rgba\(0\2c 0\2c 0\2c 0\.06\)\] {
  --tw-shadow: 0px 4px 34px 0px rgba(0,0,0,0.06);
  --tw-shadow-colored: 0px 4px 34px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-node-error {
  --tw-shadow: 0 0 12px 0 rgba(220, 38, 38, 0.16), 0 0 0 6px rgba(220, 38, 38, 0.12);
  --tw-shadow-colored: 0 0 12px 0 var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-node-failed {
  --tw-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2), 0 0 12px 4px rgba(239, 68, 68, 0.15);
  --tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color), 0 0 12px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-node-selected {
  --tw-shadow: 0 0 0 6px rgba(0, 0, 0, 0.06), 0 0 16px 4px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0 0 0 6px var(--tw-shadow-color), 0 0 16px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-overlay {
  --tw-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.04), 0 20px 24px -4px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0 8px 8px -4px var(--tw-shadow-color), 0 20px 24px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-risk-glow-high {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-high) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-high) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-risk-glow-low {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-low) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-low) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-risk-glow-mid {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-mid) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-mid) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-risk-glow-neutral {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-neutral) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-neutral) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-table-border {
  --tw-shadow: 0 1px 0 hsl(var(--lf-stroke-weaker));
  --tw-shadow-colored: 0 1px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-risk-glow-high {
  --tw-shadow-color: hsl(var(--lf-risk-glow-high) / var(--lf-risk-glow-high-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-risk-glow-low {
  --tw-shadow-color: hsl(var(--lf-risk-glow-low) / var(--lf-risk-glow-low-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-risk-glow-mid {
  --tw-shadow-color: hsl(var(--lf-risk-glow-mid) / var(--lf-risk-glow-mid-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-risk-glow-neutral {
  --tw-shadow-color: hsl(var(--lf-risk-glow-neutral) / var(--lf-risk-glow-neutral-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.\!outline-none {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.outline-dashed {
  outline-style: dashed;
}
.outline-1 {
  outline-width: 1px;
}
.outline-offset-\[-1px\] {
  outline-offset: -1px;
}
.outline-offset-\[1\.5rem\] {
  outline-offset: 1.5rem;
}
.outline-stroke-weak {
  outline-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.outline-stroke-weaker {
  outline-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, 1));
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset {
  --tw-ring-inset: inset;
}
.ring-stroke-focus-weak {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-focus-weak) / var(--lf-stroke-focus-weak-opacity, var(--tw-ring-opacity)));
}
.ring-stroke-frail {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, var(--tw-ring-opacity)));
}
.ring-stroke-warning-weak {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-warning-weak) / var(--lf-stroke-warning-weak-opacity, var(--tw-ring-opacity)));
}
.ring-stroke-weak {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-ring-opacity)));
}
.ring-stroke-weaker {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-ring-opacity)));
}
.ring-stroke-weaker\/20 {
  --tw-ring-color: hsl(var(--lf-stroke-weaker) / 0.2);
}
.ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.ring-offset-fill-maximal {
  --tw-ring-offset-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, 1));
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[3px\] {
  --tw-blur: blur(3px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm {
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-\[2px\] {
  --tw-backdrop-blur: blur(2px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-none {
  --tw-backdrop-blur:  ;
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[background-color\2c border-color\2c box-shadow\] {
  transition-property: background-color,border-color,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[border-color\2c box-shadow\2c opacity\2c filter\] {
  transition-property: border-color,box-shadow,opacity,filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[border-color\2c box-shadow\] {
  transition-property: border-color,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[grid-template-columns\2c padding\2c gap\2c color\2c width\2c height\] {
  transition-property: grid-template-columns,padding,gap,color,width,height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[grid-template-rows\] {
  transition-property: grid-template-rows;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[height\] {
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[inset-inline-end\] {
  transition-property: inset-inline-end;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[left\2c right\2c width\] {
  transition-property: left,right,width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[margin\] {
  transition-property: margin;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[max-width\2c opacity\] {
  transition-property: max-width,opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[max-width\] {
  transition-property: max-width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[opacity\2c transform\] {
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[padding\] {
  transition-property: padding;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c background-color\] {
  transition-property: width,background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c margin\] {
  transition-property: width,margin;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c min-width\2c padding\] {
  transition-property: width,min-width,padding;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c min-width\] {
  transition-property: width,min-width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c opacity\2c margin\] {
  transition-property: width,opacity,margin;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c padding\2c background-color\2c box-shadow\] {
  transition-property: width,padding,background-color,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\] {
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-none {
  transition-property: none;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-0 {
  transition-delay: 0s;
}
.delay-150 {
  transition-delay: 150ms;
}
.duration-0 {
  transition-duration: 0s;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear {
  transition-timing-function: linear;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform {
  will-change: transform;
}
.contain-none {
  contain: none;
}
@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in {
  --tw-enter-opacity: 0;
}
.fade-in-0 {
  --tw-enter-opacity: 0;
}
.fade-in-80 {
  --tw-enter-opacity: 0.8;
}
.zoom-in {
  --tw-enter-scale: 0;
}
.zoom-in-50 {
  --tw-enter-scale: .5;
}
.zoom-out {
  --tw-exit-scale: 0;
}
.slide-in-from-bottom {
  --tw-enter-translate-y: 100%;
}
.slide-in-from-bottom-2 {
  --tw-enter-translate-y: 0.5rem;
}
.slide-in-from-left {
  --tw-enter-translate-x: -100%;
}
.slide-in-from-left-2 {
  --tw-enter-translate-x: -0.5rem;
}
.slide-in-from-right {
  --tw-enter-translate-x: 100%;
}
.slide-in-from-right-1 {
  --tw-enter-translate-x: 0.25rem;
}
.slide-in-from-top-1 {
  --tw-enter-translate-y: -0.25rem;
}
.slide-in-from-top-2 {
  --tw-enter-translate-y: -0.5rem;
}
.duration-0 {
  animation-duration: 0s;
}
.duration-100 {
  animation-duration: 100ms;
}
.duration-1000 {
  animation-duration: 1000ms;
}
.duration-150 {
  animation-duration: 150ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.duration-500 {
  animation-duration: 500ms;
}
.duration-700 {
  animation-duration: 700ms;
}
.delay-0 {
  animation-delay: 0s;
}
.delay-150 {
  animation-delay: 150ms;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear {
  animation-timing-function: linear;
}
.ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
.paused {
  animation-play-state: paused;
}
.font-writer {
  font-family: Legal Gothic, serif;
  text-transform: uppercase;
  font-variation-settings: 'wght' 500;
}
.mask-blocked-background::after {
  content: "";
  -webkit-mask-image: url("/assets/blocked-background-BzITvvz-.svg");
          mask-image: url("/assets/blocked-background-BzITvvz-.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.light,[data-theme="light"] {
  --lf-surface-main: 240 2.4% 92%;
  --lf-surface-base: 180 4.8% 95.9%;
  --lf-surface-invert: 240 9.1% 4.3%;
  --lf-surface-nav: 0 0% 100%;
  --lf-surface-white: 0 0% 100%;
  --lf-surface-overlay: 216 12.8% 7.6%;
  --lf-surface-overlay-opacity: 0.65;
  --lf-surface-modal: 0 0% 100%;
  --lf-surface-card: 0 0% 100%;
  --lf-stroke-strongest: 226.70000000000005 5% 35.5%;
  --lf-stroke-strong: 230 2.4% 51.8%;
  --lf-stroke-weak: 240 3.1% 68%;
  --lf-stroke-weaker: 210 2.4% 83.9%;
  --lf-stroke-frail: 210 3.2% 87.8%;
  --lf-stroke-disabled: 240 3.1% 68%;
  --lf-stroke-brand: 62.10000000000002 83.3% 53.1%;
  --lf-stroke-focus-strongest: 231.39999999999998 100% 67.1%;
  --lf-stroke-focus-strong: 231.29999999999995 100% 77.1%;
  --lf-stroke-focus-weak: 230.60000000000002 100% 90%;
  --lf-stroke-error-strongest: 0 72.2% 50.6%;
  --lf-stroke-error-strong: 0 84.2% 60.2%;
  --lf-stroke-error-weak: 0 90.6% 70.8%;
  --lf-stroke-error-weakest: 0 96.3% 89.4%;
  --lf-stroke-success-strongest: 142.10000000000002 76.2% 36.3%;
  --lf-stroke-success-strong: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak-opacity: 0.30;
  --lf-stroke-success-weakest: 141 78.9% 85.1%;
  --lf-stroke-warning-strongest: 32.10000000000002 94.6% 43.7%;
  --lf-stroke-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak-opacity: 0.30;
  --lf-stroke-warning-weakest: 48 96.6% 76.7%;
  --lf-content-heading: 230 10% 11.8%;
  --lf-content-body: 230 10% 11.8%;
  --lf-content-body-strong: 226.70000000000005 5% 35.5%;
  --lf-content-body-weak: 230 2.4% 51.8%;
  --lf-content-body-placeholder: 240 3.1% 68%;
  --lf-content-body-disabled: 210 2.4% 83.9%;
  --lf-content-body-invert: 0 0% 100%;
  --lf-content-body-tags: 231.39999999999998 100% 67.1%;
  --lf-content-body-highlight: 221.39999999999998 96.6% 53.5%;
  --lf-content-body-error: 0 72.2% 50.6%;
  --lf-content-body-warning: 37.69999999999999 92.1% 50.2%;
  --lf-content-body-success: 142.10000000000002 76.2% 36.3%;
  --lf-content-body-constant-light: 0 0% 98%;
  --lf-content-body-constant-dark: 230 10% 11.8%;
  --lf-content-body-link-strong: 231.39999999999998 100% 67.1%;
  --lf-content-body-link-weak: 231.20000000000005 100% 72%;
  --lf-icon-strongest: 230 10% 11.8%;
  --lf-icon-strong: 212.70000000000005 11.3% 19%;
  --lf-icon-weak: 226.70000000000005 5% 35.5%;
  --lf-icon-weaker: 240 3.1% 68%;
  --lf-icon-disabled: 210 2.4% 83.9%;
  --lf-icon-invert: 0 0% 100%;
  --lf-icon-info: 221.39999999999998 96.6% 53.5%;
  --lf-icon-error: 0 84.2% 60.2%;
  --lf-icon-success: 142.10000000000002 76.2% 36.3%;
  --lf-icon-constant: 216 12.8% 7.6%;
  --lf-icon-highlight: 255.10000000000002 91.7% 76.3%;
  --lf-fill-maximal: 0 0% 100%;
  --lf-fill-superstrong: 180 4.8% 95.9%;
  --lf-fill-strongest: 240 3.2% 93.9%;
  --lf-fill-stronger: 240 2.4% 92%;
  --lf-fill-strong: 210 3.8% 89.8%;
  --lf-fill-weak: 210 2.4% 83.9%;
  --lf-fill-weaker: 230 2.4% 51.8%;
  --lf-fill-invert: 230 10% 11.8%;
  --lf-fill-brand: 62 92% 55.7%;
  --lf-fill-brand-weak: 55.5 89.7% 62%;
  --lf-fill-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-reference-opacity: 0.60;
  --lf-fill-hover-superstrong: 210 3.8% 89.8%;
  --lf-fill-hover-strongest: 240 2.4% 92%;
  --lf-fill-hover-stronger: 240 3.2% 93.9%;
  --lf-fill-hover-strong: 180 4.8% 95.9%;
  --lf-fill-hover-weak: 0 0% 98%;
  --lf-fill-hover-invert: 226.70000000000005 11.4% 15.5%;
  --lf-fill-hover-brand: 62.10000000000002 83.3% 53.1%;
  --lf-fill-hover-brand-weak: 61.89999999999998 75.3% 50.8%;
  --lf-fill-hover-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-hover-reference-opacity: 0.60;
  --lf-fill-pressed-superstrong: 210 2.4% 83.9%;
  --lf-fill-pressed-strongest: 210 2.8% 85.9%;
  --lf-fill-pressed-stronger: 210 3.2% 87.8%;
  --lf-fill-pressed-strong: 210 3.8% 89.8%;
  --lf-fill-pressed-weak: 240 2.4% 92%;
  --lf-fill-pressed-invert: 212.70000000000005 11.3% 19%;
  --lf-fill-pressed-brand: 61.89999999999998 75.3% 50.8%;
  --lf-fill-error-strongest: 0 96.3% 42.9%;
  --lf-fill-error-stronger: 0 72.2% 50.6%;
  --lf-fill-error-strong: 0 84.2% 60.2%;
  --lf-fill-error-weak: 0 90.6% 70.8%;
  --lf-fill-error-weaker: 0 93.5% 81.8%;
  --lf-fill-error-weakest: 0 85.7% 97.3%;
  --lf-fill-success-strongest: 142.8 64.2% 24.1%;
  --lf-fill-success-stronger: 142.39999999999998 71.8% 29.2%;
  --lf-fill-success-strong: 142.10000000000002 76.2% 36.3%;
  --lf-fill-success-weak: 141.89999999999998 69.2% 58%;
  --lf-fill-success-weaker: 141.7 76.6% 73.1%;
  --lf-fill-success-weakest: 138.5 76.5% 96.7%;
  --lf-fill-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-fill-warning-weaker: 45.89999999999998 96.7% 64.5%;
  --lf-fill-warning-weakest: 54.5 91.7% 95.3%;
  --lf-fill-highlight-strongest: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong: 205 83.3% 85.9%;
  --lf-fill-highlight-weak: 221.29999999999995 100% 96.9%;
  --lf-partner-qistas: 43.39999999999998 100% 61%;
  --lf-navigation-text: 226.70000000000005 11.4% 15.5%;
  --lf-navigation-text-weak: 240 3.1% 68%;
  --lf-navigation-icon: 226.70000000000005 11.4% 15.5%;
  --lf-navigation-fill-hover: 240 3.2% 93.9%;
  --lf-navigation-fill-press: 210 3.2% 87.8%;
  --lf-navigation-fill-focus: 240 3.2% 93.9%;
  --lf-risk-glow-high: 0 84.2% 60.2%;
  --lf-risk-glow-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-glow-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-glow-neutral: 202.5 31.4% 20%;
  --lf-risk-fill-neutral: 240 3.1% 68%;
  --lf-risk-fill-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-fill-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-fill-high: 0 84.2% 60.2%;
  --lf-risk-border-neutral: 240 3.1% 68%;
  --lf-risk-border-low: 141.7 76.6% 73.1%;
  --lf-risk-border-mid: 45.89999999999998 96.7% 64.5%;
  --lf-risk-border-high: 0 93.5% 81.8%;
  --lf-dropzone-start: 210 3.2% 87.8%;
  --lf-dropzone-stop: 210 2.4% 83.9%;
  --lf-spinner-from: 177.79999999999995 14.4% 36.7%;
  --lf-spinner-to: 202.5 31.4% 20%;
  --lf-carousel-dot-active: 202.5 31.4% 20%;
  --lf-carousel-dot-inactive: 210 2.4% 83.9%;
  --lf-knowledge-icon-bg-clauses: 231.29999999999995 100% 77.1%;
  --lf-knowledge-icon-bg-document: 141.89999999999998 69.2% 58%;
  --lf-knowledge-icon-bg-email: 255.10000000000002 91.7% 76.3%;
  --lf-knowledge-icon-bg-qa: 62 92% 55.7%;
  --lf-knowledge-icon-bg-webSource: 0 96.3% 89.4%;
  --lf-stickyNote-border: 47.19999999999999 67.1% 72.5%;
  --lf-stickyNote-bg: 48.39999999999998 100% 93.9%;
  --lf-stickyNote-inputBg: 0 0% 100%;
  --lf-stickyNote-inputBg-opacity: 0.60;
}
.dark,[data-theme="dark"] {
  --lf-surface-main: 240 9.1% 4.3%;
  --lf-surface-base: 230 10% 11.8%;
  --lf-surface-invert: 180 4.8% 95.9%;
  --lf-surface-nav: 216 12.8% 7.6%;
  --lf-surface-white: 0 0% 100%;
  --lf-surface-overlay: 216 12.8% 7.6%;
  --lf-surface-overlay-opacity: 0.65;
  --lf-surface-modal: 230 10% 11.8%;
  --lf-surface-card: 230 10% 11.8%;
  --lf-stroke-strongest: 240 3.1% 68%;
  --lf-stroke-strong: 230 2.4% 51.8%;
  --lf-stroke-weak: 226.70000000000005 5% 35.5%;
  --lf-stroke-weaker: 212.70000000000005 11.3% 19%;
  --lf-stroke-frail: 230 10% 11.8%;
  --lf-stroke-disabled: 212.70000000000005 11.3% 19%;
  --lf-stroke-brand: 62.10000000000002 83.3% 53.1%;
  --lf-stroke-focus-strongest: 231.39999999999998 100% 67.1%;
  --lf-stroke-focus-strong: 231.29999999999995 100% 77.1%;
  --lf-stroke-focus-weak: 230.60000000000002 100% 90%;
  --lf-stroke-error-strongest: 0 72.2% 50.6%;
  --lf-stroke-error-strong: 0 84.2% 60.2%;
  --lf-stroke-error-weak: 0 90.6% 70.8%;
  --lf-stroke-error-weakest: 0 96.3% 89.4%;
  --lf-stroke-warning-strongest: 32.10000000000002 94.6% 43.7%;
  --lf-stroke-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak-opacity: 0.30;
  --lf-stroke-warning-weakest: 48 96.6% 76.7%;
  --lf-stroke-success-strongest: 142.10000000000002 76.2% 36.3%;
  --lf-stroke-success-strong: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak-opacity: 0.30;
  --lf-stroke-success-weakest: 141 78.9% 85.1%;
  --lf-content-heading: 0 0% 98%;
  --lf-content-body: 0 0% 98%;
  --lf-content-body-strong: 240 3.1% 68%;
  --lf-content-body-weak: 230 2.4% 51.8%;
  --lf-content-body-placeholder: 226.70000000000005 5% 35.5%;
  --lf-content-body-disabled: 212.70000000000005 11.3% 19%;
  --lf-content-body-invert: 240 9.1% 4.3%;
  --lf-content-body-tags: 231.39999999999998 100% 67.1%;
  --lf-content-body-highlight: 221.39999999999998 96.6% 53.5%;
  --lf-content-body-error: 0 72.2% 50.6%;
  --lf-content-body-warning: 37.69999999999999 92.1% 50.2%;
  --lf-content-body-success: 142.10000000000002 76.2% 36.3%;
  --lf-content-body-constant-light: 0 0% 98%;
  --lf-content-body-constant-dark: 230 10% 11.8%;
  --lf-content-body-link-strong: 231.39999999999998 100% 67.1%;
  --lf-content-body-link-weak: 231.20000000000005 100% 72%;
  --lf-icon-strongest: 0 0% 100%;
  --lf-icon-strong: 212.70000000000005 11.3% 19%;
  --lf-icon-weak: 240 3.1% 68%;
  --lf-icon-weaker: 240 3.1% 68%;
  --lf-icon-disabled: 226.70000000000005 5% 35.5%;
  --lf-icon-invert: 230 10% 11.8%;
  --lf-icon-info: 231.20000000000005 100% 72%;
  --lf-icon-error: 0 84.2% 60.2%;
  --lf-icon-success: 142.10000000000002 76.2% 36.3%;
  --lf-icon-constant: 216 12.8% 7.6%;
  --lf-icon-highlight: 258.29999999999995 89.5% 66.3%;
  --lf-fill-maximal: 216 12.8% 7.6%;
  --lf-fill-superstrong: 220 12% 9.8%;
  --lf-fill-strongest: 230 10% 11.8%;
  --lf-fill-stronger: 230 10% 11.8%;
  --lf-fill-strong: 226.70000000000005 11.4% 15.5%;
  --lf-fill-weak: 212.70000000000005 11.3% 19%;
  --lf-fill-weaker: 230 2.4% 51.8%;
  --lf-fill-brand: 62 92% 55.7%;
  --lf-fill-brand-weak: 55.5 89.7% 62%;
  --lf-fill-invert: 0 0% 98%;
  --lf-fill-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-reference-opacity: 0.60;
  --lf-fill-hover-superstrong: 212.70000000000005 11.3% 19%;
  --lf-fill-hover-strongest: 212.70000000000005 11.3% 19%;
  --lf-fill-hover-stronger: 226.70000000000005 11.4% 15.5%;
  --lf-fill-hover-strong: 230 10% 11.8%;
  --lf-fill-hover-weak: 216 12.8% 7.6%;
  --lf-fill-hover-invert: 180 4.8% 95.9%;
  --lf-fill-hover-brand: 62.10000000000002 83.3% 53.1%;
  --lf-fill-hover-brand-weak: 61.89999999999998 75.3% 50.8%;
  --lf-fill-hover-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-hover-reference-opacity: 0.60;
  --lf-fill-pressed-superstrong: 230 2.4% 51.8%;
  --lf-fill-pressed-strongest: 226.70000000000005 5% 35.5%;
  --lf-fill-pressed-stronger: 226.70000000000005 5% 35.5%;
  --lf-fill-pressed-strong: 212.70000000000005 11.3% 19%;
  --lf-fill-pressed-weak: 226.70000000000005 11.4% 15.5%;
  --lf-fill-pressed-invert: 240 3.2% 93.9%;
  --lf-fill-pressed-brand: 61.89999999999998 75.3% 50.8%;
  --lf-fill-error-strongest: 0 96.3% 42.9%;
  --lf-fill-error-stronger: 0 72.2% 50.6%;
  --lf-fill-error-strong: 0 84.2% 60.2%;
  --lf-fill-error-weak: 0 90.6% 70.8%;
  --lf-fill-error-weaker: 0 90.6% 70.8%;
  --lf-fill-error-weakest: 0 85.7% 97.3%;
  --lf-fill-success-strongest: 142.8 64.2% 24.1%;
  --lf-fill-success-stronger: 142.39999999999998 71.8% 29.2%;
  --lf-fill-success-strong: 142.10000000000002 76.2% 36.3%;
  --lf-fill-success-weak: 141.89999999999998 69.2% 58%;
  --lf-fill-success-weaker: 141.7 76.6% 73.1%;
  --lf-fill-success-weakest: 138.5 76.5% 96.7%;
  --lf-fill-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-fill-warning-weaker: 45.89999999999998 96.7% 64.5%;
  --lf-fill-warning-weakest: 54.5 91.7% 95.3%;
  --lf-fill-highlight-strongest: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong-opacity: 0.30;
  --lf-fill-highlight-weak: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-weak-opacity: 0.30;
  --lf-partner-qistas: 43.39999999999998 100% 61%;
  --lf-navigation-text: 0 0% 100%;
  --lf-navigation-text-weak: 240 9.1% 4.3%;
  --lf-navigation-icon: 0 0% 100%;
  --lf-navigation-fill-hover: 212.70000000000005 11.3% 19%;
  --lf-navigation-fill-press: 226.70000000000005 5% 35.5%;
  --lf-navigation-fill-focus: 212.70000000000005 11.3% 19%;
  --lf-risk-glow-high: 0 84.2% 60.2%;
  --lf-risk-glow-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-glow-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-glow-neutral: 202.5 31.4% 20%;
  --lf-risk-fill-neutral: 230 2.4% 51.8%;
  --lf-risk-fill-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-fill-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-fill-high: 0 84.2% 60.2%;
  --lf-risk-border-neutral: 240 3.1% 68%;
  --lf-risk-border-low: 141.7 76.6% 73.1%;
  --lf-risk-border-mid: 45.89999999999998 96.7% 64.5%;
  --lf-risk-border-high: 0 93.5% 81.8%;
  --lf-dropzone-start: 202.5 31.4% 20%;
  --lf-dropzone-stop: 210 2.4% 83.9%;
  --lf-spinner-from: 177.79999999999995 14.4% 36.7%;
  --lf-spinner-to: 202.5 31.4% 20%;
  --lf-carousel-dot-active: 202.5 31.4% 20%;
  --lf-carousel-dot-inactive: 210 2.4% 83.9%;
  --lf-knowledge-icon-bg-clauses: 231.29999999999995 100% 77.1%;
  --lf-knowledge-icon-bg-document: 141.89999999999998 69.2% 58%;
  --lf-knowledge-icon-bg-email: 255.10000000000002 91.7% 76.3%;
  --lf-knowledge-icon-bg-qa: 62 92% 55.7%;
  --lf-knowledge-icon-bg-webSource: 0 96.3% 89.4%;
  --lf-stickyNote-border: 47.19999999999999 67.1% 72.5%;
  --lf-stickyNote-bg: 48.39999999999998 100% 93.9%;
  --lf-stickyNote-inputBg: 0 0% 100%;
  --lf-stickyNote-inputBg-opacity: 0.60;
}
.\@container {
  container-type: inline-size;
}
@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in {
  --tw-enter-opacity: 0;
}
.fade-in-0 {
  --tw-enter-opacity: 0;
}
.fade-in-80 {
  --tw-enter-opacity: 0.8;
}
.zoom-in {
  --tw-enter-scale: 0;
}
.zoom-in-50 {
  --tw-enter-scale: .5;
}
.zoom-out {
  --tw-exit-scale: 0;
}
.slide-in-from-bottom {
  --tw-enter-translate-y: 100%;
}
.slide-in-from-bottom-2 {
  --tw-enter-translate-y: 0.5rem;
}
.slide-in-from-left {
  --tw-enter-translate-x: -100%;
}
.slide-in-from-left-2 {
  --tw-enter-translate-x: -0.5rem;
}
.slide-in-from-right {
  --tw-enter-translate-x: 100%;
}
.slide-in-from-right-1 {
  --tw-enter-translate-x: 0.25rem;
}
.slide-in-from-top-1 {
  --tw-enter-translate-y: -0.25rem;
}
.slide-in-from-top-2 {
  --tw-enter-translate-y: -0.5rem;
}
.duration-0 {
  animation-duration: 0s;
}
.duration-100 {
  animation-duration: 100ms;
}
.duration-1000 {
  animation-duration: 1000ms;
}
.duration-150 {
  animation-duration: 150ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.duration-500 {
  animation-duration: 500ms;
}
.duration-700 {
  animation-duration: 700ms;
}
.delay-0 {
  animation-delay: 0s;
}
.delay-150 {
  animation-delay: 150ms;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear {
  animation-timing-function: linear;
}
.ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
.paused {
  animation-play-state: paused;
}
.font-writer {
  font-family: Legal Gothic, serif;
  text-transform: uppercase;
  font-variation-settings: 'wght' 500;
}
.mask-blocked-background::after {
  content: "";
  -webkit-mask-image: url("/assets/blocked-background-BzITvvz-.svg");
          mask-image: url("/assets/blocked-background-BzITvvz-.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.light,[data-theme="light"] {
  --lf-surface-main: 240 2.4% 92%;
  --lf-surface-base: 180 4.8% 95.9%;
  --lf-surface-invert: 240 9.1% 4.3%;
  --lf-surface-nav: 0 0% 100%;
  --lf-surface-white: 0 0% 100%;
  --lf-surface-overlay: 216 12.8% 7.6%;
  --lf-surface-overlay-opacity: 0.65;
  --lf-surface-modal: 0 0% 100%;
  --lf-surface-card: 0 0% 100%;
  --lf-stroke-strongest: 226.70000000000005 5% 35.5%;
  --lf-stroke-strong: 230 2.4% 51.8%;
  --lf-stroke-weak: 240 3.1% 68%;
  --lf-stroke-weaker: 210 2.4% 83.9%;
  --lf-stroke-frail: 210 3.2% 87.8%;
  --lf-stroke-disabled: 240 3.1% 68%;
  --lf-stroke-brand: 62.10000000000002 83.3% 53.1%;
  --lf-stroke-focus-strongest: 231.39999999999998 100% 67.1%;
  --lf-stroke-focus-strong: 231.29999999999995 100% 77.1%;
  --lf-stroke-focus-weak: 230.60000000000002 100% 90%;
  --lf-stroke-error-strongest: 0 72.2% 50.6%;
  --lf-stroke-error-strong: 0 84.2% 60.2%;
  --lf-stroke-error-weak: 0 90.6% 70.8%;
  --lf-stroke-error-weakest: 0 96.3% 89.4%;
  --lf-stroke-success-strongest: 142.10000000000002 76.2% 36.3%;
  --lf-stroke-success-strong: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak-opacity: 0.30;
  --lf-stroke-success-weakest: 141 78.9% 85.1%;
  --lf-stroke-warning-strongest: 32.10000000000002 94.6% 43.7%;
  --lf-stroke-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak-opacity: 0.30;
  --lf-stroke-warning-weakest: 48 96.6% 76.7%;
  --lf-content-heading: 230 10% 11.8%;
  --lf-content-body: 230 10% 11.8%;
  --lf-content-body-strong: 226.70000000000005 5% 35.5%;
  --lf-content-body-weak: 230 2.4% 51.8%;
  --lf-content-body-placeholder: 240 3.1% 68%;
  --lf-content-body-disabled: 210 2.4% 83.9%;
  --lf-content-body-invert: 0 0% 100%;
  --lf-content-body-tags: 231.39999999999998 100% 67.1%;
  --lf-content-body-highlight: 221.39999999999998 96.6% 53.5%;
  --lf-content-body-error: 0 72.2% 50.6%;
  --lf-content-body-warning: 37.69999999999999 92.1% 50.2%;
  --lf-content-body-success: 142.10000000000002 76.2% 36.3%;
  --lf-content-body-constant-light: 0 0% 98%;
  --lf-content-body-constant-dark: 230 10% 11.8%;
  --lf-content-body-link-strong: 231.39999999999998 100% 67.1%;
  --lf-content-body-link-weak: 231.20000000000005 100% 72%;
  --lf-icon-strongest: 230 10% 11.8%;
  --lf-icon-strong: 212.70000000000005 11.3% 19%;
  --lf-icon-weak: 226.70000000000005 5% 35.5%;
  --lf-icon-weaker: 240 3.1% 68%;
  --lf-icon-disabled: 210 2.4% 83.9%;
  --lf-icon-invert: 0 0% 100%;
  --lf-icon-info: 221.39999999999998 96.6% 53.5%;
  --lf-icon-error: 0 84.2% 60.2%;
  --lf-icon-success: 142.10000000000002 76.2% 36.3%;
  --lf-icon-constant: 216 12.8% 7.6%;
  --lf-icon-highlight: 255.10000000000002 91.7% 76.3%;
  --lf-fill-maximal: 0 0% 100%;
  --lf-fill-superstrong: 180 4.8% 95.9%;
  --lf-fill-strongest: 240 3.2% 93.9%;
  --lf-fill-stronger: 240 2.4% 92%;
  --lf-fill-strong: 210 3.8% 89.8%;
  --lf-fill-weak: 210 2.4% 83.9%;
  --lf-fill-weaker: 230 2.4% 51.8%;
  --lf-fill-invert: 230 10% 11.8%;
  --lf-fill-brand: 62 92% 55.7%;
  --lf-fill-brand-weak: 55.5 89.7% 62%;
  --lf-fill-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-reference-opacity: 0.60;
  --lf-fill-hover-superstrong: 210 3.8% 89.8%;
  --lf-fill-hover-strongest: 240 2.4% 92%;
  --lf-fill-hover-stronger: 240 3.2% 93.9%;
  --lf-fill-hover-strong: 180 4.8% 95.9%;
  --lf-fill-hover-weak: 0 0% 98%;
  --lf-fill-hover-invert: 226.70000000000005 11.4% 15.5%;
  --lf-fill-hover-brand: 62.10000000000002 83.3% 53.1%;
  --lf-fill-hover-brand-weak: 61.89999999999998 75.3% 50.8%;
  --lf-fill-hover-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-hover-reference-opacity: 0.60;
  --lf-fill-pressed-superstrong: 210 2.4% 83.9%;
  --lf-fill-pressed-strongest: 210 2.8% 85.9%;
  --lf-fill-pressed-stronger: 210 3.2% 87.8%;
  --lf-fill-pressed-strong: 210 3.8% 89.8%;
  --lf-fill-pressed-weak: 240 2.4% 92%;
  --lf-fill-pressed-invert: 212.70000000000005 11.3% 19%;
  --lf-fill-pressed-brand: 61.89999999999998 75.3% 50.8%;
  --lf-fill-error-strongest: 0 96.3% 42.9%;
  --lf-fill-error-stronger: 0 72.2% 50.6%;
  --lf-fill-error-strong: 0 84.2% 60.2%;
  --lf-fill-error-weak: 0 90.6% 70.8%;
  --lf-fill-error-weaker: 0 93.5% 81.8%;
  --lf-fill-error-weakest: 0 85.7% 97.3%;
  --lf-fill-success-strongest: 142.8 64.2% 24.1%;
  --lf-fill-success-stronger: 142.39999999999998 71.8% 29.2%;
  --lf-fill-success-strong: 142.10000000000002 76.2% 36.3%;
  --lf-fill-success-weak: 141.89999999999998 69.2% 58%;
  --lf-fill-success-weaker: 141.7 76.6% 73.1%;
  --lf-fill-success-weakest: 138.5 76.5% 96.7%;
  --lf-fill-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-fill-warning-weaker: 45.89999999999998 96.7% 64.5%;
  --lf-fill-warning-weakest: 54.5 91.7% 95.3%;
  --lf-fill-highlight-strongest: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong: 205 83.3% 85.9%;
  --lf-fill-highlight-weak: 221.29999999999995 100% 96.9%;
  --lf-partner-qistas: 43.39999999999998 100% 61%;
  --lf-navigation-text: 226.70000000000005 11.4% 15.5%;
  --lf-navigation-text-weak: 240 3.1% 68%;
  --lf-navigation-icon: 226.70000000000005 11.4% 15.5%;
  --lf-navigation-fill-hover: 240 3.2% 93.9%;
  --lf-navigation-fill-press: 210 3.2% 87.8%;
  --lf-navigation-fill-focus: 240 3.2% 93.9%;
  --lf-risk-glow-high: 0 84.2% 60.2%;
  --lf-risk-glow-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-glow-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-glow-neutral: 202.5 31.4% 20%;
  --lf-risk-fill-neutral: 240 3.1% 68%;
  --lf-risk-fill-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-fill-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-fill-high: 0 84.2% 60.2%;
  --lf-risk-border-neutral: 240 3.1% 68%;
  --lf-risk-border-low: 141.7 76.6% 73.1%;
  --lf-risk-border-mid: 45.89999999999998 96.7% 64.5%;
  --lf-risk-border-high: 0 93.5% 81.8%;
  --lf-dropzone-start: 210 3.2% 87.8%;
  --lf-dropzone-stop: 210 2.4% 83.9%;
  --lf-spinner-from: 177.79999999999995 14.4% 36.7%;
  --lf-spinner-to: 202.5 31.4% 20%;
  --lf-carousel-dot-active: 202.5 31.4% 20%;
  --lf-carousel-dot-inactive: 210 2.4% 83.9%;
  --lf-knowledge-icon-bg-clauses: 231.29999999999995 100% 77.1%;
  --lf-knowledge-icon-bg-document: 141.89999999999998 69.2% 58%;
  --lf-knowledge-icon-bg-email: 255.10000000000002 91.7% 76.3%;
  --lf-knowledge-icon-bg-qa: 62 92% 55.7%;
  --lf-knowledge-icon-bg-webSource: 0 96.3% 89.4%;
  --lf-stickyNote-border: 47.19999999999999 67.1% 72.5%;
  --lf-stickyNote-bg: 48.39999999999998 100% 93.9%;
  --lf-stickyNote-inputBg: 0 0% 100%;
  --lf-stickyNote-inputBg-opacity: 0.60;
}
.dark,[data-theme="dark"] {
  --lf-surface-main: 240 9.1% 4.3%;
  --lf-surface-base: 230 10% 11.8%;
  --lf-surface-invert: 180 4.8% 95.9%;
  --lf-surface-nav: 216 12.8% 7.6%;
  --lf-surface-white: 0 0% 100%;
  --lf-surface-overlay: 216 12.8% 7.6%;
  --lf-surface-overlay-opacity: 0.65;
  --lf-surface-modal: 230 10% 11.8%;
  --lf-surface-card: 230 10% 11.8%;
  --lf-stroke-strongest: 240 3.1% 68%;
  --lf-stroke-strong: 230 2.4% 51.8%;
  --lf-stroke-weak: 226.70000000000005 5% 35.5%;
  --lf-stroke-weaker: 212.70000000000005 11.3% 19%;
  --lf-stroke-frail: 230 10% 11.8%;
  --lf-stroke-disabled: 212.70000000000005 11.3% 19%;
  --lf-stroke-brand: 62.10000000000002 83.3% 53.1%;
  --lf-stroke-focus-strongest: 231.39999999999998 100% 67.1%;
  --lf-stroke-focus-strong: 231.29999999999995 100% 77.1%;
  --lf-stroke-focus-weak: 230.60000000000002 100% 90%;
  --lf-stroke-error-strongest: 0 72.2% 50.6%;
  --lf-stroke-error-strong: 0 84.2% 60.2%;
  --lf-stroke-error-weak: 0 90.6% 70.8%;
  --lf-stroke-error-weakest: 0 96.3% 89.4%;
  --lf-stroke-warning-strongest: 32.10000000000002 94.6% 43.7%;
  --lf-stroke-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak: 37.69999999999999 92.1% 50.2%;
  --lf-stroke-warning-weak-opacity: 0.30;
  --lf-stroke-warning-weakest: 48 96.6% 76.7%;
  --lf-stroke-success-strongest: 142.10000000000002 76.2% 36.3%;
  --lf-stroke-success-strong: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak: 142.10000000000002 70.6% 45.3%;
  --lf-stroke-success-weak-opacity: 0.30;
  --lf-stroke-success-weakest: 141 78.9% 85.1%;
  --lf-content-heading: 0 0% 98%;
  --lf-content-body: 0 0% 98%;
  --lf-content-body-strong: 240 3.1% 68%;
  --lf-content-body-weak: 230 2.4% 51.8%;
  --lf-content-body-placeholder: 226.70000000000005 5% 35.5%;
  --lf-content-body-disabled: 212.70000000000005 11.3% 19%;
  --lf-content-body-invert: 240 9.1% 4.3%;
  --lf-content-body-tags: 231.39999999999998 100% 67.1%;
  --lf-content-body-highlight: 221.39999999999998 96.6% 53.5%;
  --lf-content-body-error: 0 72.2% 50.6%;
  --lf-content-body-warning: 37.69999999999999 92.1% 50.2%;
  --lf-content-body-success: 142.10000000000002 76.2% 36.3%;
  --lf-content-body-constant-light: 0 0% 98%;
  --lf-content-body-constant-dark: 230 10% 11.8%;
  --lf-content-body-link-strong: 231.39999999999998 100% 67.1%;
  --lf-content-body-link-weak: 231.20000000000005 100% 72%;
  --lf-icon-strongest: 0 0% 100%;
  --lf-icon-strong: 212.70000000000005 11.3% 19%;
  --lf-icon-weak: 240 3.1% 68%;
  --lf-icon-weaker: 240 3.1% 68%;
  --lf-icon-disabled: 226.70000000000005 5% 35.5%;
  --lf-icon-invert: 230 10% 11.8%;
  --lf-icon-info: 231.20000000000005 100% 72%;
  --lf-icon-error: 0 84.2% 60.2%;
  --lf-icon-success: 142.10000000000002 76.2% 36.3%;
  --lf-icon-constant: 216 12.8% 7.6%;
  --lf-icon-highlight: 258.29999999999995 89.5% 66.3%;
  --lf-fill-maximal: 216 12.8% 7.6%;
  --lf-fill-superstrong: 220 12% 9.8%;
  --lf-fill-strongest: 230 10% 11.8%;
  --lf-fill-stronger: 230 10% 11.8%;
  --lf-fill-strong: 226.70000000000005 11.4% 15.5%;
  --lf-fill-weak: 212.70000000000005 11.3% 19%;
  --lf-fill-weaker: 230 2.4% 51.8%;
  --lf-fill-brand: 62 92% 55.7%;
  --lf-fill-brand-weak: 55.5 89.7% 62%;
  --lf-fill-invert: 0 0% 98%;
  --lf-fill-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-reference-opacity: 0.60;
  --lf-fill-hover-superstrong: 212.70000000000005 11.3% 19%;
  --lf-fill-hover-strongest: 212.70000000000005 11.3% 19%;
  --lf-fill-hover-stronger: 226.70000000000005 11.4% 15.5%;
  --lf-fill-hover-strong: 230 10% 11.8%;
  --lf-fill-hover-weak: 216 12.8% 7.6%;
  --lf-fill-hover-invert: 180 4.8% 95.9%;
  --lf-fill-hover-brand: 62.10000000000002 83.3% 53.1%;
  --lf-fill-hover-brand-weak: 61.89999999999998 75.3% 50.8%;
  --lf-fill-hover-reference: 231.39999999999998 100% 67.1%;
  --lf-fill-hover-reference-opacity: 0.60;
  --lf-fill-pressed-superstrong: 230 2.4% 51.8%;
  --lf-fill-pressed-strongest: 226.70000000000005 5% 35.5%;
  --lf-fill-pressed-stronger: 226.70000000000005 5% 35.5%;
  --lf-fill-pressed-strong: 212.70000000000005 11.3% 19%;
  --lf-fill-pressed-weak: 226.70000000000005 11.4% 15.5%;
  --lf-fill-pressed-invert: 240 3.2% 93.9%;
  --lf-fill-pressed-brand: 61.89999999999998 75.3% 50.8%;
  --lf-fill-error-strongest: 0 96.3% 42.9%;
  --lf-fill-error-stronger: 0 72.2% 50.6%;
  --lf-fill-error-strong: 0 84.2% 60.2%;
  --lf-fill-error-weak: 0 90.6% 70.8%;
  --lf-fill-error-weaker: 0 90.6% 70.8%;
  --lf-fill-error-weakest: 0 85.7% 97.3%;
  --lf-fill-success-strongest: 142.8 64.2% 24.1%;
  --lf-fill-success-stronger: 142.39999999999998 71.8% 29.2%;
  --lf-fill-success-strong: 142.10000000000002 76.2% 36.3%;
  --lf-fill-success-weak: 141.89999999999998 69.2% 58%;
  --lf-fill-success-weaker: 141.7 76.6% 73.1%;
  --lf-fill-success-weakest: 138.5 76.5% 96.7%;
  --lf-fill-warning-strong: 37.69999999999999 92.1% 50.2%;
  --lf-fill-warning-weaker: 45.89999999999998 96.7% 64.5%;
  --lf-fill-warning-weakest: 54.5 91.7% 95.3%;
  --lf-fill-highlight-strongest: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-strong-opacity: 0.30;
  --lf-fill-highlight-weak: 231.39999999999998 100% 67.1%;
  --lf-fill-highlight-weak-opacity: 0.30;
  --lf-partner-qistas: 43.39999999999998 100% 61%;
  --lf-navigation-text: 0 0% 100%;
  --lf-navigation-text-weak: 240 9.1% 4.3%;
  --lf-navigation-icon: 0 0% 100%;
  --lf-navigation-fill-hover: 212.70000000000005 11.3% 19%;
  --lf-navigation-fill-press: 226.70000000000005 5% 35.5%;
  --lf-navigation-fill-focus: 212.70000000000005 11.3% 19%;
  --lf-risk-glow-high: 0 84.2% 60.2%;
  --lf-risk-glow-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-glow-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-glow-neutral: 202.5 31.4% 20%;
  --lf-risk-fill-neutral: 230 2.4% 51.8%;
  --lf-risk-fill-low: 142.10000000000002 70.6% 45.3%;
  --lf-risk-fill-mid: 37.69999999999999 92.1% 50.2%;
  --lf-risk-fill-high: 0 84.2% 60.2%;
  --lf-risk-border-neutral: 240 3.1% 68%;
  --lf-risk-border-low: 141.7 76.6% 73.1%;
  --lf-risk-border-mid: 45.89999999999998 96.7% 64.5%;
  --lf-risk-border-high: 0 93.5% 81.8%;
  --lf-dropzone-start: 202.5 31.4% 20%;
  --lf-dropzone-stop: 210 2.4% 83.9%;
  --lf-spinner-from: 177.79999999999995 14.4% 36.7%;
  --lf-spinner-to: 202.5 31.4% 20%;
  --lf-carousel-dot-active: 202.5 31.4% 20%;
  --lf-carousel-dot-inactive: 210 2.4% 83.9%;
  --lf-knowledge-icon-bg-clauses: 231.29999999999995 100% 77.1%;
  --lf-knowledge-icon-bg-document: 141.89999999999998 69.2% 58%;
  --lf-knowledge-icon-bg-email: 255.10000000000002 91.7% 76.3%;
  --lf-knowledge-icon-bg-qa: 62 92% 55.7%;
  --lf-knowledge-icon-bg-webSource: 0 96.3% 89.4%;
  --lf-stickyNote-border: 47.19999999999999 67.1% 72.5%;
  --lf-stickyNote-bg: 48.39999999999998 100% 93.9%;
  --lf-stickyNote-inputBg: 0 0% 100%;
  --lf-stickyNote-inputBg-opacity: 0.60;
}
.\@container {
  container-type: inline-size;
}
.\[animation-duration\:1\.25s\] {
  animation-duration: 1.25s;
}
.\[animation-fill-mode\:backwards\] {
  animation-fill-mode: backwards;
}
.\[overflow-anchor\:none\] {
  overflow-anchor: none;
}
.\[scrollbar-gutter\:stable\] {
  scrollbar-gutter: stable;
}
.\[scrollbar-width\:none\] {
  scrollbar-width: none;
}
.\[scrollbar-width\:thin\] {
  scrollbar-width: thin;
}
.\[word-break\:break-word\] {
  word-break: break-word;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/Inter-Dx4kXJAl.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/InterItalic-DpCbqKDY.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Legal Gothic';
  src: url('/assets/LegalGothic-BiIzV4AY.ttf') format('truetype');
}
.dark\:prose-invert:is(.dark *)
    :where(h1, h2, h3, h4, h5, h6):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
    color: inherit;
  }
.dark\:prose-invert:is(.dark *) {
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
.first-letter\:capitalize::first-letter {
  text-transform: capitalize;
}
.placeholder\:text-content-body-placeholder::-moz-placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-placeholder) / var(--lf-content-body-placeholder-opacity, var(--tw-text-opacity)));
}
.placeholder\:text-content-body-placeholder::placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-placeholder) / var(--lf-content-body-placeholder-opacity, var(--tw-text-opacity)));
}
.placeholder\:text-content-body-weak::-moz-placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity)));
}
.placeholder\:text-content-body-weak::placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity)));
}
.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:inset-0::before {
  content: var(--tw-content);
  inset: 0px;
}
.before\:bottom-2::before {
  content: var(--tw-content);
  bottom: 0.5rem;
}
.before\:end-0::before {
  content: var(--tw-content);
  inset-inline-end: 0px;
}
.before\:left-\[9px\]::before {
  content: var(--tw-content);
  left: 9px;
}
.before\:start-0::before {
  content: var(--tw-content);
  inset-inline-start: 0px;
}
.before\:top-0::before {
  content: var(--tw-content);
  top: 0px;
}
.before\:top-\[18px\]::before {
  content: var(--tw-content);
  top: 18px;
}
.before\:h-px::before {
  content: var(--tw-content);
  height: 1px;
}
.before\:w-\[12px\]::before {
  content: var(--tw-content);
  width: 12px;
}
.before\:rounded-md::before {
  content: var(--tw-content);
  border-radius: calc(var(--radius) - 2px);
}
.before\:bg-\[\#888\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(136 136 136 / var(--tw-bg-opacity, 1));
}
.before\:bg-\[\#bbb\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(187 187 187 / var(--tw-bg-opacity, 1));
}
.before\:bg-\[\#ccc\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(204 204 204 / var(--tw-bg-opacity, 1));
}
.before\:bg-icon-info\/15::before {
  content: var(--tw-content);
  background-color: hsl(var(--lf-icon-info) / 0.15);
}
.before\:bg-gradient-to-r::before {
  content: var(--tw-content);
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.before\:from-transparent::before {
  content: var(--tw-content);
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.before\:from-50\%::before {
  content: var(--tw-content);
  --tw-gradient-from-position: 50%;
}
.before\:to-fill-hover-stronger::before {
  content: var(--tw-content);
  --tw-gradient-to: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, 1)) var(--tw-gradient-to-position);
}
.before\:to-fill-maximal::before {
  content: var(--tw-content);
  --tw-gradient-to: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, 1)) var(--tw-gradient-to-position);
}
.after\:mx-2::after {
  content: var(--tw-content);
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@keyframes background-pulse {

  0%, 100% {
    content: var(--tw-content);
    background-color: var(--tw-gradient-from);
  }

  50% {
    content: var(--tw-content);
    background-color: var(--tw-gradient-to);
  }
}
.after\:animate-dropzone::after {
  content: var(--tw-content);
  animation: background-pulse 10s linear infinite;
}
.after\:content-\[\"\2022\"\]::after {
  --tw-content: "•";
  content: var(--tw-content);
}
.first\:ms-0:first-child {
  margin-inline-start: 0px;
}
.first\:mt-0:first-child {
  margin-top: 0px;
}
.first\:rounded-s-md:first-child {
  border-start-start-radius: calc(var(--radius) - 2px);
  border-end-start-radius: calc(var(--radius) - 2px);
}
.first\:rounded-es-md:first-child {
  border-end-start-radius: calc(var(--radius) - 2px);
}
.first\:rounded-ss-md:first-child {
  border-start-start-radius: calc(var(--radius) - 2px);
}
.first\:border-t-0:first-child {
  border-top-width: 0px;
}
.last\:mb-0:last-child {
  margin-bottom: 0px;
}
.last\:mb-4:last-child {
  margin-bottom: 1rem;
}
.last\:rounded-e-md:last-child {
  border-start-end-radius: calc(var(--radius) - 2px);
  border-end-end-radius: calc(var(--radius) - 2px);
}
.last\:rounded-ee-md:last-child {
  border-end-end-radius: calc(var(--radius) - 2px);
}
.last\:rounded-se-md:last-child {
  border-start-end-radius: calc(var(--radius) - 2px);
}
.last\:border-0:last-child {
  border-width: 0px;
}
.last\:border-b:last-child {
  border-bottom-width: 1px;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}
.empty\:hidden:empty {
  display: none;
}
.focus-within\:z-10:focus-within {
  z-index: 10;
}
.focus-within\:border-stroke-weak:focus-within {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.focus-within\:bg-fill-hover-stronger:focus-within {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.focus-within\:shadow-\[0_0_8px_0_rgba\(0\2c 0\2c 0\2c 0\.07\)\2c 0_0_0_6px_rgba\(0\2c 0\2c 0\2c 0\.05\)\]:focus-within {
  --tw-shadow: 0 0 8px 0 rgba(0,0,0,0.07),0 0 0 6px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0 0 8px 0 var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus-within\:ring-0:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-fill-hover-strongest:focus-within {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-ring-opacity)));
}
.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-125:hover {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[0\.99\]:hover {
  --tw-scale-x: 0.99;
  --tw-scale-y: 0.99;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-stroke-error-strong:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-strong) / var(--lf-stroke-error-strong-opacity, var(--tw-border-opacity)));
}
.hover\:border-stroke-focus-strong:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-strong) / var(--lf-stroke-focus-strong-opacity, var(--tw-border-opacity)));
}
.hover\:border-stroke-strong:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
.hover\:border-stroke-success-strong:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-border-opacity)));
}
.hover\:border-stroke-weak:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.hover\:border-stroke-weaker:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.hover\:\!bg-fill-hover-stronger:hover {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity))) !important;
}
.hover\:\!bg-fill-reference\/10:hover {
  background-color: hsl(var(--lf-fill-reference) / 0.1) !important;
}
.hover\:\!bg-transparent:hover {
  background-color: transparent !important;
}
.hover\:bg-\[rgba\(17\2c 19\2c 22\2c 0\.05\)\]:hover {
  background-color: rgba(17,19,22,0.05);
}
.hover\:bg-fill-brand:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-brand\/15:hover {
  background-color: hsl(var(--lf-fill-brand) / 0.15);
}
.hover\:bg-fill-error-strong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-strong) / var(--lf-fill-error-strong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-error-stronger:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-stronger) / var(--lf-fill-error-stronger-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-error-weak:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weak) / var(--lf-fill-error-weak-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-error-weakest:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weakest) / var(--lf-fill-error-weakest-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-highlight-strong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-strong) / var(--lf-fill-highlight-strong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-highlight-weak:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-weak) / var(--lf-fill-highlight-weak-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-highlight-weak\/80:hover {
  background-color: hsl(var(--lf-fill-highlight-weak) / 0.8);
}
.hover\:bg-fill-hover-brand:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-brand) / var(--lf-fill-hover-brand-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-invert:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-invert) / var(--lf-fill-hover-invert-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-strong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-stronger:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-strongest:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-superstrong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-superstrong) / var(--lf-fill-hover-superstrong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-hover-weak:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-invert:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-maximal:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-strong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-stronger:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-stronger) / var(--lf-fill-stronger-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-strongest:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-success-stronger:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-stronger) / var(--lf-fill-success-stronger-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-success-weakest:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-weakest) / var(--lf-fill-success-weakest-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-fill-superstrong:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-superstrong) / var(--lf-fill-superstrong-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-icon-info\/10:hover {
  background-color: hsl(var(--lf-icon-info) / 0.1);
}
.hover\:bg-risk-fill-high\/15:hover {
  background-color: hsl(var(--lf-risk-fill-high) / 0.15);
}
.hover\:bg-stroke-weak:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-surface-base:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-base) / var(--lf-surface-base-opacity, var(--tw-bg-opacity)));
}
.hover\:bg-transparent:hover {
  background-color: transparent;
}
.hover\:text-content-body:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}
.hover\:text-content-body-constant-dark\/80:hover {
  color: hsl(var(--lf-content-body-constant-dark) / 0.8);
}
.hover\:text-content-body-constant-light:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-light) / var(--lf-content-body-constant-light-opacity, var(--tw-text-opacity)));
}
.hover\:text-content-body-error:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-error) / var(--lf-content-body-error-opacity, var(--tw-text-opacity)));
}
.hover\:text-content-body-highlight:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-highlight) / var(--lf-content-body-highlight-opacity, var(--tw-text-opacity)));
}
.hover\:text-content-body-strong:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-strong) / var(--lf-content-body-strong-opacity, var(--tw-text-opacity)));
}
.hover\:text-content-body-tags:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-tags) / var(--lf-content-body-tags-opacity, var(--tw-text-opacity)));
}
.hover\:text-icon-info:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-info) / var(--lf-icon-info-opacity, var(--tw-text-opacity)));
}
.hover\:text-icon-strong:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-strong) / var(--lf-icon-strong-opacity, var(--tw-text-opacity)));
}
.hover\:text-icon-strongest:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, var(--tw-text-opacity)));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:no-underline:hover {
  text-decoration-line: none;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:opacity-70:hover {
  opacity: 0.7;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}
.hover\:shadow-\[0_0_10px_0_rgba\(0\2c 0\2c 0\2c 0\.04\)\2c 0_0_0_5px_rgba\(0\2c 0\2c 0\2c 0\.03\)\]:hover {
  --tw-shadow: 0 0 10px 0 rgba(0,0,0,0.04),0 0 0 5px rgba(0,0,0,0.03);
  --tw-shadow-colored: 0 0 10px 0 var(--tw-shadow-color), 0 0 0 5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-card-hover:hover {
  --tw-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 5px rgba(0, 0, 0, 0.03);
  --tw-shadow-colored: 0px 0px 10px 0px var(--tw-shadow-color), 0px 0px 0px 5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:blur-none:hover {
  --tw-blur:  ;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.focus\:cursor-text:focus {
  cursor: text;
}
.focus\:border-0:focus {
  border-width: 0px;
}
.focus\:border-stroke-focus-weak:focus {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-weak) / var(--lf-stroke-focus-weak-opacity, var(--tw-border-opacity)));
}
.focus\:border-stroke-strongest:focus {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strongest) / var(--lf-stroke-strongest-opacity, var(--tw-border-opacity)));
}
.focus\:border-stroke-weak:focus {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.focus\:bg-fill-brand:focus {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.focus\:bg-fill-hover-stronger:focus {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.focus\:bg-fill-hover-strongest:focus {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.focus\:bg-fill-pressed-brand:focus {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-brand) / var(--lf-fill-pressed-brand-opacity, var(--tw-bg-opacity)));
}
.focus\:bg-fill-pressed-stronger:focus {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-stronger) / var(--lf-fill-pressed-stronger-opacity, var(--tw-bg-opacity)));
}
.focus\:bg-transparent:focus {
  background-color: transparent;
}
.focus\:opacity-100:focus {
  opacity: 1;
}
.focus\:shadow-\[0_0_0_2px_rgba\(17\2c 24\2c 39\2c 0\.08\)\]:focus {
  --tw-shadow: 0 0 0 2px rgba(17,24,39,0.08);
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-fill-hover-strongest:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-ring-opacity)));
}
.focus\:ring-stroke-weaker:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-ring-opacity)));
}
.focus-visible\:z-10:focus-visible {
  z-index: 10;
}
.focus-visible\:border-stroke-error-strong:focus-visible {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-strong) / var(--lf-stroke-error-strong-opacity, var(--tw-border-opacity)));
}
.focus-visible\:border-stroke-error-strongest:focus-visible {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-strongest) / var(--lf-stroke-error-strongest-opacity, var(--tw-border-opacity)));
}
.focus-visible\:border-stroke-success-strongest:focus-visible {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strongest) / var(--lf-stroke-success-strongest-opacity, var(--tw-border-opacity)));
}
.focus-visible\:border-b-stroke-weaker:focus-visible {
  --tw-border-opacity: 1;
  border-bottom-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.focus-visible\:\!bg-fill-maximal:focus-visible {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity))) !important;
}
.focus-visible\:bg-fill-brand:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-error-strong:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-strong) / var(--lf-fill-error-strong-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-error-stronger:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-stronger) / var(--lf-fill-error-stronger-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-highlight-weak:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-weak) / var(--lf-fill-highlight-weak-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-hover-weak:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-invert:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-pressed-brand:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-brand) / var(--lf-fill-pressed-brand-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-pressed-strongest:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strongest) / var(--lf-fill-pressed-strongest-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-pressed-weak:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-weak) / var(--lf-fill-pressed-weak-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-success-stronger:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-stronger) / var(--lf-fill-success-stronger-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-fill-weak:focus-visible {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.focus-visible\:bg-transparent:focus-visible {
  background-color: transparent;
}
.focus-visible\:text-content-body-constant-light:focus-visible {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-light) / var(--lf-content-body-constant-light-opacity, var(--tw-text-opacity)));
}
.focus-visible\:text-content-body-tags:focus-visible {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-tags) / var(--lf-content-body-tags-opacity, var(--tw-text-opacity)));
}
.focus-visible\:underline:focus-visible {
  text-decoration-line: underline;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline:focus-visible {
  outline-style: solid;
}
.focus-visible\:outline-0:focus-visible {
  outline-width: 0px;
}
.focus-visible\:outline-1:focus-visible {
  outline-width: 1px;
}
.focus-visible\:-outline-offset-1:focus-visible {
  outline-offset: -1px;
}
.focus-visible\:-outline-offset-4:focus-visible {
  outline-offset: -4px;
}
.focus-visible\:-outline-offset-8:focus-visible {
  outline-offset: -8px;
}
.focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}
.focus-visible\:outline-offset-4:focus-visible {
  outline-offset: 4px;
}
.focus-visible\:outline-stroke-error-weak:focus-visible {
  outline-color: hsl(var(--lf-stroke-error-weak) / var(--lf-stroke-error-weak-opacity, 1));
}
.focus-visible\:outline-stroke-focus-strong:focus-visible {
  outline-color: hsl(var(--lf-stroke-focus-strong) / var(--lf-stroke-focus-strong-opacity, 1));
}
.focus-visible\:outline-stroke-focus-strongest:focus-visible {
  outline-color: hsl(var(--lf-stroke-focus-strongest) / var(--lf-stroke-focus-strongest-opacity, 1));
}
.focus-visible\:outline-stroke-focus-weak:focus-visible {
  outline-color: hsl(var(--lf-stroke-focus-weak) / var(--lf-stroke-focus-weak-opacity, 1));
}
.focus-visible\:outline-stroke-strong:focus-visible {
  outline-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, 1));
}
.focus-visible\:outline-stroke-success-weak:focus-visible {
  outline-color: hsl(var(--lf-stroke-success-weak) / var(--lf-stroke-success-weak-opacity, 1));
}
.focus-visible\:outline-stroke-weak:focus-visible {
  outline-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.focus-visible\:outline-transparent:focus-visible {
  outline-color: transparent;
}
.focus-visible\:ring:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-0:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-inset:focus-visible {
  --tw-ring-inset: inset;
}
.focus-visible\:ring-fill-hover-strongest:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-ring-opacity)));
}
.focus-visible\:ring-stroke-focus-strong:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-focus-strong) / var(--lf-stroke-focus-strong-opacity, var(--tw-ring-opacity)));
}
.focus-visible\:ring-stroke-weak:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-ring-opacity)));
}
.focus-visible\:ring-stroke-weaker:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-ring-opacity)));
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.active\:cursor-grabbing:active {
  cursor: grabbing;
}
.active\:border-stroke-error-strongest:active {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-error-strongest) / var(--lf-stroke-error-strongest-opacity, var(--tw-border-opacity)));
}
.active\:border-stroke-focus-strongest:active {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-strongest) / var(--lf-stroke-focus-strongest-opacity, var(--tw-border-opacity)));
}
.active\:border-stroke-success-strongest:active {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strongest) / var(--lf-stroke-success-strongest-opacity, var(--tw-border-opacity)));
}
.active\:\!bg-fill-pressed-weak:active {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-pressed-weak) / var(--lf-fill-pressed-weak-opacity, var(--tw-bg-opacity))) !important;
}
.active\:bg-fill-brand:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-error-strongest:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-strongest) / var(--lf-fill-error-strongest-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-error-weakest:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weakest) / var(--lf-fill-error-weakest-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-brand:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-brand) / var(--lf-fill-pressed-brand-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-invert:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-invert) / var(--lf-fill-pressed-invert-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-strong:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strong) / var(--lf-fill-pressed-strong-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-stronger:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-stronger) / var(--lf-fill-pressed-stronger-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-strongest:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strongest) / var(--lf-fill-pressed-strongest-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-pressed-weak:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-weak) / var(--lf-fill-pressed-weak-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-strong:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-strongest:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, var(--tw-bg-opacity)));
}
.active\:bg-fill-success-strongest:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-strongest) / var(--lf-fill-success-strongest-opacity, var(--tw-bg-opacity)));
}
.active\:bg-transparent:active {
  background-color: transparent;
}
.enabled\:cursor-pointer:enabled {
  cursor: pointer;
}
.enabled\:hover\:text-icon-strongest:hover:enabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-strongest) / var(--lf-icon-strongest-opacity, var(--tw-text-opacity)));
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:cursor-default:disabled {
  cursor: default;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:\!border-stroke-weaker:disabled {
  --tw-border-opacity: 1 !important;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity))) !important;
}
.disabled\:border-stroke-disabled:disabled {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-disabled) / var(--lf-stroke-disabled-opacity, var(--tw-border-opacity)));
}
.disabled\:border-stroke-error-weak\/50:disabled {
  border-color: hsl(var(--lf-stroke-error-weak) / 0.5);
}
.disabled\:border-stroke-success-weak\/50:disabled {
  border-color: hsl(var(--lf-stroke-success-weak) / 0.5);
}
.disabled\:border-stroke-weaker:disabled {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.disabled\:\!bg-fill-hover-weak:disabled {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity))) !important;
}
.disabled\:bg-fill-brand\/50:disabled {
  background-color: hsl(var(--lf-fill-brand) / 0.5);
}
.disabled\:bg-fill-error-weak:disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-error-weak) / var(--lf-fill-error-weak-opacity, var(--tw-bg-opacity)));
}
.disabled\:bg-fill-pressed-invert\/50:disabled {
  background-color: hsl(var(--lf-fill-pressed-invert) / 0.5);
}
.disabled\:bg-fill-success-weak:disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-success-weak) / var(--lf-fill-success-weak-opacity, var(--tw-bg-opacity)));
}
.disabled\:bg-transparent:disabled {
  background-color: transparent;
}
.disabled\:\!text-content-body-weak:disabled {
  --tw-text-opacity: 1 !important;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity))) !important;
}
.disabled\:text-content-body-disabled:disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-disabled) / var(--lf-content-body-disabled-opacity, var(--tw-text-opacity)));
}
.disabled\:text-content-body-weak:disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-weak) / var(--lf-content-body-weak-opacity, var(--tw-text-opacity)));
}
.disabled\:text-icon-disabled:disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-icon-disabled) / var(--lf-icon-disabled-opacity, var(--tw-text-opacity)));
}
.disabled\:opacity-100:disabled {
  opacity: 1;
}
.disabled\:opacity-30:disabled {
  opacity: 0.3;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.disabled\:opacity-60:disabled {
  opacity: 0.6;
}
.disabled\:opacity-70:disabled {
  opacity: 0.7;
}
.disabled\:placeholder\:text-content-body-disabled:disabled::-moz-placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-disabled) / var(--lf-content-body-disabled-opacity, var(--tw-text-opacity)));
}
.disabled\:placeholder\:text-content-body-disabled:disabled::placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-disabled) / var(--lf-content-body-disabled-opacity, var(--tw-text-opacity)));
}
.group:last-child .group-last\:border-b {
  border-bottom-width: 1px;
}
.group\/dismissible:focus-within .group-focus-within\/dismissible\:pointer-events-auto {
  pointer-events: auto;
}
.group:focus-within .group-focus-within\:ms-1\.5 {
  margin-inline-start: 0.375rem;
}
.group:focus-within .group-focus-within\:w-3 {
  width: 0.75rem;
}
.group\/dismissible:focus-within .group-focus-within\/dismissible\:max-w-5 {
  max-width: 1.25rem;
}
.group\/dismissible:focus-within .group-focus-within\/dismissible\:-translate-x-2 {
  --tw-translate-x: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/varrow:focus-within .group-focus-within\/varrow\:translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:focus-within .group-focus-within\:border-stroke-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.group\/draftrow:focus-within .group-focus-within\/draftrow\:pe-20 {
  padding-inline-end: 5rem;
}
.group\/draftrow:focus-within .group-focus-within\/draftrow\:pe-24 {
  padding-inline-end: 6rem;
}
.group\/draftrow:focus-within .group-focus-within\/draftrow\:pe-40 {
  padding-inline-end: 10rem;
}
.group\/dismissible:focus-within .group-focus-within\/dismissible\:opacity-100 {
  opacity: 1;
}
.group\/draftrow:focus-within .group-focus-within\/draftrow\:opacity-100 {
  opacity: 1;
}
.group\/varrow:focus-within .group-focus-within\/varrow\:opacity-100 {
  opacity: 1;
}
.group:focus-within .group-focus-within\:opacity-100 {
  opacity: 1;
}
.group:focus-within .group-focus-within\:hover\:border-solid:hover {
  border-style: solid;
}
.group\/dismissible:hover .group-hover\/dismissible\:pointer-events-auto {
  pointer-events: auto;
}
.group:hover .group-hover\:visible {
  visibility: visible;
}
.group:hover .group-hover\:invisible {
  visibility: hidden;
}
.group\/scrollarea:hover .group-hover\/scrollarea\:end-1\.5 {
  inset-inline-end: 0.375rem;
}
.group\/section:hover .group-hover\/section\:ms-1 {
  margin-inline-start: 0.25rem;
}
.group:hover .group-hover\:ms-1 {
  margin-inline-start: 0.25rem;
}
.group:hover .group-hover\:ms-1\.5 {
  margin-inline-start: 0.375rem;
}
.group:hover .group-hover\:block {
  display: block;
}
.group:hover .group-hover\:inline {
  display: inline;
}
.group:hover .group-hover\:flex {
  display: flex;
}
.group:hover .group-hover\:hidden {
  display: none;
}
.group\/section:hover .group-hover\/section\:w-\[13px\] {
  width: 13px;
}
.group:hover .group-hover\:w-12 {
  width: 3rem;
}
.group:hover .group-hover\:w-3 {
  width: 0.75rem;
}
.group\/dismissible:hover .group-hover\/dismissible\:max-w-5 {
  max-width: 1.25rem;
}
.group\/dismissible:hover .group-hover\/dismissible\:-translate-x-2 {
  --tw-translate-x: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/varrow:hover .group-hover\/varrow\:translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/pm:hover .group-hover\/pm\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:grid-rows-\[1fr\] {
  grid-template-rows: 1fr;
}
.group:hover .group-hover\:text-clip {
  text-overflow: clip;
}
.group:hover .group-hover\:border-dashed {
  border-style: dashed;
}
.group:hover .group-hover\:border-stroke-weak {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-border-opacity)));
}
.group\/row:hover .group-hover\/row\:bg-fill-hover-weak {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity)));
}
.group:hover .group-hover\:bg-fill-hover-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.group:hover .group-hover\:bg-fill-hover-stronger {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.group:hover .group-hover\:bg-fill-hover-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.group\/draftrow:hover .group-hover\/draftrow\:pe-20 {
  padding-inline-end: 5rem;
}
.group\/draftrow:hover .group-hover\/draftrow\:pe-24 {
  padding-inline-end: 6rem;
}
.group\/draftrow:hover .group-hover\/draftrow\:pe-40 {
  padding-inline-end: 10rem;
}
.group\/card:hover .group-hover\/card\:opacity-100 {
  opacity: 1;
}
.group\/dismissible:hover .group-hover\/dismissible\:opacity-100 {
  opacity: 1;
}
.group\/doc:hover .group-hover\/doc\:opacity-100 {
  opacity: 1;
}
.group\/draftrow:hover .group-hover\/draftrow\:opacity-100 {
  opacity: 1;
}
.group\/pm:hover .group-hover\/pm\:opacity-65 {
  opacity: 0.65;
}
.group\/resize-handle:hover .group-hover\/resize-handle\:opacity-100 {
  opacity: 1;
}
.group\/section:hover .group-hover\/section\:opacity-100 {
  opacity: 1;
}
.group\/varrow:hover .group-hover\/varrow\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:shadow-risk-glow-high {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-high) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-high) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:shadow-risk-glow-low {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-low) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-low) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:shadow-risk-glow-mid {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-mid) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-mid) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:shadow-risk-glow-neutral {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-neutral) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-neutral) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:shadow-risk-glow-high {
  --tw-shadow-color: hsl(var(--lf-risk-glow-high) / var(--lf-risk-glow-high-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group:hover .group-hover\:shadow-risk-glow-low {
  --tw-shadow-color: hsl(var(--lf-risk-glow-low) / var(--lf-risk-glow-low-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group:hover .group-hover\:shadow-risk-glow-mid {
  --tw-shadow-color: hsl(var(--lf-risk-glow-mid) / var(--lf-risk-glow-mid-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group:hover .group-hover\:shadow-risk-glow-neutral {
  --tw-shadow-color: hsl(var(--lf-risk-glow-neutral) / var(--lf-risk-glow-neutral-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group:hover .group-hover\:\[scrollbar-width\:thin\] {
  scrollbar-width: thin;
}
.group:hover .before\:group-hover\:to-fill-hover-stronger::before {
  content: var(--tw-content);
  --tw-gradient-to: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, 1)) var(--tw-gradient-to-position);
}
.group:focus .group-focus\:opacity-0 {
  opacity: 0;
}
.group:focus .group-focus\:opacity-100 {
  opacity: 1;
}
.group:focus-visible .group-focus-visible\:block {
  display: block;
}
.group:focus-visible .group-focus-visible\:inline {
  display: inline;
}
.group:focus-visible .group-focus-visible\:flex {
  display: flex;
}
.group:focus-visible .group-focus-visible\:hidden {
  display: none;
}
.group:focus-visible .group-focus-visible\:bg-fill-hover-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.group:focus-visible .group-focus-visible\:opacity-100 {
  opacity: 1;
}
.group\/resize-handle:active .group-active\/resize-handle\:opacity-100 {
  opacity: 1;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:mb-0 {
  margin-bottom: 0px;
}
.group.default .group-\[\.default\]\:hidden {
  display: none;
}
.group.open .group-\[\.open\]\:hidden {
  display: none;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:hidden {
  display: none;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:\!h-\[30px\] {
  height: 30px !important;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:\!w-\[30px\] {
  width: 30px !important;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:max-w-0 {
  max-width: 0px;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:\!grid-cols-\[1fr_0fr\] {
  grid-template-columns: 1fr 0fr !important;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:\!justify-center {
  justify-content: center !important;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:justify-items-center {
  justify-items: center;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:gap-0 {
  gap: 0px;
}
.group.danger .group-\[\.danger\]\:bg-risk-fill-high {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-high) / var(--lf-risk-fill-high-opacity, var(--tw-bg-opacity)));
}
.group.success .group-\[\.success\]\:bg-risk-fill-low {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-low) / var(--lf-risk-fill-low-opacity, var(--tw-bg-opacity)));
}
.group.warning .group-\[\.warning\]\:bg-risk-fill-mid {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-risk-fill-mid) / var(--lf-risk-fill-mid-opacity, var(--tw-bg-opacity)));
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:\!px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:opacity-0 {
  opacity: 0;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:delay-0 {
  transition-delay: 0s;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-0 {
  transition-duration: 0s;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-300 {
  transition-duration: 300ms;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-0 {
  animation-duration: 0s;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-300 {
  animation-duration: 300ms;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:delay-0 {
  animation-delay: 0s;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-0 {
  animation-duration: 0s;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:duration-300 {
  animation-duration: 300ms;
}
.group:not(.open) .group-\[\:not\(\.open\)\]\:delay-0 {
  animation-delay: 0s;
}
.has-\[button\[data-state\=open\]\]\:border-b:has(button[data-state=open]) {
  border-bottom-width: 1px;
}
.has-\[button\[data-state\=open\]\]\:bg-fill-strongest:has(button[data-state=open]) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, var(--tw-bg-opacity)));
}
.has-\[\:focus-visible\]\:ring-2:has(:focus-visible) {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.has-\[\:focus-visible\]\:ring-stroke-weak:has(:focus-visible) {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, var(--tw-ring-opacity)));
}
.has-\[\:focus-visible\]\:ring-offset-2:has(:focus-visible) {
  --tw-ring-offset-width: 2px;
}
.group[aria-pressed="true"] .group-aria-pressed\:opacity-100 {
  opacity: 1;
}
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
  pointer-events: none;
}
.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}
.data-\[state\=collapsed\]\:end-\[calc\(var\(--sidebar-width\)\*-1\)\][data-state="collapsed"] {
  inset-inline-end: calc(var(--sidebar-width) * -1);
}
.data-\[state\=collapsed\]\:start-\[calc\(var\(--sidebar-width\)\*-1\)\][data-state="collapsed"] {
  inset-inline-start: calc(var(--sidebar-width) * -1);
}
.data-\[state\=open\]\:ms-\[var\(--lf-body-padding\)\][data-state="open"] {
  margin-inline-start: var(--lf-body-padding);
}
.data-\[state\=inactive\]\:hidden[data-state="inactive"] {
  display: none;
}
.data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] {
  width: 100%;
}
.data-\[state\=closed\]\:w-0[data-state="closed"] {
  width: 0px;
}
.data-\[state\=open\]\:w-side-pane-md[data-state="open"] {
  width: var(--lf-side-pane-width-md);
}
.data-\[state\=open\]\:w-side-pane-sm[data-state="open"] {
  width: var(--lf-side-pane-width-sm);
}
.data-\[state\=open\]\:flex-1[data-state="open"] {
  flex: 1 1 0%;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-4[data-state="checked"] {
  --tw-translate-x: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-\[17px\][data-state="checked"] {
  --tw-translate-x: 17px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
  --tw-translate-x: var(--radix-toast-swipe-end-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
  --tw-translate-x: var(--radix-toast-swipe-move-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes accordion-up {

  from {
    height: var(--radix-accordion-content-height);
  }

  to {
    height: 0;
  }
}
.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}
@keyframes accordion-down {

  from {
    height: 0;
  }

  to {
    height: var(--radix-accordion-content-height);
  }
}
.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
  animation: accordion-down 0.2s ease-out;
}
.data-\[orientation\=horizontal\]\:flex-row[data-orientation="horizontal"] {
  flex-direction: row;
}
.data-\[orientation\=vertical\]\:flex-col[data-orientation="vertical"] {
  flex-direction: column;
}
.data-\[state\=open\]\:rounded-b-none[data-state="open"] {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.data-\[state\=open\]\:border-b[data-state="open"] {
  border-bottom-width: 1px;
}
.data-\[state\=open\]\:border-none[data-state="open"] {
  border-style: none;
}
.data-\[state\=active\]\:border-icon-weak[data-state="active"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-icon-weak) / var(--lf-icon-weak-opacity, var(--tw-border-opacity)));
}
.data-\[state\=active\]\:border-stroke-success-strong[data-state="active"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-border-opacity)));
}
.data-\[state\=checked\]\:border-stroke-focus-strongest[data-state="checked"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-focus-strongest) / var(--lf-stroke-focus-strongest-opacity, var(--tw-border-opacity)));
}
.data-\[state\=completed\]\:border-icon-weak[data-state="completed"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-icon-weak) / var(--lf-icon-weak-opacity, var(--tw-border-opacity)));
}
.data-\[state\=completed\]\:border-stroke-success-strong[data-state="completed"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-border-opacity)));
}
.data-\[state\=open\]\:border-stroke-frail[data-state="open"] {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-frail) / var(--lf-stroke-frail-opacity, var(--tw-border-opacity)));
}
.data-\[active-item\]\:bg-fill-hover-stronger[data-active-item] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.data-\[active\=true\]\:bg-fill-hover-strongest[data-active="true"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.data-\[selected\=true\]\:bg-fill-hover-strongest[data-selected="true"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=active\]\:bg-fill-maximal[data-state="active"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=checked\]\:bg-content-body[data-state="checked"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=checked\]\:bg-content-body-link-weak[data-state="checked"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-content-body-link-weak) / var(--lf-content-body-link-weak-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=checked\]\:bg-fill-highlight-strongest[data-state="checked"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-highlight-strongest) / var(--lf-fill-highlight-strongest-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=checked\]\:bg-fill-hover-stronger[data-state="checked"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=closed\]\:bg-fill-brand[data-state="closed"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-brand) / var(--lf-fill-brand-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=on\]\:bg-fill-invert[data-state="on"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-invert) / var(--lf-fill-invert-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=on\]\:bg-fill-strong[data-state="on"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-hover-strong[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-hover-stronger[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-stronger) / var(--lf-fill-hover-stronger-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-hover-strongest[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strongest) / var(--lf-fill-hover-strongest-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-hover-weak[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-weak) / var(--lf-fill-hover-weak-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-pressed-strong[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strong) / var(--lf-fill-pressed-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-strong[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-fill-strongest[data-state="open"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strongest) / var(--lf-fill-strongest-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=open\]\:bg-transparent[data-state="open"] {
  background-color: transparent;
}
.data-\[state\=unchecked\]\:bg-fill-pressed-strong[data-state="unchecked"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-pressed-strong) / var(--lf-fill-pressed-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=active\]\:text-content-body[data-state="active"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}
.data-\[state\=checked\]\:text-content-body-constant-light[data-state="checked"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-light) / var(--lf-content-body-constant-light-opacity, var(--tw-text-opacity)));
}
.data-\[state\=completed\]\:text-content-body[data-state="completed"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}
.data-\[state\=on\]\:text-content-body-invert[data-state="on"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-invert) / var(--lf-content-body-invert-opacity, var(--tw-text-opacity)));
}
.data-\[disabled\=true\]\:opacity-100[data-disabled="true"] {
  opacity: 1;
}
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
  opacity: 0.5;
}
.data-\[disabled\]\:opacity-40[data-disabled] {
  opacity: 0.4;
}
.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}
.data-\[state\=checked\]\:opacity-100[data-state="checked"] {
  opacity: 1;
}
.data-\[state\=open\]\:opacity-100[data-state="open"] {
  opacity: 1;
}
.data-\[state\=checked\]\:shadow-\[0_1px_2px_rgba\(0\2c 0\2c 0\2c 0\.06\)\2c 0_2px_4px_rgba\(0\2c 0\2c 0\2c 0\.12\)\][data-state="checked"] {
  --tw-shadow: 0 1px 2px rgba(0,0,0,0.06),0 2px 4px rgba(0,0,0,0.12);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color), 0 2px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.data-\[state\=unchecked\]\:shadow-\[0_1px_2px_rgba\(0\2c 0\2c 0\2c 0\.04\)\2c 0_1px_2px_rgba\(0\2c 0\2c 0\2c 0\.06\)\][data-state="unchecked"] {
  --tw-shadow: 0 1px 2px rgba(0,0,0,0.04),0 1px 2px rgba(0,0,0,0.06);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color), 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
  transition-property: none;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  transition-duration: 300ms;
}
.data-\[state\=collapsed\]\:duration-300[data-state="collapsed"] {
  transition-duration: 300ms;
}
.data-\[state\=hidden\]\:duration-200[data-state="hidden"] {
  transition-duration: 200ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  transition-duration: 500ms;
}
.data-\[state\=visible\]\:duration-300[data-state="visible"] {
  transition-duration: 300ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=visible\]\:animate-in[data-state="visible"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=collapsed\]\:animate-out[data-state="collapsed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=hidden\]\:animate-out[data-state="hidden"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-5[data-state="closed"] {
  --tw-exit-opacity: 0.05;
}
.data-\[state\=closed\]\:fade-out-80[data-state="closed"] {
  --tw-exit-opacity: 0.8;
}
.data-\[state\=hidden\]\:fade-out[data-state="hidden"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=visible\]\:fade-in[data-state="visible"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-75[data-state="closed"] {
  --tw-exit-scale: .75;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-75[data-state="open"] {
  --tw-enter-scale: .75;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-left-2[data-side="left"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=right\]\:slide-in-from-right-2[data-side="right"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}
.data-\[state\=hidden\]\:slide-out-to-bottom-4[data-state="hidden"] {
  --tw-exit-translate-y: 1rem;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-bottom-full[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=visible\]\:slide-in-from-bottom-4[data-state="visible"] {
  --tw-enter-translate-y: 1rem;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}
.data-\[state\=collapsed\]\:duration-300[data-state="collapsed"] {
  animation-duration: 300ms;
}
.data-\[state\=hidden\]\:duration-200[data-state="hidden"] {
  animation-duration: 200ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}
.data-\[state\=visible\]\:duration-300[data-state="visible"] {
  animation-duration: 300ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=visible\]\:animate-in[data-state="visible"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=collapsed\]\:animate-out[data-state="collapsed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=hidden\]\:animate-out[data-state="hidden"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-5[data-state="closed"] {
  --tw-exit-opacity: 0.05;
}
.data-\[state\=closed\]\:fade-out-80[data-state="closed"] {
  --tw-exit-opacity: 0.8;
}
.data-\[state\=hidden\]\:fade-out[data-state="hidden"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=visible\]\:fade-in[data-state="visible"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-75[data-state="closed"] {
  --tw-exit-scale: .75;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-75[data-state="open"] {
  --tw-enter-scale: .75;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-left-2[data-side="left"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=right\]\:slide-in-from-right-2[data-side="right"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}
.data-\[state\=hidden\]\:slide-out-to-bottom-4[data-state="hidden"] {
  --tw-exit-translate-y: 1rem;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-bottom-full[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=visible\]\:slide-in-from-bottom-4[data-state="visible"] {
  --tw-enter-translate-y: 1rem;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}
.data-\[state\=collapsed\]\:duration-300[data-state="collapsed"] {
  animation-duration: 300ms;
}
.data-\[state\=hidden\]\:duration-200[data-state="hidden"] {
  animation-duration: 200ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}
.data-\[state\=visible\]\:duration-300[data-state="visible"] {
  animation-duration: 300ms;
}
.data-\[state\=inactive\]\:hover\:bg-fill-hover-strong:hover[data-state="inactive"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=inactive\]\:hover\:bg-fill-strong:hover[data-state="inactive"] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-strong) / var(--lf-fill-strong-opacity, var(--tw-bg-opacity)));
}
.data-\[state\=inactive\]\:hover\:text-content-body:hover[data-state="inactive"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body) / var(--lf-content-body-opacity, var(--tw-text-opacity)));
}
.data-\[state\=open\]\:focus-visible\:outline:focus-visible[data-state="open"] {
  outline-style: solid;
}
.data-\[state\=open\]\:focus-visible\:outline-1:focus-visible[data-state="open"] {
  outline-width: 1px;
}
.data-\[state\=open\]\:focus-visible\:outline-offset-4:focus-visible[data-state="open"] {
  outline-offset: 4px;
}
.data-\[state\=open\]\:focus-visible\:outline-stroke-weak:focus-visible[data-state="open"] {
  outline-color: hsl(var(--lf-stroke-weak) / var(--lf-stroke-weak-opacity, 1));
}
.group\/stepper-nav[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/stepper-nav\:h-0\.5 {
  height: 0.125rem;
}
.group\/stepper-nav[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/stepper-nav\:h-12 {
  height: 3rem;
}
.group\/stepper-nav[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/stepper-nav\:w-\[calc\(100\%-2rem\+1\.025rem\)\] {
  width: calc(100% - 2rem + 1.025rem);
}
.group\/stepper-nav[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/stepper-nav\:w-0\.5 {
  width: 0.125rem;
}
.group\/stepper-nav[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/stepper-nav\:flex-1 {
  flex: 1 1 0%;
}
.group\/stepper-nav[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/stepper-nav\:flex-none {
  flex: none;
}
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/step[data-state="active"] .group-data-\[state\=active\]\/step\:scale-x-100 {
  --tw-scale-x: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/step[data-state="completed"] .group-data-\[state\=completed\]\/step\:scale-x-100 {
  --tw-scale-x: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/stepper-nav[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/stepper-nav\:flex-row {
  flex-direction: row;
}
.group\/stepper-nav[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/stepper-nav\:flex-col {
  flex-direction: column;
}
.group[data-state="open"] .group-data-\[state\=open\]\:rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.group\/step[data-state="completed"] .group-data-\[state\=completed\]\/step\:bg-stroke-strongest {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-strongest) / var(--lf-stroke-strongest-opacity, var(--tw-bg-opacity)));
}
.group\/step[data-state="completed"] .group-data-\[state\=completed\]\/step\:bg-stroke-success-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-stroke-success-strong) / var(--lf-stroke-success-strong-opacity, var(--tw-bg-opacity)));
}
.group[data-state="open"] .group-data-\[state\=open\]\:bg-fill-hover-strong {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-hover-strong) / var(--lf-fill-hover-strong-opacity, var(--tw-bg-opacity)));
}
.group\/resize-handle[data-resize-handle-active] .group-data-\[resize-handle-active\]\/resize-handle\:opacity-100 {
  opacity: 1;
}
.light.light\:hidden {
  display: none;
}
.light.light\:border-2 {
  border-width: 2px;
}
.light.light\:border-stroke-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
.light.light\:bg-fill-maximal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
.light.light\:bg-surface-modal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
.light.light\:bg-surface-white {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is(.light > .light\:hidden:not([data-theme])) {
  display: none;
}
:is(.light > .light\:border-2:not([data-theme])) {
  border-width: 2px;
}
:is(.light > .light\:border-stroke-strong:not([data-theme])) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is(.light > .light\:bg-fill-maximal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is(.light > .light\:bg-surface-modal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is(.light > .light\:bg-surface-white:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is(.light .light\:hidden:not(.light [data-theme]:not(.light) * )) {
  display: none;
}
:is(.light .light\:border-2:not(.light [data-theme]:not(.light) * )) {
  border-width: 2px;
}
:is(.light .light\:border-stroke-strong:not(.light [data-theme]:not(.light) * )) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is(.light .light\:bg-fill-maximal:not(.light [data-theme]:not(.light) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is(.light .light\:bg-surface-modal:not(.light [data-theme]:not(.light) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is(.light .light\:bg-surface-white:not(.light [data-theme]:not(.light) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is(.light:not(:has([data-theme])) .light\:hidden:not([data-theme])) {
  display: none;
}
:is(.light:not(:has([data-theme])) .light\:border-2:not([data-theme])) {
  border-width: 2px;
}
:is(.light:not(:has([data-theme])) .light\:border-stroke-strong:not([data-theme])) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is(.light:not(:has([data-theme])) .light\:bg-fill-maximal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is(.light:not(:has([data-theme])) .light\:bg-surface-modal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is(.light:not(:has([data-theme])) .light\:bg-surface-white:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
[data-theme='light'].light\:hidden {
  display: none;
}
[data-theme='light'].light\:border-2 {
  border-width: 2px;
}
[data-theme='light'].light\:border-stroke-strong {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
[data-theme='light'].light\:bg-fill-maximal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
[data-theme='light'].light\:bg-surface-modal {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
[data-theme='light'].light\:bg-surface-white {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] > .light\:hidden:not([data-theme])) {
  display: none;
}
:is([data-theme='light'] > .light\:border-2:not([data-theme])) {
  border-width: 2px;
}
:is([data-theme='light'] > .light\:border-stroke-strong:not([data-theme])) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is([data-theme='light'] > .light\:bg-fill-maximal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] > .light\:bg-surface-modal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] > .light\:bg-surface-white:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] .light\:hidden:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  display: none;
}
:is([data-theme='light'] .light\:border-2:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  border-width: 2px;
}
:is([data-theme='light'] .light\:border-stroke-strong:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is([data-theme='light'] .light\:bg-fill-maximal:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] .light\:bg-surface-modal:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light'] .light\:bg-surface-white:not([data-theme='light'] [data-theme]:not([data-theme='light']) * )) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light']:not(:has([data-theme])) .light\:hidden:not([data-theme])) {
  display: none;
}
:is([data-theme='light']:not(:has([data-theme])) .light\:border-2:not([data-theme])) {
  border-width: 2px;
}
:is([data-theme='light']:not(:has([data-theme])) .light\:border-stroke-strong:not([data-theme])) {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-strong) / var(--lf-stroke-strong-opacity, var(--tw-border-opacity)));
}
:is([data-theme='light']:not(:has([data-theme])) .light\:bg-fill-maximal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light']:not(:has([data-theme])) .light\:bg-surface-modal:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-modal) / var(--lf-surface-modal-opacity, var(--tw-bg-opacity)));
}
:is([data-theme='light']:not(:has([data-theme])) .light\:bg-surface-white:not([data-theme])) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-surface-white) / var(--lf-surface-white-opacity, var(--tw-bg-opacity)));
}
@container (min-width: 20rem) {

  .\@xs\:inline {
    display: inline;
  }
}
@container (min-width: 24rem) {

  .\@sm\:block {
    display: block;
  }

  .\@sm\:hidden {
    display: none;
  }
}
@container (min-width: 28rem) {

  .\@md\:block {
    display: block;
  }

  .\@md\:inline {
    display: inline;
  }

  .\@md\:flex {
    display: flex;
  }

  .\@md\:hidden {
    display: none;
  }

  .\@md\:p-4 {
    padding: 1rem;
  }
}
@container (min-width: 32rem) {

  .\@lg\:inline {
    display: inline;
  }

  .\@lg\:flex {
    display: flex;
  }
}
@container (min-width: 42rem) {

  .\@2xl\:block {
    display: block;
  }

  .\@2xl\:inline-block {
    display: inline-block;
  }

  .\@2xl\:flex {
    display: flex;
  }

  .\@2xl\:hidden {
    display: none;
  }

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

  .\@2xl\:shrink-0 {
    flex-shrink: 0;
  }

  .\@2xl\:flex-row {
    flex-direction: row;
  }

  .\@2xl\:gap-3 {
    gap: 0.75rem;
  }

  .\@2xl\:gap-6 {
    gap: 1.5rem;
  }

  .\@2xl\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .\@2xl\:p-6 {
    padding: 1.5rem;
  }
}
@container (min-width: 640px) {

  .\@\[640px\]\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container (min-width: 1024px) {

  .\@\[1024px\]\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {

  .motion-reduce\:transition-none {
    transition-property: none;
  }
}
.dark\:block:is(.dark *) {
  display: block;
}
.dark\:hidden:is(.dark *) {
  display: none;
}
.dark\:bg-fill-weak:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.dark\:shadow-\[0px_0px_5px_2px_rgba\(239\2c 246\2c 38\2c 0\.10\)\2c _0px_0px_24px_4px_rgba\(239\2c 246\2c 38\2c 0\.30\)\2c _0px_0px_250px_231px_rgba\(239\2c 246\2c 38\2c 0\.20\)\]:is(.dark *) {
  --tw-shadow: 0px 0px 5px 2px rgba(239,246,38,0.10), 0px 0px 24px 4px rgba(239,246,38,0.30), 0px 0px 250px 231px rgba(239,246,38,0.20);
  --tw-shadow-colored: 0px 0px 5px 2px var(--tw-shadow-color), 0px 0px 24px 4px var(--tw-shadow-color), 0px 0px 250px 231px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.dark\:shadow-none:is(.dark *) {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.dark\:hover\:bg-fill-weak:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.disabled\:dark\:text-content-body-invert:is(.dark *):disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-invert) / var(--lf-content-body-invert-opacity, var(--tw-text-opacity)));
}
.group.danger .dark\:group-\[\.danger\]\:shadow-risk-glow-high:is(.dark *) {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-high) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-high) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group.success .dark\:group-\[\.success\]\:shadow-risk-glow-low:is(.dark *) {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-low) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-low) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group.warning .dark\:group-\[\.warning\]\:shadow-risk-glow-mid:is(.dark *) {
  --tw-shadow: 0px 0px 19px 4px hsl(var(--lf-risk-glow-mid) / 0.6), 0px 0px 250px 211px hsl(var(--lf-risk-glow-mid) / 0.3) !important;
  --tw-shadow-colored: 0px 0px 19px 4px var(--tw-shadow-color), 0px 0px 250px 211px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group.danger .dark\:group-\[\.danger\]\:shadow-risk-glow-high:is(.dark *) {
  --tw-shadow-color: hsl(var(--lf-risk-glow-high) / var(--lf-risk-glow-high-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group.success .dark\:group-\[\.success\]\:shadow-risk-glow-low:is(.dark *) {
  --tw-shadow-color: hsl(var(--lf-risk-glow-low) / var(--lf-risk-glow-low-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
.group.warning .dark\:group-\[\.warning\]\:shadow-risk-glow-mid:is(.dark *) {
  --tw-shadow-color: hsl(var(--lf-risk-glow-mid) / var(--lf-risk-glow-mid-opacity, 1));
  --tw-shadow: var(--tw-shadow-colored);
}
@media (min-width: 640px) {

  .sm\:block {
    display: block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:min-w-\[40vw\] {
    min-width: 40vw;
  }

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

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

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

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

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

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

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

  .sm\:max-w-\[75\%\] {
    max-width: 75%;
  }

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

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:max-w-sm {
    max-width: 24rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:self-start {
    align-self: flex-start;
  }

  .sm\:self-end {
    align-self: flex-end;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .data-\[state\=open\]\:sm\:slide-in-from-top-full[data-state="open"] {
    --tw-enter-translate-y: -100%;
  }

  body.office .office\:sm\:max-w-\[85\%\] {
    max-width: 85%;
  }
}
@media (min-width: 768px) {

  .md\:inset-x-auto {
    left: auto;
    right: auto;
  }

  .md\:bottom-5 {
    bottom: 1.25rem;
  }

  .md\:end-5 {
    inset-inline-end: 1.25rem;
  }

  .md\:me-2 {
    margin-inline-end: 0.5rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

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

  .md\:min-h-0 {
    min-height: 0px;
  }

  .md\:w-10 {
    width: 2.5rem;
  }

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

  .md\:w-\[clamp\(320px\2c 32vw\2c 380px\)\] {
    width: clamp(320px,32vw,380px);
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:min-w-\[60\%\] {
    min-width: 60%;
  }

  .md\:max-w-2xl {
    max-width: 42rem;
  }

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

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

  .md\:max-w-lg {
    max-width: 32rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-0 {
    gap: 0px;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:rounded-xl {
    border-radius: calc(var(--radius) + 2px);
  }

  .md\:p-3 {
    padding: 0.75rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .md\:ps-body {
    padding-inline-start: var(--lf-body-padding);
  }

  .md\:pt-\[70px\] {
    padding-top: 70px;
  }

  body.office .office\:md\:max-w-\[70\%\] {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

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

  .lg\:w-56 {
    width: 14rem;
  }

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

  .lg\:w-auto {
    width: auto;
  }

  .lg\:min-w-\[800px\] {
    min-width: 800px;
  }

  .lg\:\!max-w-\[620px\] {
    max-width: 620px !important;
  }

  .lg\:max-w-2xl {
    max-width: 42rem;
  }

  .lg\:max-w-3xl {
    max-width: 48rem;
  }

  .lg\:max-w-5xl {
    max-width: 64rem;
  }

  .lg\:max-w-\[35\%\] {
    max-width: 35%;
  }

  .lg\:max-w-\[40\%\] {
    max-width: 40%;
  }

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

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

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

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

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

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

  .lg\:max-w-\[66\%\] {
    max-width: 66%;
  }

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

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

  .lg\:max-w-xl {
    max-width: 36rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  body.office .office\:lg\:max-w-\[60\%\] {
    max-width: 60%;
  }
}
@media (min-width: 1280px) {

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {

  .min-\[1440px\]\:w-60 {
    width: 15rem;
  }
}
@media (min-width: 1536px) {

  .\32xl\:max-w-\[33\%\] {
    max-width: 33%;
  }

  .\32xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.rtl\:left-3:where([dir="rtl"], [dir="rtl"] *) {
  left: 0.75rem;
}
.rtl\:right-3:where([dir="rtl"], [dir="rtl"] *) {
  right: 0.75rem;
}
.rtl\:translate-x-1\/2:where([dir="rtl"], [dir="rtl"] *) {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:-scale-x-100:where([dir="rtl"], [dir="rtl"] *) {
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:before\:bg-gradient-to-l:where([dir="rtl"], [dir="rtl"] *)::before {
  content: var(--tw-content);
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.rtl\:data-\[state\=checked\]\:-translate-x-4[data-state="checked"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-translate-x: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:data-\[state\=checked\]\:-translate-x-\[17px\][data-state="checked"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-translate-x: -17px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-y: 100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-left[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: -100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-left-full[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: -100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-right[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: 100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-right-1\/2[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: 50%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-top[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-y: -100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-bottom[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-y: 100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-left[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: -100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-right[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: 100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-right-1\/2[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: 50%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-top[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-y: -100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-y: 100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-left[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: -100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-left-full[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: -100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-right[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: 100%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-right-1\/2[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-x: 50%;
}
.rtl\:data-\[state\=closed\]\:slide-out-to-top[data-state="closed"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-exit-translate-y: -100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-bottom[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-y: 100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-left[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: -100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-right[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: 100%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-right-1\/2[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-x: 50%;
}
.rtl\:data-\[state\=open\]\:slide-in-from-top[data-state="open"]:where([dir="rtl"], [dir="rtl"] *) {
  --tw-enter-translate-y: -100%;
}
.\[\&\:\:-webkit-scrollbar-thumb\]\:rounded-full::-webkit-scrollbar-thumb {
  border-radius: 9999px;
}
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-fill-weak::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-transparent::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.group\/scrollarea:hover .group-hover\/scrollarea\:\[\&\:\:-webkit-scrollbar-thumb\]\:bg-fill-weak::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.\[\&\:\:-webkit-scrollbar-track\]\:bg-transparent::-webkit-scrollbar-track {
  background-color: transparent;
}
.\[\&\:\:-webkit-scrollbar\]\:h-1\.5::-webkit-scrollbar {
  height: 0.375rem;
}
.\[\&\:\:-webkit-scrollbar\]\:w-1\.5::-webkit-scrollbar {
  width: 0.375rem;
}
.\[\&\:has\(\[data-state\=open\]\)\]\:opacity-100:has([data-state=open]) {
  opacity: 1;
}
.\[\&\:has\(\[role\=checkbox\]\)\]\:pe-0:has([role=checkbox]) {
  padding-inline-end: 0px;
}
.\[\&\:not\(\:empty\)\]\:mb-3:not(:empty) {
  margin-bottom: 0.75rem;
}
.\[\&\:not\(\:last-child\)\]\:flex-1:not(:last-child) {
  flex: 1 1 0%;
}
.\[\&\>\*\:first-child\]\:border-t>*:first-child {
  border-top-width: 1px;
}
.\[\&\>\*\:last-child\]\:mb-0>*:last-child {
  margin-bottom: 0px;
}
.\[\&\>\*\:last-child\]\:border-b>*:last-child {
  border-bottom-width: 1px;
}
.\[\&\>\*\:last-child\]\:border-stroke-weaker>*:last-child {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.\[\&\>\*\]\:\!mb-0>* {
  margin-bottom: 0px !important;
}
.\[\&\>\*\]\:h-full>* {
  height: 100%;
}
.\[\&\>\*\]\:w-full>* {
  width: 100%;
}
.\[\&\>\*\]\:overflow-visible>* {
  overflow: visible;
}
.\[\&\>\*\]\:px-2>* {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&\>\*\]\:px-3>* {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.\[\&\>\*\]\:py-1\.5>* {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&\>\*\]\:py-2>* {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.\[\&\>\*\]\:opacity-60>* {
  opacity: 0.6;
}
.\[\&\>button\]\:hidden>button {
  display: none;
}
.\[\&\>button\]\:flex-1>button {
  flex: 1 1 0%;
}
.\[\&\>button\]\:justify-center>button {
  justify-content: center;
}
.\[\&\>div\]\:w-full>div {
  width: 100%;
}
.\[\&\>div\]\:border-t-0>div {
  border-top-width: 0px;
}
.\[\&\>img\]\:relative>img {
  position: relative;
}
.\[\&\>label\]\:flex>label {
  display: flex;
}
.\[\&\>label\]\:h-11>label {
  height: 2.75rem;
}
.\[\&\>label\]\:items-center>label {
  align-items: center;
}
.\[\&\>label\]\:pe-3>label {
  padding-inline-end: 0.75rem;
}
.\[\&\>p\]\:text-body-small>p {
  font-size: round(calc(var(--font-scale) * 14px), 1px);
  line-height: round(calc(var(--font-scale) * 20px), 1px);
  font-weight: 400;
}
.\[\&\>span\]\:flex>span {
  display: flex;
}
.\[\&\>span\]\:hidden>span {
  display: none;
}
.\[\&\>span\]\:min-w-0>span {
  min-width: 0px;
}
.\[\&\>span\]\:items-center>span {
  align-items: center;
}
.\[\&\>span\]\:truncate>span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.\[\&\>svg\:last-child\]\:hidden>svg:last-child {
  display: none;
}
.\[\&\>svg\]\:relative>svg {
  position: relative;
}
.\[\&\>svg\]\:size-4>svg {
  width: 1rem;
  height: 1rem;
}
.\[\&\>svg\]\:min-h-4>svg {
  min-height: 1rem;
}
.\[\&\>svg\]\:min-w-4>svg {
  min-width: 1rem;
}
.\[\&\>svg\]\:rotate-180>svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
  border-bottom-width: 0px;
}
.\[\&\[data-state\=open\]\>svg\]\:rotate-0[data-state=open]>svg {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\[data-streaming\]_td\]\:\!whitespace-nowrap[data-streaming] td {
  white-space: nowrap !important;
}
.\[\&\[data-streaming\]_td\]\:\!\[overflow-wrap\:normal\][data-streaming] td {
  overflow-wrap: normal !important;
}
.\[\&_\.lf-tab-background\]\:top-2 .lf-tab-background {
  top: 0.5rem;
}
.\[\&_\.lf-tab-background\]\:h-\[calc\(100\%-16px\)\] .lf-tab-background {
  height: calc(100% - 16px);
}
.\[\&_\.shadow-table-border\]\:shadow-none .shadow-table-border {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.\[\&_\.table-container\:\:-webkit-scrollbar-thumb\]\:rounded-full .table-container::-webkit-scrollbar-thumb {
  border-radius: 9999px;
}
.\[\&_\.table-container\:\:-webkit-scrollbar-thumb\]\:bg-transparent .table-container::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.group\/scrollarea:hover .group-hover\/scrollarea\:\[\&_\.table-container\:\:-webkit-scrollbar-thumb\]\:bg-fill-weak .table-container::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-weak) / var(--lf-fill-weak-opacity, var(--tw-bg-opacity)));
}
.\[\&_\.table-container\:\:-webkit-scrollbar-track\]\:bg-transparent .table-container::-webkit-scrollbar-track {
  background-color: transparent;
}
.\[\&_\.table-container\:\:-webkit-scrollbar\]\:h-1\.5 .table-container::-webkit-scrollbar {
  height: 0.375rem;
}
.\[\&_\.table-container\:\:-webkit-scrollbar\]\:w-1\.5 .table-container::-webkit-scrollbar {
  width: 0.375rem;
}
.\[\&_\.table-container\]\:h-full .table-container {
  height: 100%;
}
.\[\&_\.table-container\]\:min-w-full .table-container {
  min-width: 100%;
}
.\[\&_\.table-container\]\:overflow-auto .table-container {
  overflow: auto;
}
.\[\&_\.table-container\]\:overflow-visible .table-container {
  overflow: visible;
}
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_button\]\:\!min-h-6 button {
  min-height: 1.5rem !important;
}
.\[\&_button\]\:flex-1 button {
  flex: 1 1 0%;
}
.\[\&_button\]\:justify-center button {
  justify-content: center;
}
.\[\&_button\]\:\!px-2 button {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.\[\&_button\]\:text-caption button {
  font-size: round(calc(var(--font-scale) * 12px), 1px);
  line-height: round(calc(var(--font-scale) * 16px), 1px);
  font-weight: 400;
}
.\[\&_h1\]\:mb-3 h1 {
  margin-bottom: 0.75rem;
}
.\[\&_h1\]\:mt-6 h1 {
  margin-top: 1.5rem;
}
.\[\&_h1\]\:text-heading2 h1 {
  font-size: round(calc(var(--font-scale) * 32px), 1px);
  line-height: round(calc(var(--font-scale) * 40px), 1px);
  font-weight: 400;
}
.\[\&_h1\]\:font-bold h1 {
  font-weight: 700;
}
.\[\&_h2\]\:mb-2 h2 {
  margin-bottom: 0.5rem;
}
.\[\&_h2\]\:mt-5 h2 {
  margin-top: 1.25rem;
}
.\[\&_h2\]\:text-heading h2 {
  font-size: round(calc(var(--font-scale) * 24px), 1px);
  line-height: round(calc(var(--font-scale) * 32px), 1px);
  font-weight: 400;
}
.\[\&_h2\]\:font-bold h2 {
  font-weight: 700;
}
.\[\&_h3\]\:mb-1 h3 {
  margin-bottom: 0.25rem;
}
.\[\&_h3\]\:mt-3 h3 {
  margin-top: 0.75rem;
}
.\[\&_h3\]\:text-subheading h3 {
  font-size: round(calc(var(--font-scale) * 18px), 1px);
  line-height: round(calc(var(--font-scale) * 28px), 1px);
  font-weight: 400;
}
.\[\&_h3\]\:font-semibold h3 {
  font-weight: 600;
}
.\[\&_iframe\]\:h-full iframe {
  height: 100%;
}
.\[\&_iframe\]\:w-full iframe {
  width: 100%;
}
.\[\&_ol\]\:list-decimal ol {
  list-style-type: decimal;
}
.\[\&_ol\]\:ps-4 ol {
  padding-inline-start: 1rem;
}
.\[\&_ol\]\:ps-6 ol {
  padding-inline-start: 1.5rem;
}
.\[\&_p\]\:m-0 p {
  margin: 0px;
}
.\[\&_p\]\:mb-1 p {
  margin-bottom: 0.25rem;
}
.\[\&_p\]\:block p {
  display: block;
}
.\[\&_p\]\:inline p {
  display: inline;
}
.\[\&_p\]\:w-full p {
  width: 100%;
}
.\[\&_p\]\:min-w-0 p {
  min-width: 0px;
}
.\[\&_p\]\:truncate p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.\[\&_span\[data-type\=\"mention\"\]\]\:text-content-body-tags span[data-type="mention"] {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-tags) / var(--lf-content-body-tags-opacity, var(--tw-text-opacity)));
}
.\[\&_span\]\:inline span {
  display: inline;
}
.\[\&_svg\]\:block svg {
  display: block;
}
.\[\&_svg\]\:size-3 svg {
  width: 0.75rem;
  height: 0.75rem;
}
.\[\&_svg\]\:size-3\.5 svg {
  width: 0.875rem;
  height: 0.875rem;
}
.\[\&_svg\]\:size-4 svg {
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:text-content-body-constant-dark svg {
  --tw-text-opacity: 1;
  color: hsl(var(--lf-content-body-constant-dark) / var(--lf-content-body-constant-dark-opacity, var(--tw-text-opacity)));
}
.\[\&_table\]\:\!mb-0 table {
  margin-bottom: 0px !important;
}
.\[\&_table\]\:w-full table {
  width: 100%;
}
.\[\&_table\]\:\!border-separate table {
  border-collapse: separate !important;
}
.\[\&_table\]\:\!\[border-spacing\:0\] table {
  border-spacing: 0 !important;
}
.\[\&_td\:last-child\]\:\!border-e-0 td:last-child {
  border-inline-end-width: 0px !important;
}
.\[\&_td\]\:\!break-words td {
  overflow-wrap: break-word !important;
}
.\[\&_td\]\:\!border-b td {
  border-bottom-width: 1px !important;
}
.\[\&_td\]\:\!border-e td {
  border-inline-end-width: 1px !important;
}
.\[\&_td\]\:\!border-stroke-weaker td {
  --tw-border-opacity: 1 !important;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity))) !important;
}
.\[\&_td\]\:\!px-5 td {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.\[\&_td\]\:\!py-4 td {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.\[\&_td\]\:\!text-start td {
  text-align: start !important;
}
.\[\&_td\]\:\!align-top td {
  vertical-align: top !important;
}
.\[\&_td\]\:\!\[overflow-wrap\:anywhere\] td {
  overflow-wrap: anywhere !important;
}
.\[\&_th\:last-child\]\:\!border-e-0 th:last-child {
  border-inline-end-width: 0px !important;
}
.\[\&_th\]\:\!sticky th {
  position: sticky !important;
}
.\[\&_th\]\:\!top-0 th {
  top: 0px !important;
}
.\[\&_th\]\:\!z-10 th {
  z-index: 10 !important;
}
.\[\&_th\]\:\!h-auto th {
  height: auto !important;
}
.\[\&_th\]\:h-auto th {
  height: auto;
}
.\[\&_th\]\:\!min-h-14 th {
  min-height: 3.5rem !important;
}
.\[\&_th\]\:\!whitespace-nowrap th {
  white-space: nowrap !important;
}
.\[\&_th\]\:\!border-b th {
  border-bottom-width: 1px !important;
}
.\[\&_th\]\:\!border-e th {
  border-inline-end-width: 1px !important;
}
.\[\&_th\]\:\!border-stroke-weaker th {
  --tw-border-opacity: 1 !important;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity))) !important;
}
.\[\&_th\]\:\!border-b-stroke-weaker th {
  --tw-border-opacity: 1 !important;
  border-bottom-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity))) !important;
}
.\[\&_th\]\:\!bg-fill-superstrong th {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--lf-fill-superstrong) / var(--lf-fill-superstrong-opacity, var(--tw-bg-opacity))) !important;
}
.\[\&_th\]\:bg-fill-maximal th {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--lf-fill-maximal) / var(--lf-fill-maximal-opacity, var(--tw-bg-opacity)));
}
.\[\&_th\]\:bg-transparent th {
  background-color: transparent;
}
.\[\&_th\]\:\!px-5 th {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.\[\&_th\]\:\!py-4 th {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.\[\&_th\]\:px-2 th {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_th\]\:py-1\.5 th {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_th\]\:\!text-start th {
  text-align: start !important;
}
.\[\&_th\]\:\!align-middle th {
  vertical-align: middle !important;
}
.\[\&_th\]\:\!font-semibold th {
  font-weight: 600 !important;
}
.\[\&_th\]\:\!text-content-heading th {
  --tw-text-opacity: 1 !important;
  color: hsl(var(--lf-content-heading) / var(--lf-content-heading-opacity, var(--tw-text-opacity))) !important;
}
.\[\&_tr\:last-child\]\:border-b-0 tr:last-child {
  border-bottom-width: 0px;
}
.\[\&_tr\:last-child_td\]\:\!border-b-0 tr:last-child td {
  border-bottom-width: 0px !important;
}
.\[\&_tr\]\:h-auto tr {
  height: auto;
}
.\[\&_tr\]\:border-b tr {
  border-bottom-width: 1px;
}
.\[\&_tr\]\:border-stroke-weaker tr {
  --tw-border-opacity: 1;
  border-color: hsl(var(--lf-stroke-weaker) / var(--lf-stroke-weaker-opacity, var(--tw-border-opacity)));
}
.\[\&_ul\]\:list-disc ul {
  list-style-type: disc;
}
.\[\&_ul\]\:ps-4 ul {
  padding-inline-start: 1rem;
}
.\[\&_ul\]\:ps-6 ul {
  padding-inline-start: 1.5rem;
}
.\[\&_video\]\:h-full video {
  height: 100%;
}
.\[\&_video\]\:w-full video {
  width: 100%;
}
/*$vite$:1*/