.toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  bottom: 30px;
  width: 100%;
}

.toast {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 15px 15px 20px;
  width: 320px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #ababab;
  -webkit-box-shadow: 0 0 12px #ababab;
  box-shadow: 0 0 12px #ababab;
  color: black;
  background-color: #f5f5f5;
  display: table;
}

.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  position: relative;
  float: right;
  font-size: 20px;
  color: black;
}

.toast-message {
  margin-top: 5px;
}