@import url("./variables.css");

#loadContainer {
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-color);
  z-index: 5000;
}

#load {
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--wh-color);
  border-left-color: var(--wh-color);
  animation: ani 1s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

#load2 {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: inherit;
  background: transparent;
  border: 10px solid transparent;
  box-sizing: border-box;
  border-bottom-color: var(--black-color);
  border-right-color: var(--black-color);
  animation: ani2 2s linear infinite;
  transform-origin: center;
}

@keyframes ani {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ani2 {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(0);
  }
}
