.chart-section-2 .content {
  flex-direction: column;
  gap: 40px;
}
.chart-section-2 .heading-eyebrow {
  margin: 0;
}
.chart-section-2 .chart-columns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}
.chart-section-2 .chart-card {
  --chart-card-bg: var(--gray-50);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: var(--border-radius-6xl);
  background: linear-gradient(var(--chart-card-bg), var(--chart-card-bg)) padding-box, linear-gradient(180deg, var(--gray-100), var(--gray-200)) border-box;
  box-shadow: inset 0 -2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  padding: 30px;
}
.chart-section-2.gray-background-color .chart-card {
  --chart-card-bg: #fff;
}
.chart-section-2 .chart-side-1 {
  flex: 2;
  min-width: 0;
  gap: 60px;
  padding-top: 20px;
}
.chart-section-2 .chart-side-2 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chart-section-2 .chart-side-2 .chart-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chart-section-2 .chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chart-section-2 .chart-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 240px;
}
.chart-section-2 .chart-percentage {
  color: var(--gray-600);
  font-weight: 500;
}
.chart-section-2 .chart-body {
  color: var(--gray-600);
  margin: 0;
}
.chart-section-2 .chart-circle-wrap {
  width: 100%;
  max-width: 420px;
  padding-top: 50px;
}
.chart-section-2 .chart-circle-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.chart-section-2 .chart-circle-track {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 14;
}
.chart-section-2 .chart-circle-underlay {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 12;
  stroke-linecap: round;
}
.chart-section-2 .chart-circle-progress {
  fill: none;
  stroke: var(--brand-600);
  stroke-width: 11;
  stroke-linecap: round;
}
.chart-section-2 .chart-circle-arrow {
  fill: var(--gray-500);
}
.chart-section-2 .chart-bar {
  width: auto;
  height: 43px;
}
.chart-section-2 .chart-bar-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart-section-2 .chart-bar-track {
  fill: var(--gray-200);
}
.chart-section-2 .chart-bar-progress {
  fill: var(--brand-600);
}
.chart-section-2 .chart-bar-item:nth-child(2) .chart-bar-progress {
  fill: #b9c0d4;
}
.chart-section-2 .chart-bar-indicator {
  fill: var(--gray-500);
}
@media screen and (max-width: 1023px) {
  .chart-section-2 .chart-columns {
    flex-direction: column;
  }
  .chart-section-2 .chart-side-2 {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .chart-section-2 .chart-side-1 {
    flex-direction: column;
    gap: 40px;
  }
  .chart-section-2 .chart-circle-wrap {
    padding-top: 0;
  }
  .chart-section-2 .chart-side-2 {
    flex-direction: column;
  }
}

/*
========================================
Per-Client Field Visibility
========================================
*/