.appear-from-bottom {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: animateIn 1s cubic-bezier(0.25, 0.25, 0, 1) 0.1s both;
}

@keyframes animateIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
