.chartBarsWrap {
  padding-left: 40px;
}

.chartBarsWrap.extra {
  position: relative;
}

.chartBarsWrap.extra .drawing svg, .chartBarsWrap.extra .drawing svg g {
  min-width: 100%;
  min-height: 100%;
  margin-left: -7px;
}

.chartBarsWrap.extra .drawing {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 333;
}

.chartBars {
  position: relative;
  max-width: 600px;
  height: 300px;
  margin: 50px auto 100px;
}

.chartBars .bars {
  display: flex;
  justify-content: space-around;
  border-left: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  width: 100%;
  height: 100%;
  padding: 0;
  padding: 0 1%;
  margin: 0;
}

.chartBars .bars li {
  display: inline-block;
  flex: 0 1 24%;
  height: 100%;
  margin: 0;
  text-align: center;
  position: relative;
  font-size: 16px;
}

.chartBars .bars li .bar {
  width: 100%;
  position: absolute;
  font-size: 1.5em;
  color: #fff;
  padding-top: 18px;
  bottom: 0;
  height: 0;
  overflow: hidden;
  font-weight: bold;
  outline: 2px solid transparent;
  -webkit-transition: 1.5s height cubic-bezier(.6,.4,.4,1.1);
  transition: 1.5s height cubic-bezier(.6,.4,.4,1.1);
}

.chartBars .bars li .bar:after {
  content: '%';
  font-size: 22px !important;
  vertical-align: top;
  color: rgba(255,255,255,0.8);
  margin-right: -8px;
}

.chartBars .bars li .bar.large:after {
}

.chartBars .bars li .bar.small:after {
  content: '5.3%';
  color: #003C70;
  position: absolute;
  z-index: 9999;
  top: -7px;
  margin-right: 0;
  right: 37%;
}

.chartBars .bars li b {
  width: 100%;
  position: absolute;
  bottom: -2em;
  left: 0;
  text-align: center;
  font-size: 13px;
  font-weight: normal;
  white-space: nowrap;
}

.chartBars p.text-center.vertical {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  position: absolute;
  left: -130px;
  top: 50%;
}

.chartBarsWrap.extra .chartBars p.text-center.vertical {
  left: -150px;
}

.chartBars .numbers {
  width: 50px;
  height: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: absolute;
  left: -50px;
}

.chartBars .numbers li {
  text-align: right;
  padding-right: 1em;
  list-style: none;
  height: 59px;
  position: relative;
  font-size: 13px;
  bottom: 17px;
  right: -9px;
}

.chartBars .numbers li:after {
  content: "\00af";
  position: relative;
  right: -5px;
  font-size: 20px;
  top: 9px;
  color: #bbb;
}

.chartBars .numbers li:first-of-type {
  height: 63px;
  margin-top: -1px;
}

.chartBars1 .bar {
  border-top-right-radius: 30px;
}

.chartBars2 {
  max-width: 87%;
}

.chartBarsWrap.extra .chartBars2 {
  width: 400px;
  height: 272px;
}

.chartBarsWrap.extra .chartBars .numbers li {
  height: 52px;
}

.chartBars p.text-center {
  font-size: 0.9em;
}

.chartBars2 .bars {
  padding: 0;
}

.chartBars2 .bars li {
  flex: 0 1 45%;
}

.chartBarsWrap.extra .chartBars2 .bars li {
  flex: 0 1 12%;
}

.chartBars2 .bars li .bar {
}

.tooltip > .tooltipContent {
  display: block;
  position: absolute;
  background: none repeat scroll 0 0 #222;
  color: #F0B015;
  font-family: 'Helvetica';
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.5em;
  padding: 16px 15px;
  min-width: 200px;
  max-width: 500px;
  top: 0;
  left: 50%;
  transform: translate(-50%,-110%);
  margin-left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  text-align: center;
  z-index: 2;
  text-transform: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease-in-out;
}

.tooltip:hover > .tooltipContent {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 99;
  transform: translate(-50%,-130%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tooltip .tooltipContent:after {
  border-color: #222 rgba(0,0,0,0);
  border-style: solid;
  border-width: 15px 15px 0;
  bottom: -15px;
  content: "";
  display: block;
  left: 50%;
  transform: translate(-50%,0);
  position: absolute;
  width: 0;
}

@media screen and (min-width: 600px) {
  .bar:before {
    font-size: 2em !important;
  }
}

@media screen and (min-width: 600px) {
  .chartBars3 .bar:before {
    font-size: 1.5em !important;
  }
}

