.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.5rem;
  height: 10.5rem;
  margin-top: -5.25rem;
  margin-left: -5.25rem;
  animation: load8 1.1s infinite linear;
}

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

.loading__svg {
  fill: transparent;
}

.loading__svg circle {
  stroke-width: 8;
  stroke-linecap: butt;
  stroke-dasharray: 240;
}

.loading__stroke {
  stroke: #0062ff;
  stroke-dashoffset: 40;
}

/* Made with Bob */
