.loading {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
}

.spinner {
  animation: rotation 1s linear infinite;
  border-color: black black transparent black;
  border-radius: 50%;
  border-style: solid;
  border-width: 12px;
  box-sizing: border-box;
  display: inline-block;
  height: 120px;
  width: 120px;
}

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

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