@import url(http://fonts.googleapis.com/css?family=Roboto:400+700);

#chart {
  margin: 30px auto 0;
  display: flex;
}

#chart #numbers {
  width: 50px;
  margin: 0;
  padding: 0;
  color: #000;
  height: 350px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

#chart #numbers span{
  color: #000!important;
}

#chart #numbers li {
  text-align: right;
  padding-right: 1em;
  list-style: none;
  height: 33px;
  border-bottom: 1px solid #444;
  position: relative;
  margin: 0px;
  
}

#chart #numbers li:last-child { height: 30px; }

#chart #numbers li span {
  color: #eee;
  position: absolute;
  bottom: 0;
  right: 10px;
}

#chart #bars {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 350px;
  padding: 0;
  margin: 0;
  box-shadow: 0 0 0 1px #444;
}


#chart #bars li {
  display: table-cell;
  width: 100px;
  margin: 0;
  text-align: center;
  position: relative;
  height: 350px;
}

#chart #bars li .bar {
  display: block;
  width: 70px;
  margin-left: 15px;
  background: #0D6805;
  position: absolute;
  bottom: 0;
}

#chart #bars li .bar:hover {
  background: #177e0d;
  cursor: pointer;
}

#chart #bars li .bar:hover:before {
  color: white;
  content: attr(data-percentage) '%';
  position: relative;
  bottom: 20px;
}

#chart #bars li span {
  color: #000;
  width: 100%;
  position: absolute;
  bottom: -2em;
  left: 0;
  text-align: center;
}

.q_box p{
  font-size: 18px;
  font-weight: 600px;
}

.text_box{
  padding-top: 50px;
}

.text_box p{
  font-size: 18px;
  font-weight: 600;
}

.text_box .back_btn{
  a{
    background-color: #0D6805;
    border: 0px;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    min-width: 102px;
    margin-right: 15px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
  }
}

.vote_pqua{
  color: #fff;
  font-size: 12px;
}

