
/*Rotate Effects*/



.oxi_image_rotate [class^='oxi-image-rotate'],
.oxi_image_rotate [class*='oxi-image-rotate'] {
    overflow: hidden;
}

.oxi_image_rotate [class^='oxi-image-rotate'] .oxi-image-hover-figure-caption,
.oxi_image_rotate [class*='oxi-image-rotate'] .oxi-image-hover-figure-caption {
    opacity: 0;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.oxi_image_rotate [class^='oxi-image-rotate']:hover .oxi-image-hover-figure-caption,
.oxi_image_rotate [class*='oxi-image-rotate']:hover .oxi-image-hover-figure-caption {
    opacity: 1;
    -webkit-transition-delay: 0.14s;
    -moz-transition-delay: 0.14s;
    -o-transition-delay: 0.14s;
    transition-delay: 0.14s;
}

.oxi_image_rotate .oxi-image-rotate-left:hover .oxi-image-hover-image {
    -webkit-transform: scale(1.3) rotate(-15deg);
    -moz-transform: scale(1.3) rotate(-15deg);
    -ms-transform: scale(1.3) rotate(-15deg);
    -o-transform: scale(1.3) rotate(-15deg);
    transform: scale(1.3) rotate(-15deg);
}

.oxi_image_rotate .oxi-image-rotate-right:hover .oxi-image-hover-image{
    -webkit-transform: scale(1.3) rotate(15deg);
    -moz-transform: scale(1.3) rotate(15deg);
    -ms-transform: scale(1.3) rotate(15deg);
    -o-transform: scale(1.3) rotate(15deg);
    transform: scale(1.3) rotate(15deg);
}