:root {
  --page-bg: #f6f7f9;
  --ink: #0d1838;
  --muted: #4d5568;
  --grid: #d8dde6;
  --grid-soft: #e1e6ee;
  --finance-grid: #d4dae4;
  --finance-quarter-grid: #aeb6c4;
  --finance-muted-total-positive: #6b9279;
  --finance-muted-total-negative: #bf7a7f;
  --finance-muted-total-zero: #9aa3b2;
  --border: #4f5664;
  --frame-border: #9aa3b2;
  --blue: #1763df;
  --site-topbar-height: 46px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: calc(100svh - var(--site-topbar-height));
  padding: var(--site-topbar-height) 0 0;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 6px 8px;
  border: 1px solid #cbd1db;
  background: #fff;
}

.site-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-scroll-top-button {
  display: none;
}

.site-menu-shell {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1400;
}

.site-menu-button {
  display: grid;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px 4px;
  border: 1px solid #aeb7c4;
  border-radius: 4px;
  background: #f8fafc;
  cursor: pointer;
}

.site-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #08164a;
}

.site-menu-panel {
  position: absolute;
  top: 40px;
  left: 0;
  width: 360px;
  border: 1px solid #aeb6c4;
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 24, 56, 0.22);
}

.site-menu-panel a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e7ef;
  color: #0d1838;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-menu-panel a:last-child {
  border-bottom: 0;
}

.site-menu-panel a:hover,
.site-menu-panel a[aria-current="page"] {
  background: #e8f1ff;
  color: #1763df;
}

.site-topbar-actions .forecast-actions {
  position: static;
  display: flex;
  gap: 8px;
}

.site-topbar-actions .forecast-action-button,
.site-topbar-actions .site-topbar-action-button {
  position: static;
  width: 32px;
  height: 32px;
}

.site-topbar-actions .site-topbar-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #aeb7c4;
  border-radius: 4px;
  background: #f2f4f7;
  color: #394354;
  cursor: pointer;
}

.site-topbar-actions .site-topbar-action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-topbar-actions .site-topbar-action-button:hover,
.site-topbar-actions .site-topbar-action-button:focus-visible {
  background: #e4e9f0;
  border-color: #7d8796;
  color: #111827;
}

.setlux-toast-stack {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 2400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(520px, calc(100vw - 28px));
  pointer-events: none;
  transform: translateX(-50%);
}

.setlux-toast {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: #176a3a;
  background: #eaf8ef;
  box-shadow: 0 10px 30px rgba(13, 24, 56, 0.18);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.setlux-toast-warning {
  color: #9a5a00;
  background: #fff1d6;
}

.setlux-toast-error {
  color: #a33d3d;
  background: #fff1f1;
}

.setlux-toast.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.site-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 1390;
  background: rgba(13, 24, 56, 0.08);
}

.static-render .site-topbar,
.static-render .site-menu-shell,
.static-render .site-menu-scrim {
  display: none;
}

.static-render .page {
  padding-top: 0;
}

.forecast-shell {
  max-width: 1380px;
  margin: 32px auto;
  padding: 0 32px;
}

.forecast-actions {
  position: static;
  display: flex;
  gap: 8px;
}

.forecast-action-button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #aeb7c4;
  border-radius: 4px;
  background: #f2f4f7;
  color: #394354;
  cursor: pointer;
}

.forecast-action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.forecast-action-button:hover,
.forecast-action-button:focus-visible {
  background: #e4e9f0;
  border-color: #7d8796;
  color: #111827;
}

.forecast-root {
  max-width: none;
  margin: 0;
  padding: 32px 38px 42px;
  border: 1px solid #cbd1db;
  background: #fff;
  color: #111827;
  font-size: 15px;
  line-height: 1.48;
}

.forecast-root h1,
.forecast-root h2,
.forecast-root h3,
.forecast-root h4,
.forecast-root h5,
.forecast-root h6 {
  margin: 22px 0 10px;
  color: #08164a;
  line-height: 1.18;
}

.forecast-root h1:first-child,
.forecast-root h2:first-child,
.forecast-root h3:first-child {
  margin-top: 0;
}

.forecast-root h1 {
  font-size: 30px;
}

.forecast-root h2 {
  font-size: 23px;
  border-bottom: 2px solid #d8dde6;
  padding-bottom: 7px;
}

.forecast-root h3 {
  font-size: 19px;
}

.forecast-root p,
.forecast-root ul,
.forecast-root ol {
  margin: 9px 0;
}

.forecast-root code {
  padding: 1px 4px;
  border: 1px solid #d8dde6;
  background: #f6f7f9;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.92em;
}

.forecast-root pre {
  overflow: auto;
  padding: 14px;
  border: 1px solid #d8dde6;
  background: #f6f7f9;
}

.forecast-root pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.forecast-root table {
  width: 100%;
  margin: 14px 0 20px;
  border-collapse: collapse;
  font-size: 13.5px;
}

.forecast-table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 20px;
  overflow-x: visible;
}

.forecast-table-scroll table {
  width: 100%;
  margin: 0;
}

.forecast-table-scroll.is-wide-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.forecast-table-scroll.is-wide-table table {
  width: max-content;
  min-width: 100%;
}

.forecast-root th,
.forecast-root td {
  vertical-align: top;
  padding: 8px 10px;
  border: 1px solid #d8dde6;
}

.forecast-root th {
  background: #eef3f9;
  color: #0d1838;
  font-weight: 800;
}

.forecast-root tbody tr:nth-child(even) td {
  background: #fafbfc;
}

.forecast-root td p:first-child,
.forecast-root th p:first-child {
  margin-top: 0;
}

.forecast-root td p:last-child,
.forecast-root th p:last-child {
  margin-bottom: 0;
}

.documents-root {
  max-width: 1180px;
  margin: 32px auto 40px;
  padding: 32px 36px 40px;
  border: 1px solid #cbd1db;
  background: #fff;
}

.documents-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}

.documents-heading h1 {
  margin: 0;
  color: #08164a;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 800;
}

.documents-toggle-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid #9da7b6;
  background: #fff;
  cursor: pointer;
}

.documents-toggle-all:hover {
  background: #eef3f9;
}

.documents-toggle-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid #08164a;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.documents-toggle-all[aria-expanded="false"] .documents-toggle-arrow {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #08164a;
  border-right: 0;
}

.document-section {
  margin: 0 0 22px;
  border: 1px solid #d8dde6;
  background: #fff;
  color: #08164a;
}

.document-section-heading {
  margin: 0;
}

.document-section-title {
  border: 0;
  border-bottom: 1px solid #d8dde6;
  background: #eef3f9;
}

.document-section-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 800;
  text-align: left;
}

.document-section-toggle:hover {
  background: #e5eef9;
}

.document-section-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid currentColor;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  flex: 0 0 auto;
}

.document-section-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.document-section.is-collapsed .document-section-arrow {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid currentColor;
  border-right: 0;
}

