.tmwl-toast-stack{
  position:fixed;
  top:88px;
  right:18px;
  z-index:999999;
  width:min(360px,calc(100vw - 28px));
  display:grid;
  gap:10px;
  pointer-events:none
}
.tmwl-toast{
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:11px;
  align-items:center;
  padding:13px 14px;
  border:1px solid #dfe7ef;
  border-radius:13px;
  background:#fff;
  color:#24364f;
  box-shadow:0 16px 42px rgba(12,35,64,.16);
  opacity:0;
  transform:translateY(-8px);
  transition:.18s ease;
  pointer-events:auto
}
.tmwl-toast.is-visible{opacity:1;transform:none}
.tmwl-toast-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:#e9f8ef;
  color:#159657;
  font-size:14px;
  font-weight:900
}
.tmwl-toast.is-error .tmwl-toast-icon{background:#fff0ed;color:#d34d44}
.tmwl-toast strong{
  display:block;
  margin:0 0 2px;
  color:#173553;
  font-size:11px;
  line-height:1.25;
  font-weight:850
}
.tmwl-toast small{
  display:block;
  color:#718198;
  font-size:9.5px;
  line-height:1.45;
  font-weight:600
}
@media(max-width:640px){
  .tmwl-toast-stack{top:70px;right:12px;width:calc(100vw - 24px)}
  .tmwl-toast{padding:12px}
}
