/* Only babylon heart has beating heart animation */
/* prettier-ignore */
#dna.spinner .app-loader__image {
  animation: app-loader-beat-animation 1.2s ease-in-out infinite forwards;
}

/* prettier-ignore */
@-webkit-keyframes app-loader-beat-animation {

  0%,
  100%,
  65% {
    transform: scale3d(1, 1, 1)
  }

  15%,
  45% {
    transform: scale3d(1.05, 1.05, 1)
  }
}

/* prettier-ignore */
@keyframes app-loader-beat-animation {

  0%,
  100%,
  65% {
    transform: scale3d(1, 1, 1)
  }

  15%,
  45% {
    transform: scale3d(1.1, 1.1, 1)
  }

  35% {
    transform: scale3d(1.05, 1.05, 1)
  }
}
