/*
 * Dmitry @ VG
 * Hover images for products list
 */

.hover-image-wrapper {
  display: none;
  overflow: hidden;
  max-height: 100%;
}

.image-wrapper.has-hover-image a:hover > img {
    display: none;
}

.image-wrapper.has-hover-image a:hover > .hover-image-wrapper {
    display: block;
}