@keyframes splash {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    left: -20%;
    bottom: 0;
    z-index: 10;
    transform: scale(1);
  }
  25% {
    transform: scale(1.6);
    bottom: -10%;
    left: 40%;
    opacity: 1;
    z-index: 10;
  }
  100% {
    transform: scale(2);
    left: 110%;
    opacity: 1;
    z-index: 10;
  }
}
@-moz-keyframes myfirst {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    left: -20%;
    bottom: 0;
    z-index: 10;
    transform: scale(1);
  }
  25% {
    transform: scale(1.6);
    bottom: -10%;
    left: 40%;
    opacity: 1;
    z-index: 10;
  }
  100% {
    transform: scale(2);
    left: 110%;
    opacity: 1;
    z-index: 10;
  }
}
@-webkit-keyframes splash {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    left: -20%;
    bottom: 0;
    z-index: 10;
    transform: scale(1);
  }
  25% {
    transform: scale(1.6);
    bottom: -10%;
    left: 40%;
    opacity: 1;
    z-index: 10;
  }
  100% {
    transform: scale(2);
    left: 110%;
    opacity: 1;
    z-index: 10;
  }
}
.splash {
  width: 2500px;
  height: 100%;
  position: absolute;
  left: -20%;
  bottom: 0;
  background-position: bottom left;
  background-repeat: no-repeat;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  opacity: 0;
  z-index: -50;
}
.splash.on {
  -webkit-animation: splash 3.5s linear;
  animation: splash 3.5s linear;
}
/*# sourceMappingURL=cat.css.map */