﻿.animate-fade-in {
  opacity: 1;
}
.animate-fade-in.ng-hide-add,
.animate-fade-in.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-fade-in.ng-hide {
  opacity: 0;
}
animate-slight-grow {
  transform: scale(1);
}
.animate-slight-grow.ng-hide-add,
.animate-slight-grow.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-slight-grow.ng-hide {
  transform: scale(0.95);
}
animate-collapse {
  transform: scaleY(1);
  /*transform: scaleY(1) translateY(0);*/
  /*transform: translateY(0);*/
}
.animate-collapse.ng-hide-add,
.animate-collapse.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-collapse.ng-hide {
  transform: scaleY(0);
  /*transform: scaleY(0) translateY(-88px);*/
  /*transform: translateY(-100px);*/
}
.animate-bump-up {
  transform: translateY(-10px);
}
.animate-bump-up.ng-hide-add,
.animate-bump-up.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-bump-up.ng-hide {
  transform: translateY(0px);
}
.animate-rise-up {
  transform: translateY(0px) scale(1);
}
.animate-rise-up.ng-hide-add,
.animate-rise-up.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-rise-up.ng-hide {
  transform: translateY(-10px) scale(0.98);
}
.animate-expand-height {
  transform: scaleY(1);
}
.animate-expand-height.ng-hide-add,
.animate-expand-height.ng-hide-remove {
  transition: all linear 0.25s;
}
.animate-expand-height.ng-hide {
  transform: scaleY(0);
}
.animated-text-change {
  transition: all linear 0.25s;
  opacity: 1;
}
.animated-text-change[class*="-add"] {
  opacity: 0;
}