.toast{position:fixed;top:1rem;left:50%;transform:translateX(-50%);padding:.75rem 1.25rem;border-radius:6px;font-size:.875rem;background-color:#fff;color:#101828;z-index:9999;display:flex;align-items:center;gap:4px;animation:fadeIn .3s ease forwards}@keyframes fadeIn{0%{opacity:0;top:.5rem}to{opacity:1;top:1rem}}.toast.toast-exit{animation:fadeOut .3s ease forwards}@keyframes fadeOut{0%{opacity:1;top:1rem}to{opacity:0;top:1.5rem}}@keyframes circleAnimation{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes lineFadeIn{0%{opacity:0}to{opacity:1}}.error-icon{width:20px;height:20px;opacity:0;border-radius:50%;background-color:#ff4b4b;position:relative;animation:circleAnimation .3s cubic-bezier(.175,.885,.32,1.275) forwards;animation-delay:.1s}.error-icon:after,.error-icon:before{content:"";position:absolute;background-color:#fff;width:12px;height:2px;border-radius:1px;opacity:0;top:50%;left:50%;transform-origin:center;animation:lineFadeIn .15s ease-out forwards;animation-delay:.15s}.error-icon:before{transform:translate(-50%,-50%) rotate(45deg)}.error-icon:after{transform:translate(-50%,-50%) rotate(-45deg)}