@charset "utf-8";
/* CSS Document */

.circle-wrap {
  width: 75px;
  height: 75px;
  background: #fefcff;
  border-radius: 50%;
	float: left;
}

.circle-wrap .circle .mask3,
.circle-wrap .circle .fill3 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask3 {
    clip: rect(0px, 75px, 75px, 40px);
}

.circle-wrap .inside-circle {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #387aac;
  line-height: 63px;
  text-align: center;
  margin-top: 7px;
  margin-left: 7px;
  color: #fff;
  position: absolute;
  z-index: 100;
  font-weight: 600;
  font-size: 1em;
}

/* color animation */

/* 3rd progress bar */
.mask3 .fill3, .mask3 .fill3 {
  clip: rect(0px, 75px, 75px, 0px);
  background-color: #21efe7;
}

.mask3.full3, .mask3.full3,
.circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(135deg);
}

.circle-wrap .circle .mask3, 
.circle-wrap .circle .fill3 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}
.mask3 .fill3 {
  clip: rect(0px, 75px, 75px, 0px);
  background-color: #21efe7;
}
.mask3.full3,
.circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(160deg) !important;
}

.circle-wrap .circle .mask3,
.circle-wrap .circle .fill3 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask3,
.circle-wrap .circle .fill3 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}



@keyframes fill{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(160deg);
  }
}

