/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
form-field term-description-wrap{
	    display: none;
}
/* Base header container stays on top of content */
.site-header {
  position: relative;
  z-index: 9999;
}

/* Row A: primary header visible at top */
.header-primary {
  transition: opacity .25s ease, visibility .25s ease;
}

/* Row B: compact header is fixed, hidden initially */
.header-compact {
  position: fixed;
  top: 0; left: 0; right: 0;
  transform: translateY(-100%);   /* hide above viewport */
  opacity: 0;
  visibility: hidden;
  transition: transform .25s ease, opacity .25s ease, visibility 0s .25s;
  z-index: 10000; /* above everything */
  /* add a solid background if your top header is transparent */
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* When scrolled: show compact header, fade out primary */
.body-scrolled .header-compact {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .25s ease, opacity .25s ease, visibility 0s;
}
.body-scrolled .header-primary {
  opacity: 0;
  visibility: hidden;
}

/* Admin bar offset (logged-in) */
.logged-in .header-compact { top: 32px; }
@media (max-width: 782px){
  .logged-in .header-compact { top: 46px; }
}

/* keep sticky header always on top */
.header-compact {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000 !important;
}


