/* Animations */
 .fromBottom, .animateChilds.fromBottom .wp-block-column{
	transform: translateY(100px);
}
 .fromLeft, .animateChilds.fromLeft .wp-block-column{
	transform: translateX(-100px);
}
 .fromRight, .animateChilds.fromRight .wp-block-column{
	transform: translateX(100px);
}

.animate, .animateChilds .wp-block-column, .gs_reveal, .animateChilds .wp-block-group,  .animateChilds .produit{
  will-change: transform;
  opacity: 0;
  transition: 1s all ease-in-out;
}

.animate.active, .animateChilds.active, .animateChilds.active .wp-block-column, .animateChilds.active-trigger .wp-block-group, .gs_reveal.active-trigger, .animateChilds.active-trigger .wp-block-column, .gs_reveal.active-trigger ul.is-style-crossed li, .animateChilds.active-trigger .produit{
  transform: translateY(0);
  opacity: 1;
   will-change: transform;
}

.gs_reveal.wp-block-spacer{
	height: 0;
}
.gs_reveal.wp-block-spacer.active-trigger{
	height: 6px;
}



.wp-block-gallery{ position: relative;}


.animateChilds .wp-block-column:nth-child(1), .animate.delay1{
    transition-delay: 0.2s;
}
.animateChilds .wp-block-column:nth-child(2), .animate.delay2{
    transition-delay: 0.4s;
}
.animateChilds .wp-block-column:nth-child(3), .animate.delay3{
    transition-delay: 0.6s;
}
.animateChilds .wp-block-column:nth-child(4), .animate.delay4{
    transition-delay: 0.8s;
}
.animateChilds .wp-block-column:nth-child(5), .animate.delay5{
    transition-delay: 1s;
}
.animateChilds .wp-block-column:nth-child(6), .animate.delay6{
    transition-delay: 1.2s;
}



.linewrapper{ z-index:1!important;}

.cycle .wp-block-group:not(.linewrapper){z-index:5!important; position: relative;}

/* Only front */

body:not(.wp-admin) .activite{ 
	-webkit-mask-image: url(../img/mask_arrow.svg);
  	mask-image: url(../img/mask_arrow.svg);
    -webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position : right;
	-webkit-mask-size: cover;
	mask-position : right;
	mask-size: cover;
}




.wp-admin .editor-styles-wrapper{background: white !important;}



@keyframes slidein {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0%);
  }
}




