.xc-fade-enter-active {
  animation: xc-fade-in 0.4s;
}
.xc-fade-leave-active {
  animation: xc-fade-out 0s;
}
@keyframes xc-fade-in {
  0% {
    transform: translate3d(-1000px, 0px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes xc-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1000px, 0, 0);
    opacity: 0;
  }
}
