
.products .product-image{
display: block;
margin: 0;
overflow: hidden;
position: relative;
text-align: center;
padding: 0;
}
.products .product-image .no-hover{
transform: translate3d(0px,0px,0px);
-webkit-transform: translate3d(0px,0px,0px);
transition: all 0.7s ease 0s;
-webkit-transition: all 0.7s ease 0s;
display: inline-block;
}
.item-inner:hover .product-image .no-hover
{
transform: translate3d(0px,-100%,0px);
-webkit-transform: translate3d(0px,-100%,0px);
}

.products .image-rotator{
transform: translate3d(0px,100%,0px);
-webkit-transform: translate3d(0px,100%,0px);
transition: all 0.7s ease 0s;
-webkit-transition: all 0.7s ease 0s;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.item-inner:hover .image-rotator
{
position: absolute; 
 -webkit-transform: translate3d(0px,0px,0px);
 transform: translate3d(0px,0px,0px);
 z-index: 0; 
}