.toast {
  min-width: 250px;
  color: #fff;
  text-align: left;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  font-size: 1rem;
  padding: 12px;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  border-radius: 8px;
  font-weight: light;
  z-index: 999;
}

.redToast {
  background-color: #ee545e;
}

.greenToast {
  background-color: #b3f224;
}

.yellowToast {
  background-color: #e8e53e;
}

.blueToast {
  background-color: #245de3;
}

.toast.show {
  opacity: 1;
}