/* jquery.msb animations classes */

.msb-anim-rotate {
  animation: msb-rotate 1s infinite linear;
}
@keyframes msb-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.msb-anim-bounce {
  position: relative;
  animation: bouncing .5s infinite ease;
}
@keyframes bouncing {
    0% { top: 0; }
    50% { top: -0.2em; }
    80% { top: -0.3em; }
    100% { top: 0; }
}
