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

/*** SCROLL BAR ***/
::-webkit-scrollbar {
    width: 14px;    
    background: #E1EFFD;
}

::-webkit-scrollbar-thumb {
    background: #2498EB;    
    border-radius: 4px;	
}

/*** END OF SCROLL BAR ***/

/* Footer behind content */
main {
  /* make sure to cover the screen */
  min-height: 100vh;

  /* need a solid bg to hide the footer */
  background: white;

  /* put on top */
  position: relative;
  z-index: 1;
}

#brx-footer {
  /* place on the bottom */
  position: sticky;
  bottom: 0;
  left: 0;
}
/* End of footer behind content */