/* Animation transitions for enter and leave animations */
[data-ui-view].ng-enter {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* Start enter animation */
[data-ui-view].ng-enter {
  opacity: 0;
}
/* End enter animation */
[data-ui-view].ng-enter-active {
  opacity: 1;
}
