.block-bar-chart {
  padding-bottom: 45px;
}
.block-bar-chart .chart-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--wp--preset--color--primary);
  margin-bottom: 2rem;
}
.block-bar-chart .chart-title span {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .block-bar-chart .chart-title {
    height: 60px;
  }
}
.block-bar-chart .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
  position: relative;
}
.block-bar-chart .bars .bar {
  height: 220px;
  width: 28%;
  position: relative;
  min-width: 50px;
}
.block-bar-chart .bars .bar .x-label {
  font-size: 1.4rem;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  color: #006DB4;
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: -25px;
}
.block-bar-chart .bars .bar .bar-label {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}
.block-bar-chart .bars .bar .value {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: height 0.9s cubic-bezier(0.25, 0.5, 0.5, 1) 0.25s;
  transition: height 0.9s cubic-bezier(0.25, 0.5, 0.5, 1) 0.25s;
  background: -webkit-gradient(linear, left top, left bottom, from(#00AAE9), to(#006DB4));
  background: linear-gradient(180deg, #00AAE9 0%, #006DB4 100%);
}
.block-bar-chart .bars .bar:last-child .value {
  background: -webkit-gradient(linear, left top, left bottom, from(#08447B), to(#04223E));
  background: linear-gradient(180deg, #08447B 0%, #04223E 100%);
}
.block-bar-chart .chart-inner:not(.in-view) .bars .bar .value {
  height: 0 !important;
}
.block-bar-chart .chart-inner:not(.in-view) .change,
.block-bar-chart .chart-inner:not(.in-view) .arrow {
  opacity: 0;
}