/* Write your custom CSS here */
tr.fadeInTr {
    opacity: 1;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

/* Invoice Section */