body{
  overflow-x: hidden;
}
/* Notification Succès */
.success{
  background: #def2d6;
  padding: 20px 40px;
  min-width: 420px;
  position: absolute;
  right: 0;
  top: 90px;
  border-radius: 4px;
  border-left: 8px solid #3ad800;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}
.success.showSuccess{
  opacity: 1;
  pointer-events: auto;
}
.success.show{
  animation: show_slide_success 1s ease forwards;
}
@keyframes show_slide_success {
  0%{
    transform: translateX(100%);
  }
  40%{
    transform: translateX(-10%);
  }
  80%{
    transform: translateX(0%);
  }
  100%{
    transform: translateX(-10px);
  }
}
.success.hide{
  animation: hide_slide_success 1s ease forwards;
}
@keyframes hide_slide_success {
  0%{
    transform: translateX(-10px);
  }
  40%{
    transform: translateX(0%);
  }
  80%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(100%);
  }
}
.success .bi-check-circle-fill{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a7052;
  font-size: 30px;
}
.success .msg-success{
  padding: 0 20px;
  font-size: 18px;
  color: #5a7052;
}
.success .close-btn-success{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #a4f19d;
  padding: 20px 18px;
  cursor: pointer;
}
.success .close-btn-success:hover{
  background: #9ceb95;
}
.success .close-btn-success .fa{
  color: #5a7052;
  font-size: 22px;
  line-height: 40px;
}

/* Notification Erreur */
.error{
  background: #ecc8c5;
  padding: 20px 40px;
  min-width: 420px;
  position: absolute;
  right: 0;
  top: 90px;
  border-radius: 4px;
  border-left: 8px solid #e22e2b;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}
.error.showError{
  opacity: 1;
  pointer-events: auto;
}
.error.show{
  animation: show_slide_error 1s ease forwards;
}
@keyframes show_slide_error {
  0%{
    transform: translateX(100%);
  }
  40%{
    transform: translateX(-10%);
  }
  80%{
    transform: translateX(0%);
  }
  100%{
    transform: translateX(-10px);
  }
}
.error.hide{
  animation: hide_slide_error 1s ease forwards;
}
@keyframes hide_slide_error {
  0%{
    transform: translateX(-10px);
  }
  40%{
    transform: translateX(0%);
  }
  80%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(100%);
  }
}
.error .bi-exclamation-triangle-fill{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #b32f2d;
  font-size: 30px;
}
.error .msg-error{
  padding: 0 20px;
  font-size: 18px;
  color: #b32f2d;
}
.error .close-btn-error{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #e99f98;
  padding: 20px 18px;
  cursor: pointer;
}
.error .close-btn-error:hover{
  background: #eb8a82;
}
.error .close-btn-error .fa{
  color: #b32f2d;
  font-size: 22px;
  line-height: 40px;
}