/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.tp-image-wrapper {
    position: relative;
}
.tp-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    background: white;
}
.tp-image-hover:hover {
    opacity: 1;
}
.woocommerce ul.products li.product a img.tp-image-hover{
    height: 300px;
}