$delay: 0.3s;

@keyframes contexify_slideIn {
  from {
    opacity: 0;
    transform: scale3d(1, 0.3, 1);
  }

  to {
    opacity: 1;
  }
}

@keyframes contexify_slideOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: scale3d(1, 0.3, 1);
  }
}

.contexify_willEnter-slide {
  transform-origin: top center;
  animation: contexify_slideIn $delay;
}

.contexify_willLeave-slide {
  transform-origin: top center;
  animation: contexify_slideOut $delay;
}
