@charset "utf-8";
/* CSS Document */

.wcpis-has-gallery .secondary-image {
   position: absolute;
    top:0;
    left:0;
    opacity:0;
}

ul.products li a img {
     -webkit-transition: all 1s ease-in-out !important;
    -moz-transition: all 1s ease-in-out!important;
    -o-transition: all 1s ease-in-out!important;
    transition: all 1s ease-in-out!important;
  }

ul.products li a img.secondary-image {
   -webkit-transform:scale(1,0);
    -moz-transform:scale(1,0);
    -o-transform:scale(1,0);
    transform:scale(1,0);
    filter: alpha(opacity=0);
    opacity:0;

  }

  ul.products li:hover img.secondary-image,   ul.products li .hover_effect img.secondary-image {
    opacity:1;
     opacity:1;
    -webkit-transform:scale(1,1);
    -moz-transform:scale(1,1);
    -o-transform:scale(1,1);
    transform:scale(1,1);
  }

  ul.products li:hover img.wp-post-image,ul.products li.hover_effect img.wp-post-image {
  filter: alpha(opacity=0);
    -webkit-transform:rotate(360deg) scale(0,0);
    -moz-transform:rotate(360deg) scale(0,0);
    -o-transform:rotate(360deg) scale(0,0);
    transform:rotate(360deg) scale(0,0);
  }