.aiga-jocross-toast {
  align-items: center;
  animation: aiga-jocross-toast-in 180ms ease-out;
  background: #10213f;
  border-left: 5px solid #ff4a0a;
  border-radius: 12px;
  bottom: 24px;
  box-shadow: 0 14px 36px rgb(16 33 63 / 28%);
  color: #fff;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  left: auto;
  line-height: 1.45;
  max-width: min(420px, calc(100vw - 32px));
  min-height: 64px;
  padding: 16px 20px;
  position: fixed;
  right: 24px;
  width: max-content;
  z-index: 2147483000;
}

@keyframes aiga-jocross-toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .aiga-jocross-toast {
    bottom: 16px;
    left: 16px;
    max-width: none;
    right: 16px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiga-jocross-toast {
    animation: none;
  }
}
