/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Bullet lists for some reason don't have spacing at the bottom which makes it annoying if you want to keep typing after a list, beacause a line break is not the same size as the default paragraph spacing, so this fixes that.  */ 
.elementor-widget-text-editor ul {
	margin-bottom: 17px;
}

/* Fixes annoying lack of spacing after lists */
.elementor-tab-content li, 
.elementor-widget-text-editor li {
  margin-bottom: 15px;	
}

/* Style for the overlay */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 9998;
}

/* Style for the CTA section */
.cta-section {
    position: relative;
    z-index: 9999;
}

/* Class to add when CTA is active */
.cta-active .page-overlay {
    opacity: 1;
}

.cta-active .cta-section {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}