<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slide-animate-container {
  position: relative;
  background: white;
  border: 1px solid black;
  height: 40px;
  overflow: hidden;
}
.slide-animate {
  padding: 10px;
}
.slide-animate.ng-enter,
.slide-animate.ng-leave {
  -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 10px;
}
.slide-animate.ng-enter {
  top: -50px;
}
.slide-animate.ng-enter.ng-enter-active {
  top: 0;
}
.slide-animate.ng-leave {
  top: 0;
}
.slide-animate.ng-leave.ng-leave-active {
  top: 50px;
}
.animate-show {
  opacity: 1;
}
.animate-show.ng-hide {
  /* this is just another form of hiding an element */

  display: block!important;
  position: absolute;
  height: 0;
}
.animate-show:not(.ng-hide) {
  -webkit-transition: height linear .2s;
  -moz-transition: height linear .2s;
  -ms-transition: height linear .2s;
  -o-transition: height linear .2s;
  transition: height linear .2s;
}
</pre></body></html>