body { background-color:#ffffff;}
.position {
  float: left;
  margin: 100px 20px;
}

.progress-bar {
  position: absolute;
  height: 125px;
  width: 125px;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}

.progress-bar div {
  position: absolute;
  height: 125px;
  width: 125px;
  /* clip-path: circle(49%); */
  border-radius: 100%;
}

/* .progress-bar div span {
  position: absolute;
  font-family: Arial;
  font-size: 25px;
  line-height: 175px;
  height: 175px;
  width: 175px;
  left: 12.5px;
  top: 12.5px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
} */

.progress-bar .background { background-color: #b3cef6; }

.progress-bar .rotate {
  clip: rect(0px 62px 125px 0px);
  background-color: #4b86db;
}

.progress-bar .left {
  clip: rect(0px 62px 125px 0px);
  opacity: 1;
  background-color: #b3cef6;
}

.progress-bar .right {
  clip: rect(0px 62px 125px 0px);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}
 @keyframes toggle {
   0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
