#snackbar {
  visibility: hidden;
  min-width: 270px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 120px;
  font-size: 17px;
}
.info{
   background-color: #C6EFCE !important;
  color: #006100 !important;
}
.validation{
   background-color: #FFC7CE !important;
  color: #9C0006 !important;
}
.other{
   background-color: #DBE5F1 !important;
  color: #002060 !important;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.1s 3s;
  animation: fadein 0.5s, fadeout 0.1s 3s;
}
#snackbar:hover {
    cursor: pointer;
  visibility: visible;
  -webkit-animation: fadein 0s, fadeout 0.1s 10s;
  animation: fadein 0s, fadeout 0.1s 10s;
}
@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;} 
  to {top: 70px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 70px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 70px; opacity: 1;} 
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 70px; opacity: 1;}
  to {top: 0; opacity: 0;}
}