/* src/styles.css */
.animated-background {
  animation: modal-popup-animation 1s infinite ease-in-out;
  height: 600px;
  width: 100%;
  margin: 5px 0 5px 0;
  border-radius: 3px;
}
@keyframes modal-popup-animation {
  0% {
    background-color: rgba(165, 165, 165, 0.1);
  }
  50% {
    background-color: rgba(165, 165, 165, 0.7);
  }
  100% {
    background-color: rgba(165, 165, 165, 0.1);
  }
}

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