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

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