.due-diligence-scroll-panel {
  scrollbar-color: #93c5fd #e2e8f0;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.due-diligence-scroll-panel::-webkit-scrollbar {
  height: 0.65rem;
  width: 0.65rem;
}

.due-diligence-scroll-panel::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.72);
  border-radius: 9999px;
}

.due-diligence-scroll-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #93c5fd 0%, #64748b 100%);
  border: 2px solid rgba(248, 250, 252, 0.92);
  border-radius: 9999px;
}

.due-diligence-scroll-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #475569 100%);
}
.process-navigation__body {
  transition: padding 160ms ease;
}

.process-navigation__collapsible {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 180ms ease, opacity 140ms ease;
}

.process-navigation__collapsible > span {
  min-height: 0;
  overflow: hidden;
}

.process-navigation[data-process-navigation-folded="true"] .process-navigation__body {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}

.process-navigation[data-process-navigation-folded="true"] .process-navigation__collapsible {
  grid-template-rows: 0fr;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .process-navigation__body,
  .process-navigation__collapsible {
    transition: none;
  }
}
.process-system-card {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.process-system-card > * {
  position: relative;
  z-index: 2;
}

.process-system-card--running {
  --process-card-primary-rgb: 45, 212, 191;
  --process-card-secondary-rgb: 125, 211, 252;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(var(--process-card-secondary-rgb), 0.14)),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--process-card-secondary-rgb), 0.42);
  box-shadow: 0 18px 45px rgba(8, 47, 73, 0.22);
}

.process-system-card--aas {
  --process-card-primary-rgb: 251, 191, 36;
  --process-card-secondary-rgb: 56, 189, 248;
}

.process-system-card--running::before,
.process-system-card--running::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.process-system-card--running::before {
  animation: process-status-ambient 9s linear infinite;
  background: conic-gradient(from 120deg, transparent, rgba(var(--process-card-primary-rgb), 0.22), transparent, rgba(var(--process-card-secondary-rgb), 0.18), transparent);
  inset: -70%;
  opacity: 0.68;
  z-index: 0;
}

.process-system-card--running::after {
  animation: process-status-card-sweep 3.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 1;
}

.process-system-activity {
  --process-accent-rgb: 103, 232, 249;
  --process-accent: #67e8f9;

  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.36), rgba(var(--process-accent-rgb), 0.12));
  border: 1px solid rgba(var(--process-accent-rgb), 0.28);
  border-radius: 0.875rem;
  color: var(--process-accent);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(7.5rem, 0.8fr) minmax(11rem, 1fr);
  margin-top: 1rem;
  min-height: 4.75rem;
  overflow: hidden;
  padding: 0.8rem 0.9rem;
}

.process-system-activity--aas {
  --process-accent-rgb: 251, 191, 36;
  --process-accent: #fbbf24;
}

