/*! * * * * * * * * * * * * * * * * * * * *\  
  CSShake :: shake-crazy
  v1.6.0
  CSS classes to move your DOM
  (c) 2015 @elrumordelaluz
  http://elrumordelaluz.github.io/csshake/
  Licensed under MIT
\* * * * * * * * * * * * * * * * * * * * */
.shake-crazy {
  display: inherit;
  transform-origin: center center;
}

.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused;
}

.shake-crazy:hover, .shake-trigger:hover .shake-crazy, .shake-freeze:hover,
.shake-trigger:hover .shake-freeze {
  animation-play-state: running;
}

@keyframes shake-crazy {
  10% {
    transform: translate(-3px, -14px) rotate(0deg);
    opacity: 0.61;
  }
  20% {
    transform: translate(14px, 18px) rotate(-1deg);
    opacity: 0.14;
  }
  30% {
    transform: translate(-9px, 0px) rotate(-7deg);
    opacity: 0.91;
  }
  40% {
    transform: translate(-8px, 5px) rotate(-1deg);
    opacity: 0.34;
  }
  50% {
    transform: translate(-4px, 1px) rotate(9deg);
    opacity: 0.52;
  }
  60% {
    transform: translate(11px, 5px) rotate(-8deg);
    opacity: 0.43;
  }
  70% {
    transform: translate(0px, -11px) rotate(10deg);
    opacity: 0.68;
  }
  80% {
    transform: translate(6px, 5px) rotate(-5deg);
    opacity: 0.1;
  }
  90% {
    transform: translate(-10px, 0px) rotate(9deg);
    opacity: 0.34;
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-crazy:hover, .shake-trigger:hover .shake-crazy, .shake-crazy.shake-freeze, .shake-crazy.shake-constant {
  animation-name: shake-crazy;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/*# sourceMappingURL=csshake-crazy.css.map */
