.spinner__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  z-index: 1;
  position: absolute;
  width: -webkit-fill-available;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.loader {
  border: 8px solid #d29122;
  border-top: 8px solid #fbe232;
  border-radius: 54%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

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