@keyframes c9skeletonShimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.c9skeleton {
  animation: c9skeletonShimmer 1.5s linear infinite forwards;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 2000px 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.c9skeleton-text {
  height: 1em;
  width: 80%;
}

.c9skeleton-text-short {
  height: 1em;
  width: 40%;
}

.c9skeleton-rect {
  height: 100px;
  width: 100%;
}

#c9loader {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}

#c9loader-content {
  margin-top: 70px;
  width: 80%;
  max-width: 400px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.c9skeleton-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.c9skeleton-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.c9skeleton-banner {
  width: 60px;
  height: 80px;
  flex-shrink: 0;
}

.c9skeleton-text {
  height: 1em;
  margin-bottom: 8px;
}
.c9skeleton-text.title {
  height: 1.25em;
  width: 70%;
}
.c9skeleton-text.subtitle {
  height: 0.9em;
  width: 40%;
}
.c9skeleton-text.body1 {
  height: 0.8em;
  width: 100%;
}
.c9skeleton-text.body2 {
  height: 0.8em;
  width: 100%;
}
.c9skeleton-text.body3 {
  height: 0.8em;
  width: 60%;
}

.c9skeleton-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
