#snackbar-container {
  position: fixed;
  right: 30px;
  bottom: 0;
  z-index: 99999;
}
.snackbar {
  overflow: hidden;
  clear: both;
  min-width: 100px;
  max-width: 400px;
  cursor: pointer;
  opacity: 0;
}
.snackbar.active {
  height: auto;
  opacity: 1;
}
@media (max-width: 767px) {
  #snackbar-container {
    left: 0px !important;
    right: 0px;
    width: 100%;
  }
  #snackbar-container .snackbar {
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  #snackbar-container {
    left: 0px !important;
    right: 0px;
    width: 100%;
  }
  #snackbar-container .snackbar {
    min-width: 100%;
  }
  #snackbar-container [class="snackbar active"] {
    border-radius: 0;
    margin-bottom: 0;
  }
}
.snackbar {
  background-color: black;
  text-align:center;
  border:1px solid #333;
  color: #ddd; 
  font-size: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  height: 0;
  -moz-transition: -moz-transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s, padding 0s linear 0.6s, height 0s linear 0.6s;
  -webkit-transition: -webkit-transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s, padding 0s linear 0.6s, height 0s linear 0.6s;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s, padding 0s linear 0.6s, height 0s linear 0.6s;
  -moz-transform: translateY(200%);
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
}
.snackbar.active > a {
  text-decoration: none;
  line-height: 100%;
  font-weight: bold;
  margin-left: 24px;
  float: right;
  color: #4CAF50;
}
.snackbar.active {
  padding: 14px 24px 14px 24px;
  margin-bottom: 10px;
  height: auto;
  -moz-transition: -moz-transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s;
  -webkit-transition: -webkit-transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in, height 0s linear 0.6s, height 0s linear 0.6s;
  -moz-transform: none;
  -webkit-transform: none;
  transform: none;
}