#toast-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}
.toast {
  display: none;
  min-width: 250px;
  max-width: 80vw;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  opacity: 0.9;
  animation: dropIn 0.5s forwards;
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  font-family: 'Open Sans';
  font-size: 14px;

}
.toast-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.toast-error {
  color: #7D272B;
  background-color: #F4D8DA;
}
.toast-info {
  background-color: var(--color-blue-secondary);
}

@keyframes dropIn {
  from {
      opacity: 0;
      top: -50px;
  }
  to {
      opacity: 1;
      top: 0;
  }
}