
.position {
  float: left;
  margin: 0 auto;
  z-index: 1;
}
.progress-bar {
  position: relative;
  height: 100px;
  width: 100px;
  background-color: transparent !important;
}
.progress-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.progress-bar div span {
  position: absolute;
  height: 75px;
  width: 75px;
  left: 12.5px;
  color: #132444;
  top: 12.5px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.02em;
  line-height: 15px;
  padding-top: 23px;
}
.progress-bar .background { background-color: #b3cef6; }
.progress-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: #4b86db;
}
.progress-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: #b3cef6;
}
.progress-bar .right {
  clip: rect(0 50px 100px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}

@media only screen and (max-width: 767px){
  .progress-bar div span {
    text-wrap: balance;
  }
}

@keyframes 
toggle {  0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}

body .progress-bar.position.appeared {
    width: 100px !important;
}
/* a.btn.btn-blue-top.mb-2, a.btn.btn-blue.mb-2 {
    font-size: 15px !important;
    font-weight: 500 !important;
} */