* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root,
.light-mode {
  /* TEXT */
  --ids__text-RGB: 20, 20, 50;
  --ids__text-link-RGB: 50, 50, 70;
  --ids__text-hover-RGB: 40, 95, 235;
  --ids__text-caption-RGB: 150, 150, 170;
  --ids__text-inverted-RGB: 242, 242, 246;
  --ids__text-accent-RGB: 20, 20, 50;

  /* BACKGROUND */
  --ids__background-RGB: 255, 255, 255;
  --ids__bg-surface-RGB: 242, 242, 246;
  --ids__bg-surface-light-RGB:
    249, 249, 251; /* Twice as light as surface for use without transparency */
  --ids__bg-accent-RGB: 20, 20, 50;
  --ids__bg-hover-RGB: var(--ids__text-hover-RGB);
  --ids__bg-mark-RGB: 255, 200, 29;

  /* UI */
  --ids__UI-control-RGB: var(--ids__bg-surface-RGB);
  --ids__UI-border-RGB: 220, 220, 230;
  --ids__UI-error-RGB: 255, 53, 84;
  --ids__UI-success-RGB: 21, 207, 135;

  /* Vendor colors */
  --vendor-modulate-RGB: 99, 102, 241; /* Indigo/Violet */
  --vendor-modulate-gradient-2-RGB:
    200, 102, 255; /* Red/Error (for gradient left to right) */
  --vendor-openai-RGB: 0, 0, 0; /* OpenAI black */
  --vendor-xai-RGB: 0, 0, 0; /* xAI black */
  --vendor-gemini-RGB: 0, 130, 244; /* Google blue */
  --vendor-deepseek-RGB: 0, 130, 244; /* Blue */
  --vendor-nvidia-RGB: 133, 183, 55; /* NVIDIA green - warmer, more grassy */
  --vendor-mistral-RGB: 225, 100, 150; /* Mistral red */
  --vendor-assemblyai-RGB: 37, 69, 211; /* AssemblyAI #2545d3 */
  --vendor-deepgram-RGB: 0, 200, 220; /* Deepgram - cooler, turquoise/blue */
  --vendor-elevenlabs-RGB: 150, 200, 255; /* ElevenLabs - blue */
  --vendor-gladia-RGB: 210, 190, 255; /* Gladia purple */
  --vendor-microsoft-RGB: 75, 164, 234; /* Microsoft Azure blue */
  --vendor-amazon-RGB: 255, 153, 100; /* Amazon AWS orange */
  --vendor-speechmatics-RGB: 40, 90, 110; /* Speechmatics */
  --vendor-whispeak-RGB: 135, 58, 226; /* Whispeak */
  --vendor-hiya-RGB: 80, 120, 180; /* Hiya */
  --vendor-gray-border-RGB:
    100, 100, 100; /* Dark gray border for vendors without official colors */

  /* Highlight zone colors */
  --highlight-zone-green-RGB: 0, 255, 0; /* Green for highlight zone */

  /* Scatterplot controls */
  --scatterplot-label-font-size: 0.875em;
  --scatterplot-point-size: 0.875em;
  --scatterplot-axis-font-size: 0.8125em;
}

body {
  font-family: "Inter", sans-serif;

  color: rgba(var(--ids__text-RGB), 1);
  background-color: rgba(var(--ids__background-RGB), 1);
}

.scatterplot-wrapper a,
.bar-chart-wrapper a {
  color: rgb(var(--ids__text-link-RGB));
  text-decoration: underline;
  will-change: color;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(var(--ids__text-link-RGB), 0.2);
  transition:
    color 0.5s ease,
    text-decoration 0.5s ease,
    -webkit-text-decoration 0.5s ease;

  &:hover {
    color: rgb(var(--ids__text-hover-RGB));
    text-decoration-color: rgba(var(--ids__text-hover-RGB), 0.2);
    transition:
      color 0s ease,
      text-decoration 0s ease,
      -webkit-text-decoration 0s ease;
  }
}

.container {
  width: 1140px;
  margin: 60px auto;
}

