/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
 for details on configuring this project to bundle and minify static web assets.

 Write your CSS code. */
/* Skeleton loader styles */
.skeleton-row {
  animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-text,
.skeleton-text-short,
.skeleton-badge,
.skeleton-button {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  height: 20px;
}

.skeleton-text {
  width: 80%;
}

.skeleton-text-short {
  width: 60%;
}

.skeleton-badge {
  width: 70px;
  height: 24px;
  border-radius: 12px;
}

.skeleton-button {
  width: 120px;
  height: 32px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes skeleton-loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}
