.charts {
  padding: 0;
  box-sizing: border-box;
  margin: auto;
}
.charts .stacked-bar-charts-div {
  width: 100%;
  max-width: 1136px;
  margin: auto;
  height: 500px;
}
.charts .data-footer {
  display: inline-flex;
  padding: 40px 20px;
  column-gap: 20px;
  text-align: center;
  justify-content: center;
  width: 100%;
}
.charts .data-footer .row {
  display: contents;
}
.charts .data-footer .row .column-left,
.charts .data-footer .row .column-right {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
}
.charts .data-footer .row .column-left .title,
.charts .data-footer .row .column-right .title {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 24px */
  display: flex;
  align-items: center;
}
.charts .data-footer .row .column-left .title .color-circle,
.charts .data-footer .row .column-right .title .color-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #ddd;
}
.charts .data-footer .row .column-left .title .title-item,
.charts .data-footer .row .column-right .title .title-item {
  display: inline-table;
}
@media screen and (max-width: 767px) {
  .charts .data-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 20px;
    column-gap: 8px;
  }
  .charts .data-footer .row {
    display: contents;
    font-size: 18px;
  }
  .charts .data-footer .row .column-left,
  .charts .data-footer .row .column-right {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
  }
  .charts .data-footer .row .column-left .title,
  .charts .data-footer .row .column-right .title {
    color: black;
    line-height: 140%;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .charts .stacked-bar-charts-div {
    height: 375px;
  }
}
/*# sourceMappingURL=./stacked-bar-charts.css.map */