@charset 'utf-8';

/*

Theme Name:Wisemove-child

Theme URI: http://wisemove.axiomthemes.com/

Description: Hampton - Multipurpose and Multiskin Responsive Wordpress theme

Author: AxiomThemes

Author URI:  http://axiomthemes.com/

Template: wisemove

Version: 1.0

License: GNU General Public License

License URI: license.txt

Tags: flexible-header, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready

Text Domain: wisemove

*/





/* =Theme customization starts here

-------------------------------------------------------------- */

/* Reset the <legend> styling */
.gform_wrapper legend.gfield_label {
    margin: 0 !important; /* Remove default margin */
    padding: 0 !important; /* Remove default padding */
    border: none !important; /* Remove border */
    background: transparent !important; /* Ensure no background color */
    display: block !important; /* Ensure proper alignment */
    font-size: inherit !important; /* Match parent font size */
    line-height: inherit !important; /* Match parent line height */
}

/* Reset <fieldset> and <legend> styles */
body .gform_wrapper fieldset {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.gform_wrapper legend.gfield_label {
    margin: 0 !important; /* Remove default margin */
    padding: 0 !important; /* Remove default padding */
    border: none !important; /* Remove border */
    background: transparent !important; /* Ensure no background color */
    display: block !important; /* Ensure proper alignment */
    font-size: inherit !important; /* Match parent font size */
    line-height: inherit !important; /* Match parent line height */
}


.gform-conversational__field-nav [data-hidden] {
    display: none !important; /* Hide hidden elements */
}

/* Ensure the parent container for the button is centered */
.gform-conversational__field-nav {
  display: flex;
  justify-content: center; /* Centers the content horizontally */
}

/* Center the 'Continue' button itself */
.gform-conversational__nav-button {
  display: inline-block; /* Ensures it respects the flex parent centering */
  margin: 0 auto; /* Centers the button itself within the container */
}

const icon = document.querySelector('.your-icon-class'); // Replace with your icon's class
const app = document.querySelector('.elfsight-app-00166aa2-19ab-49e3-bfae-24ed01583e4a');

icon.addEventListener('click', () => {
  app.style.display = app.style.display === 'none' ? 'block' : 'none';
});