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

/*---SITE FADE-IN---*/
/* Hide everything initially */
#brx-header {
  opacity: 0;
  animation: fadeIn 0.6s ease-in forwards;
  position: relative;
  z-index: 1000;
}

#brx-content {
  opacity: 0;
  animation: fadeIn 0.6s ease-in 0.2s forwards;
  position: relative;
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}