<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
*     FAQ
*/
ol.schema-how-to-steps {
    margin: 0 0 1.5em;
    padding: 0;
    counter-reset: item;
  }
  
  ol.schema-how-to-steps&gt;li {
    margin: 0;
    padding: 0 0 0 2em;
    list-style-type: none;
    counter-increment: item;
  }
  
  ol.schema-how-to-steps&gt;li:before {
    display: inline-block;
    padding-right: 0.5em;
    font-weight: bold;
    text-align: right;
    content: "ETAPE | " counter(item) ".";
  }
  
  ol.schema-how-to-steps {
    margin: 0;
    padding: 0px;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
  }
  
  ol.schema-how-to-steps li {
    padding: 1em;
  }
  
  ol.schema-how-to-steps li:nth-child(even) {
    background: #f5f5f5;
  }
  
  .schema-how-to-description {
    font-weight: 900;
    color: #e73f72;
    font-size: clamp(14px, 1em, 22px);
    margin-top: 2em;
  }
  
  .schema-faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: transparent;
    color: var(--grey);
    border-radius: 0px;
    cursor: pointer;
  }
  
  .schema-faq-section {
    width: 100%;
  }
  
  .schema-faq-question {
    display: flex;
    width: 100%;
    padding: 1em 0;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0px;
    border-top: 1px solid rgb(var(--grey));
    z-index: 9;
    left: 50%;
    top: 50%;
    font-size: 1em !important;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .schema-faq-question:after {
    content: "+";
    display: inline-flex;
    font-weight: 300;
    font-size: clamp(14px, 1.5em, 28px);;
    line-height: 22px;
    margin-right: 0;
    margin-left: auto;
    color: rgb(var(--orange));
  }
  
  .schema-faq-answer {
    padding: 1em;
    display: none;
    overflow: hidden;
  }
  
  .faq-light .schema-faq-question {
    border-radius: 1em;
    opacity: .6;
  }
  
  .faq-light .schema-faq-question:before {
    font-weight: 400;
  }
  

  :not(#editor) .schema-faq :not(.default-open) .schema-faq-answer,
  :not(#editor) .default-close .schema-faq-answer {
    display: none;
    overflow: hidden;
  }
  #editor .schema-faq .schema-faq-answer,
  #editor .default-close .schema-faq-answer{
    display: block;
    overflow: visible;
  }
  .schema-faq:not(.custom-faq) .schema-faq-question:after {
    content: "+";
    display: inline-flex;
    font-weight: 300;
    font-size: clamp(14px, 1.5em, 28px);;
    line-height: 22px;
    margin-right: 0;
    margin-left: auto;
    color: rgb(var(--orange));
    align-items: center;
    transform: rotate(0deg);
    transition: all .4s ease, text-decoration 0s ease;
  }</pre></body></html>