.product-item li.animate-pd {
    animation: product-move 1s linear forwards;
}

@keyframes product-move {
    0% {
/*        opacity: 0;
*/        margin-left: 2000px;
    }

    100% {
/*        opacity: 1;
*/        margin-left: 20px;
    }


}
