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

/* GENERAL */

body {
	min-height: 100vh;
}

b, strong {
	font-weight: 600;
}

/* CUSTOM ANIMATIONS */

.brx-animate-custom-zoom-out {
  animation-name: customZoomOut;
}

@keyframes customZoomOut {
  from {
    opacity: 0;
    transform: scale(1.25);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}