#toast_container{align-items:flex-end;bottom:20px;flex-direction:column;position:fixed;right:20px}#toast_container,.toast{display:flex;gap:12px;z-index:1000}.toast{animation:slideIn .5s ease;border-radius:8px;box-shadow:0 4px 6px rgba(0,0,0,.1);padding:16px;width:500px}.toast .toastIcon{flex-shrink:0;height:18px;width:18px}.toast .toastIcon svg{height:100%;width:100%}.toast .toastBody{display:flex;flex:1;flex-direction:column;gap:4px}.toast .toastBody .toastTitle{color:var(--texto_secundario);font-size:16px;font-weight:600}.toast .toastBody .toastMessage{color:var(--gris_oscuro);font-size:14px}.toast .toastCloseBtn{border-radius:100%;cursor:pointer;flex-shrink:0;height:18px;padding:2px;transition:background-color .5s ease-in-out;width:18px}.toast .toastCloseBtn svg{fill:var(--gris_oscuro);height:100%;width:100%}.toast .toastCloseBtn:hover{background-color:var(--gris);transition:background-color .5s ease-in-out}.toast.success{background-color:#ecfcf3}.toast.success .toastIcon svg{fill:var(--success)}.toast.error{background-color:#fceced}.toast.error .toastIcon svg{fill:var(--error)}.toast.alert{background-color:#fcfbec}.toast.alert .toastIcon svg{fill:var(--alert)}.toast.info{background-color:#ecf3fc}.toast.info .toastIcon svg{fill:var(--info)}@keyframes slideIn{0%{opacity:0;transform:translateX(100%)}to{opacity:1;transform:translateX(0)}}@media (max-width:550px){.toast{width:calc(100% - 20px)}}