@charset "utf-8";
/* CSS Document */

@keyframes remontes {
  0% {

              transform: translateY(0px);
    opacity: 1;
  }
  100% {


              transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes descente {
  0% {

              transform: translateY(-1000px);
    opacity: 0;
  }
  100% {


              transform: translateY(0px);
    opacity: 1;
  }
}
.deploiementComposition{
  display: block!important;
  animation: descente 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation-play-state: running;
  animation-delay: 0.5s;
}
.remballeComposition{
  display: block!important;
  animation: remontes 0.25s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation-play-state: running;
}