@charset "UTF-8";
/**
 * Style du bloc Bouton
 * Styles additionnels du thème qui s'ajoutent aux boutons
 */
/**
 * Mixin
 * Fonctions qui aide à faire du CSS
 */
/*
@include respond-above(md) {
    &.scroll-sticky-menu-default{
        padding-bottom: 55px;
        >.wp-block-group:nth-child(1){
            position: fixed;
            top: 0;
            width: 100%;
            animation-duration: 0.75s;
            &.scroll-sticky-anim-up{
                transform: translate(0, -100%);
                animation-name: anim-sticky-menu-default-up;
            }
            &.scroll-sticky-anim-down{
                transform: translate(0, 0%);
                animation-name: anim-sticky-menu-default-down;
            }
        }
    }
    .has-modal-open{
        height: 100vh; 
    }
}

@keyframes anim-sticky-menu-default-up {
    from {transform: translate(0, 0%);}
    to {transform: translate(0, -100%);}
}

@keyframes anim-sticky-menu-default-down {
    from {transform: translate(0, -100%);}
    to {transform: translate(0, 0%);}
}
*/

/*# sourceMappingURL=sticky.css.map */
