.custom-toast-card{width:330px;height:80px;border-radius:8px;box-sizing:border-box;padding:10px 15px;background-color:#ffffff;box-shadow:0 8px 24px rgba(149,157,165,.2);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-around;gap:15px;margin-bottom:10px;transform:translateX(100%);animation:slideIn .3s ease-out forwards}.custom-toast-card.custom-toast-exit{animation:slideOut .3s ease-in forwards}@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}}.custom-toast-wave{position:absolute;transform:rotate(90deg);left:-31px;top:32px;width:80px}.custom-toast-card .custom-toast-wave{fill:#04e4003a}.custom-toast-icon-container{width:35px;height:35px;display:flex;justify-content:center;align-items:center;border-radius:50%;margin-left:8px}.custom-toast-icon-container.success{background-color:#04e40048}.custom-toast-icon-container.error{background-color:#fc0c0c48}.custom-toast-icon{width:17px;height:17px}.custom-toast-icon-container.success .custom-toast-icon{color:#269b24}.custom-toast-icon-container.error .custom-toast-icon{color:#d10d0d}.custom-toast-card:has(.custom-toast-icon-container.error) .custom-toast-wave{fill:#fc0c0c3a}.custom-toast-message-container{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;flex-grow:1}.custom-toast-message-text,.custom-toast-sub-text{margin:0;cursor:default}.custom-toast-message-text{font-size:17px;font-weight:700}.custom-toast-message-text.success{color:#269b24}.custom-toast-message-text.error{color:#d10d0d}.custom-toast-sub-text{font-size:14px;color:#555}.custom-toast-cross-icon{width:18px;height:18px;color:#555;cursor:pointer;transition:color .2s ease}.custom-toast-cross-icon:hover{color:#333}.custom-toast-container{position:fixed;top:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:10px;pointer-events:none}.custom-toast-container .custom-toast-card{pointer-events:all}@media (max-width:400px){.custom-toast-card{width:calc(100vw - 40px);max-width:330px}.custom-toast-container{right:10px;left:10px}}