.document-section.is-collapsed .document-section-body {
  display: none;
}

.document-section.is-collapsed .document-section-note,
.document-section.is-collapsed .document-link-list {
  display: none;
}

.document-section-body {
  display: block;
  padding: 14px 16px;
}

.document-section-note {
  display: block;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #e2bf63;
  border-left: 4px solid #c88b0d61;
  border-radius: 6px;
  color: #332b1d;
  font-size: 15px;
  line-height: 1.45;
  background: #fff6d89c;
  box-shadow: 0 1px 2px rgba(31, 41, 55, 0.08);
}

.document-section-note > :first-child {
  margin-top: 0;
}

.document-section-note > :last-child {
  margin-bottom: 0;
}

.document-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-link-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  min-height: 56px;
  padding: 14px 16px;
}

.document-link {
  display: inline-flex;
  min-width: 0;
  max-width: calc(100% - 36px);
  color: #1763df;
  text-decoration: none;
}

.document-link:hover {
  color: #1763df;
}

.document-link:hover .document-link-title {
  text-decoration: underline;
}

.document-link-title {
  display: inline;
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.document-copy-button {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 0;
  margin-top: -5px;
  padding: 0;
  vertical-align: middle;
  color: #526176;
  background: #f8fafc;
  border: 1px solid #c7d0dd;
  border-radius: 5px;
  cursor: pointer;
}

.document-copy-button:hover,
.document-copy-button:focus-visible {
  color: #1763df;
  background: #eef5ff;
  border-color: #9bb9ef;
}

.document-copy-button.is-copied {
  color: #16844a;
  background: #ecfdf3;
  border-color: #9ed8b7;
}

.document-copy-button.is-copy-failed {
  color: #a33d3d;
  background: #fff1f1;
  border-color: #e4aaaa;
}

.document-copy-button svg {
  width: 15px;
  height: 15px;
}

.document-copy-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-copy-source {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.documents-empty {
  margin: 0;
  color: #4d5568;
  font-size: 15px;
}

@media (max-width: 720px) {
  .site-scroll-top-button {
    position: fixed;
    left: 14px;
    right: auto;
    bottom: 14px;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #aeb7c4;
    border-radius: 6px;
    background: rgba(248, 250, 252, 0.96);
    color: #0d1838;
    box-shadow: 0 8px 22px rgba(13, 24, 56, 0.2);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-scroll-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-scroll-top-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-menu-panel {
    top: 40px;
    left: 0;
    width: min(360px, calc(100vw - 32px));
  }

  .documents-root {
    margin: 16px;
    padding: 28px 18px 28px;
  }

  .forecast-root {
    overflow: hidden;
    padding: 28px 18px 28px;
  }

  .forecast-shell {
    margin: 16px auto;
    padding: 0 16px;
  }

  .forecast-root h1 {
    font-size: 28px;
  }

  .forecast-root th,
  .forecast-root td {
    min-width: 92px;
  }

  .forecast-table-scroll.is-wide-table th,
  .forecast-table-scroll.is-wide-table td {
    box-sizing: border-box;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-area {
    width: 124px;
    max-width: 124px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-title {
    width: 164px;
    max-width: 164px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-method {
    width: 132px;
    max-width: 132px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-input {
    width: 280px;
    max-width: 280px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-linked {
    width: 176px;
    max-width: 176px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-role,
  .forecast-table-scroll.is-wide-table .forecast-col-type {
    width: 128px;
    max-width: 128px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-schedule {
    width: 220px;
    max-width: 220px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-money {
    width: 172px;
    max-width: 172px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-small {
    width: 74px;
    max-width: 74px;
  }

  .forecast-table-scroll.is-wide-table .forecast-col-default {
    width: 150px;
    max-width: 150px;
  }

  .documents-heading h1 {
    font-size: 24px;
  }

  .document-link-list {
    grid-template-columns: 1fr;
  }
}

.chart-root {
  width: auto;
  margin-left: 0;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--frame-border);
}

.chart-root.fixed-mode {
  height: calc(100svh - var(--site-topbar-height));
  overflow: auto;
}

.chart-root.fixed-mode.gantt-left-collapsed {
  overflow-x: hidden;
  overflow-y: auto;
}

.gantt {
  min-width: 0;
  padding: 0 0 12px;
  background: #fff;
}

.gantt.gantt-left-collapsed {
  min-width: 0;
}

.chart-title {
  margin: 0;
  padding: 2px 0 0;
  color: #08164a;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

.chart-subtitle {
  margin: 0 0 6px;
  color: #343b4d;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.gantt-view-switches {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.gantt-view-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0d1838;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.gantt-view-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.gantt-switch-track {
  position: relative;
  width: 36px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid #6f7785;
  border-radius: 999px;
  background: #fff;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.gantt-switch-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 14px;
  height: 14px;
  border: 1px solid #0d1838;
  border-radius: 50%;
  background: #f8fafc;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.gantt-view-switch input:checked + .gantt-switch-track {
  border-color: #0d1838;
  background: #0d1838;
}

.gantt-view-switch input:checked + .gantt-switch-track::after {
  background: #fff;
  transform: translateX(18px);
}

.gantt-view-switch input:focus-visible + .gantt-switch-track {
  outline: 2px solid #1763df;
  outline-offset: 2px;
}

.gantt-view-switch.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.gantt-view-switch.is-disabled .gantt-switch-track {
  cursor: not-allowed;
}

.left-panel-toggle {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
  border: 1px solid #8b94a1;
  border-radius: 2px;
  background: #fff;
  color: #202734;
  cursor: pointer;
  transform: none;
  z-index: 45;
}

.chart-table:not(.gantt-left-collapsed) .left-panel-toggle-floating,
.chart-table.gantt-left-collapsed .left-panel-toggle-inline {
  display: none;
}

.left-panel-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-right: 6px solid currentColor;
  border-bottom: 4px solid transparent;
  transform: translate(-58%, -50%);
}

.left-panel-toggle[aria-expanded="false"]::before {
  border-right: 0;
  border-left: 6px solid currentColor;
  transform: translate(-38%, -50%);
}

.chart-table.gantt-left-collapsed .left-cell,
.chart-table.gantt-left-collapsed .activity-cell,
.chart-table.gantt-left-collapsed .figures-cell {
  visibility: hidden;
  padding-right: 0 !important;
  padding-left: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

.timeline-year-divider {
  border-right: 2px solid #7d8796 !important;
}

.stage-left {
  background: #e1e5e9;
  color: #0d1838;
  font-size: 18px;
  font-weight: 800;
  border-bottom-color: #9aa1ad;
}

.item-row .activity-cell.has-rationale-tooltip,
.item-row.full-left-item-row .left-cell.has-rationale-tooltip {
  overflow: visible;
}

.gantt-fixed .item-row .activity-cell.has-rationale-tooltip,
.gantt-fixed .item-row.full-left-item-row .left-cell.has-rationale-tooltip {
  z-index: 650;
}

.activity-label {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 22px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rationale-anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 5px;
  line-height: 1;
  transform: translateY(-3px);
  z-index: 80;
}

.rationale-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #66758b;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 14px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(31, 41, 55, 0.16);
}

.rationale-icon:hover,
.rationale-icon:focus-visible,
.rationale-anchor.is-pinned .rationale-icon {
  background: #315f9f;
}

.rationale-icon:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 2px;
}

.rationale-tooltip {
  position: absolute;
  top: auto;
  bottom: 6px;
  left: calc(100% + 11px);
  z-index: 1700;
  display: none;
  width: max-content;
  max-width: 390px;
  min-width: 250px;
  padding: 11px 31px 11px 13px;
  border: 1px solid #aeb6c4;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  white-space: normal;
  text-align: left;
  box-shadow: 0 14px 38px rgba(13, 24, 56, 0.22);
}

.rationale-tooltip::before,
.rationale-tooltip::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 0;
  height: 0;
}

.rationale-tooltip::before {
  left: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #aeb6c4;
}

.rationale-tooltip::after {
  left: -7px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #fff;
}

.rationale-anchor.is-hovered .rationale-tooltip,
.rationale-anchor.is-pinned .rationale-tooltip {
  display: block;
}

.rationale-tooltip-title {
  display: block;
  margin: 0 0 7px;
  color: #08164a;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.25;
}

.rationale-tooltip-text {
  display: block;
  color: #111827;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.setlux-tooltip .rationale-tooltip-text {
  overflow-wrap: anywhere;
}

.rationale-tooltip-close {
  position: absolute;
  top: 5px;
  right: 6px;
  display: none;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e8edf5;
  color: #1f2937;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  cursor: pointer;
}

.rationale-anchor.is-pinned .rationale-tooltip-close,
.event-tooltip-floating.is-pinned .rationale-tooltip-close {
  display: block;
}

.rationale-tooltip-close:hover,
.rationale-tooltip-close:focus-visible {
  background: #d7deea;
}

.event-tooltip-anchor {
  cursor: pointer;
}

.event-tooltip-anchor:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 3px;
}

.event-tooltip-anchor.is-hovered,
.event-tooltip-anchor.is-pinned {
  z-index: 1800;
}

.event-tooltip-anchor.is-event-hovered {
  z-index: 1850;
}

.bar.event-tooltip-anchor.is-hovered,
.bar.event-tooltip-anchor.is-pinned {
  box-shadow: 0 0 0 2px rgba(49, 95, 159, 0.22), 0 1px 0 rgba(0, 0, 0, 0.15);
}

.bar.event-tooltip-anchor.is-event-hovered {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 2px 9px rgba(8, 22, 74, 0.28);
  filter: brightness(1.12) saturate(1.22);
  transform: translateY(-50%) scaleY(1.45);
}

.milestone-wrap.event-tooltip-anchor.is-hovered .milestone,
.milestone-wrap.event-tooltip-anchor.is-pinned .milestone {
  outline: 2px solid rgba(49, 95, 159, 0.38);
  outline-offset: 2px;
}

.milestone-wrap.event-tooltip-anchor.is-event-hovered .milestone {
  filter:
    brightness(1.12)
    saturate(1.24)
    drop-shadow(0 0 0 #fff)
    drop-shadow(0 2px 5px rgba(8, 22, 74, 0.35));
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
  transform: translateX(-50%) scale(1.24);
}

.milestone-wrap-edge.event-tooltip-anchor.is-event-hovered .milestone {
  transform: translateX(-2px) scale(1.24);
}

.event-tooltip-floating {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  max-width: 440px;
  min-width: 300px;
  pointer-events: auto;
  --nubbin-x: 18px;
  z-index: 2600;
}

.event-tooltip-floating.is-visible {
  display: block;
}

.event-tooltip-floating::before,
.event-tooltip-floating::after {
  right: auto;
  bottom: auto;
  left: auto;
  width: 0;
  height: 0;
  border: 0;
  transform: none;
}

.event-tooltip-floating.event-tooltip-placement-bottom::before {
  top: -8px;
  left: calc(var(--nubbin-x) - 8px);
  border-right: 8px solid transparent;
  border-bottom: 8px solid #aeb6c4;
  border-left: 8px solid transparent;
}

.event-tooltip-floating.event-tooltip-placement-bottom::after {
  top: -7px;
  left: calc(var(--nubbin-x) - 7px);
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-left: 7px solid transparent;
}

.event-tooltip-floating.event-tooltip-placement-top::before {
  top: auto;
  bottom: -8px;
  left: calc(var(--nubbin-x) - 8px);
  border-top: 8px solid #aeb6c4;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.event-tooltip-floating.event-tooltip-placement-top::after {
  top: auto;
  bottom: -7px;
  left: calc(var(--nubbin-x) - 7px);
  border-top: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.event-tooltip-details {
  display: grid;
  gap: 5px;
}

.event-tooltip-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 9px;
}

.event-tooltip-label {
  color: #66758b;
  font-size: 12px;
  font-weight: 800;
}

.event-tooltip-value {
  color: #111827;
}

.event-tooltip-positive {
  color: #0f8a3b;
  font-weight: 700;
}

.event-tooltip-negative {
  color: #b83b3b;
  font-weight: 700;
}

.event-tooltip-rationale {
  margin-top: 4px;
  padding-top: 7px;
  border-top: 1px solid #e2e7ef;
  color: #111827;
}

.has-accordion-toggle {
  position: relative;
}

.accordion-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.accordion-toggle {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
  border: 1px solid #8b94a1;
  border-radius: 2px;
  background: #fff;
  color: #202734;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 25;
}

.subcategory-row .accordion-toggle {
  left: 26px;
}

.subsubcategory-row .accordion-toggle {
  left: 46px;
}

.accordion-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-38%, -50%);
}

.accordion-toggle[aria-expanded="true"]::before {
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 6px solid currentColor;
  border-bottom: 0;
  transform: translate(-50%, -35%);
}

.is-hidden-by-accordion {
  display: none;
}

.figures-current,
.figures-total {
  min-width: max-content;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.figures-current,
.figures-total {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  font-size: 13.5px;
}

.figures-current.has-annual-increase {
  flex-wrap: wrap;
  align-content: center;
  row-gap: 1px;
}

.figures-current.has-costs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  padding: 0;
}

.figures-cell.has-costs {
  font-size: 12.5px;
}

.figures-cost {
  border-top: 1px solid #e6eaf1;
  color: #b04a4a;
}

.figures-total {
  color: #168a2f;
  gap: 0;
  font-size: 13.5px;
}

.figures-revenue,
.single-figure {
  color: #6f7785;
}

.figures-amount-income {
  color: #168a2f;
}

.figures-amount-expense {
  color: #b04a4a;
}

.figures-amount-unit {
  color: #6f7785;
  flex: 0 0 auto;
}

.figures-amount-unit.figures-amount-income {
  color: #168a2f;
}

.figures-amount-unit.figures-amount-expense {
  color: #b04a4a;
}

.figures-amount-separator {
  color: #6f7785;
}

.figures-amount-increase {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  color: #6f7785;
  font-size: 12px;
  line-height: 1;
}

.figures-total.negative-total {
  color: #b04a4a;
}

.figures-total-count {
  color: #6f7785;
  flex: 0 0 auto;
}

.figures-total-value {
  min-width: max-content;
  overflow: visible;
  text-overflow: clip;
  font-weight: 700;
}

.figures-total-count {
  font-weight: 400;
}

.bar {
  position: absolute;
  top: 26px;
  height: 8px;
  border-radius: 2px;
  transform: translateY(-50%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 120ms ease, filter 120ms ease, transform 120ms ease;
  z-index: 180;
}

.bar-date-label,
.milestone-date-label,
.filtered-event-label {
  position: absolute;
  top: 2px;
  z-index: 210;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  text-shadow:
    -1px 0 0 #fff,
    1px 0 0 #fff,
    0 -1px 0 #fff,
    0 1px 0 #fff,
    0 0 3px #fff,
    0 0 5px #fff;
  transform: translateX(-50%);
  transition: filter 120ms ease, font-size 120ms ease, text-shadow 120ms ease;
}

.filtered-event-label {
  z-index: 215;
  overflow: visible;
  text-overflow: clip;
}

.print-event-label {
  position: absolute;
  top: 2px;
  z-index: 220;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  text-shadow:
    -1px 0 0 #fff,
    1px 0 0 #fff,
    0 -1px 0 #fff,
    0 1px 0 #fff,
    0 0 3px #fff,
    0 0 5px #fff;
}

.bar-date-label.event-date-tooltip-hit,
.milestone-date-label.event-date-tooltip-hit,
.filtered-event-label.event-date-tooltip-hit {
  cursor: pointer;
  pointer-events: auto;
}

.bar-date-label.event-date-tooltip-hit:focus-visible,
.milestone-date-label.event-date-tooltip-hit:focus-visible,
.filtered-event-label.event-date-tooltip-hit:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 2px;
}

.bar-date-label.is-event-hovered,
.milestone-date-label.is-event-hovered,
.filtered-event-label.is-event-hovered {
  z-index: 1850;
  filter: brightness(1.14) saturate(1.24);
  font-size: 13px;
  text-shadow:
    -1px 0 0 #fff,
    1px 0 0 #fff,
    0 -1px 0 #fff,
    0 1px 0 #fff,
    0 0 4px #fff,
    0 0 7px #fff,
    0 2px 5px rgba(8, 22, 74, 0.22);
}

.chart-table.gantt-hide-dates .bar-date-label,
.chart-table.gantt-hide-dates .milestone-date-label,
.chart-table.gantt-hide-dates .filtered-event-label {
  display: none !important;
}

.bar-start-label {
  transform: translateX(0);
}

.bar-end-label {
  transform: translateX(calc(-100% - 8px));
}

.milestone-wrap {
  position: absolute;
  top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 190;
}

.milestone-wrap-edge .milestone {
  transform: translateX(-2px);
}

.milestone {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.2px solid #fff;
  background: var(--mark-color);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  filter:
    drop-shadow(0 0 1px #fff)
    drop-shadow(0 0 1px #fff);
  transform: translateX(-50%);
  transition: filter 120ms ease, outline 120ms ease, transform 120ms ease;
}

.embedded-milestone {
  width: 14px;
  height: 14px;
  border: 0;
  background-color: color-mix(in srgb, var(--mark-color) 72%, #ffffff);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px 4px),
    color-mix(in srgb, var(--mark-color) 72%, #ffffff);
  outline: 1px solid color-mix(in srgb, var(--mark-color) 82%, #000000);
  outline-offset: -1px;
  box-shadow: none;
}

.financial-spacer {
  grid-column: 1 / span 2;
  border-bottom: 0;
}

.finance-collapsed .financial-spacer,
.finance-collapsed .finance-header-block,
.finance-collapsed .finance-collapsible {
  display: none;
}

.gantt-fixed .financial-spacer,
.gantt-fixed .finance-header-block {
  display: none;
}

.finance-header-rowspan-cell {
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  border-top: 1px solid #4f5664;
  border-bottom: 1px solid var(--finance-grid);
  background: #fafafa;
  color: #0b0f19;
  font-size: 13px;
  font-weight: 700;
}

.finance-toggle {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #8b94a1;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 25;
}

.finance-revenue-toggle,
.finance-collapsed .finance-cash-toggle {
  display: block;
}

.finance-collapsed .finance-revenue-toggle,
.finance-cash-toggle {
  display: none;
}

.finance-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #202734;
  transform: translate(-50%, -40%);
}

.finance-collapsed .finance-toggle::before {
  border-top: 5px solid transparent;
  border-right: 0;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #202734;
  transform: translate(-35%, -50%);
}

.finance-row .left-cell {
  color: #4f5b6d;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  border-top: 0;
  border-bottom: 1px solid var(--finance-grid);
}

.finance-cash-row .left-cell {
  border-top: 2px solid #7d8796;
  border-bottom: 2px solid #7d8796;
}

.chart-table:not(.finance-collapsed) .finance-row[data-finance-key="revenue"] .finance-label,
.chart-table.finance-collapsed .finance-cash-row .finance-label {
  cursor: pointer;
}

.finance-highlight .left-cell,
.finance-highlight .finance-total-summary-cell,
.finance-highlight .finance-cell {
  background-color: #eef3f9;
}

.finance-highlight .left-cell {
  color: #0b0f19;
}

.finance-highlight .finance-total-summary-cell,
.finance-highlight .finance-cell {
  color: #0b0f19;
  font-weight: 800;
}

.finance-cell {
  color: #0b0f19;
  background: #fff;
  font-size: 14px;
  border-right: 1.5px solid var(--finance-quarter-grid);
}

.finance-year-divider {
  border-right: 2px solid #7d8796 !important;
}

.negative-finance {
  color: #c1121f;
  font-weight: 700;
}

.finance-highlight .negative-finance {
  color: #c1121f;
  font-weight: 800;
}

.positive-finance {
  color: #0b8f36;
  font-weight: 700;
}

.finance-highlight .positive-finance {
  color: #0b8f36;
  font-weight: 800;
}

.zero-finance {
  color: #6f7785;
  font-weight: 400;
}

.finance-highlight .zero-finance {
  color: #6f7785;
  font-weight: 800;
}

.chart-table-matrix {
  border: 0;
}

.chart-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  border: 1px solid var(--frame-border);
  background: #fff;
}

.chart-table th,
.chart-table td {
  box-sizing: border-box;
  min-width: 0;
  padding: 0;
  border: 0;
}

.chart-table .left-cell,
.chart-table .activity-cell,
.chart-table .figures-cell {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  min-width: 0;
  border-right: 2px solid #7d8796;
  border-bottom: 1px solid #dfe5ed;
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chart-table .activity-cell {
  border-right-width: 1px;
  border-right-color: #d9dee7;
}

.chart-table tbody > tr:first-child > th,
.chart-table tbody > tr:first-child > td {
  border-top: 0;
}

.chart-table tbody > tr:last-child > th,
.chart-table tbody > tr:last-child > td {
  border-bottom: 0 !important;
}

.chart-table tr > th:last-child,
.chart-table tr > td:last-child {
  border-right: 0 !important;
}

.chart-table .left-cell,
.chart-table .activity-cell {
  border-left: 0;
}

.chart-table .chart-heading-cell {
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--border);
  border-left: 0;
  background: #fff;
}

.chart-heading-content {
  display: block;
  position: relative;
  padding: 0 0 6px;
  background: #fff;
}

.chart-heading-content .chart-title,
.chart-heading-content .chart-subtitle {
  display: block;
}

.gantt-fixed .chart-table .chart-heading-content {
  position: sticky;
  left: calc(var(--page-left) + 1px);
  width: calc(var(--scrollport-w) - var(--page-left) - 2px);
  max-width: 100vw;
}

.chart-table .left-cell {
  padding: 0 10px 0 30px;
}

.chart-table .activity-cell {
  padding: 0 10px 0 30px;
}

.chart-table .figures-cell {
  padding: 0;
}

.chart-table .figures-cell.figures-current,
.chart-table .figures-cell.figures-total {
  padding: 0 6px;
  vertical-align: middle;
}

.chart-table .figure-amount-cell {
  border-right: 1px solid #d9dee7;
}

.chart-table .figure-total-cell {
  border-right: 2px solid #7d8796;
}

.chart-table .stage-left {
  padding-left: 18px;
  background: #e1e5e9;
  color: #0d1838;
  font-size: 20px;
  font-weight: 800;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #dfe5ed;
}

.chart-table .stage-amount-header,
.chart-table .stage-total-header {
  background: #e1e5e9;
  color: #0d1838;
  border-bottom: 1px solid #dfe5ed;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 0 6px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-table .stage-amount-header {
  border-right-color: #fff;
}

.chart-table .hierarchy-total-cell {
  padding: 0 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.chart-table .group-row .hierarchy-total-cell {
  font-size: 14px;
}

.chart-table .group-row.has-hierarchy-total .group-left-cell {
  border-right: 1px solid #fff;
}

.chart-table .group-row .hierarchy-total-cell {
  border-right: 2px solid #7d8796;
}

.chart-table .subcategory-row.has-hierarchy-total .left-cell,
.chart-table .subsubcategory-row.has-hierarchy-total .left-cell {
  border-right: 1px solid #dfe5ed;
}

.chart-table .subcategory-row .hierarchy-total-cell,
.chart-table .subsubcategory-row .hierarchy-total-cell {
  border-right: 2px solid #7d8796;
}

.chart-table .positive-hierarchy-total {
  color: #0b8f36;
}

.chart-table .negative-hierarchy-total {
  color: #c1121f;
}

.chart-table .zero-hierarchy-total {
  color: #7d8796;
}

.chart-table .subcategory-row .positive-hierarchy-total,
.chart-table .subsubcategory-row .positive-hierarchy-total {
  color: var(--finance-muted-total-positive);
}

.chart-table .subcategory-row .negative-hierarchy-total,
.chart-table .subsubcategory-row .negative-hierarchy-total {
  color: var(--finance-muted-total-negative);
}

.chart-table .subcategory-row .zero-hierarchy-total,
.chart-table .subsubcategory-row .zero-hierarchy-total {
  color: var(--finance-muted-total-zero);
}

.chart-table.gantt-hide-figures .activity-cell,
.chart-table.gantt-hide-figures .stage-left {
  border-right: 2px solid #7d8796;
}

.chart-table .group-row .group-left-cell {
  padding-left: 41px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.chart-table .group-row .stage-period-cell,
.chart-table .subcategory-row .stage-period-cell,
.chart-table .subsubcategory-row .stage-period-cell,
.chart-table .group-row .quarter-total-cell,
.chart-table .subcategory-row .quarter-total-cell,
.chart-table .subsubcategory-row .quarter-total-cell {
  border-right-color: transparent;
}

.chart-table .group-row.show-quarter-totals .quarter-total-cell:not(.stage-boundary-cell),
.chart-table .subcategory-row.show-quarter-totals .quarter-total-cell:not(.stage-boundary-cell),
.chart-table .subsubcategory-row.show-quarter-totals .quarter-total-cell:not(.stage-boundary-cell) {
  border-right-color: #dfe5ed;
}

.chart-table .group-row .stage-period-cell.stage-boundary-cell,
.chart-table .subcategory-row .stage-period-cell.stage-boundary-cell,
.chart-table .subsubcategory-row .stage-period-cell.stage-boundary-cell,
.chart-table .group-row .quarter-total-cell.stage-boundary-cell,
.chart-table .subcategory-row .quarter-total-cell.stage-boundary-cell,
.chart-table .subsubcategory-row .quarter-total-cell.stage-boundary-cell {
  border-right: 1.3px dashed #202734;
}

.chart-table .subcategory-row .left-cell {
  padding-left: 64px;
  font-size: 14px;
  font-weight: 800;
}

.chart-table .subsubcategory-row .left-cell {
  padding-left: 84px;
  font-size: 12px;
  font-weight: 800;
}

.chart-table .item-row .activity-cell,
.chart-table .item-row.full-left-item-row .left-cell {
  padding-left: 64px;
  color: #0b0f19;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
}

.chart-table .item-row.split-left-row .activity-cell {
  padding-left: 87px;
}

.chart-table .item-row.item-with-subsubcategory .activity-cell {
  padding-left: 107px;
}

.chart-table .activity-label {
  display: inline-block;
  vertical-align: middle;
}

.chart-table .rationale-anchor {
  display: inline-flex;
  vertical-align: middle;
  transform: none;
}

.chart-table .timeline-header-control-cell {
  overflow: visible;
}

.chart-table .timeline-header-content {
  display: grid;
  grid-template-columns: auto minmax(72px, 1fr) auto;
  column-gap: 10px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.chart-table .gantt-view-switches {
  position: static;
  top: auto;
  left: auto;
  grid-column: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 6px;
  justify-self: start;
  margin-left: 8px;
  transform: none;
}

.chart-table .gantt-event-search {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  height: 24px;
  padding: 2px 8px;
  border: 1px solid #b8c0cc;
  border-radius: 2px;
  background: #fff;
  color: #111827;
  font-size: 12px;
  line-height: 18px;
  outline: none;
}

.chart-table .gantt-event-search:focus {
  border-color: #1763df;
  box-shadow: 0 0 0 1px #1763df inset;
}

.chart-table .filter-reset-button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #aeb6c4;
  border-radius: 2px;
  background: #eef1f5;
  color: #4f5664;
  font-size: 24px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

.chart-table .filter-reset-button:hover,
.chart-table .filter-reset-button:focus-visible {
  border-color: #7d8796;
  background: #e1e6ee;
  color: #202734;
  outline: none;
}

.chart-table .gantt-view-switch {
  gap: 4px;
  font-size: 10.5px;
}

.chart-table .gantt-switch-track {
  width: 30px;
  height: 16px;
}

.chart-table .gantt-switch-track::after {
  width: 12px;
  height: 12px;
}

.chart-table .gantt-view-switch input:checked + .gantt-switch-track::after {
  transform: translateX(14px);
}

.chart-table .left-panel-toggle,
.chart-table .accordion-toggle,
.chart-table .finance-toggle {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  display: inline-block;
  vertical-align: middle;
  transform: none;
}

.chart-table .left-panel-toggle-inline {
  grid-column: 3;
  justify-self: end;
  margin-right: 4px;
}

.chart-table .left-panel-toggle-floating {
  position: absolute;
  top: 50%;
  left: 6px;
  float: none;
  margin: 0;
  transform: translateY(-50%);
}

.chart-table .accordion-toggle,
.chart-table .finance-toggle {
  margin: 0 6px 0 0;
}

.chart-table:not(.finance-collapsed) .finance-cash-toggle,
.chart-table.finance-collapsed .finance-revenue-toggle {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
}

.chart-table:not(.finance-collapsed) .finance-revenue-toggle,
.chart-table.finance-collapsed .finance-cash-toggle {
  display: inline-block;
  visibility: visible;
  pointer-events: auto;
}

.chart-table .subcategory-row .accordion-toggle,
.chart-table .subsubcategory-row .accordion-toggle {
  left: auto;
}

.chart-table .accordion-label,
.chart-table .finance-label {
  display: inline-block;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.chart-table .gantt-view-switch input {
  position: static;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}

.chart-table .timeline-header-rowspan-cell,
.chart-table .finance-header-rowspan-cell {
  padding: 0;
  background: #fafafa;
  color: #0b0f19;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.chart-table .timeline-header-rowspan-cell {
  border-bottom-color: var(--border);
}

.chart-table .year-cell,
.chart-table .quarter-cell,
.chart-table .month-header-cell,
.chart-table .finance-cell,
.chart-table .stage-table-cell,
.chart-table .stage-edge-cell {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  display: table-cell;
  height: auto;
  vertical-align: middle;
  text-align: center;
}

.chart-table .year-cell,
.chart-table .quarter-cell,
.chart-table .month-header-cell {
  border-right: 1px solid #9aa1ad;
  border-bottom: 1px solid #9aa1ad;
}

.chart-table .year-cell {
  border-right: 2px solid #7d8796;
  border-bottom: 2px solid #4f5664;
  color: #08164a;
  background: #fafafa;
  font-size: 16px;
  font-weight: 800;
}

.chart-table .quarter-cell {
  border-bottom: 1px solid #9aa1ad;
  color: #08164a;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
}

.chart-table .month-header-cell {
  padding: 0 1px;
  color: #3f4755;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.chart-table .month-header-cell.quarter-end-month-cell {
  border-right-color: #9aa1ad;
}

.chart-table .period-filter-toggle-cell {
  cursor: pointer;
}

.chart-table .period-filter-toggle-cell:focus-visible {
  outline: 2px solid #1763df;
  outline-offset: -3px;
}

.chart-table .period-filter-active {
  border-color: #08164a !important;
  background: #08164a !important;
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.chart-table .stage-table-cell {
  padding: 6px 8px;
  border-right: 1px solid;
  border-bottom: 1px solid #dfe5ed;
  color: #111827;
  font-size: 13.4px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.chart-table .stage-filter-toggle-cell {
  cursor: pointer;
}

.chart-table .stage-filter-toggle-cell:focus-visible {
  outline: 2px solid #1763df;
  outline-offset: -3px;
}

.chart-table .stage-table-label {
  display: block;
  pointer-events: none;
}

.chart-table .stage-table-cell-filter-muted {
  color: #4f5664;
}

.chart-table .stage-table-cell-filter-active {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.chart-table .stage-table-cell-narrow {
  padding: 2px 3px;
  font-size: 9.8px;
  line-height: 1;
}

.chart-table .stage-edge-cell {
  padding: 0;
  border-right: 1px solid #dfe5ed;
  border-bottom: 1px solid #dfe5ed;
  background: #fff;
  overflow: hidden;
}

.chart-table.has-stage-edge-columns .stage-edge-cell {
  border-bottom-style: dashed;
}

.chart-table.has-stage-edge-columns .stage-edge-cell-left {
  border-left: 1px solid var(--border);
  border-right: 1.3px dashed #202734;
}

.chart-table.gantt-left-collapsed.has-stage-edge-columns .stage-edge-cell-left {
  border-left: 0;
}

.chart-table.has-stage-edge-columns .before-stage-edge-left {
  border-right: 0 !important;
}

.chart-table.has-stage-edge-columns .stage-edge-cell-right {
  border-left: 1.3px dashed #202734;
  border-right: 0;
}

.chart-table.has-stage-edge-columns .before-stage-edge-right {
  border-right: 0 !important;
}

.chart-table .stage-edge-header-cell {
  background: #fff;
}

.chart-table .timeline-edge-header-cell {
  border-bottom: 0;
  background-color: #fff;
}

.chart-table .gantt-month-cell {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
  text-align: center;
  border-right: 1px solid #dfe5ed;
  border-bottom: 1px solid #dfe5ed;
  background-clip: padding-box;
  overflow: hidden;
}

.chart-table .quarter-start-cell {
  border-right-color: #dfe5ed;
}

.chart-table .stage-boundary-cell {
  border-right: 1.3px dashed #202734;
}

.chart-table .has-internal-stage-boundary::after,
.chart-table .has-second-internal-stage-boundary::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 0;
  pointer-events: none;
  border-right: 1.3px dashed #202734;
  transform: translateX(-1.3px);
  z-index: 2;
}

.chart-table .has-internal-stage-boundary::after {
  left: var(--stage-boundary-x);
}

.chart-table .has-second-internal-stage-boundary::before {
  left: var(--stage-boundary-x-2);
}

.chart-table .event-origin-cell {
  overflow: visible;
  z-index: 300;
}

.chart-table .table-group-total-cell {
  position: static;
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.chart-table .table-group-total-cell.positive-group-total {
  color: #5f8f73;
}

.chart-table .table-group-total-cell.negative-group-total {
  color: #c97979;
}

.chart-table .table-group-total-cell.zero-group-total {
  color: #9aa3b2;
}

.chart-table .show-quarter-totals .table-group-total-cell {
  display: flex;
}

.chart-table .financial-spacer-cell {
  height: 10px;
  border-bottom: 0;
  background: #fff;
}

.chart-table .table-end-row > td {
  height: 0;
  padding: 0;
  border-bottom: 0;
  background: #fff;
  line-height: 0;
}

.chart-table .table-end-left-cell {
  border-left: 0;
  border-right: 2px solid #7d8796;
}

.chart-table .table-end-timeline-cell {
  border-right: 0;
}

.chart-table.has-stage-edge-columns .table-end-edge-cell.stage-edge-cell-left {
  border-right: 1.3px dashed #202734;
}

.chart-table.has-stage-edge-columns .table-end-edge-cell.stage-edge-cell-right {
  border-left: 1.3px dashed #202734;
  border-right: 0;
}

.chart-table.has-stage-edge-columns .table-end-row > td {
  border-bottom: 0;
}

.chart-table .finance-header-rowspan-cell {
  border-top: 1px solid #4f5664;
  border-bottom: 1px solid var(--finance-grid);
}

.chart-table .finance-cell {
  color: #0b0f19;
  background: #fff;
  font-size: 14px;
  border-right: 1px solid var(--finance-grid);
  border-bottom: 1px solid var(--finance-grid);
}

.chart-table .finance-total-summary-cell {
  padding: 0 6px;
  border-right: 2px solid #7d8796;
  border-bottom: 1px solid var(--finance-grid);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.chart-table .finance-cell.positive-finance {
  color: #0b8f36;
}

.chart-table .finance-cell.negative-finance {
  color: #c1121f;
}

.chart-table .finance-cell.zero-finance {
  color: #6f7785;
}

.chart-table .finance-total-summary-cell.positive-finance {
  color: #0b8f36;
}

.chart-table .finance-total-summary-cell.negative-finance {
  color: #c1121f;
}

.chart-table .finance-total-summary-cell.zero-finance {
  color: #6f7785;
}

.chart-table .finance-row[data-finance-key="revenue"] .finance-total-summary-cell.positive-finance,
.chart-table .finance-row[data-finance-key="expense"] .finance-total-summary-cell.positive-finance,
.chart-table .finance-row[data-finance-key="grossMargin"] .finance-total-summary-cell.positive-finance,
.chart-table .finance-row[data-finance-key="netProfitMargin"] .finance-total-summary-cell.positive-finance {
  color: var(--finance-muted-total-positive);
}

.chart-table .finance-row[data-finance-key="revenue"] .finance-total-summary-cell.negative-finance,
.chart-table .finance-row[data-finance-key="expense"] .finance-total-summary-cell.negative-finance,
.chart-table .finance-row[data-finance-key="grossMargin"] .finance-total-summary-cell.negative-finance,
.chart-table .finance-row[data-finance-key="netProfitMargin"] .finance-total-summary-cell.negative-finance {
  color: var(--finance-muted-total-negative);
}

.chart-table .finance-row[data-finance-key="revenue"] .finance-total-summary-cell.zero-finance,
.chart-table .finance-row[data-finance-key="expense"] .finance-total-summary-cell.zero-finance,
.chart-table .finance-row[data-finance-key="grossMargin"] .finance-total-summary-cell.zero-finance,
.chart-table .finance-row[data-finance-key="netProfitMargin"] .finance-total-summary-cell.zero-finance {
  color: var(--finance-muted-total-zero);
}

.chart-table .finance-highlight .finance-total-summary-cell {
  background-color: #fff;
  font-weight: 800;
}

.chart-table .finance-row .left-cell {
  padding-left: 18px;
  border-right: 1px solid var(--finance-grid);
  border-bottom: 1px solid var(--finance-grid);
}

.chart-table .finance-row .left-cell:not(.has-finance-toggle) {
  padding-left: 42px;
}

.chart-table .finance-cash-row .left-cell,
.chart-table .finance-cash-row .finance-total-summary-cell,
.chart-table .finance-cash-row .finance-cell {
  border-top: 2px solid #7d8796;
  border-bottom: 2px solid #7d8796;
}

.chart-table .finance-cash-row .stage-edge-cell {
  border-top: 2px dashed #7d8796;
  border-bottom: 2px dashed #7d8796;
}

.chart-table .finance-cash-row .left-cell {
  padding-left: 18px;
}

.chart-table.finance-collapsed .finance-cash-row .left-cell {
  border-right: 1px solid #dfe5ed;
}

.chart-table.finance-collapsed .finance-cash-row .finance-total-summary-cell {
  border-right: 2px solid #7d8796;
}

.chart-table .finance-divider-strong .left-cell,
.chart-table .finance-divider-strong .finance-total-summary-cell,
.chart-table .finance-divider-strong .finance-cell {
  border-top: 2px solid #4f5664;
}

.chart-table .finance-divider-strong .stage-edge-cell {
  border-top: 2px dashed #4f5664;
}

.chart-table .finance-divider-soft .left-cell,
.chart-table .finance-divider-soft .finance-total-summary-cell,
.chart-table .finance-divider-soft .finance-cell {
  border-top: 2px solid #7d8796;
}

.chart-table .finance-divider-soft .stage-edge-cell {
  border-top: 2px dashed #7d8796;
}

.chart-table.gantt-hide-figures .group-total-cell,
.chart-table.gantt-left-collapsed .group-total-cell {
  display: none !important;
}

.chart-table.gantt-left-collapsed .group-row,
.chart-table.gantt-left-collapsed .subcategory-row,
.chart-table.gantt-left-collapsed .subsubcategory-row {
  display: none !important;
}

.chart-table.gantt-left-collapsed .left-cell + .year-cell,
.chart-table.gantt-left-collapsed .quarter-row > .quarter-cell:first-child,
.chart-table.gantt-left-collapsed .month-row > .month-header-cell:first-child,
.chart-table.gantt-left-collapsed .left-cell + .stage-table-cell,
.chart-table.gantt-left-collapsed .left-cell + .gantt-month-cell,
.chart-table.gantt-left-collapsed .left-cell + .finance-cell,
.chart-table.gantt-left-collapsed .finance-header-quarter-row > .quarter-cell:first-child {
  border-left: 0;
}

.chart-table.gantt-left-collapsed .year-cell:last-child,
.chart-table.gantt-left-collapsed .quarter-cell:last-child,
.chart-table.gantt-left-collapsed .month-header-cell:last-child,
.chart-table.gantt-left-collapsed .stage-table-cell:last-child,
.chart-table.gantt-left-collapsed .gantt-month-cell:last-child,
.chart-table.gantt-left-collapsed .finance-cell:last-child {
  border-right: 0 !important;
}

.gantt-fixed .chart-table .sticky-header-row,
.gantt-fixed .chart-table .sticky-footer-row {
  position: static;
  z-index: auto;
  background: transparent;
}

.gantt-fixed .chart-table .sticky-header-row > th,
.gantt-fixed .chart-table .sticky-header-row > td {
  position: sticky;
  z-index: 700;
  background-clip: border-box;
}

.gantt-fixed .chart-table .sticky-heading-row > th,
.gantt-fixed .chart-table .sticky-heading-row > td {
  top: 0;
  z-index: 850;
  background: #fff;
}

.gantt-fixed .chart-table .sticky-year-row > th,
.gantt-fixed .chart-table .sticky-year-row > td {
  top: var(--heading-h);
}

.gantt-fixed .chart-table .sticky-quarter-row > th,
.gantt-fixed .chart-table .sticky-quarter-row > td {
  top: calc(var(--heading-h) + var(--year-h));
}

.gantt-fixed .chart-table .sticky-month-row > th,
.gantt-fixed .chart-table .sticky-month-row > td {
  top: calc(var(--heading-h) + var(--year-h) + var(--quarter-h));
}

.gantt-fixed .chart-table .sticky-stage-row > th,
.gantt-fixed .chart-table .sticky-stage-row > td {
  top: calc(var(--heading-h) + var(--year-h) + var(--quarter-h) + var(--month-h));
}

.gantt-fixed .chart-table .sticky-footer-row > th,
.gantt-fixed .chart-table .sticky-footer-row > td {
  position: sticky;
  bottom: var(--sticky-bottom);
  z-index: 720;
}

.gantt-fixed .chart-table .left-cell,
.gantt-fixed .chart-table .activity-cell,
.gantt-fixed .chart-table .figures-cell {
  position: sticky;
  z-index: 500;
}

.gantt-fixed .chart-table .left-cell,
.gantt-fixed .chart-table .activity-cell {
  left: var(--page-left);
}

.gantt-fixed .chart-table .figures-cell {
  left: calc(var(--page-left) + var(--activity));
}

.gantt-fixed .chart-table .figure-total-cell {
  left: calc(var(--page-left) + var(--activity) + var(--figure-current));
}

.gantt-fixed .chart-table .sticky-header-row > .left-cell,
.gantt-fixed .chart-table .sticky-header-row > .figures-cell,
.gantt-fixed .chart-table .sticky-footer-row > .left-cell,
.gantt-fixed .chart-table .sticky-footer-row > .figures-cell {
  z-index: 830;
}

.gantt-fixed .chart-table .sticky-header-row > .year-cell,
.gantt-fixed .chart-table .sticky-header-row > .quarter-cell,
.gantt-fixed .chart-table .sticky-header-row > .month-header-cell,
.gantt-fixed .chart-table .sticky-footer-row > .year-cell,
.gantt-fixed .chart-table .sticky-footer-row > .quarter-cell,
.gantt-fixed .chart-table .sticky-footer-row > .finance-cell {
  z-index: 720;
}

@media (max-width: 720px) {
  .chart-root.fixed-mode.gantt-left-collapsed {
    overflow-x: auto;
    overflow-y: auto;
  }

  .chart-root {
    margin-left: 0;
  }

  .chart-title {
    padding: 0;
    font-size: 30px;
    line-height: 1.08;
  }

  .chart-subtitle {
    margin-bottom: 8px;
    padding: 0 8px;
    font-size: 14px;
    line-height: 1.18;
  }

  .gantt-fixed .chart-table .chart-heading-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-height: 154px;
    padding: 8px;
  }

  .chart-table .timeline-header-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 6px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    height: auto;
    min-height: 58px;
    padding: 7px 10px;
  }

  .chart-table .gantt-view-switches {
    grid-column: 1;
    grid-row: 1;
    flex-wrap: wrap;
    gap: 8px;
    justify-self: stretch;
    margin-left: 0;
    min-width: 0;
  }

  .chart-table .gantt-view-switch {
    gap: 4px;
    font-size: 10px;
  }

  .chart-table .gantt-switch-track {
    width: 29px;
    height: 16px;
  }

  .chart-table .gantt-switch-track::after {
    width: 12px;
    height: 12px;
  }

  .chart-table .gantt-view-switch input:checked + .gantt-switch-track::after {
    transform: translateX(13px);
  }

  .chart-table .gantt-event-search {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 25px;
  }

  .chart-table .timeline-header-rowspan-cell {
    vertical-align: top;
  }

  .chart-table .figures-cell.figures-current,
  .chart-table .figures-cell.figures-total,
  .chart-table .hierarchy-total-cell {
    padding: 0 4px;
    font-size: 12px;
  }

  .chart-table .stage-amount-header,
  .chart-table .stage-total-header {
    padding: 0 4px;
    font-size: 12px;
  }

  .chart-table .finance-total-prefix {
    display: none;
  }

  .chart-table .group-row .group-left-cell {
    padding-left: 32px;
    font-size: 17px;
  }

  .chart-table .subcategory-row .left-cell {
    padding-left: 48px;
    font-size: 13px;
  }

  .chart-table .subsubcategory-row .left-cell {
    padding-left: 62px;
    font-size: 11.5px;
  }

  .chart-table .item-row .activity-cell,
  .chart-table .item-row.full-left-item-row .left-cell {
    padding-left: 48px;
    font-size: 14px;
  }

  .chart-table .item-row.split-left-row .activity-cell {
    padding-left: 62px;
  }

  .chart-table .item-row.item-with-subsubcategory .activity-cell {
    padding-left: 76px;
  }
}

@page {
  size: landscape;
  margin: 8mm;
}

@media print {
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    background: #fff !important;
  }

  body {
    overflow: visible !important;
  }

  .page {
    min-height: 0;
    padding: 0;
    background: #fff !important;
  }

  .site-topbar,
  .site-menu-shell,
  .site-menu-scrim,
  .forecast-actions,
  .rationale-tooltip,
  .event-tooltip-floating,
  .gantt-view-switches,
  .gantt-event-search,
  .left-panel-toggle,
  .accordion-toggle,
  .finance-toggle {
    display: none !important;
  }

  .chart-root,
  .chart-root.fixed-mode,
  .chart-root.fixed-mode.gantt-left-collapsed {
    width: 100%;
    margin-left: 0;
    height: auto !important;
    overflow: visible !important;
    border: 1px solid var(--frame-border);
    background: #fff !important;
  }

  .gantt-fixed .sticky-header-row,
  .gantt-fixed .sticky-footer-row,
  .gantt-fixed .chart-table .sticky-header-row > th,
  .gantt-fixed .chart-table .sticky-header-row > td,
  .gantt-fixed .chart-table .sticky-footer-row > th,
  .gantt-fixed .chart-table .sticky-footer-row > td,
  .gantt-fixed .left-cell,
  .gantt-fixed .activity-cell,
  .gantt-fixed .figures-cell {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .gantt-fixed .chart-table .chart-heading-content {
    position: static;
    width: auto;
    max-width: none;
  }

  .gantt {
    background: #fff !important;
  }

  .print-event-label {
    visibility: visible;
    opacity: 1;
  }

  .filter-reset-button {
    display: none !important;
  }

  .gantt-fixed .left-cell,
  .gantt-fixed .figures-cell {
    box-shadow: none !important;
  }
}
