.animate-hide {
 -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s;
    -moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s;
    -o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s;
    transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s;
  left: 0;
  width: 0px;
}

.animate-hide.ng-hide {
  left: -100%;
  opacity:0;
  width: 400px;
}