.formiva-toast-stack {
  position: fixed;
  z-index: 195;
  right: 24px;
  top: 34px;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 24px));
  pointer-events: none;
}
.formiva-toast {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid #b9dfd6;
  border-radius: 13px;
  background: #f5fffc;
  color: #08745f;
  box-shadow: 0 16px 45px #061a3d2b;
  transform: translateX(calc(100% + 30px));
  opacity: 0;
  animation: toast-in-out 4s ease both;
}
.formiva-toast-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #18b99a;
  color: #fff;
  font-weight: 900;
}
.formiva-toast b,
.formiva-toast small {
  display: block;
}
.formiva-toast small {
  color: #52766e;
  font-size: 11px;
}
[data-save-status] {
  display: none !important;
}
@keyframes toast-in-out {
  0% {
    opacity: 0;
    transform: translateX(calc(100% + 30px));
  }
  10%,
  86% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translateX(calc(100% + 30px));
  }
}
@media (max-width: 900px) {
  .formiva-toast-stack {
    right: 12px;
    top: 72px;
  }
}
