#errorsDisplayDiv, #infosDisplayDiv {
  position: absolute;
  width: 100%;
  height: 10vh;
  z-index: 2;
  bottom: 0;
  transition-duration: 0.3s;
}
.errorsDisplay, .infosDisplay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.errorsDisplay img, .infosDisplay img {
  height: 60%;
  margin-right: 30px;
}
.errors {
  background: #EE4B2B;
}
.infos {
  background: #189ad3;
}
.active {
  bottom: 10vh !important;
}
