/* slideOutLeft */
@keyframes slideOutLeft {
    to      { transform: translateX(-100%); }
}

/* slide in from the right */
@keyframes slideInRight {
    from    { opacity: 0; transform:translateX(100%); }
    to      { transform: translateX(0); }
}

.ng-enter           { 
animation: slideInRight 0.5s both ease-in; z-index: 8888; 
animation-delay: 0.5s;
}
.ng-leave           { 
animation: slideOutLeft 0.5s both ease-in; z-index: 9999; 
}