/*
 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
*/

@keyframes marquee-animation {
    to {
      transform: translateX(-50%);
    }
}

/* zoom in effect when hover for product card */
/* only apply for desktop devices */
@media (min-width: 992px) {
  .woocommerce ul.products li.product > div:first-of-type {
    overflow: hidden;
    min-height: fit-content;
  }
  img.brxe-image.zoom-in, .woocommerce ul.products li.product img {
    transition: transform 1s ease-in-out;
  }
  img.brxe-image.zoom-in:hover, .woocommerce ul.products li.product:hover img {
    transform: scale(1.1);
  }
}