/* /Src/SharedComponents/Toast/Toast.razor.rz.scp.css */
.animate-toast[b-d3loh66h0e] {
    animation: slide-in-b-d3loh66h0e 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), slide-out-b-d3loh66h0e 0.4s linear 4s forwards;
}

.toast-success[b-d3loh66h0e] { color: #05a864; }
.toast-error[b-d3loh66h0e]   { color: #dc3545; }
.toast-info[b-d3loh66h0e]    { color: #0096FF; }
.toast-warning[b-d3loh66h0e] { color: #ff8800; }

@keyframes slide-in-b-d3loh66h0e {
    0%   { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-out-b-d3loh66h0e {
    0%   { transform: translateX(0); opacity: 1; }
    20%  { transform: translateX(-10%); }
    100% { transform: translateX(100%); opacity: 0; }
}
