.loading_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.loading-spinner {
  border: 0.7vw solid #0000004d;
  border-radius: 50%;
  border-top: 0.7vw solid white;
  width: 3vw;
  height: 3vw;
  animation: spin 1s linear infinite;
  @media screen and (min-width: 480px) {
    border-width: 2px;
    border-top-width: 2px;
    width: 1rem;
    height: 1rem;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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