.chart-nav {
  position: fixed;
  top: 0.4em;
  left: 0.4em;
  z-index: 200;
}

.chart-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chart-nav a {
  font-size: 0.8em;
  color: rgba(var(--ids__text-link-RGB), 1);
}

.chart-nav a:hover {
  color: rgb(var(--ids__text-hover-RGB));
}

.container > section {
  margin-top: 2em;
}

.container > section:first-of-type {
  margin-top: 0;
}

.container > section > h5 {
  font-size: 1.1em;
  font-weight: 600;
  color: rgba(var(--ids__text-RGB), 0.75);
  margin: 1em 0 -1em 0;
  padding-top: 4em;
}

.controls {
  position: sticky;
  top: 0;
  display: flex;
  gap: 20px;
  margin: 0 -20px 20px;
  padding: 7px;
  border: 1px solid rgba(var(--ids__UI-border-RGB), 0.5);
  border-radius: 8px;
  background-color: rgba(var(--ids__background-RGB), 1);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-group label {
  font-size: 0.9em;
  font-weight: 500;
  color: rgba(var(--ids__text-RGB), 0.8);
  white-space: nowrap;
}

.control-group input {
  padding: 5px 10px;
  border: 1px solid rgba(var(--ids__UI-border-RGB), 0.5);
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "Inter", sans-serif;
  color: rgba(var(--ids__text-RGB), 1);
  background-color: rgba(var(--ids__bg-surface-RGB), 1);
  min-width: 100px;
}

.control-group input.invalid {
  color: rgba(var(--ids__UI-error-RGB), 1);
  border-color: rgba(var(--ids__UI-error-RGB), 0.5);
}

.control-group input#width-control,
.control-group input#height-control {
  width: 80px;
}

.control-group input:focus {
  outline: none;
  border-color: rgba(var(--ids__text-hover-RGB), 0.5);
}

.scatterplot-wrapper,
.bar-chart-wrapper {
  font-size: 16px;
  margin: 2.8125em 0 2.5em;
  background-color: rgba(var(--ids__bg-surface-light-RGB), 1);
  border: 1px solid rgba(var(--ids__UI-border-RGB), 0.5);
  border-radius: 0.5em;
  padding: 1.25em 5em 0.625em 5em;

  & .scatterplot-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 0.4167em 0;
    opacity: 0.8;
    text-align: center;
  }

  & .scatterplot-subtitle {
    width: 80%;
    margin: 0 auto 1.5625em;
    font-size: 1em;
    color: rgba(var(--ids__text-RGB), 0.7);
    opacity: 0.8;
    text-align: center;
  }

  & .padding-spacer {
    height: 3.75em;
  }
}

.bar-chart-container {
  margin-top: 1.25em;

  & .bar-chart-aria {
    width: 100%;
    height: 25em;
    position: relative;
    border-left: 1px solid rgba(var(--ids__text-RGB), 0.5);

    /* X axis border */
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background-color: rgba(var(--ids__text-RGB), 0.1);
    }
  }
}

#bar-chart-2 .bar-chart-aria {
  height: 14em;
}

#bar-chart-2 .bar-chart-bar-model-label[class*="vendor-"] {
  color: rgba(var(--brand-color), 1);
}

#bar-chart-2 .bar-chart-bar[class*="vendor-"] {
  background: none;
  border-top: 2px solid rgba(var(--brand-color), 1);
}

#bar-chart-2 .bar-chart-bar.vendor-modulate {
  background: linear-gradient(
    to bottom,
    rgb(150, 255, 150) 80%,
    rgba(150, 255, 150, 0) 100%
  );
  border-top: 2px solid rgba(var(--vendor-modulate-RGB), 1);
}

.bar-chart-bar-label-with-dot {
  flex-direction: row;
  align-items: center;
  gap: 0.375em;
}

.bar-chart-bar-vendor-dot {
  position: static;
  transform: none;
  width: 0.625em;
  height: 0.625em;
  flex-shrink: 0;
}

