#toaster {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999;
}

.toast {
  padding: 10px 16px 18px 16px;
  border-radius: var(--radius);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.hide {
  opacity: 0;
  transform: translateY(20px);
}

.toast .icon-inline {
  transform:translateY(6px);
  color: #fff;
}
.toast span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-left: 10px;
}
.toast.success { background: #2a9d8f; }
.toast.error   { background: #e63946; }
.toast.info    { background: #1971c2; }
.toast.loading { background: #1971c2; }

.toast.loading {
  padding: 15px 16px 18px 16px;
}