@import url(https://fonts.googleapis.com/css?family=Questrial:600,400,300);

body {
  font-family: "Questrial", sans-serif;
}

.outer {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 400px;
  width: 400px;
  margin-top: -200px;
  margin-left: -200px;
  color: #ECEFF1;
  background: #546E7A;
  border-radius: 2px;
  box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.headline {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  line-height: 22px;
}
.headline .small {
  font-weight: 300;
  font-size: 16px;
}

.circle-big {
  position: relative;
  width: 114px;
  height: 114px;
  margin: 30px auto 25px auto;
}
.circle-big svg {
  width: 114px;
  height: 114px;
}
.circle-big .bg {
  fill: none;
  stroke-width: 10px;
  stroke: #29434E;
}
.circle-big .progress {
  fill: none;
  stroke-width: 10px;
  stroke: #00ACC1;
  stroke-linecap: round;
  stroke-dasharray: 326.56;
  stroke-dashoffset: 60;
  transform: rotate(270deg);
  transform-origin: 50% 50%;
  animation: big 1.5s ease-out;
}
.circle-big .text {
  position: absolute;
  width: 100%;
  top: 37px;
  font-size: 24px;
  text-align: center;
  font-weight: 400;
  line-height: 22px;
}
.circle-big .text .small {
  font-size: 14px;
  color: #B0BEC5;
}

.circles-small {
  margin: 0 auto;
  width: 400px;
  height: 80px;
  text-align: center;
}

.circle-small {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 20px;
}
.circle-small svg {
  width: 80px;
  height: 80px;
}
.circle-small .bg {
  fill: none;
  stroke-width: 6px;
  stroke: #29434E;
}
.circle-small .progress {
  fill: none;
  stroke-width: 6px;
  stroke: #5DDEF4;
  stroke-linecap: round;
  stroke-dasharray: 232.36;
  transform: rotate(270deg);
  transform-origin: 50% 50%;
}
.circle-small .progress.one {
  stroke-dashoffset: 80;
  animation: one 1.5s ease-out;
}
.circle-small .progress.two {
  stroke-dashoffset: 140;
  animation: two 1.5s ease-out;
}
.circle-small .text {
  position: absolute;
  width: 100%;
  top: 26px;
  font-size: 17px;
  text-align: center;
  font-weight: 400;
  line-height: 16px;
}
.circle-small .text .small {
  font-size: 12px;
  color: #B0BEC5;
}

@keyframes big {
  from {
    stroke-dashoffset: 326.56;
  }
  to {
    stroke-dashoffset: 60;
  }
}
@keyframes one {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 80;
  }
}
@keyframes two {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 140;
  }
}
