html,
body,
#app {
  height: 100%;
  margin: 0;
  padding: 0;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loader-wrapper .loader-animation {
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 600px;
}

#loader-wrapper .loader-text {
  position: relative;
  top: -260px;
  font-size: 40px;
  letter-spacing: 10px;
  font-weight: 600;
  color: #8e9ca1;
}

#loader-wrapper .loader-text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: loading 1.5s linear infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
