﻿.animate-filter-hide {
 -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
    -moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
    -o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
    transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
  
  opacity:1;
  /*height:250px;*/
  overflow-y:scroll;
}

.animate-filter-hide.ng-hide {
  opacity:0;
  /*height:0;*/
  overflow-y:hidden;
}