@keyframes rotate-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-2 {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
.initial-app-loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.initial-app-loader {
  animation: rotate-1 1.4s linear infinite;
  width: 100px;
  height: 100px;
}
.initial-app-loader-progress {
  stroke: #1976d2;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0;
  animation: rotate-2 1.4s ease-in-out infinite;
}
