.circleProg {
    display:flex;
    justify-content:center;
}

.circleProg .progress-bar {
  position: relative;
  height:44px;
  width: 44px;
  background:none !important;
      border:0px !important;
      box-shadow:none !important;
}

.circleProg .progress-bar div {
  position: absolute;
  height:44px;
  width:44px;
  border-radius: 50%;
}

.circleProg .progress-bar div span {
  position: absolute;
  font-family: Arial;
  font-size: 12px;
  line-height:40px;
  height:40px;
  width:40px;
  left:2px;
  top:2px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
  color:#000;

}

.circleProg .progress-bar .background { background-color: #b3cef6; }

.circleProg .progress-bar .rotate {
  clip:rect(0 24px 80px 0);
  background-color: #4b86db;
}

.circleProg .progress-bar .left {
  clip:rect(0 24px 80px 0);
  opacity: 1;
  background-color: #b3cef6;
}

.circleProg .progress-bar .right {
  clip:rect(0 24px 80px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}
 @keyframes 
toggle {  0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
