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

#footer_coord a{
    color : #ffffff !important;
}

#footer_coord a:hover{
    color : #95C11F !important;
}

.btn_pulse a{
   animation: pulse-vert 3s infinite;
    box-shadow: 0 0 0 0 #95C11F; /* Changez la couleur ici */
    transition: all 0.3s ease-in-out;
}

@keyframes pulse-vert {
    0% {
        box-shadow: 0 0 0 0 #95C11F;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* On cible le pseudo-élément qui contient l'arrière-plan */
.bienvenue > .elementor-background-overlay, 
.bienvenue > .elementor-element-populated::before {
    transform: rotate(60deg); /* Modifiez l'angle ici */
    transform-origin: center;
}

.titreform_bon_cadeau{
  font-family: "Parisienne", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: var(--e-global-color-secondary);
  margin-top : 20px;
}

#sticky_rdv {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    position: fixed;
    bottom: 0;
    /* On ajoute une marge interne en bas égale à la taille de la barre système */
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #95C11F;
    width: 100%;
}