/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 



/* Dark mode support */
:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #666666;
}

.light {
  --bg: #ffffff;
  --text: #000000;
  --muted: #444444;
}

.dark {
  --bg: #000000;
  --text: #ffffff;
  --muted: #bbbbbb;
}

body,
.fl-page-content{
  background-color: var(--bg);
  color: var(--text);
  transition: background-color .25s ease, color .25s ease;
}

h1, h2, h3, p, a {
  color: var(--text);
}

p.muted, .muted, .txt {
  color: var(--muted);
}

#dark .txt {
  color: var(--text);
}

a, button {
  color: var(--text);
}

.header-logo:hover, .header-logo:active, .header-logo:focus {
	color: var(--text);
}


