.toast{position:fixed;left:50%;bottom:24px;z-index:9999;transform:translateX(-50%);pointer-events:none}.toast__item{width:371px;min-height:51px;padding:0 18px;border-radius:74px;background:#1b1b1b;display:flex;align-items:center;gap:13px;box-shadow:0 18px 45px rgba(0,0,0,.22);animation:toastShow .35s cubic-bezier(.22,1,.36,1) forwards;pointer-events:auto}.toast__item--closing{animation:toastHide .35s cubic-bezier(.64,0,.78,0) forwards}.toast__icon{width:18px;height:18px;min-width:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}.toast__icon svg{width:12px;height:12px}.toast__icon--success{background:#0fdd5e}.toast__icon--error,.toast__icon--warning{background:#ff8a00}.toast__message{font-size:16px;overflow:hidden;text-overflow:ellipsis}.toast__action,.toast__message{color:#f5f5f5;line-height:19px;font-weight:400;white-space:nowrap}.toast__action{margin-left:auto;padding:0;border:none;background:rgba(0,0,0,0);font-size:13px;text-decoration:underline;text-underline-offset:3px;cursor:pointer}@media(max-width:767px){.toast__action--hide-mobile{display:none}}@keyframes toastShow{0%{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}@keyframes toastHide{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(28px)}}@media(max-width:767px){.toast{left:24px;right:24px;bottom:20px;transform:none}.toast__item{width:100%;min-height:51px;padding:0 18px;gap:13px}.toast__message{font-size:16px;line-height:19px}.toast__action{font-size:13px;line-height:19px}}