@keyframes skeleton-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.understory-skeleton {
  display: block;
  background-color: rgba(0, 0, 0, 0.11);
  animation: 2s ease-in-out 0.5s infinite normal none running skeleton-animation;
  border-radius: 4px / 6.7px;
}

.understory-skeleton:empty:before {
  content: "\00a0";
}

.understory-skeleton--text {
  display: block;
  background-color: rgba(0, 0, 0, 0.11);
  margin-top: 0px;
  margin-bottom: 0px;
  height: auto;
  transform-origin: 0px 55%;
  transform: scale(1, 0.6);
  border-radius: 4px / 6.7px;
}
