#horz-bar-chart {
  width: 600px;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 600px) {
  #horz-bar-chart {
    width: 90%;
  }
}

.bar {
  height: 28px;
  margin: 0px 15px 10px 0px;
  background-color: #47acb1;
  position: relative;
  font-size: 1.4rem;
  display: inline-block;
}

@media (max-width: 600px) {
  .bar {
    display: block;
  }
}

.bar:before {
  content: attr(data-num);
  position: absolute;
  bottom: 5px;
  font-weight: 400;
  font-size: 0.9rem;
  right: 5px;
  width: 100%;
  top: 2px;
  text-align: right;
  color: #fff;
}

.bar-group {
  margin: 30px 0 20px 0;
  padding: 0;
}

.bar-label {
  font-size: 1rem;
  padding: 4px;
  display: inline-block;
  vertical-align: top;
  width: 160px;
  text-align: right;
}

@media (max-width: 600px) {
  .bar-label {
    width: 100%;
    text-align: left;
  }
}

.chart-label {
  font-size: 1.5rem;
  padding: 9px 0 10px 0;
  font-weight: 700;
}

.small-num:before {
  content: attr(data-num);
  color: #212121;
  right: -35px;
  float: right;
  top: 2px;
  position: relative;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .bar-label-container {
    border-bottom: 1px solid #a9a9a9;
  }
}

.bar-label-container:last-of-type {
  border: 0;
}
