#root {
  min-height: 100vh;
  display: flex;
  min-width: 0;
  width: 100%;
  height: 100%;
}

.loader {
  margin: auto;
  width: 50px;
  height: 50px;
}

.circular-loader {
  animation: rotate 2s linear infinite;
}

.loader-path {
  fill: none;
  stroke-width: 3px;
  animation: animate-stroke 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

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

@keyframes animate-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke: #941d80;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
    stroke: #941d80;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
    stroke: #941d80;
  }
}

.logo-loader {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  animation-name: girarb;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes girarb {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
