/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


.bricks-is-frontend .zoom-in {
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0);
    opacity: 0;
}


.bricks-is-frontend .zoom-in.active {
    transform: scale(1);
    opacity: 1;
}


.bricks-is-frontend .zoom-in-gallery img {
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0);
    opacity: 0;
}


.bricks-is-frontend .zoom-in-gallery img.active {
    transform: scale(1);
    opacity: 1;
}