#loaderDiv {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#loaderDiv .loaderSpan {
  width: 100px;
  height: 100px;
  display: inline-block;
  animation: 1.4s linear 0s infinite normal none running loading;
  color: #0077d4;
}

.circle {
  stroke-width: 3px;
  stroke: currentcolor;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0;
  animation: 1.4s ease-in-out 0s infinite normal none running animation-circle;
}

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

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

@keyframes animation-circle {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
