@charset "utf-8";
/* CSS Document */

.circle-wrap {
  width: 75px;
  height: 75px;
  background: #fefcff;
  border-radius: 50%;
	float: left;
}

.circle-wrap .circle .mask2,
.circle-wrap .circle .fill2 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask2 {
    clip: rect(0px, 75px, 75px, 36px);
}

.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 */
.mask2 .fill2, .mask2 .fill2 {
  clip: rect(0px, 75px, 75px, 0px);
  background-color: #34d293;
}

.mask2.full2, .mask2.full2,
.circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(135deg);
}

.circle-wrap .circle .mask2, 
.circle-wrap .circle .fill2 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}
.mask2 .fill2 {
  clip: rect(0px, 75px, 75px, 0px);
  background-color: #34d293;
}
.mask2.full2,
.circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(160deg) !important;
}

.circle-wrap .circle .mask2,
.circle-wrap .circle .fill2 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask2,
.circle-wrap .circle .fill2 {
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
}



@keyframes fill{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(160deg);
  }
}

