/**
 * Include CSS Shims.
 * 
 * Includes fixes and compatibility shims for the Hollow Theme 
 * and the Hollow Component Library, as well as the Big Tuna 
 * Plugin Suite.
 *
 * @link       https://bigtuna.com/
 * @since      1.0.0
 *
 * @package    Big_Tuna_Pro
 * @subpackage Big_Tuna_Pro/fontawesome
 * @author     Christopher McRoy, Big Tuna
 */
/* Check if Hollow Theme Default Colors are defined */
:root {
  --hollowMainColor: var(--defaultMainColor);
  --hollowMainDark: var(--defaultMainDark);
  --hollowMainAccent: var(--defaultMainAccent);
}
/* Overwrite Hollow Default Colors with e-globals on Elementor sites */
/* Fallback to defaults if on Legacy Hollow Theme */
body {
  --defaultMainColor: var(--e-global-color-primary, var(--hollowMainColor));
  --defaultMainDark: var(--e-global-color-secondary, var(--hollowMainDark));
  --defaultMainAccent: var(--e-global-color-accent, var(--hollowMainAccent));
}