#toast {
  position: fixed;
  top: 24px;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 10000;
  max-width: min(560px, calc(100vw - 32px));
  padding: 12px 18px;
  text-align: center;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
  transform: translate(-50%, -12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

#toast.show {
  transform: translate(-50%, 0);
}
