$delay: 0.3s;

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

  to {
    opacity: 1;
  }
}

@keyframes contexify_scaleOut {
  from {
    opacity: 1;
  }

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

.contexify_willEnter-scale {
  transform-origin: top left;
  animation: contexify_scaleIn $delay;
}

.contexify_willLeave-scale {
  transform-origin: top left;
  animation: contexify_scaleOut $delay;
}
