/* [project]/src/components/DisplayProgressCircles.css [app-client] (css) */
.circularProcressLoader {
  -webkit-animation: 2s linear infinite progressBarSpin;
  border: 3px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: 1.5s linear infinite progressBarSpin;
  position: relative;
  border-bottom-color: #0000 !important;
}

@-webkit-keyframes progressBarSpin {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes progressBarSpin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=src_components_DisplayProgressCircles_7997d5f8.css.map*/