/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

:root{
  /* defaults so calc() has something to subtract; units REQUIRED */
  --header-h: 0px;
  --footer-h: 0px;
}

#page-fill{
  box-sizing: border-box;                /* include padding in the box */
  min-height: calc(100dvh - var(--header-h) - var(--footer-h));
}

/* Fallback for older browsers that lack 100dvh */
@supports not (height: 100dvh) {
  #page-fill { min-height: calc(100vh - var(--header-h) - var(--footer-h)); }
}
