.metric {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 315px;
}

.release {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: stretch;
  justify-content: space-between;
}

.current-release {
  z-index: 1;
}
.current-release:before {
  content: "Current ";
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  display: block;
}
.current-release .bar:before {
  content: "";
  display: block;
  width: 800%;
  border: 1px solid red;
  height: 0;
}
.current-release .upload:before {
  border: 0.5px dashed #F7C799;
  position: relative;
  left: -480%;
}
.current-release .download:before {
  border: 0.5px dashed #ea7200;
  position: relative;
  left: -620%;
}

.bars {
  border: 1px solid #ccc;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 250px;
  padding-top: 1rem;
  margin-bottom: 1rem;
  background: repeating-linear-gradient(to bottom, #e2dedb, #e2dedb 1px, transparent 1px, transparent 10%);
}
.bars .bar {
  width: 25%;
  position: relative;
  bottom: 0px;
  margin: 0 5% 0;
}
.bars .bar.upload {
  background: #F7C799;
}
.bars .bar.download {
  background: #ea7200;
}
.bars .bar .value {
  position: absolute;
  width: 100%;
  display: block;
  height: 20px;
  bottom: -20px;
  font-weight: 100;
  font-size: 0.7rem;
}

.previous-release {
  z-index: 2;
}
.previous-release .bars {
  border-right: none;
}
.previous-release:before {
  content: "Previous ";
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  display: block;
}