html.loading,
body.loading {
  overflow: hidden;
  height: 100%;
}

@keyframes shimmer {
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  will-change: background-position;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  border-radius: 0.5rem;
}

@keyframes pulseScale {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.01);
    opacity: 0.9;
  }
}

.shimmer-pulse {
  animation: shimmer 2s linear infinite, pulseScale 4s ease-in-out infinite;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

#full-screen-loader {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  background-color: #121827;
  z-index: 9999;
  user-select: none;
}

#full-screen-loader>div.sidebar {
  background-color: #1f2937;
  box-shadow: inset -3px 0 8px rgba(0, 0, 0, 0.4);
  border-radius: 0 0.75rem 0.75rem 0;
}

#full-screen-loader>div.main-content {
  background-color: #1e293b;
  border-radius: 0 0 0.75rem 0.75rem;
}