@import url(https://fonts.googleapis.com/css?family=Roboto:400+700);
body {
  background: white;
  font-family: Roboto;
}
#chart {
  width: 650px;
  height: 400px;
  margin: 50px auto 0;
  display: block;
}
#chart #numbers {
  width: 50px;
  height: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  float: left;
}
#chart #numbers li {
  text-align: right;
  padding-right: 1em;
  list-style: none;
  height: 29px;
  border-bottom: 0px solid #444;
  position: relative;
  bottom: 40px;
}
#chart #numbers li:last-child {
  height: 30px;
}
#chart #numbers li span {
  color: #;
  position: absolute;
  bottom: 0;
  right: 10px;
}
#chart #bars {
  display: inline-block;
  background: 
  width: 600px;
  height: 300px;
  padding: 0;
  margin: 0;
  box-shadow: 0 0 0 0px #444;
}
#chart #bars li {
  display: table-cell;
  width: 100px;
  height: 300px;
  margin: 0;
  text-align: center;
  position: relative;
}
#chart #bars li .bar {
  display: block;
  width: 70px;
  margin-left: 200px;
  background: gray;
  position: absolute;
  bottom: 0;
}
#chart #bars li .bar:hover {
  background: #abce6c;
  cursor: pointer;
}
#chart #bars li .bar:hover:before {
  color: white;
  content: attr(data-percentage) '%';
  position: relative;
  bottom: 20px;
}
#chart #bars li span {
  color: gray;
  width: 100%;
  position: absolute;
  bottom: -2em;
  right: -180px;
  text-align: px;
}
