/* The snackbar - position it at the bottom and in the middle of the screen */
.toast {
  width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  display:none;
  margin-top: 5px;
  word-wrap: break-word;
}
.toastContainer{
  position: fixed; /* Sit on top of the screen */
  z-index: 1051; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}
.toastContainer ul, ol{
  text-align: left;
  padding-left: inherit;  
}
.toastContainer.toastContainerPositioned {
  position: absolute;
  top: unset;
  bottom: unset;
  left: unset;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.toast.element-positioned{
  margin: auto;
  margin-bottom: 5px;  
}