body {
  margin: 0;
}
.empty-loading-page-wrapper,
.empty-loading-page-wrapper * {
  box-sizing: border-box;
}
.empty-loading-page-wrapper {
  height: 101vh;
  background-color: rgb(243 244 246 / 1);
}
.empty-loading-page-layout {
  max-width: 640px;
  font-size: 16px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.empty-loading-page-top,
.empty-loading-page-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 1px 1px 3px #0001;
  height: 5rem;
  box-sizing: border-box;
}
.empty-loading-page-top {
  height: 96px;
}
.empty-loading-page-card {
  height: 400px;
  max-height: 70vh;
  position: relative;
}
@keyframes skeleton-pulse {
  from {
    background-position: top left;
  }
  to {
    background-position: bottom right;
  }
}
.empty-loading-page-wrapper .skeleton {
  --c1: #d2ddeb;
  --c2: #ecf0f4;
  --d: 10%;
  background: linear-gradient(
    95deg,
    var(--c1),
    var(--c1) calc(30% - var(--d)),
    var(--c2) 30%,
    var(--c1) calc(30% + var(--d)),
    var(--c1) calc(70% - var(--d)),
    var(--c2) 70%,
    var(--c1) calc(70% + var(--d)),
    var(--c1)
  );
  background-size: 100vw;
  line-height: 0.8;
  animation: skeleton-pulse 1.5s infinite ease-in-out alternate;
  border-radius: 8px;
}
.empty-loading-page-title {
  display: block;
  height: 1.8rem;
  width: 80%;
  max-width: 400px;
}
.empty-loading-page-content {
  animation-delay: calc(100ms);
  display: block;
  height: 1.5rem;
  width: 60%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .empty-loading-page-title {
    height: 2rem;
  }
  .empty-loading-page-content {
    height: 1.9rem;
  }
}
