/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

add_action('wp_footer', function() {
  ?>
  <style>
    .absolute-footer,
    .absolute-footer .container,
    .absolute-footer .col,
    .absolute-footer-light {
      display: none !important;
      height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      background: none !important;
      border: none !important;
    }
    body .site,
    body .site-content,
    body .site-wrapper,
    .main-content {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }
  </style>
  <script>
    document.addEventListener("DOMContentLoaded", function() {
      const footer = document.querySelectorAll('.absolute-footer, .absolute-footer-light');
      footer.forEach(el => el.remove());
    });
  </script>
  <?php
});


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}