@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.pa-animated-background-root {
  width: 100%;
  height: 1em;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  position: relative;
  margin: 0px;
  z-index: 2;
}
.pa-background-masker-root {
  background: #fff;
  position: absolute;
}

.pa-space-footer-and-header {
  margin-top: 1em;
}
