
.position {
  float: none;
  margin: 30px auto;
}
.progress-bar {
  height: 200px;
  position: relative;
  width: 200px;
  border-radius: 50%;
}
.progress-bar div {
  border-radius: 50%;
  height: 185px;
  position: absolute;
  width: 185px;
}
.progress-bar div span {
  background-color: white;
  border-radius: 50%;
  font-family: Arial;
  font-size: 25px;
  height: 175px;
  left: 5px;
  line-height: 175px;
  position: absolute;
  text-align: center;
  top: 5px;
  width: 175px;
}
.progress-bar .background { background-color: #b3cef6; }

.progress-bar .rotate {
  clip: rect(0 100px 200px 0);
  background-color: #4b86db;
}

.progress-bar .left {
  clip: rect(0 100px 200px 0);
  opacity: 1;
  background-color: #b3cef6;
}

.progress-bar .right {
  clip: rect(0 100px 200px 0);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}
 @keyframes 
toggle {  0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