.bar-chart-bar-vendor-dot.outlined {
  --point-border: 1px solid rgba(var(--brand-color), 1);
}

.bar-chart-bar-vendor-dot.outlined.vendor-gray-border {
  --point-border: 1px solid rgba(var(--vendor-gray-border-RGB), 1);
}

.bar-chart-bar {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.3em 0.3em;
  box-sizing: border-box;
  background-image: linear-gradient(
    to bottom,
    rgb(210, 210, 210) 80%,
    rgba(210, 210, 210, 0) 100%
  );

  &.modulate {
    background-image: linear-gradient(
      to bottom,
      rgb(150, 255, 150) 80%,
      rgba(150, 255, 150, 0) 100%
    );
  }
}

.bar-chart-bar-label-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.bar-chart-bar-model-label {
  font-size: var(--scatterplot-label-font-size, 0.875em);
  font-weight: 600;
  color: rgba(var(--ids__text-RGB), 0.9);
  text-align: left;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0;
  margin: 0;
}

.bar-chart-bar-vendor-label {
  font-size: 0.75em;
  font-weight: 400;
  color: rgba(var(--ids__text-RGB), 0.5);
  text-align: left;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
  width: 100%;
  margin-top: 0.3em;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0;
}

.bar-chart-bar.modulate .bar-chart-bar-model-label,
.bar-chart-bar.modulate .bar-chart-bar-vendor-label {
  color: rgba(var(--ids__text-RGB), 0.95);
}

.bar-chart-score-label {
  position: absolute;
  transform: translateY(-140%);
  font-size: 1.1em;
  font-weight: 400;
  color: rgba(var(--ids__text-RGB), 0.9);
  pointer-events: none;
  background-color: transparent;
  z-index: 10;
  padding: 0.1em 0.3em;
  margin-top: 0.5em;
  white-space: nowrap;
}

/* Horizontal bar chart (only X axis labeled) */
.horizontal-bar-chart-tick-x {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0.75em;
  border-left: 1px solid rgba(var(--ids__text-RGB), 0.5);
  transform: translateX(-50%);
  pointer-events: none;
}

.horizontal-bar-chart-grid-line-x {
  position: absolute;
  width: 0;
  border-left: 1px solid rgba(var(--ids__text-RGB), 0.08);
  pointer-events: none;
}

.horizontal-bar-chart-axis-label-x {
  position: absolute;
  transform: translateX(-50%);
  font-size: var(--scatterplot-axis-font-size, 0.8125em);
  font-weight: 600;
  color: rgba(var(--ids__text-RGB), 0.8);
  pointer-events: none;
  white-space: nowrap;
}

.horizontal-bar-chart-bar {
  min-width: 4em;
  background-color: rgb(210, 210, 210);
}

.horizontal-bar-chart-bar.modulate {
  background-color: rgb(150, 255, 150);
}

.horizontal-bar-chart-cost-label {
  position: absolute;
  font-size: 1em;
  font-weight: 500;
  color: rgba(var(--ids__text-RGB), 0.9);
  margin-left: 0.35em;
  white-space: nowrap;
  z-index: 5;
}

#bar-chart-3 .horizontal-bar-chart-company-label {
  font-weight: 700;
  font-size: var(--scatterplot-label-font-size, 0.875em);
  color: rgba(var(--ids__text-RGB), 1);
}

#bar-chart-3 .horizontal-bar-chart-model-sublabel {
  font-weight: 400;
  font-size: 0.75em;
  color: rgba(var(--ids__text-RGB), 0.5);
  margin-top: 0.2em;
}

#bar-chart-3 .bar-chart-aria {
  height: 12.5em;
}

#bar-chart-3.bar-chart-wrapper .bar-chart-container {
  padding-bottom: 0.5em;
}

#bar-chart-3 .bar-chart-aria.horizontal-bar-chart-no-axis::before {
  display: none;
}

