/*
Custom Css
*/
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #4CF36F; /*  Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 20px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  top: 40px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
  background-color: #08AB48;
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: snackfadein 0.5s;
  animation: snackfadein 0.5s;
}


#snackbar.alert {
  background-color: #F7191D;
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: snackfadein 0.5s, snackfadeout 0.5s 3.7s;
  animation: snackfadein 0.5s, snackfadeout 0.5s 3.7s;
}

#snackbar.alert2 {
  background-color: #F4A659;
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: snackfadein 0.5s, snackfadeout 0.5s 3.7s;
  animation: snackfadein 0.5s, snackfadeout 0.5s 3.7s;
}