﻿#toastRoot .toast {
    border-radius: 12px;
    font-size: 13px;
}

    #toastRoot .toast i {
        font-size: 16px;
    }

#toastRoot .toast {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
