<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {


}
[data-component-id="colas24:accordeon_item"] {
  /* @todo Add your styles here. */
  position: relative;

  summary{
    border-bottom: 1px solid var(--color-secondary);
    display: flex;
    justify-content: space-between;

    &amp;::after{

      content: 'â€º';
      background-size: cover;
      transition: 0.2s;
      /*transform-origin: 50% 50%;*/
      transform: rotate(0deg);
      margin:0;
      font-size: 1.5rem;
      line-height: 1;
      width: 1.5rem;
      height: 1.5rem;
      display: grid;
      place-content: center;

    }
  }

  &amp;[open] &gt; summary::after {
    transform: rotate(90deg);
  }

  &amp; .content{
    background-color: var( --clr-gray-100);
    /*padding: var(--clr-gray-100);*/

    &amp; .bottom{
      --button-line-height: 1;
      padding: 1rem 0;
      display: flex;
      gap: 1rem;
    }
  }
}
</pre></body></html>