@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mb.slideInBottom {
  animation-name: slideInBottom;
}
