#loading {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}

.loading {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 88px;
  height: 88px;
  display: grid;
  animation: spinner-plncf9 4s infinite;
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1/1;
  border: 14.1px solid;
  border-radius: 50%;
  border-color: #6a682f #6a682f #0000 #0000;
  mix-blend-mode: darken;
  animation: spinner-plncf9 1s infinite linear;
}

.spinner::after {
  border-color: #0000 #0000 #b1ad4e #b1ad4e;
  animation-direction: reverse;
}

@keyframes spinner-plncf9 {
  100% {
    transform: rotate(1turn);
  }
}
