/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
@media screen and (min-width: 991px) {
  .s-simple-html--with-deco-gauche .l-wrapper {
    position: relative;
  }
  .s-simple-html--with-deco-gauche .l-wrapper::before, .s-simple-html--with-deco-gauche .l-wrapper::after {
    content: "";
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: 2;
  }
  .s-simple-html--with-deco-gauche .l-wrapper::before {
    width: calc(2 * var(--global-deco-pixel-size));
    height: calc(3 * var(--global-deco-pixel-size));
    top: 0;
    left: 0;
    mask: url(../../../../assets/images/deco-1.svg) no-repeat top left/contain;
    background-color: var(--custom-color-accent, var(--wp--preset--color--lila-rvb));
  }
  .s-simple-html--with-deco-gauche .l-wrapper::after {
    width: var(--global-deco-pixel-size);
    height: calc(100% - 3 * var(--global-deco-pixel-size));
    top: calc(3 * var(--global-deco-pixel-size));
    left: 0;
    background-color: var(--custom-color-accent, var(--wp--preset--color--lila-rvb));
  }
}