toast {
  position: fixed;
  display: block;
  bottom: var(--xl);
  left: var(--xl);
  padding: var(--m) var(--l);
  font-size: var(--s);
  border-radius: var(--xxs);
  background: light-dark(var(--black), var(--white));
  color: light-dark(var(--white), var(--black));
}

toast[type="notice"] {
  background: var(--green);
}

toast[type="alert"] {
  background: var(--red);
}
