.rs-condition-graph-stage6 {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.rs-condition-graph-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rs-condition-graph-caption strong {
  color: var(--rs-ink, #08181d);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .03em;
}

.rs-condition-graph-caption span {
  color: var(--rs-muted, #5f6f72);
  font-size: 10px;
  font-weight: 800;
}

.rs-condition-graph-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  border: 1px solid rgba(8, 24, 29, .08);
  border-radius: 14px;
  background: #fff;
  scrollbar-color: rgba(23, 63, 69, .32) transparent;
  scrollbar-width: thin;
}

.rs-condition-graph-scroll:focus-visible {
  outline: 3px solid rgba(66, 215, 159, .22);
  outline-offset: 2px;
}

.rs-condition-graph-scroll::-webkit-scrollbar {
  height: 7px;
}

.rs-condition-graph-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.rs-condition-graph-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(23, 63, 69, .28);
}

.rs-condition-graph-svg {
  display: block;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: auto;
}

@media (max-width: 520px) {
  .rs-condition-graph-caption {
    align-items: flex-start;
  }

  .rs-condition-graph-caption span {
    text-align: right;
  }
}

@media print {
  .rs-condition-graph-stage6,
  .rs-condition-graph-stage6 * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .rs-condition-graph-scroll {
    overflow: visible;
    border-color: #dfe9e6;
    touch-action: auto;
  }

  .rs-condition-graph-svg {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
