/* node_modules/@daysmart/angular-skeleton-screen/styles/skeleton-screen.scss */
@keyframes daysmart-skeleton-animation {
  0% {
    background-color: rgba(165, 165, 165, 0.1);
  }
  50% {
    background-color: rgba(165, 165, 165, 0.3);
  }
  100% {
    background-color: rgba(165, 165, 165, 0.1);
  }
}
.daysmart-skeleton-data {
  cursor: default;
  pointer-events: none;
  position: relative;
  visibility: hidden;
}
.daysmart-skeleton-data::before {
  animation: daysmart-skeleton-animation 1s infinite ease-in-out;
  border-radius: 5px;
  content: "";
  display: block;
  height: inherit;
  position: absolute;
  visibility: visible;
  width: inherit;
}

/* angular:styles/global:skeleton-screen */
/*# sourceMappingURL=skeleton-screen.css.map */
