#elementor-popup-modal-686{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-686 .dialog-message{width:85vw;height:78vh;align-items:flex-end;}#elementor-popup-modal-686 .dialog-close-button{display:flex;}#elementor-popup-modal-686 .dialog-widget-content{border-style:solid;border-color:var( --e-global-color-primary );box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-686 .dialog-close-button i{color:var( --e-global-color-primary );}#elementor-popup-modal-686 .dialog-close-button svg{fill:var( --e-global-color-primary );}@media(max-width:767px){#elementor-popup-modal-686 .dialog-message{width:100vw;height:65vh;}#elementor-popup-modal-686{justify-content:center;align-items:flex-end;}#elementor-popup-modal-686 .dialog-widget-content{border-width:3px 1px 0px 1px;border-radius:15px 15px 0px 0px;}#elementor-popup-modal-686 .dialog-close-button{top:3%;font-size:28px;}}/* Start custom CSS *//* Overlay */

.elementor-popup-modal{
    animation: popupOverlay .35s ease;
}

/* Contenu */

.elementor-popup-modal .dialog-widget-content{

    animation: popupBottom 1s cubic-bezier(.22,1,.36,1);

    transform-origin: bottom center;

}

@keyframes popupOverlay{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes popupBottom{

    0%{

        opacity:0;
        transform:translateY(80px);

    }

    100%{

        opacity:1;
        transform:translateY(0);

    }

}/* End custom CSS */