.toast-container{position:fixed;bottom:0;left:0;right:0;z-index:101;pointer-events:none}.toast-container .toast{pointer-events:all;position:absolute;bottom:32px;left:0;right:0;min-width:600px;max-width:800px;width:-moz-fit-content;width:fit-content;margin:auto;display:flex;overflow:hidden;align-items:center;color:#fff;padding:4px 4px 4px 8px;gap:12px;animation:pop-toast .25s forwards}@media(max-width:900px){.toast-container .toast{min-width:300px}}.toast-container .toast.red{background-color:#c12e2e}.toast-container .toast.green{background-color:#1e2a21;box-shadow:0 2px 15px 0 #000}.toast-container .toast .checkmark-icon{color:var(--text-success);width:20px;height:20px}.toast-container .toast svg.icon{width:24px;height:24px}.toast-container .toast .text{flex:1 1}.toast-container .toast .btn-close{width:32px;height:32px;color:#fff}.toast-container .toast .btn-close svg{width:22px;height:22px;margin:5px}.toast-container .toast .btn-close:hover{background-color:hsla(0,0%,100%,.2)}@keyframes pop-toast{0%{opacity:0;transform:translateY(120px)}to{opacity:1;transform:translateY(0)}}