.toastify{
  position:fixed;
  left:50%;
  right:auto;
  top:18px;
  z-index:9999;
  width:max-content;
  max-width:min(460px,calc(100vw - 28px));
  padding:13px 18px;
  border-radius:12px;
  color:#fff;
  font:700 14px/1.4 Inter,Arial,sans-serif;
  text-align:center;
  box-shadow:0 16px 42px rgba(0,0,0,.24);
  transform:translate(-50%,-18px);
  opacity:0;
  transition:.25s ease;
  background:#183f2b;
}
.toastify.on{opacity:1;transform:translate(-50%,0)}
.toastify.toast-error{background:#9c1c25}
.toastify.toast-success{background:#137a4b}
@media(max-width:600px){.toastify{top:12px;max-width:calc(100vw - 22px);font-size:13px}}
