
.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.single-chart {
  width: 33%;
  justify-content: space-around ;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 200px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 1.3;
}

.circle {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  /*stroke: #4CC790;*/
  stroke : #5ba536;
}

.circular-chart.blue .circle {
  stroke: #3c9ee5;
}

.percentage {
  fill: #666;
  font-family: sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
}

.quiz_result_text{

  text-align: center !important; 
  font-size: 20px !important;
  margin-top: 10px;

}

.quiz_result_text > span{

    color: #5ba536;

}

.quiz_nxt_challenge_btn{

    margin-top: 30px;

}

.quiz_nxt_challenge_btn > button{

  background-color: #5ba536;
  height: 40px;
  margin-bottom: 50px;

}