.animate-modal {
  animation: modalShow .35s ease;
}

@keyframes modalShow {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.95);
  }

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