.floater {
  animation-name: floater;
  -webkit-animation-name: floater;

  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;

  animation-iteration-counter: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floater {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floater {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;

  animation-duration: 2s;
  -webkit-animation-duration: 2s;

  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;

  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.9;
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.9;
  }
}

.wiggle {
  animation-name: wiggle;
  -webkit-animation-name: wiggle;

  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;

  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes wiggle {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes wiggle {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

.barrelRoll {
  animation-name: barrelRoll;

  animation-duration: 0.4s;

  animation-timing-function: ease;

  animation-iteration-count: 8;

  visibility: visible !important;
}

@keyframes barrelRoll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.shake {
  animation-name: shake;

  animation-duration: 0.4s;

  animation-timing-function: ease;

  animation-iteration-count: 8;

  visibility: visible !important;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  16%,
  50%,
  83% {
    transform: translateX(-10px);
  }
  33%,
  66% {
    transform: translateX(10px);
  }
}

.heartbeat {
  animation-name: heartbeat;

  animation-duration: 3s;

  animation-timing-function: ease;

  animation-iteration-count: 1;

  visibility: visible !important;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.rotation {
  animation-name: rotation;

  animation-duration: 4s;

  animation-timing-function: linear;

  animation-iteration-count: 1;

  visibility: visible !important;
}

@keyframes rotation {
  from {
    transform: rotate(0deg) translateX(50%) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(50%) rotate(-360deg);
  }
}

.sideToSide {
  animation-name: sideToSide;

  animation-duration: 3s;

  animation-timing-function: ease;

  animation-iteration-count: 1;

  visibility: visible !important;
}

@keyframes sideToSide {
  0% {
    transform: translate(100%, 0);
  }
  50% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

.spinner {
  animation-name: spinner;

  animation-duration: 2s;

  animation-timing-function: linear;

  animation-iteration-count: 2;

  visibility: visible !important;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pound {
  animation-name: pound;

  animation-duration: 0.5s;

  animation-timing-function: ease;

  animation-iteration-count: 6;

  visibility: visible !important;
}
@keyframes pound {
  to {
    transform: scale(1.2);
  }
}

.bounceIn {
  animation-name: bounceIn;

  animation-duration: 0.8s;

  animation-iteration-count: 4;

  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