.process-system-activity__label {
  color: rgba(240, 249, 255, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.process-system-activity__stage {
  align-items: center;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 3rem minmax(4.5rem, 1fr) 3rem;
  min-height: 3rem;
}

.process-system-activity__source,
.process-system-activity__target {
  background: rgba(2, 6, 23, 0.2);
  border: 1px solid rgba(var(--process-accent-rgb), 0.42);
  border-radius: 0.7rem;
  box-shadow: inset 0 0 22px rgba(var(--process-accent-rgb), 0.14);
  height: 2.8rem;
  overflow: hidden;
  position: relative;
}

.process-system-activity__source::after,
.process-system-activity__target::after {
  animation: process-status-read 2.4s ease-in-out infinite;
  background: linear-gradient(180deg, transparent, rgba(var(--process-accent-rgb), 0.58), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(-105%);
}

.process-system-activity__target::after {
  animation-delay: 0.45s;
}

.process-system-activity__source > span,
.process-system-activity__target > span {
  background: rgba(var(--process-accent-rgb), 0.82);
  border-radius: 9999px;
  height: 2px;
  left: 0.58rem;
  opacity: 0.8;
  position: absolute;
  right: 0.58rem;
}

.process-system-activity__source > span:nth-child(1),
.process-system-activity__target > span:nth-child(1) {
  top: 0.78rem;
}

.process-system-activity__source > span:nth-child(2),
.process-system-activity__target > span:nth-child(2) {
  right: 1rem;
  top: 1.35rem;
}

.process-system-activity__source > span:nth-child(3),
.process-system-activity__target > span:nth-child(3) {
  right: 1.45rem;
  top: 1.92rem;
}

.process-system-activity--dds .process-system-activity__source::before {
  border-color: rgba(240, 249, 255, 0.75) rgba(240, 249, 255, 0.75) transparent transparent;
  border-style: solid;
  border-width: 0.38rem;
  content: "";
  position: absolute;
  right: 0.34rem;
  top: 0.34rem;
}

.process-system-activity--aas .process-system-activity__target > span {
  animation: process-status-compose 1.8s ease-in-out infinite;
  transform-origin: left center;
}

.process-system-activity--aas .process-system-activity__target > span:nth-child(2) {
  animation-delay: 0.18s;
}

.process-system-activity--aas .process-system-activity__target > span:nth-child(3) {
  animation-delay: 0.36s;
}

.process-system-activity__track {
  background: linear-gradient(90deg, rgba(var(--process-accent-rgb), 0.18), rgba(255, 255, 255, 0.22), rgba(var(--process-accent-rgb), 0.18));
  border-radius: 9999px;
  box-shadow: 0 0 18px rgba(var(--process-accent-rgb), 0.16);
  height: 0.25rem;
  overflow: hidden;
  position: relative;
}

.process-system-activity__track > span {
  animation: process-status-flow 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  background: currentColor;
  border-radius: 9999px;
  box-shadow: 0 0 12px currentColor;
  height: 0.25rem;
  left: -0.8rem;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 0.8rem;
}

.process-system-activity__track > span:nth-child(2) {
  animation-delay: 0.42s;
}

.process-system-activity__track > span:nth-child(3) {
  animation-delay: 0.84s;
}

@keyframes process-status-ambient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes process-status-card-sweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  18%,
  62% {
    opacity: 0.7;
  }

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

@keyframes process-status-flow {
  0% {
    left: -0.8rem;
    opacity: 0;
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 0.8rem);
    opacity: 0;
  }
}

@keyframes process-status-read {
  0% {
    opacity: 0;
    transform: translateY(-105%);
  }

  20%,
  72% {
    opacity: 0.86;
  }

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

@keyframes process-status-compose {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.38);
  }

  45%,
  70% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@media (max-width: 640px) {
  .process-system-activity {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-system-card--running::before,
  .process-system-card--running::after,
  .process-system-activity__source::after,
  .process-system-activity__target::after,
  .process-system-activity__target > span,
  .process-system-activity__track > span {
    animation: none;
  }

  .process-system-card--running::after {
    display: none;
  }

  .process-system-activity__track {
    align-items: center;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    padding-inline: 0.25rem;
  }

  .process-system-activity__track > span {
    height: 0.22rem;
    left: auto;
    opacity: 0.82;
    position: static;
    width: 0.7rem;
  }
}
/* src/exports/styles/trix.css */
.trix-content {
  border: 1px solid var(--rhino-border-color);
  border-radius: 0px 0px var(--rhino-border-radius) var(--rhino-border-radius);
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 200px;
  outline: transparent;
  overflow-wrap: break-word;
  word-break: break-word;
}
.trix-content[contenteditable=true] {
  white-space: pre-wrap;
}
.trix-content:is(:focus, :focus-within) {
  border-color: var(--rhino-button-active-border-color);
}
.trix-content :is(img, svg, figure) {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.trix-content :is(figure, p) {
  padding: 0;
  margin: 0;
}
.trix-content figure {
  position: relative;
}
.trix-content figcaption {
  line-break: anywhere;
  display: inline-block;
  white-space: normal;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.trix-content[contenteditable=true] figcaption {
  white-space: break-spaces;
}
.trix-content .rhino-upload-error {
  background-color: rgba(255, 0, 0, 0.3);
}
.trix-content:not([readonly]) .attachment--preview:is(:focus-within, :focus, .has-focus) :is(img) {
  outline: transparent;
  box-shadow: var(--rhino-focus-ring);
}
.trix-content:not([readonly]) .attachment:not(.attachment--preview):is(:focus-within, :focus, .has-focus) {
  outline: transparent;
  box-shadow: var(--rhino-focus-ring);
}
.rhino-attachment-editor::part(delete-button),
.rhino-attachment-editor::part(file-metadata) {
  display: none;
}
.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(delete-button),
.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(file-metadata) {
  display: flex;
}
.trix-content .placeholder {
  position: absolute;
  pointer-events: none;
  color: var(--rhino-placeholder-text-color);
  color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));
  cursor: text;
  content: "";
}
.trix-content figure.attachment figcaption {
  position: relative;
}
.trix-content p.is-editor-empty:first-child::before,
.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {
  color: var(--rhino-placeholder-text-color);
  color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));
  content: attr(data-placeholder);
  pointer-events: none;
}
.trix-content figure[data-trix-attachment]:not(.has-focus) figcaption.is-empty::before {
  content: attr(data-default-caption);
  pointer-events: none;
}
.trix-content ul {
  list-style: disc;
}
.trix-content ol {
  list-style-type: decimal;
}
.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
}
.trix-content p.is-editor-empty:first-child::before {
  float: left;
  height: 0;
  pointer-events: none;
}
.trix-content {
  box-sizing: border-box;
}
.trix-content * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
.trix-content blockquote {
  border: 0 solid #ccc;
  border-inline-start-width: 0.3em;
  margin-inline-start: 0.3em;
  padding-inline-start: 0.6em;
}
.trix-content li {
  margin-inline-start: 1em;
}
.trix-content :not(pre) code {
  background-color: #eee;
  border-radius: 2px;
  padding: 2px;
  margin: 0 1px;
  border: 1px solid rgba(192, 192, 192, 0.5);
  display: inline;
}
.trix-content code,
.trix-content pre {
  box-decoration-break: clone;
}
.trix-content pre {
  display: block;
  width: 100%;
  font-family: monospace;
  padding: 0.5em;
  white-space: pre;
  overflow-x: auto;
  background-color: #eee;
  font-size: 0.9em;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: block;
  position: relative;
  max-width: 100%;
}
.trix-content .attachment figcaption a,
.trix-content .attachment figcaption a:hover {
  color: LinkText;
}
.trix-content .attachment figcaption a:visited,
.trix-content .attachment figcaption a:hover:visited {
  color: VisitedText;
}
.trix-content .attachment__caption {
  text-align: center;
  margin-top: 0.5em;
}
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " \b7  ";
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
  margin: 0.6em 0;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment.attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid var(--rhino-border-color);
  border-radius: var(--rhino-border-radius);
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.trix-content figure.attachment {
  display: inline-block;
  position: relative;
  white-space: normal;
}
.trix-content .attachment-gallery > p {
  width: 0px;
  padding: 0;
  flex-basis: 0%;
  max-width: 0%;
  flex-shrink: 1;
  flex-grow: 0;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 100%;
  padding: 0 0.5em;
  max-width: 100%;
  white-space: normal;
}
.trix-content .attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]) {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
  white-space: normal;
}
.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) ~ :is(.attachment, action-text-attachment),
.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) {
  padding: 0;
  flex-basis: 100%;
  max-width: 100%;
}
.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2),
.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2) ~ :is(.attachment--preview, action-text-attachment[previewable=true]),
.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4),
.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4) ~ :is(.attachment--preview, action-text-attachment[previewable=true]) {
  flex-basis: 50%;
  max-width: 50%;
}
.trix-content .attachment-gallery.attachment-gallery--2 action-text-attachment > .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 action-text-attachment > .attachment,
.trix-content .attachment-gallery action-text-attachment > .attachment {
  max-width: 100%;
}
:host,
.trix-content {
  --rhino-focus-ring: 0px 0px 1px 1px var(--rhino-button-active-border-color);
  --rhino-border-radius: 4px;
  --rhino-danger-border-color: red;
  --rhino-danger-background-color: #ffdddd;
  --rhino-text-color: #374151;
  --rhino-dark-text-color: white;
  --rhino-border-color: #cecece;
  --rhino-placeholder-text-color: #cecece;
  --rhino-dark-placeholder-text-color: gray;
  --rhino-button-text-color: #889;
  --rhino-button-dark-text-color: #eee;
  --rhino-button-border-color: #cecece;
  --rhino-button-disabled-text-color: #d1d5db;
  --rhino-button-disabled-border-color: #d1d5db;
  --rhino-button-disabled-background-color: #d1d5db;
  --rhino-button-active-border-color: #005a9c;
  --rhino-button-active-background-color: rgb(226 239 255);
  --rhino-toolbar-text-color: hsl(219, 6%, 43%);
  --rhino-toolbar-icon-size: 1em;
  --rhino-dialog-border-color: hsl( var(--rhino-button-focus-background-color-hsl) / 50% );
  --rhino-button-focus-background-color: hsl( var(--rhino-button-focus-background-color-hsl) );
  --rhino-button-focus-background-color-hsl: 219 26% 95%;
  --rhino-fake-selection-color: rgb(220, 220, 220);
  display: block;
  color: var(--rhino-text-color);
  color: light-dark(var(--rhino-text-color), var(--rhino-dark-text-color));
}
@keyframes rhino-blink {
  49% {
    border-color: unset;
  }
  50% {
    border-color: Canvas;
  }
  99% {
    border-color: Canvas;
  }
}
.rhino-editor .no-cursor {
  caret-color: transparent;
}
:where(.rhino-editor) .fake-cursor {
  margin: 0;
  padding: 0;
  margin-right: -1px;
  border-left-width: 1px;
  border-left-style: solid;
  animation: rhino-blink 1s;
  animation-iteration-count: infinite;
  position: relative;
  z-index: 1;
}
:where(.rhino-editor .ProseMirror):not(:focus-within) .rhino-selection {
  background: var(--rhino-fake-selection-color);
}
.ProseMirror-separator {
  display: none !important;
}
.rhino-toolbar-button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--rhino-border-color);
  border-radius: var(--rhino-border-radius);
  padding: 0.4em;
  color: var(--rhino-button-text-color);
  color: light-dark(var(--rhino-button-text-color), var(--rhino-button-dark-text-color));
  background: Canvas;
  font-size: inherit;
  display: inline-grid;
}
.rhino-toolbar-button:is([aria-disabled=true], :disabled) {
  color: var(--rhino-button-disabled-text-color);
  border-color: var(--rhino-button-disabled-border-color);
}
.rhino-toolbar-button[aria-disabled=true]:focus {
  border-color: var(--rhino-button-disabled-border-color);
}
.rhino-toolbar-button svg {
  min-height: var(--rhino-toolbar-icon-size);
  min-width: var(--rhino-toolbar-icon-size);
  max-height: var(--rhino-toolbar-icon-size);
  max-width: var(--rhino-toolbar-icon-size);
}
.rhino-toolbar-button:is(:focus, :hover):not([aria-disabled=true], :disabled) {
  outline: transparent;
  border-color: var(--rhino-button-active-border-color);
}
.rhino-toolbar-button:is(:focus):not([aria-disabled=true], :disabled) {
  box-shadow: var(--rhino-focus-ring);
}
.rhino-toolbar-button:is(:hover):not([aria-disabled=true], :disabled, [aria-pressed=true], [part~=toolbar__button--active]) {
  background-color: var(--rhino-button-focus-background-color);
  background-color: light-dark(var(--rhino-button-focus-background-color), gray);
}
.rhino-toolbar-button:is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {
  color: var(--rhino-button-disabled-text-color);
  color: light-dark(var(--rhino-button-disabled-text-color), gray);
  border-color: var(--rhino-button-disabled-border-color);
}
.rhino-toolbar-button:is(:focus, :hover):is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {
  outline: transparent;
  color: var(--rhino-button-disabled-text-color);
  color: light-dark(var(--rhino-button-disabled-text-color), gray);
  border-color: var(--rhino-button-disabled-border-color);
  box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);
  box-shadow: 0 0 0 1px light-dark(var(--rhino-button-disabled-border-color), transparent);
}
/*# sourceMappingURL=trix.css.map */
.answer-rich-text-editor {
  --rhino-border-color: #cbd5e1;
  --rhino-button-active-border-color: #2563eb;
  --rhino-border-radius: 0.75rem;
  --rhino-focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.18);
  --rhino-text-color: #0f172a;
  --rhino-toolbar-text-color: #475569;

  display: block;
}

.answer-rich-text-editor[readonly] {
  opacity: 0.75;
}

.answer-rich-text-editor .ProseMirror > * + *,
.answer-rich-text-editor .trix-content > * + *,
.answer-rich-text-content > * + * {
  margin-top: 0.75rem;
}

.answer-rich-text-editor .ProseMirror a,
.answer-rich-text-editor .ProseMirror a:visited,
.answer-rich-text-content a,
.answer-rich-text-content a:visited,
.answer-rich-text-editor .trix-content a,
.answer-rich-text-editor .trix-content a:visited {
  color: var(--color-primary, #2563eb);
  cursor: pointer;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.answer-rich-text-editor .ProseMirror a:hover,
.answer-rich-text-content a:hover,
.answer-rich-text-editor .trix-content a:hover {
  color: var(--color-primary-hover, #1d4ed8);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

dialog[data-modal-target="dialog"] {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
