.toast-success {
  background-color: green;
}

.toast-warning {
  background-color: #091c23;
}

.toast-info {
  background-color: dodgerblue;
}

.toast:hover {
  cursor: pointer;
}

.toast {
  position: fixed;
  top: 4rem;
  left: 40%;
  right: 40%;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
  text-align: center;
}

.toast.show {
  opacity: 1;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: width 0.1s linear;
}

.toast-warning-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ffd71c;
  transition: width 0.1s linear;
}

.toast.show .toast-progress {
  transition-duration: 0.5ss;
}
