/*!
 * Mentaltraining.pro v1.0 (http://mentaltraining.pro)
 * Copyright 2016 
 *
 */
 /* Progress Bar Styles */

/* Load animation */

@-webkit-keyframes 
load { 0% {
stroke-dashoffset:0
}
}
@-moz-keyframes 
load { 0% {
stroke-dashoffset:0
}
}
@keyframes 
load { 0% {
stroke-dashoffset:0
}
}

/* Container */

.progressbar {
  position: relative;
  padding: 0;
  text-align: center;
}

/* Item */

.progressbar>div {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #93A2AC;
  font-weight: 100;
  margin: 0;
}

.progressbar>div:after {
  content: attr(data-percent);
  position: absolute;
  width: 100%;
  top: 5rem;
  left: 0;
  font-size: 6rem;
  text-align: center;
  font-weight: 700;
}

.progressbar svg {
  width: 100%;
  height: 20rem;
}

.progressbar svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

.progressbar svg:nth-child(2) path {
  fill: none;
  stroke-width: 25;
  stroke-dasharray: 629;
  stroke: rgba(255, 255, 255, 0.9);
  -webkit-animation: load 10s;
  -moz-animation: load 10s;
  -o-animation: load 10s;
  animation: load 10s;
}