.zoomLeft-enter-active {
  animation-duration: var(--animate-duration);
  animation-delay: var(--animate-delay);
  animation-iteration-count: var(--animate-repeat);
  animation-fill-mode: both;
  animation-name: zoomInLeft;
}

.zoomLeft-leave-active {
  animation-duration: var(--animate-duration);
  animation-delay: var(--animate-delay);
  animation-iteration-count: var(--animate-repeat);
  animation-fill-mode: both;
  animation-name: zoomOutLeft;
}
