#live-toast-host {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  width: min(92vw, 400px);
}
.live-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px 12px 14px;
  border-radius: 14px;
  background: #1b3a4b;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.55;
  font-family: inherit;
  box-shadow: 0 14px 36px rgba(27, 58, 75, 0.22);
  opacity: 0;
  transform: translateY(22px);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.live-toast.is-show {
  opacity: 1;
  transform: translateY(0);
}
.live-toast.is-hide {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}
.live-toast.is-ok { background: #2a9d8f; }
.live-toast.is-err { background: #9b3b32; }
.live-toast-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}
.live-toast-ico svg { width: 15px; height: 15px; display: block; }
.live-toast-msg { min-width: 0; flex: 1 1 auto; }
.flash.is-toast-hide,
.alert.is-toast-hide { display: none !important; }
