


@keyframes fade {
    0% {
        background-color: white;
    }
    100% {
        background-color: none;
    }
    
}

.orderitem:first-child{
    animation: 1s ease-out 0s 1 fade;
    background-color: none;
}
