* {
  margin: 0;
  padding: 0;
}

#loader-box {
  pointer-events: none;
  cursor: default;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("/a/images/dark-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.disppear {
  animation: vanish 1s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

