@keyframes slideIn{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes slideOut{0%{transform:translateX(0);opacity:1}to{transform:translateX(100%);opacity:0}}.toast-container{position:fixed;bottom:120px;right:20px;z-index:10000;display:flex;flex-direction:column;gap:10px}.toast-item{animation:slideIn .3s ease-out;background-color:#061b3b;border:1px solid #ff9500;border-radius:8px;box-shadow:0 4px 12px 0 rgba(255,255,255,.08);padding:16px;min-width:450px;max-width:500px;display:flex;justify-content:space-between;align-items:center;gap:8px;font-family:Maven Pro,sans-serif}.toast-item.removing{animation:slideOut .3s ease-in}.toast-content{gap:8px;flex:1 1}.toast-content,.toast-icon{display:flex;align-items:center}.toast-icon{flex-shrink:0;width:32px;height:32px;justify-content:center}.toast-text{display:flex;flex-direction:column;gap:11px;flex:1 1;min-width:0}.toast-title{color:#ffffff;font-weight:440}.toast-message,.toast-title{font-family:Maven Pro,sans-serif;font-size:16px;line-height:1.175;text-align:left}.toast-message{color:#a6a6a6;font-weight:490;word-break:break-word}.toast-close-btn{background:none;border:none;cursor:pointer;padding:0;width:20px;height:20px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#ffffff;transition:opacity .2s ease}.toast-close-btn:hover{opacity:.7}.toast-close-btn:focus{outline:none;opacity:.7}