html,
#app {
  height: 100dvh;
}

.hidden {
  display: none;
}

body:has(.loading-animation) {
  overflow: hidden;
}

.loading-animation {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loading-animation__stat-bar {
  position: absolute;
  bottom: 20px;
  width: 90%;
}

.loading-animation__stat-bar__label {
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.loading-animation__stat-bar__progress {
  position: relative;
  display: block;
  background: #515151;
  width: 100%;
  height: 3px;
  border-radius: 8px;
  overflow: hidden;
}

.loading-animation__stat-bar__progress__slide {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: #fff;
}

@media (min-width: 1025px) {
  .loading-animation__stat-bar {
    bottom: 200px;
    width: 70%;
  }

  .loading-animation__stat-bar__label {
    font-size: 18px;
  }

  .loading-animation__stat-bar__progress {
    height: 5px;
  }
}

@media (max-height: 900px) {
  .loading-animation__stat-bar {
    bottom: 50px !important;
  }
}
