/*.slick-slide .product-cell:hover,
.row.gallery .product-wrapper .product-cell:hover {
    transition: all 0.5s ease-out 0s;
}*/
.image-box .image-content {
    position: relative;
}

.product-cell .image-box img.backimg {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
}

.product-cell:hover .image-box img.backimg {
    opacity: 1;
    transition: all 0.5s ease-out 0s;
}

.panel-news .image img,
.image-box .image-content img,
.panel-categories img {
    transition: all 0.5s ease-out 0s;
}

.panel-categories {
    overflow: hidden;
    position: relative;
}

.panel-news:hover .image img,
.panel-categories:hover img {
    transform: scale(1.05);
}

.panel-categories::before {
    backface-visibility: hidden;
    background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
    content: "";
    height: 100px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -150%, 0px);
    transition: all 0.6s linear 0s;
    width: 120%;
    z-index: 1;
}

.panel-categories:hover::before {
    left: -100%;
    top: 100%;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 200%, 0px);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-default::before,
.btn-primary::before {
    backface-visibility: hidden;
    background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
    content: "";
    height: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -150%, 0px);
    transition: all 0.6s linear 0s;
    width: 120%;
    z-index: 1;
}

.btn-default:hover::before,
.btn-primary:hover::before {
    top: 100%;
    left: -100%;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 200%, 0px);
}