/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes spulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.2, 1.2, 1.2);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.spulse {
  animation-name: spulse;
  animation-timing-function: ease-in-out;
}
