.animate-contentShow {
  animation: contentShow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes contentShow {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.animate-overlayShow {
  animation: overlayShow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Toast message */
@keyframes slideIn {
  from {
    left: 100%;
  }
  to {
    left: 32px;
  }
}
