.content-global {
  width: calc(100% - 250px);
  margin-left: 250px;

  transition: all 0.3s ease;
}

.content-global-2 {
  width: calc(100% - 80px) !important;
  margin-left: 80px !important;
}
.content-global-2.no-anim {
  transition: width 0s ease;
}

footer {
  margin-top: 90px;
}

/* if lauch index en premier */
.plus-input {
  z-index: 50;
  top: 180px;
  position: absolute;
  height: 75px;
}
.contentremove.contentremove2 {
  position: absolute;
  top: 50px;
  right: 50px;
}

.fade-out {
  animation: fade-out 0.6s ease forwards;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(200px);
  }
}

.fade-in {
  animation: fade-in 0.6s ease forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body{
  overflow-y: scroll;
}