#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: 0px;
  background-color: #034c79;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999999;
  left: 50%;
  bottom:100px;
  font-size: 17px;
  margin: 0 auto;
  
}
#snackbar a{color:#67d670;}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.10s, fadeout 0.10s 10s;
  animation: fadein 0.5s, fadeout 0.5s 10s;
}