/*----------------------zoom effect------------*/
.product-miniature .thumbnail-container .waproduct-image .zoom.second_image{
    left: 0;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
}
.product-miniature .thumbnail-container:hover .waproduct-image .zoom.second_image {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
}
/*----------------------end of zoom effect------------*/
/*----------------------fade effect-------------------*/
.product-miniature .thumbnail-container .waproduct-image .fade.second_image{
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	left:94px;
	transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	max-width:100%;
	height:auto;
}
.product-miniature .thumbnail-container:hover .waproduct-image .fade.second_image {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
}

/*----------------------end of fade effect-------------*/


/*-----------vertical_scrolling bottom to top effect-------------------*/
.product-miniature .thumbnail-container .waproduct-image .vertical_scrolling_bottom_to_top.second_image {
  position: absolute;
  top:110%;
  left: 0;
  right:0;
  margin:0 auto;
  transition:top 0.5s ease 0s;
  -moz-transition: top 0.5s ease 0s;
  -webkit-transition: top 0.5s ease 0s;
  -o-transition:top 0.5s ease 0s;
}
.product-miniature .thumbnail-container:hover .waproduct-image .vertical_scrolling_bottom_to_top.second_image {
  top:0;
}
/*------------end of vertical_scrolling effect-------------*/

/*-----------vertical_scrolling top to bottom effect-------------------*/
.product-miniature .thumbnail-container .waproduct-image .vertical_scrolling_top_to_bottom.second_image {
  position: absolute;
  top:-110%;
  left: 0;
  right:0;
  margin:0 auto;
  transition:top 0.5s ease 0s;
  -moz-transition: top 0.5s ease 0s;
  -webkit-transition: top 0.5s ease 0s;
  -o-transition:top 0.5s ease 0s;
}
.product-miniature .thumbnail-container:hover .waproduct-image .vertical_scrolling_top_to_bottom.second_image {
  top:0;
}
/*------------end of vertical_scrolling effect-------------*/

/*-----------horizontal_scrolling left to right effect-------------------*/
.product-miniature .thumbnail-container .waproduct-image .horizontal_scrolling_left_to_right.second_image  {
  position: absolute;
  top:0;
  left:-100%;
  transition:left 0.5s ease 0s;
  -moz-transition: left 0.5s ease 0s;
  -webkit-transition: left 0.5s ease 0s;
  -o-transition:left 0.5s ease 0s;
}
.product-miniature .thumbnail-container:hover .waproduct-image .horizontal_scrolling_left_to_right.second_image{
  left:0;
}
/*------------end of horizontal_scrolling effect-------------*/


/*-----------horizontal_scrolling right to left effect-------------------*/
.product-miniature .thumbnail-container .waproduct-image .horizontal_scrolling_right_to_left.second_image{
  position: absolute;
  top:0;
  right:-100%;
  transition:right 0.5s ease 0s;
  -moz-transition:right 0.5s ease 0s;
  -webkit-transition:right 0.5s ease 0s;
  -o-transition:right 0.5s ease 0s;
}
.product-miniature .thumbnail-container:hover .waproduct-image .horizontal_scrolling_right_to_left.second_image{
  right:0;
}
