
.progress-bar-widget {
  height: 200px;
  width: 50%;

}
@media (max-width: 990px) {
  .progress-bar-widget {
  width: 25%;
    }
}
@media (max-width: 640px) {
  .progress-bar-widget {
  width: 30%;
    }
}
@media (max-width: 540px) {
  .progress-bar-widget {
  width: 40%;
    }
}

@media (max-width: 420px) {
  .progress-bar-widget {
  width: 55%;
    }
}


.progress-bar-widget div {
    position: absolute;
    height: 175px;
    width: 175px;
    border-radius: 50%;
}

.progress-bar-widget div span {
    position: absolute;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 150px;
    height: 150px;
    width: 150px;
    left: 12.5px;
    top: 12.5px;
    text-align: center;
    border-radius: 54%;
    background-color: white;
    color: #660800;
}


.progress-bar-widget .background { background-color: #b3cef6; }

.progress-bar-widget .rotate {
  clip: rect(0 100px 200px 0);
  background-color: #4b86db;
}

.progress-bar-widget .left {
  clip: rect(0 100px 200px 0);
  opacity: 1;
  background-color: #b3cef6;
}

.progress-bar-widget .right {
  clip: rect(0 100px 200px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}
 @keyframes 
toggle {  0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
