/* Toaster v2.0.0 by Rico Schwab */ .toaster-message-container{position:fixed;right:30px;top:20px;z-index:999999}.toaster-message{visibility:hidden;min-width:250px;border-radius:7.5px;width:fit-content;background-color:rgba(0,0,0,.75);color:#fff;font-weight:400;font-size:15px;text-align:left;padding:1em;margin:.4em 0 .4em auto;z-index:9999;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.toaster-icon{display:inline-block;margin-right:.5em;font-size:16px}.toaster-message.show{visibility:visible;-webkit-animation:.5s fadein,.5s 4.5s fadeout;animation:.5s fadein,.5s 4.5s fadeout}.toaster-message.success{background-color:#0e9f6e;color:#fff!important}.toaster-message.danger{background-color:#f05252;color:#fff!important}.toaster-message.warning{background-color:#faca15;color:#633112!important}@-webkit-keyframes fadein{from{bottom:0;opacity:0}to{bottom:30px;opacity:1}}@keyframes fadein{from{bottom:0;opacity:0}to{bottom:30px;opacity:1}}@-webkit-keyframes fadeout{from{bottom:30px;opacity:1}to{bottom:0;opacity:0}}@keyframes fadeout{from{bottom:30px;opacity:1}to{bottom:0;opacity:0}}