.notify-toast {
  font-family: inherit;
  font-size: 14px;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  z-index: 99999 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  max-width: 360px;
  cursor: pointer;
}
.notify-toast i {
  font-size: 15px;
  flex-shrink: 0;
}
.notify-toast--success {
  background: #6a9a6a !important;
  color: #fff !important;
}
.notify-toast--error {
  background: #b64343 !important;
  color: #fff !important;
}
.notify-toast--warning {
  background: #b08d57 !important;
  color: #fff !important;
}
.notify-toast--info {
  background: #5b86a3 !important;
  color: #fff !important;
}
