

svg.radial-progress {
  height: auto;
  max-width: 200px;
  padding: 1em;
  transform: rotate(-90deg);
  width: 100%;
}

svg.radial-progress circle {
  fill: rgba(0,0,0,0);
  stroke: #fff;
  /*stroke-dashoffset: 219.91148575129; */
  stroke-width: 10;
}

svg.radial-progress circle.incomplete { 
  opacity: 0.25;
  stroke: inherit;
  stroke-dashoffset: inherit;
  stroke-width: inherit;
}

svg.radial-progress circle.complete { 
  stroke-dasharray: 220;
  stroke: inherit;
  stroke-dashoffset: inherit;
  stroke-width: inherit;
}

svg.radial-progress text {
  fill: #fff;
  text-anchor: middle;
}

#countUpDiv{
	width: 200px;
  height: 200px;
  display: grid;
  position: absolute;
  left: calc(50% - 100px);
  top: 0;
}
.countDiv{
	position: relative;
  text-align: center;
}
#countText{
	text-align: center;
	margin-bottom: auto;
	margin-top: 0;
}
.countUpP{
	text-align: center;
	margin-top: auto;
	margin-bottom: 0;
}