/*-------GENERAL---------*/
.html .shadow {
  box-shadow: 0px 0px 20px #00000020;
  transition: all 0.3s ease-in-out;
}
.html .shadow.anim:hover {
  box-shadow: 0px 0px 20px #00000040;
}
/*couleur selection de texte*/
body.theme-1 ::selection {background-color: #903;color: #ffffff;}
body.theme-2 ::selection {background-color: #6d9f3c;color: #ffffff;}
body.theme-3 ::selection {background-color: #ff6633;color: #ffffff;}
body.theme-4 ::selection {background-color: #55377c;color: #ffffff;}
/*Exceptions selection fond theme*/
body.theme-1 .button:not(.outline, .ghost)::selection,
body.theme-1 .btn::selection,
body.theme-1 .site-content.theme-1 *::selection,
body.theme-1 .promo *::selection {
  background-color: #ffffff;color:#903;
}
body.theme-2 .button:not(.outline, .ghost)::selection,
body.theme-2 .btn::selection,
body.theme-2 .site-content.theme-2 *::selection,
body.theme-2 .promo *::selection {
  background-color: #ffffff;color:#6d9f3c;
}
body.theme-3 .button:not(.outline, .ghost)::selection,
body.theme-3 .btn::selection,
body.theme-3 .site-content.theme-3 *::selection,
body.theme-3 .promo *::selection {
  background-color: #ffffff;color:#ff6633;
}
body.theme-4 .button:not(.outline, .ghost)::selection,
body.theme-4 .btn::selection,
body.theme-4 .site-content.theme-4 *::selection,
body.theme-4 .promo *::selection {
  background-color: #ffffff;color:#55377c;
}
/*Variables*/
:root {
  --min-space: 15px;
  --mid-space: 30px;
  --max-space: 50px;
  --radius: 10px;
}
/*Texte*/
.html h1, .html .h1-like {
  font-size: 45px;
  line-height: 49px;
  font-family: MuliExtraBold, sans-serif;
  color: #001e4e;
}
.html h2, .html .h2-like {
  font-size: 30px;
  line-height: 34px;
  font-family: MuliBold, sans-serif;
  color: #001e4e;
}
.html h3, .html .h3-like {
  font-size: 23px;
  line-height: 28px;
  font-family: MuliBold, sans-serif;
  color: #001e4e;
}
.html h4, .html .h4-like {
  font-size: 20px;
  line-height: 24px;
  font-family: MuliBold, sans-serif;
  color: #001e4e;
}
.html p, .html .p-like {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.html .t1 {color:#903}
.html .t2 {color:#6d9f3c}
.html .t3 {color:#ff6633}
.html .t4 {color:#55377c}
/*Structure*/
.html .flex-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: var(--max-space);
  gap: var(--max-space);
}
.html .flex-container.rev {
  flex-direction: row-reverse;
}
.html .flex-container.top {
  align-items: stretch;
}
.html .flex-container a.encart {
  color: inherit;
}
.html .flex-container .item {
  flex: 1;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: var(--mid-space);
}
.html .flex-container img.item {
  width: 40%;
  max-width: 100%;
}
.html .flex-container img.item.small {
  max-width: 200px;
}
.html .flex-container .item:not(img.item) {
  flex: 1.5;
}
.html .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--mid-space);
}
.html .tilted-right {
  transform: rotateZ(2deg);
}
.html .tilted-left {
  transform: rotateZ(358deg);
}
.html hr {
  height: 1px;
  width: 50px;
  background: #990033;
  margin-top: calc(-1* var(--min-space));
}
/*Table avec alternance des couleurs*/
.html .alt-table span {
  display: flex;
  justify-content: space-between;
  padding: var(--min-space) 22px;
}
.html .alt-table span:nth-child(even) {
  background-color: #f7f8fb;
}
.html .item.alt-table {
  gap: 0;
}
.html .duration {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #903;
    margin-right: 10px;
}
/*Alignment*/
.html .right {align-self: flex-end;text-align: right;justify-content: right;}
.html .left {align-self: flex-start;text-align: left;justify-content: left;}
.html .center {align-self: center;text-align: center;justify-content: center;}
/*Marges*/
.no-margin {margin: 0!important;}
.no-padding {padding: 0!important;}
/*Button*/
.html .button {max-width: fit-content;}
/*Encart*/
.html .flex-container.encart {
  max-width: 1000px;
  border-radius: var(--radius);
  background-color: #ffffff;
}
.html .flex-container.encart.citation {
  max-width: 700px;
}
.html .flex-container.encart.compact {
  max-width: 600px;
}
.html .flex-container .flex-container.encart .content {
  margin-bottom: calc(-1*var(--max-space) + var(--mid-space))!important;
}
/*newsletter*/
.html form[name=newsletter] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--mid-space);
}
.html .detail {
  line-height: 1.2 !important;
  font-size: 80% !important;
}
.html .detail a {
  text-decoration: underline!important;
}
/*media queries*/
@media (min-width: 1300px) {
  .html .flex-container.cards {
    padding: var(--max-space);
  }
}
@media (max-width: 1024px) {
  .html .flex-container.cards .item {
    flex: none!important;
    width: calc(50% - var(--max-space) / 2);
  }
  .html .desktop-only,
  .html.desktop-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .html .flex-container .item, .html .flex-container img.item, .html .flex-container.cards .item {
    width: 100%;
  }
  .html .flex-container {
    gap: var(--max-space);
  }
  .html .alt-table span {
    flex-direction: column;
  }
  :root {
    --max-space: 30px;
  }
}
/*-------CARDS - FORFAITS CARTES---------*/
.html .flex-container.cards {
  align-items: stretch;
  max-width: inherit;
  justify-content: center;
  column-gap: var(--min-space);
}
.html .flex-container.cards .item {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #d4e0ef;
  max-width: 400px;
  justify-content: space-between;
  overflow: hidden;
}
.html .flex-container.cards .item:hover {
  box-shadow: 0px 0px 20px #00000040;
}
/* développement de titre similaire grille de comparaison
.html .flex-container.cards .item .type {
  background-color: #8b1538;
  color: white;
  padding: var(--min-space);
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}*/
.html .flex-container.cards .item .headband {
  position: absolute;
  top: 15px;
  left: -60px;
  width: 200px;
  text-align: center;
  transform: rotate(320deg);
  transform-origin: center;
}
.html .flex-container.cards .item .headband p {
  background-color: #3b4b76;
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.html .flex-container.cards .item .title {
  font-size: 25px;
  text-align: center;
  font-family: MuliExtraBold, sans-serif;
  padding-bottom: 25px;
  color: #3b4b76;
  padding-top: var(--mid-space);
  max-width: 80%;
  margin: 0 auto;
}
.html .flex-container.cards .item .subtitle {
  font-size: 20px;
  border-top: 1px solid #d4e0ef;
  border-bottom: 1px solid #d4e0ef;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 0 20px;
  text-align: center;
}
.html .flex-container.cards .item .subtitle span {
  color: #ff6633;
}
.html .flex-container.cards .item .price {
  text-align: center;
  font-family: MuliBold, sans-serif;
  font-size: 40px;
}
.html .cards img {
  margin: calc(-1* var(--mid-space));
  padding: 0 0 var(--mid-space) 0;
  object-fit: cover;
}
/*code promo*/
.html .cards .promo {
  background-color: #f63;
  margin: var(--mid-space) calc(-1 * var(--mid-space)) calc(-1 * var(--mid-space));
  width: calc(100% + 2*var(--mid-space));
  padding: calc(var(--mid-space)* 2) var(--mid-space);
}
.html .cards .bandeau {
  background-color: #903;
  align-content: center;
  margin: calc(-1* var(--mid-space));
  margin-bottom: 0;
  padding: var(--mid-space);
}
.html .cards .bandeau * {
  color: white;
}
.html .flex-container .item.flex-start {
  justify-content: flex-start;
}
.html .promo p:first-child {
  margin-bottom: var(--mid-space);
}
.html .promo p {
  color: #fff;
}
.html span.price.barre {
  text-decoration: line-through;
}
.html .spaced {
  letter-spacing: 1px;
}
/*Temporaire code button pureillusion*/
.html .btn-container {
  font-family: MuliBold, sans-serif;
}
.html .btn-container .button {
  margin-top: 0;
}
.html span.btn-divider {
  margin: 20px 20px 0 20px;
}
.html .button.theme-1.ghost, .html .button.theme-1.ghost:hover {
  color: #903 !important;
  background: #fff !important;
}
.html .button.theme-2.ghost, .html .button.theme-2.ghost:hover {
  color: #6d9f3c !important;
  background: #fff !important;
}
.html .button.theme-3.ghost, .html .button.theme-3.ghost:hover {
  color: #f63 !important;
  background: #fff !important;
}
.html .button.theme-4.ghost, .html .button.theme-4.ghost:hover {
  color: #55377c !important;
  background: #fff !important;
}
/*--------ACCORDION-------*/
.html .accordion {
  flex-flow: column;
  row-gap: 0;
  max-width: 1000px;
}
.html .accordion .content p {
  font-size: 60px;
  line-height: normal;
  color: #001e4e;
}
.html .accordion .item {
  gap: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;;
}
/*temp correction shadow*/
.html .accordion .item.shadow {
  box-shadow: none;
}
.html .accordion .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: var(--mid-space);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.html .accordion .item .title:hover *, .html .accordion .open .title * {
  color: #903;
}
.html .accordion .item .title * {margin: 0;}
.html .accordion .item .arrow {
  transition: all 0.3s ease-in-out;
  width: 20px;
  min-width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.html .accordion .item .accordion-content {
  width: 100%;
  height:auto;
  overflow: hidden;
  max-height: 0;
  padding: 0 var(--mid-space);
  transition: all 0.3s ease-in-out;
}
.html .accordion .item.open .accordion-content {
  padding: 0 var(--mid-space) var(--mid-space);
  max-height: 500px;
  opacity: 1;
}
.html .accordion .accordion-content a {
  color: #001e4e;
  text-decoration: underline;
}
.html .accordion .item.open .arrow {
  transform: rotate(-180deg);
}
/*Formation site et onglets*/
.html .tabs-container {
    width: 100%;
    height: 100%;
    margin: 0;
}
.html .tab-controls {
    display: none;
}
.html .tab-labels {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin: 0 0 16px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.html .tab-labels li {
    box-sizing: border-box;
    flex: 1;
    text-align: center;
}
.html .tab-labels li label {
    transition: all 0.3s ease-in-out;
    color: #929daf;
    padding: 5px auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    user-select: none;
    font-weight: 600;
}
.html .tab-labels li label:hover,
.html .tab-labels li label:focus,
.html .tab-labels li label:active {
    outline: 0;
    color: #bec5cf;
}
.html .slider {
    position: relative;
    width: 100%;
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
    margin-bottom: 20px;
}
.html .slider .indicator {
    position: relative;
    width: 50px;
    max-width: 100%;
    margin: 0 auto;
    height: 4px;
    background: #903;
    border-radius: 1px;
}
.html .tab-content {
  height: 100%;
}
.html .tab-content section {
    display: none;
    animation-name: content;
    animation-direction: normal;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}
.html .tab-content section.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 60px);
}
@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
/*Integration prototype figma*/
.html .rapport .tabs-container {
  margin-bottom: calc(-1 * var(--max-space))!important;
}
.html .rapport .tab-labels li label {
  font-size: 20px;
  line-height: 1.5em;
}
.html .rapport .lazy-iframe {
  width: 1000px;
  aspect-ratio: 130 / 70;
  display: none;
  background-color: #f5f5f5;
  border-radius: var(--radius);
}
.html .rapport .lazy-iframe.active {
  display: flex;
}
.html .rapport .lazy-iframe iframe {
  height: 100%;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
/* Icones et emoji */
.html .emo.check:before {
  content: "✔️";
  margin-right: 0.5rem;
}
.html .emo.cross:before {
  content: "❌";
  margin-right: 0.5rem;
}
.html .check:before {
    font-family: FontAwesome;
    content: "\F058";
    margin-right: 0.5rem;
}
.html p.check:before,
.html p.target:before {
  color: #903;
}