html {
  visibility: visible !important;
  opacity: 1 !important;
}

.lelo-demo-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 2147483647;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 18px;
  border-radius: 3px;
  background: #0c0c0c;
  color: #fff;
  font: 500 13px/1.45 Arial, sans-serif;
  letter-spacing: .02em;
  box-shadow: 0 8px 30px rgb(0 0 0 / 24%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .25s ease, transform .25s ease;
}

.lelo-demo-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
