/* 
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
*/

/* Effet au clic sur les boutons */
.elementor-widget-button .elementor-button {
    display: inline-block;
    position: relative;
}

.elementor-widget-button .elementor-button::before {
    border-radius: 50%;
    background-color: orange;
    content: '';
    position: absolute;
    height: 120px;
    width: 120px;
    top: calc(100% * var(--ripplecoord-y));
    left: calc(100% * var(--ripplecoord-x));
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.7s, opacity 0.7s;
    opacity: 0;
}

.elementor-widget-button .elementor-button:active::before {
    transition-duration: 0s;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
}

/*Effet zoomin sur sections*/
/* Cache l'élément par défaut pour éviter le flash visuel */
.gsap-zoomin {
    opacity: 0;
    transform: scale(0.5);
    transition: none !important;
}

body.elementor-editor-active {
    overflow: auto !important;
}

body.elementor-editor-active #snapContainer {
    height: auto !important;
}

.elementor-maintenance-mode .adity-mainmenu {
    display: none;
}