/* ==========================================================================
 * Chart
 * ========================================================================== */

.mds-c-chart {
  align-items: center;
  column-gap: var(--mds-d-spacing--med);
  display: flex;
  flex-wrap: wrap;
  margin: var(--mds-d-spacing--lg) 0;
  row-gap: var(--mds-d-spacing--med);

  &:last-child {
    margin-bottom: 0;
  }

  > * {
    flex: 0 1 auto;
    min-width: 0;
  }
}

.mds-c-chart-legend {
  display: grid;
  font-size: var(--mds-d-font-size--xs);
  grid-row-gap: var(--mds-d-spacing--med);
  grid-template-rows: auto;
  max-width: 16rem;
}

.mds-c-chart-legend__item {
  align-items: center;
  display: grid;
  font-weight: var(--mds-d-font-weight--semibold);
  grid-column-gap: var(--mds-d-spacing--med);
  grid-template-columns: auto 1fr;
  line-height: var(--mds-d-line-height--xs);
}

.mds-c-chart-legend__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mds-c-chart-legend__dot {
  background-color: var(--mds-t-color--primary);
  border-radius: 50%;
  display: block;
  height: 1em;
  width: 1em;
}
