body {
  display: block !important;
}

.initial-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e1e2d;
  gap: 3rem;
}

.initial-loader-loading-bar {
  display: flex;
  gap: 0.5rem;
}

.initial-loader-bar {
  width: 8px;
  height: 32px;
  background: #ffffff;
  animation: initial-loading 1.5s ease-in-out infinite;
}

.initial-loader-bar:nth-child(1) {
  animation-delay: 0s;
}
.initial-loader-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.initial-loader-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.initial-loader-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.initial-loader-bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes initial-loading {
  0%,
  100% {
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
  }
  50% {
    height: 60px;
    background: #ffffff;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reborn {
  0% {
    transform: scaleY(1);
  }

  20% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

.modal {
  z-index: 1033;
  top: 10%;
  animation: fadeIn 0.3s;
}

.modal.active {
  display: block;
}

.reborn {
  animation: reborn 0.5s ease;
}

.highlighted {
  color: var(--primary-color);
}
