/* Views 1 and 2*/
.repeat-animation.ng-enter-stagger,
.repeat-animation.ng-leave-stagger,
.repeat-animation.ng-move-stagger,
.repeat-animation2.ng-enter-stagger,
.repeat-animation2.ng-leave-stagger,
.repeat-animation2.ng-move-stagger {
  /* 100ms will be applied between each sucessive enter operation */ 
  -moz-transition-delay:0.1s!important;
  -webkit-transition-delay:0.1s!important;
  transition-delay:0.1s!important;

  /* this is here to avoid accidental CSS inheritance */
  -webkit-transition-duration:0!important;
  transition-duration:0!important;
}

.repeat-animation.ng-enter,
.repeat-animation.ng-leave,
.repeat-animation.ng-move,
.repeat-animation2.ng-enter,
.repeat-animation2.ng-leave,
.repeat-animation2.ng-move {
  -moz-transition:0.2s ease-in-out all;
  -webkit-transition:0.2s ease-in-out all;
  transition:0.2s ease-in-out all;
}

.repeat-animation.ng-leave.ng-leave-active,
.repeat-animation.ng-enter,
.repeat-animation.ng-move,
.repeat-animation2.ng-leave.ng-leave-active,
.repeat-animation2.ng-enter,
.repeat-animation2.ng-move {
  -moz-transition:0.2s ease-in-out all;
  -webkit-transition:0.2s ease-in-out all;
  transition:0.2s ease-in-out all;

  opacity:0;
  /*transform:scale(0.5,0.5);
  -ms-transform:scale(0.5,0.5);
  -webkit-transform:scale(0.5,0.5);*/
}

.repeat-animation.ng-leave,
.repeat-animation.ng-move.ng-move-active,
.repeat-animation.ng-enter.ng-enter-active 
{
  opacity:1;
  /*transform:scale(1,1) rotate(120deg);
  -ms-transform:scale(1,1) rotate(120deg);
  -webkit-transform:scale(1,1) rotate(120deg); */ 
}

.repeat-animation2.ng-leave,
.repeat-animation2.ng-move.ng-move-active,
.repeat-animation2.ng-enter.ng-enter-active {
  opacity:1;
  /*transform:scale(1,1);
  -ms-transform:scale(1,1);
  -webkit-transform:scale(1,1);  */
}









