.month-report {
  width: 100%;
  height: 100%;
}
.month-report .header h3 {
  color: aliceblue;
}
.month-report .bar-wrapper {
  margin-bottom: 10px;
  position: relative;
}
.month-report .bar-wrapper:first-child .bar-item .bar-chart {
  border-top: 2px solid #40a9ff;
  border-bottom: 0;
  width: inherit;
  top: 50%;
  position: absolute;
}
.month-report .bar-wrapper:last-child .bar-item h3 {
  border-bottom: 0;
  position: absolute;
  top: 30px;
}
.month-report .bar-item {
  display: inline-block;
  min-width: 30px;
  margin-right: 2%;
  height: 50px;
}
.month-report .bar-item h3 {
  position: absolute;
  text-align: center;
  width: inherit;
  color: aliceblue;
  font-size: 1em;
}
.month-report .bar-item .bar-chart {
  background-color: orange;
  height: 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #40a9ff;
}
.month-report .bar-item:first-child h3 {
  text-align: left;
}
.month-report .bar-item:last-child {
  margin-right: 0;
}
.month-report .bar-item:last-child h3 {
  text-align: right;
}