.scatterplot-container {
  margin-top: 1.25em;

  & .scatterplot-aria {
    width: 100%;
    height: 25em;
    position: relative;
    border-left: 1px solid rgba(var(--ids__text-RGB), 0.5);

    & .scatterplot-background-highlight {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
      pointer-events: none;
    }

    & .scatterplot-background-highlight-ellipse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: rgba(var(--highlight-zone-green-RGB), 0.3);
      filter: blur(50px);
      opacity: 1;

      #scatterplot-1 .scatterplot-container .scatterplot-aria & {
        width: 85%;
        height: 100%;
        left: -58%;
        top: -60%;
      }

      #scatterplot-2 .scatterplot-container .scatterplot-aria &,
      #scatterplot-4 .scatterplot-container .scatterplot-aria &,
      #scatterplot-5 .scatterplot-container .scatterplot-aria & {
        width: 65%;
        left: -45%;
        top: auto;
        bottom: -50%;
      }

      #scatterplot-3 .scatterplot-container .scatterplot-aria & {
        width: 50%;
        height: 100%;
        left: 18%;
        top: -60%;
      }
    }

    & .scatterplot-background-highlight-label {
      position: absolute;
      font-size: 0.8em;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 300;
      color: rgba(var(--highlight-zone-green-RGB), 1);
      filter: saturate(90%) brightness(0.8);
      text-align: center;
      line-height: 1.3;
      z-index: 2;

      #scatterplot-1 .scatterplot-container .scatterplot-aria & {
        left: 12.5%;
        top: 17%;
        width: 6.25em;
      }

      #scatterplot-2 .scatterplot-container .scatterplot-aria &,
      #scatterplot-4 .scatterplot-container .scatterplot-aria & {
        width: 15.625em;
        bottom: 22%;
        left: 5%;
        top: auto;
      }

      #scatterplot-5 .scatterplot-container .scatterplot-aria & {
        width: 10em;
        bottom: 23%;
        left: 7%;
        top: auto;
      }

      #scatterplot-3 .scatterplot-container .scatterplot-aria & {
        left: 35%;
        top: 18%;
        width: 15.625em;
      }
    }

    /* X axis border created via pseudo-elements to support break */
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: var(--left-section-end, 80%);
      height: 1px;
      background-color: rgba(var(--ids__text-RGB), 0.5);
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: var(--right-section-width, 15%);
      height: 1px;
      background-color: rgba(var(--ids__text-RGB), 0.5);
    }
  }

  & .scatterplot-axis-x-label,
  & .scatterplot-axis-y-label {
    position: absolute;
    font-size: var(--scatterplot-axis-font-size, 0.8125em);
    font-weight: 600;
    color: rgba(var(--ids__text-RGB), 0.8);
    pointer-events: none;
    background-color: rgba(var(--ids__bg-surface-light-RGB), 1);
    z-index: 10;
    padding: 0 0.1538em;
  }

  & .scatterplot-axis-x-label {
    bottom: -2.3077em;
    transform: translateX(-50%);
  }

  & .scatterplot-axis-y-label {
    transform: translateY(-50%) translateX(calc(-100% - 0.9231em));
    text-align: right;
  }
}

