@-webkit-keyframes 
    load { 0% {
    stroke-dashoffset:0
    }
}
@-moz-keyframes 
    load { 0% {
    stroke-dashoffset:0
    }
}
@keyframes 
    load { 0% {
    stroke-dashoffset:0
    }
}
.acp-page .progress {
    height: auto;
    overflow: visible;
    background-color: transparent;
    padding: 0;
}
.acp-page .progress>li {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #93A2AC;
  font-family: Arial, sans-serif;
  font-weight: 100;
  margin: 5px;
}
.acp-page .progress>li:after {
    content: attr(data-percent);
    position: absolute;
    width: 100%;
    top: 23px;
    left: 0;
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-family: Arial;
}
.acp-page .progress svg {
  width: 3rem;
  height: 3rem;
  overflow: visible;
}
.acp-page .progress 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);
}
.acp-page .progress svg:nth-child(2) path {
  fill: none;
  stroke-width: 25;
  stroke-dasharray: 629;
  stroke: rgba(255, 255, 255, 1);
  -webkit-animation: load 2s;
  -moz-animation: load 2s;
  -o-animation: load 2s;
  animation: load 2s;
}