/* The starting CSS styles for the enter animation */
.fade-animation.ng-enter {
  transition:0.2s linear all;
  opacity:0;
}

/* The finishing CSS styles for the enter animation */
.fade-animation.ng-enter.ng-enter-active {
  opacity:1;
}