.scatterplot-point-label {
  position: absolute;
  font-size: var(--scatterplot-label-font-size, 0.875em);

  color: rgba(var(--ids__text-RGB), 1);
  pointer-events: none;
  transform: translate(
    calc(var(--scatterplot-point-size, 0.875em) / 2 - 0.0714em),
    calc(-50% - 0.0714em)
  );
  white-space: nowrap;
  z-index: 1;
  padding: 0.1429em 0.2857em;
  background-color: rgba(var(--ids__bg-surface-light-RGB), 1);
  border-radius: 0.1429em;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.scatterplot-point-label[data-vendor="Modulate"] {
  color: rgba(var(--vendor-modulate-RGB), 1);
}

.scatterplot-point-label-active {
  opacity: 1;
}

.scatterplot-point-label-left {
  transform: translate(
    calc(-100% - var(--scatterplot-point-size, 0.875em) / 2 - 0px),
    calc(-50% - 0.0714em)
  );
  text-align: right;
}

.scatterplot-point {
  position: absolute;
  width: var(--point-size, var(--scatterplot-point-size, 0.875em));
  height: var(--point-size, var(--scatterplot-point-size, 0.875em));
  border-radius: 50%;
  border: var(--point-border, none);
  box-sizing: border-box;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;

  transition: transform 0.2s ease;

  /* Default color fallback */
  background: var(--point-bg, rgba(var(--ids__text-RGB), 1));
}

/* Base classes for point types */
.scatterplot-point.filled {
  --point-bg: rgba(var(--brand-color), 1);
}

.scatterplot-point.outlined {
  --point-bg: rgba(var(--ids__bg-surface-RGB), 1);
  --point-border: 2px solid rgba(var(--brand-color), 1);
}

.scatterplot-point.outlined.vendor-gray-border {
  --point-border: 2px solid rgba(var(--vendor-gray-border-RGB), 1);
}

/* Vendor classes */
.vendor-modulate {
  --brand-color: var(--vendor-modulate-RGB);
}

.vendor-openai {
  --brand-color: var(--vendor-openai-RGB);
}

.vendor-xai {
  --brand-color: var(--vendor-xai-RGB);
}

.vendor-gemini {
  --brand-color: var(--vendor-gemini-RGB);
}

.vendor-deepseek {
  --brand-color: var(--vendor-deepseek-RGB);
}

.vendor-nvidia {
  --brand-color: var(--vendor-nvidia-RGB);
}

.vendor-mistral {
  --brand-color: var(--vendor-mistral-RGB);
}

.vendor-mistral-ai {
  --brand-color: var(--vendor-mistral-RGB);
}

.vendor-google {
  --brand-color: var(--vendor-gemini-RGB);
}

.vendor-assemblyai {
  --brand-color: var(--vendor-assemblyai-RGB);
}

.vendor-deepgram {
  --brand-color: var(--vendor-deepgram-RGB);
}

.vendor-elevenlabs {
  --brand-color: var(--vendor-elevenlabs-RGB);
}

.vendor-speechmatics {
  --brand-color: var(--vendor-speechmatics-RGB);
}

.vendor-gladia {
  --brand-color: var(--vendor-gladia-RGB);
}

.vendor-microsoft {
  --brand-color: var(--vendor-microsoft-RGB);
}

.vendor-amazon {
  --brand-color: var(--vendor-amazon-RGB);
}

.vendor-resemble-ai {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-deep-learning-media-system-laboratory {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-whispeak {
  --brand-color: var(--vendor-whispeak-RGB);
}

.vendor-df-arena-ml-researchers-no-company {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-momenta {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-syntra {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-singapore-agency-science-technology-research {
  --brand-color: var(--vendor-gray-border-RGB);
}

.vendor-hiya {
  --brand-color: var(--vendor-hiya-RGB);
}

.vendor-df-arena {
  --brand-color: var(--vendor-gray-border-RGB);
}

/* Special class for Modulate gradients */
.scatterplot-point.vendor-modulate-gradient {
  --point-bg: linear-gradient(
    to right,
    rgba(var(--vendor-modulate-RGB), 1),
    rgba(var(--vendor-modulate-gradient-2-RGB), 1)
  );
}

/* Active state */
.scatterplot-point-active {
  transform: translate(-50%, -50%) scale(1.2);
  transition: transform 0s ease;
  z-index: 10;
}

.scatterplot-axis-label-x {
  position: absolute;
  bottom: -4.296875em;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(var(--ids__text-caption-RGB), 1);
}

.scatterplot-axis-label-y {
  position: absolute;
  left: -4.296875em;
  top: 50%;
  transform: translateX(-50%) translateY(0%) rotate(-90deg);
  transform-origin: center;
  margin: 0;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(var(--ids__text-caption-RGB), 1);
  white-space: nowrap;
}

.scatterplot-tick-x,
.scatterplot-tick-y {
  position: absolute;
  background-color: rgba(var(--ids__text-RGB), 0.5);
  pointer-events: none;
}

.scatterplot-tick-x {
  width: 1px;
  height: 0.75em;
  bottom: -0.75em;
  transform: translateX(-50%);
}

.scatterplot-tick-y {
  width: 0.75em;
  height: 1px;
  left: -0.75em;
  transform: translateY(-50%);
}

.scatterplot-grid-line-x,
.scatterplot-grid-line-y {
  position: absolute;
  background-color: rgba(var(--ids__text-RGB), 0.1);
  pointer-events: none;
  z-index: 0;
}

.scatterplot-grid-line-x {
  width: 1px;
  height: 100%;
  top: 0;
  transform: translateX(-50%);
}

.scatterplot-grid-line-x-left {
  width: 1px;
  height: 100%;
  top: 0;
  transform: translateX(-50%);
  clip-path: inset(0 calc(20% + 5%) 0 0);
}

.scatterplot-grid-line-x-right {
  width: 1px;
  height: 100%;
  top: 0;
  transform: translateX(-50%);
  clip-path: inset(0 0 0 calc(20% + 5%));
}

.scatterplot-grid-line-y {
  height: 1px;
  transform: translateY(-50%);
}

.scatterplot-grid-line-y-left {
  width: var(--left-section-end, 80%);
  left: 0;
}

.scatterplot-grid-line-y-right {
  width: var(--right-section-width, 15%);
  right: 0;
}

.scatterplot-axis-x-tick,
.scatterplot-axis-y-tick {
  position: absolute;
  background-color: rgba(var(--ids__text-RGB), 1);
  pointer-events: none;
}

.scatterplot-axis-x-tick {
  width: 2px;
  height: 0.75em;
  bottom: -0.75em;
  transform: translateX(-50%);
}

.scatterplot-axis-y-tick {
  width: 0.75em;
  height: 2px;
  left: -0.75em;
  transform: translateY(-50%);
}

.scatterplot-static-label {
  position: absolute;
  font-size: var(--scatterplot-axis-font-size, 0.8125em);
  color: rgba(var(--ids__text-RGB), 0.8);
  pointer-events: none;
}

.scatterplot-static-label-zero {
  left: -1.7692em;
  bottom: -2.3077em;
}

.scatterplot-static-label-cost {
  bottom: -2.3077em;
  transform: translateX(-50%);
}

.scatterplot-static-label-score {
  transform: translateY(-50%) translateX(calc(-100% - 1.0769em));
  text-align: right;
}

.scatterplot-axis-break {
  position: absolute;
  bottom: 0.4375em;
  height: 0.625em;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.scatterplot-axis-break-left {
  justify-content: flex-start;
}

.scatterplot-axis-break-right {
  justify-content: flex-end;
}

.scatterplot-axis-break-left::after,
.scatterplot-axis-break-right::after {
  content: "";
  position: absolute;
  width: 1.6875em;
  height: 1px;
  bottom: -0.5em;
  background-color: rgba(var(--ids__text-RGB), 0.5);
  transform: rotate(-65deg);
}

.scatterplot-axis-break-left::after {
  left: -0.875em;
  transform-origin: center;
}

.scatterplot-axis-break-right::after {
  left: -0.875em;
  transform-origin: center;
}

/* Vendor legend */
.vendors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em 0.9375em;

  padding: 1.25em 2.5em;
  align-items: center;
  justify-content: center;
}

.vendor-item {
  display: flex;
  align-items: center;
  gap: 0.375em;
}

.vendor-item .scatterplot-point {
  position: static;
  transform: none;
  width: 0.625em;
  height: 0.625em;
  flex-shrink: 0;
}

.vendor-item .scatterplot-point.outlined {
  --point-border: 1px solid rgba(var(--brand-color), 1);
}

.vendor-item .scatterplot-point.outlined.vendor-gray-border {
  --point-border: 1px solid rgba(var(--vendor-gray-border-RGB), 1);
}

.vendor-label {
  font-size: 0.875em;
  color: rgba(var(--ids__text-RGB), 1);
  white-space: nowrap;
}
