/*------------------------------
SPOILER TEXT
------------------------------*/
.spoiler_text{
    display :inline;
    color: transparent;
    font-style: italic;
    background-position: right;
    background-size: 100% 100%;
    background-image: linear-gradient(var(--color-neutre-03), var(--color-neutre-03));
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
    cursor: help;
}

.spoiler_text:hover{ 
    color: var(--bricks-color-black);
    background-size: 0% 100%;
}

/*------------------------------
LIST ICONS
------------------------------*/
.text-with-list ul {
    padding: 0;
  }
.text-with-list ul li {
list-style: none;
padding-left: 2rem;
position: relative;
}
.text-with-list ul li:before {
content: '';
-webkit-mask: url(/wp-content/themes/bricks-child_ALEX/assets/ICON_alert.svg) no-repeat;
mask: url(/wp-content/themes/bricks-child_ALEX/assets/ICON_alert.svg) no-repeat;
-webkit-mask-size: cover;
mask-size: cover;
position: absolute;
left: 0;
background-color: var(--color-accent);
width: 1.2rem;
height: 1.2rem;
top: 0.8rem;
}