@charset "UTF-8";
:root {
  --main-width: 1440px;
  --inner-width: 1140px;
  --inner-s-width: 980px;
  --white: #fff;
  --black: #0a0a0a;
  --red-spirou: #d82b31;
  --red-dark-spirou: #b52b31;
  --gradient-bg: linear-gradient(90deg, #d82b31, #b52b31);
  --gradient-bg-yellow: linear-gradient(90deg, #fcd400, #fc9c00);
  --grey-light: #f1f1f1;
  --grey-mid: #878787;
  --grey-dark: #262626;
  --color-arrow-tooltip-0: #878787 transparent transparent transparent;
  --color-arrow-tooltip: #878787 transparent transparent transparent;
  --color-arrow-tooltip-error: red transparent transparent transparent;
  --beige: #fcf3e9;
  --space-1: 1rem;
  --space-2: 2rem;
  --space-3: 3rem;
  --fz-h1: 1.75em;
  --fz-h2: 1.5em;
  --fz-h3: 1.1em;
  --fz-l: 1.45em;
  --fz-m: 1.15em;
  --fz-s: 0.9em;
  --fz-xs: 0.8em;
  --fz-body: 16px;
  --box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  --box-shadow-light: 1px 1px 3px rgba(0, 0, 0, 0.4);
  --bezier-1: cubic-bezier(0.48, 0.06, 0.8, 0.97);
}
/**
--md-xxs: 0px;
--md-xs: 480px;
--md-s: 768px;
--md-m: 992px;
--md-l: 1280px;
--md-xl: 1440px;
--md-xxl: 1920px;
**/
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-body);
  font-weight: 500;
  background-color: #fff;
  overflow-x: hidden;
  overscroll-behavior: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0;
}
h1,
.h1 {
  margin-bottom: 1.33rem;
  font-size: var(--fz-h1);
}
h2,
.h2 {
  font-size: var(--fz-h2);
}
h3,
.h3 {
  margin-bottom: 0.5rem;
  font-size: var(--fz-h3);
}
p {
  margin: 1em 0;
}
input {
  outline: none;
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  src: url("../fonts/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  src: url("../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2") format("woff2");
  font-display: swap;
}
* {
  font-family: "Montserrat", sans-serif;
}
html {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  overflow-anchor: none;
}
main {
  will-change: height;
  transition: height 0.25s linear;
}
section {
  padding: 3rem 0;
}
.wrapper {
  background: var(--beige);
}
.wrapper-s {
  margin: 0 auto;
  max-width: var(--inner-s-width);
}
.wrapper-s section {
  max-width: unset;
}
@media (min-width: 992px) {
  .wrapper-s section {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
}
.container {
  margin: 0 auto;
  max-width: var(--main-width);
}
.container section {
  position: relative;
  margin: 0 auto;
  max-width: 90%;
  z-index: 1;
}
@media (min-width: 992px) {
  .container section {
    width: var(--inner-width);
  }
}
.container--flex {
  display: flex;
  margin: 0 auto;
  /*width: var(--inner-width);*/
  max-width: 100%;
}
@media (min-width: 992px) {
  .container--flex {
     width: var(--inner-width);
  }
}
a {
  color: var(--red-spirou);
}
.s-b {
  margin-bottom: 3.5rem;
}
.s-b:after {
  position: absolute;
  content: "";
  width: 10%;
  height: 5px;
  background: var(--gradient-bg);
  left: 50%;
  bottom: calc(-1.5rem - 5px);
  transform: translate(-50%);
}
.s-b-title:after {
  width: 50px;
}
.s-b-subtitle:after {
  width: 30px;
  bottom: calc(-0.75rem - 5px);
  left: 0;
  transform: unset;
}
span.red {
  color: var(--red-spirou);
}
.t-up {
  text-transform: uppercase;
}
.t-c {
  text-align: center;
}
.t-r {
  text-align: right;
}
.btn {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  font-family: Montserrat, sans-serif;
  font-size: var(--fz-xs);
  white-space: nowrap;
  color: var(--white);
  background: var(--gradient-bg);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 480px) {
  .btn {
    font-size: var(--fz-s);
  }
}
.btn--medium {
  padding: 8px var(--space-1);
  font-size: var(--fz-s);
}
.btn--small {
  padding: 5px 10px;
  font-size: var(--fz-xs);
}
.btn--play {
  position: relative;
  padding: 0.75rem var(--space-2) 0.75rem var(--space-3);
}
.btn--play:before {
  position: absolute;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid var(--white);
  border-bottom: 5px solid transparent;
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn.disabled {
  filter: grayscale(1);
  cursor: not-allowed;
  /*opacity: 0.5;*/
}
button.link {
  font-size: var(--fz-s);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}
button.link.active {
  font-weight: 700;
}
.icon {
  position: relative;
  display: inline-block;
  padding: 1.25rem;
}
.icon,
.icon svg {
  width: 20px;
  height: 20px;
}
.icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon svg * {
  fill: var(--white);
}
.icon-r {
  padding: 0;
  margin: 1rem 0;
}
.icon-r,
.icon-r svg {
  width: 85px;
  height: auto;
}
.icon--help svg {
  margin-top: 1px;
}
.icon--register svg {
  margin-top: 1px;
  margin-left: 1px;
}
.g-t:before,
.g-t:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: opacity;
  transition: opacity 0.15s var(--bezier-1);
}
.g-t:before {
  background: var(--gradient-bg);
  opacity: 1;
}
.g-t:after {
  background: var(--gradient-bg);
  opacity: 0;
}
.g-t[data-checked="true"]:before,
.g-t.active:before {
  opacity: 0;
}
.g-t[data-checked="true"]:after,
.g-t.active:after {
  opacity: 1;
}
.container--form {
  margin: 0 1rem;
  padding: 1rem;
  flex: 0 0 calc(50% - 2rem);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}
.container--form .divbtn {
  align-self: flex-end;
}
.container--form div {
  align-self: flex-start;
}
.container--form h2 {
  margin-bottom: 2rem;
}
.container--form h3 {
  margin-bottom: 2.5rem;
  font-size: var(--fz-body);
}
.field {
  margin: 0 0.5rem 1.5rem;
  /*align-self: flex-end;*/
  flex: 0 0 calc(100% - 1rem);
  max-width: calc(100% - 1rem);
}
@media (min-width: 992px) {
  .container--form {
    padding: 2rem;
  }
  .field-10 {
    flex: 0 0 calc(10% - 1rem);
    max-width: calc(10% - 1rem);
  }
}
@media (min-width: 992px) {
  .field-20 {
    flex: 0 0 calc(20% - 1rem);
    max-width: calc(20% - 1rem);
  }
}
@media (min-width: 480px) {
  .field-25 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .field-25 {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}
@media (min-width: 480px) {
  .field-33 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (min-width: 768px) {
  .field-33 {
    flex: 0 0 calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
  }
}
@media (min-width: 992px) {
  .field-45 {
    flex: 0 0 calc(45% - 1rem);
    max-width: calc(45% - 1rem);
  }
}
@media (min-width: 992px) {
  .field-50 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .field-75 {
    flex: 0 0 calc(75% - 1rem);
    max-width: calc(75% - 1rem);
  }
}
.field-100 {
  flex: 0 0 calc(100% - 1rem);
  max-width: calc(100% - 1rem);
}
.field-onoff {
  flex: 0 0 auto;
  margin: 0;
  max-width: unset;
}
.field-auto {
  flex: 1 0 auto;
  max-width: unset;
}
.field .checkbox {
  position: relative;
  display: block;
  padding-left: 2rem;
  font-size: 0.9em;
  color: var(--grey-mid);
  cursor: pointer;
}
.field .checkbox:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  text-align: center;
  color: var(--white);
  border-radius: 8px;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.field .checkbox[data-checked="true"]:before {
  content: "✔";
  background: var(--gradient-bg);
}
.field .onoff {
  position: relative;
  display: inline-block;
  padding: 1px;
  width: 60px;
  height: 30px;
  background: var(--white);
  background-clip: content-box;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
  border-radius: 24px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.field .onoff > span {
  position: absolute;
  display: inline-block;
  width: 29px;
  height: 29px;
  background: var(--gradient-bg);
  border-radius: 50%;
  top: 50%;
  right: calc(100% - 30px);
  will-change: right;
  transform: translateY(-50%);
  transition: all 0.15s var(--bezier-1);
  z-index: -1;
}
.field .onoff > span:before,
.field .onoff > span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: opacity;
  transition: opacity 0.15s var(--bezier-1);
}
.field .onoff > span:before {
  background: var(--gradient-bg);
  opacity: 1;
}
.field .onoff > span:after {
  background: var(--grey-dark);
  opacity: 0;
}
.field .onoff[data-checked="true"] > span {
  right: 1px;
}
.field .onoff[data-checked="true"] > span:before {
  opacity: 0;
}
.field .onoff[data-checked="true"] > span:after {
  opacity: 1;
}
.field label {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--grey-dark);
}
.field label sup {
  position: absolute;
  margin-left: 0.25rem;
}
.field input,
.field select {
  padding: 1rem 0.5rem;
  width: 100%;
  font-size: var(--fz-body);
  font-weight: 500;
  color: var(--grey-dark);
  border: none;
  border-radius: 10px;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
  -webkit-box-shadow: var(--box-shadow-light) inset;
}
.field input:focus,
.field select:focus {
  outline: 4px solid #fdcaca;
}
.field input[type="checkbox"],
.field input[type="radiobutton"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  display: none;
}
.field select {
  background: var(--white);
  cursor: pointer;
}
.field .link,
.recap .link {
  position: relative;
  padding: 0;
  margin: 0.5rem 0;
  color: var(--grey-mid);
  background: transparent;
  border: none;
  font-size: var(--fz-xs);
  display: inline-block;
  cursor: pointer;
}
.recap .link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field .link:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--grey-mid);
  bottom: -2px;
  left: 0;
}
.field :global(a) {
  color: var(--red-dark-spirou);
}
.field .info {
  display: block;
  margin: 0 0 1rem;
  font-weight: 700;
}
.onoff-field {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--grey-dark);
  color: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  border-radius: 5px;
}
.onoff-field:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--gradient-bg);
  opacity: 0;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.25s var(--bezier-1);
  z-index: 0;
}
.onoff-field[data-checked="true"]:before {
  opacity: 1;
}
.onoff-field > * {
  z-index: 1;
}
.onoff-field > span {
  padding-left: 30px;
  margin-left: 0.5rem;
}
.onoff-field .icon {
  position: absolute;
  padding: 0;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.onoff-field .icon,
.onoff-field .icon svg {
  width: 30px;
  height: 30px;
}
.badge {
  padding: 5px 1rem;
  font-size: 0.55em;
  font-weight: 600;
  background: var(--gradient-bg-yellow);
  color: var(--grey-dark);
  border-radius: 5px;
}
.forDev.svelte-1aldc9g.svelte-1aldc9g.svelte-1aldc9g {
  position: fixed;
  padding: 5px var(--space-1);
  background: var(--gradient-bg-yellow);
  color: var(--grey-dark);
  font-size: var(--fz-xs);
  left: var(--space-1);
  top: var(--space-1);
}
header.svelte-1aldc9g.svelte-1aldc9g.svelte-1aldc9g {
  position: sticky;
  top:0;
  background: var(--gradient-bg);
  height: 75px;
  z-index: 10;
}
header.svelte-1aldc9g .navbar.svelte-1aldc9g.svelte-1aldc9g {
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 0;
  max-width: var(--inner-width);
  height: 100%;
}
header.svelte-1aldc9g .logo.svelte-1aldc9g.svelte-1aldc9g {
  position: absolute;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header.svelte-1aldc9g .logo.svelte-1aldc9g .io {
  max-width: 140px;
  max-height: 100%;
}
header.svelte-1aldc9g .nav.svelte-1aldc9g.svelte-1aldc9g {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0.5rem;
  height: 100%;
  font-size: 0.75em;
}
header.svelte-1aldc9g .nav.svelte-1aldc9g > a.svelte-1aldc9g {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.svelte-1aldc9g .nav.svelte-1aldc9g > a.svelte-1aldc9g:nth-of-type(2) {
  margin: 0 2rem;
}
header.svelte-1aldc9g .nav.svelte-1aldc9g > a.svelte-1aldc9g:nth-of-type(3) {
  margin-left: -12px;
}
header.svelte-1aldc9g .nav > a p.svelte-1aldc9g.svelte-1aldc9g {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}
header.svelte-1aldc9g .nav .icon.svelte-1aldc9g.svelte-1aldc9g {
  margin-bottom: 0.25rem;
  background: var(--grey-dark);
  border-radius: 50%;
}
header.svelte-1aldc9g .nav--mobile.svelte-1aldc9g.svelte-1aldc9g {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}
header.svelte-1aldc9g .nav--mobile aside.svelte-1aldc9g.svelte-1aldc9g {
  position: absolute;
  display: flex;
  padding: calc(0.5rem - 2px) calc(42px + 0.25rem) calc(0.5rem - 2px)
    calc(0.5rem - 2px);
  background: var(--white);
  border-radius: 25px;
  opacity: 0;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light);
  bottom: calc(var(--space-1) + 1px);
  right: calc(var(--space-1) + 2px);
  transition: all 0.25s var(--bezier-1);
}
header.svelte-1aldc9g .nav--mobile aside.active.svelte-1aldc9g.svelte-1aldc9g {
  opacity: 1;
  pointer-events: all;
}
header.svelte-1aldc9g .nav--mobile aside a.svelte-1aldc9g.svelte-1aldc9g {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  font-size: 10px;
}
header.svelte-1aldc9g .nav--mobile--bar.svelte-1aldc9g.svelte-1aldc9g {
  position: absolute;
  bottom: var(--space-1);
  right: var(--space-1);
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch.svelte-1aldc9g.svelte-1aldc9g {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 44px;
  height: 44px;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: all;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.svelte-1aldc9g.svelte-1aldc9g {
  position: relative;
  width: 26px;
  height: 20px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g {
  position: absolute;
  display: block;
  height: 2px;
  width: 50%;
  background: var(--white);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0);
  -webkit-transition: 0.25s var(--bezier-1);
  -moz-transition: 0.25s var(--bezier-1);
  -o-transition: 0.25s var(--bezier-1);
  transition: 0.25s var(--bezier-1);
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(even) {
  left: 50%;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(odd) {
  left: 0;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(1),
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(2) {
  top: 0;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(3),
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(4) {
  top: 9px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(5),
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(6) {
  top: 18px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(1),
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(2),
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(1) {
  left: 2px;
  top: 4px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(2) {
  left: calc(50% - 2px);
  top: 4px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(3) {
  left: -50%;
  opacity: 0;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(4) {
  left: 100%;
  opacity: 0;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(5) {
  left: 2px;
  top: 13px;
}
header.svelte-1aldc9g
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.svelte-1aldc9g.svelte-1aldc9g:nth-child(6) {
  left: calc(50% - 2px);
  top: 13px;
}
footer.svelte-atltgd.svelte-atltgd.svelte-atltgd {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
footer.svelte-atltgd .ptispi.svelte-atltgd.svelte-atltgd {
  display: none;
}
@media (min-width: 1280px) {
  footer.svelte-atltgd .ptispi.svelte-atltgd.svelte-atltgd {
    position: absolute;
    display: block;
    height: 150px;
    margin-right: 2rem;
    opacity: 0.75;
    left: 0;
    bottom: -2rem;
  }
}
@media (min-width: 1440px) {
  footer.svelte-atltgd .ptispi.svelte-atltgd.svelte-atltgd {
    bottom: 0;
  }
}
footer.svelte-atltgd .ptispi.svelte-atltgd .io img {
  object-fit: contain;
}
.reinsurance.svelte-atltgd.svelte-atltgd.svelte-atltgd {
  padding-top: 2rem;
  background: var(--grey-dark);
}
.reinsurance-item.svelte-atltgd.svelte-atltgd.svelte-atltgd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(320px - 1rem);
  padding: 1rem 0;
  margin: 0 0.5rem;
}
@media (min-width: 768px) {
  .reinsurance-item.svelte-atltgd.svelte-atltgd.svelte-atltgd {
    flex: 0 0 calc(33.33333% - 1rem);
    max-width: calc(33.33333% - 1rem);
  }
}
.reinsurance.svelte-atltgd .container--flex.svelte-atltgd.svelte-atltgd {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .reinsurance.svelte-atltgd .container--flex.svelte-atltgd.svelte-atltgd {
    flex-direction: row;
    width: var(--inner-width);
  }
}
.footer.svelte-atltgd.svelte-atltgd.svelte-atltgd {
  padding-bottom: 2rem;
  background: var(--gradient-bg);
}
.footer.svelte-atltgd .container--flex.svelte-atltgd.svelte-atltgd {
  margin-top: 0;
}
.footer.svelte-atltgd .actions.svelte-atltgd.svelte-atltgd {
  padding: 2rem 0;
}
.footer.svelte-atltgd .actions .container--flex.svelte-atltgd.svelte-atltgd {
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer.svelte-atltgd .actions .container--flex.svelte-atltgd.svelte-atltgd {
    flex-direction: row;
  }
}
.footer.svelte-atltgd .newsletter.svelte-atltgd.svelte-atltgd,
.footer.svelte-atltgd .social.svelte-atltgd.svelte-atltgd {
  display: flex;
  margin: 0 0.5rem;
}
.footer.svelte-atltgd .social.svelte-atltgd.svelte-atltgd {
  flex-grow: 1;
  flex-direction: column;
}
@media (max-width: 990px) {
  .footer.svelte-atltgd .social.svelte-atltgd.svelte-atltgd {
    margin-top: 2rem;
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .footer.svelte-atltgd .social.svelte-atltgd.svelte-atltgd {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .footer.svelte-atltgd .social.svelte-atltgd.svelte-atltgd {
    justify-content: flex-end;
  }
}
.footer.svelte-atltgd .social.svelte-atltgd > div.svelte-atltgd:first-of-type {
  margin-bottom: var(--space-1);
}
@media (min-width: 768px) {
  .footer.svelte-atltgd
    .social.svelte-atltgd
    > div.svelte-atltgd:first-of-type {
    margin: 0 var(--space-2);
  }
}
.footer.svelte-atltgd .social > div .btn.svelte-atltgd.svelte-atltgd {
  position: relative;
  padding-right: 4rem;
  font-size: 0.65em;
  color: var(--black);
  background: var(--white);
}
.footer.svelte-atltgd .social > div.svelte-atltgd .btn span.svelte-atltgd {
  position: absolute;
  background: var(--gradient-bg);
  border-radius: 50%;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
}
.footer.svelte-atltgd .newsletter.svelte-atltgd.svelte-atltgd {
  flex-direction: column;
  margin-left:1rem
}
@media (min-width: 768px) {
  .footer.svelte-atltgd .newsletter.svelte-atltgd.svelte-atltgd {
    flex-direction: row;
    margin-left:0.5rem
  }
}
.footer.svelte-atltgd .newsletter p.svelte-atltgd.svelte-atltgd {
  max-width: 200px;
  margin-top: inherit;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.footer.svelte-atltgd .newsletter p.svelte-atltgd.svelte-atltgd {
	  max-width: 200px;
	  margin: inherit;
	}
}
.footer.svelte-atltgd .newsletter form.svelte-atltgd.svelte-atltgd {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 56px;
  font-size: var(--fz-xs);
}
@media (min-width: 480px) {
  .footer.svelte-atltgd .newsletter form.svelte-atltgd.svelte-atltgd {
    font-size: var(--fz-body);
  }
}
.footer.svelte-atltgd .newsletter form input.svelte-atltgd.svelte-atltgd {
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  font-size: 1.1em;
  font-weight: 400;
  border: none;
  border-radius: 50px;
}
.footer.svelte-atltgd .newsletter form button.svelte-atltgd.svelte-atltgd {
  position: absolute;
  border: none;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  cursor: pointer;
}
.footer.svelte-atltgd .copyrights.svelte-atltgd.svelte-atltgd {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .footer.svelte-atltgd .copyrights.svelte-atltgd.svelte-atltgd {
    flex-direction: row;
  }
}
.footer.svelte-atltgd .copyrights.svelte-atltgd > div.svelte-atltgd {
  margin: 1rem 1rem 0;
}
.footer.svelte-atltgd .copyrights a.svelte-atltgd.svelte-atltgd {
  color: var(--white);
}
div.svelte-76hff.svelte-76hff {
  position: absolute;
  padding: 0.5rem 0 0;
  margin-left: 0.5rem;
  width: 100%;
  max-width: 100%;
  /*left: 18%;*/
  transform: translate(0%);
  z-index: 2;
}
@media (min-width: 992px) {
	div.svelte-76hff.svelte-76hff {
	  position: absolute;
	  padding: 0.5rem 0 0;
	  margin-left: 0.5rem;
	  width: var(--inner-width);
	  max-width: 100%;
	  left: 50%;
	  transform: translate(-50%);
	  z-index: 2;
	}
}
div.svelte-76hff .crumb.svelte-76hff {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
  font-size: var(--fz-xs);
  color: var(--grey-dark);
}
div.svelte-76hff .crumb.svelte-76hff:not(div .crumb:first-child):before {
  position: absolute;
  content: "❯";
  font-weight: 700;
  left: -1rem;
  top: -1px;
}
div.svelte-76hff .crumb.active.svelte-76hff {
  font-weight: 700;
}
div.svelte-76hff a.svelte-76hff {
  text-decoration: underline;
}
.checkbox-right {
  text-align: right;
  padding-right: 2rem;
}

.field .checkbox-right:before {
  right: 0 !important;
  left: auto !important;
}
div.svelte-thzbg7.svelte-thzbg7 {
  padding: 4rem 0;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
div.svelte-thzbg7 .io {
  height: 450px;
  margin-bottom: 1.33rem;
}
div.svelte-thzbg7 .io img {
  width: auto;
  height: auto;
  max-width: 100%;
}
div.svelte-thzbg7 p.svelte-thzbg7 {
  margin: 0;
  font-size: var(--fz-m);
}
div.svelte-thzbg7 .btn.svelte-thzbg7 {
  margin-top: 1.33rem;
}
.container--form.svelte-35lhn7 {
  position: relative;
  margin: 0;
  max-width: 480px;
  background: var(--white);
  z-index: 1;
}
h2.svelte-35lhn7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  h2.svelte-35lhn7 {
    flex-direction: row;
    align-items: center;
  }
}
.link.svelte-35lhn7 {
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 0.55em;
  color: var(--grey-mid);
}
@media (min-width: 480px) {
  .link.svelte-35lhn7 {
    margin: 0 0 0 var(--space-1);
  }
}
.link.svelte-35lhn7:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--grey-mid);
  bottom: -2px;
  left: 0;
}
.container--form.svelte-35lhn7 {
  margin: 0 auto;
  min-width: 100%;
}
@media (min-width: 992px) {
  .container--form.svelte-35lhn7 {
    max-width: 820px;
    min-width: 820px;
  }
}
.container--form.svelte-1kqmk49 {
  position: relative;
  margin: 0;
  max-width: 480px;
  background: var(--white);
  z-index: 1;
}
h2.svelte-1kqmk49 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  h2.svelte-1kqmk49 {
    flex-direction: row;
    align-items: center;
  }
}
.link.svelte-1kqmk49 {
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 0.55em;
  color: var(--grey-mid);
}
@media (min-width: 480px) {
  .link.svelte-1kqmk49 {
    margin: 0 0 0 var(--space-1);
  }
}
.link.svelte-1kqmk49:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--grey-mid);
  bottom: -2px;
  left: 0;
}
div.svelte-1bk73z9.svelte-1bk73z9 {
  width: 100%;
}
.subscribed.svelte-1bk73z9.svelte-1bk73z9 {
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media (min-width: 992px) {
  .subscribed.svelte-1bk73z9.svelte-1bk73z9 {
    flex-direction: row;
    margin: 0 -var(--space-1) 3.5rem -var(--space-1);
  }
}
.subscribed--item.svelte-1bk73z9.svelte-1bk73z9 {
  /*display: flex;*/
  flex-direction: column;
  flex: 1 0 calc(100% - var(--space-1));
  margin: 0 0 var(--space-1) 0;
  padding: var(--space-1);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
}
@media (min-width: 992px) {
  .subscribed--item.svelte-1bk73z9.svelte-1bk73z9 {
    flex: 1 0 calc(33.3333333% - var(--space-1));
    max-width: calc(33.3333333% - var(--space-1));
    margin: 0 var(--space-1);
  }
}
.subscribed--item.svelte-1bk73z9 .content.svelte-1bk73z9 {
  flex-grow: 1;
  margin-bottom: 0;
}
.subscribed--item.svelte-1bk73z9 .actions.svelte-1bk73z9 {
  text-align: center;
}
@media (min-width: 992px) {
  .subscribed--item.svelte-1bk73z9 .actions.svelte-1bk73z9 {
    text-align: right;
  }
}
.journals.svelte-1bk73z9.svelte-1bk73z9 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.journals--item.svelte-1bk73z9.svelte-1bk73z9 {
  position: relative;
  flex: 0 0 calc(50% - 1.25rem);
  max-width: calc(50% - 1.25rem);
  margin-bottom: var(--space-3);
}
@media (min-width: 768px) {
  .journals--item.svelte-1bk73z9.svelte-1bk73z9 {
    flex: 0 0 calc(25% - 1.25rem);
    max-width: calc(25% - 1.25rem);
  }
}
.journals--item.svelte-1bk73z9 .io {
  height: auto;
  margin-bottom: var(--space-1);
}
.journals--item.svelte-1bk73z9 .date.svelte-1bk73z9 {
  position: absolute;
  display: inline-block;
  width: auto;
  padding: 0.5rem var(--space-2);
  white-space: nowrap;
  font-size: var(--fz-xs);
  font-weight: 700;
  background: var(--gradient-bg-yellow);
  border-radius: 5px;
  bottom: var(--space-3);
  left: 50%;
  transform: translate(-50%);
}
@media (min-width: 992px) {
  .journals--item.svelte-1bk73z9 .date.svelte-1bk73z9 {
    top: -1rem;
    right: -1rem;
    left: unset;
    bottom: unset;
    transform: unset;
  }
}
.btn.svelte-1bk73z9.svelte-1bk73z9 {
  white-space: nowrap;
}
.wrapper.svelte-1bk73z9.svelte-1bk73z9 {
  margin-bottom: 3rem;
}
.login.svelte-hl5uoz,
.register.svelte-hl5uoz {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.login--image.svelte-hl5uoz,
.register--image.svelte-hl5uoz {
  position: relative;
  flex-grow: 1;
  max-height: 100%;
}
.login--image.svelte-hl5uoz .io,
.register--image.svelte-hl5uoz .io {
  position: absolute;
}
.login--image.svelte-hl5uoz .io img,
.register--image.svelte-hl5uoz .io img {
  position: absolute;
  height: auto;
}
.login--image.svelte-hl5uoz .io img {
  bottom: 0;
}
.register--image.svelte-hl5uoz .io img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
img.loaded.s-uvTRP8EiF9pn {
  opacity: 1;
}
img.s-uvTRP8EiF9pn {
  width: 100%;
  height: 100%;
  opacity: 0;
  vertical-align: bottom;
  will-change: opacity;
  transition: opacity 0.25s var(--bezier-1);
}

div.s-_iBR610LaYwl {
  width: 100%;
  height: 100%;
}
section.svelte-108njcj.svelte-108njcj.svelte-108njcj {
  display: flex;
  flex-wrap: wrap;
  width: var(--inner-width);
  max-width: 100%;
}

section.svelte-108njcj > div.svelte-108njcj.svelte-108njcj {
  flex: 0 0 100%;
}

@media (min-width: 992px) {
  section.svelte-108njcj > div.svelte-108njcj.svelte-108njcj {
    flex: 0 0 50%;
  }
}

section.svelte-108njcj .journals.svelte-108njcj.svelte-108njcj {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.svelte-108njcj .journals.svelte-108njcj .io {
  height: 434px;
}

section.svelte-108njcj .journals.svelte-108njcj .io img {
  width: 440px;
  height: 434px;
}

section.svelte-108njcj .journals .floating.svelte-108njcj.svelte-108njcj {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 100%;
  min-height: 320px;
  margin-bottom: 5.5rem;
}

@media (min-width: 480px) {
  section.svelte-108njcj .journals .floating.svelte-108njcj.svelte-108njcj {
    max-width: 480px;
  }
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io {
  position: absolute;
  display: inline-block;
  width: auto;
  height: auto;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  transition: all 0.25s cubic-bezier(0.27, 0.23, 0.11, 1.1);
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io img {
  width: 135px;
  height: auto;
  object-fit: contain;
  vertical-align: top;
}

@media (min-width: 480px) {
  section.svelte-108njcj .journals .floating.svelte-108njcj .io img {
    width: 160px;
  }
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(1) {
  top: 42px;
  right: 18px;
  transform: rotate(8deg);
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(2) {
  top: 130px;
  right: 40px;
  transform: rotate(25deg);
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(3) {
  top: 23px;
  left: 50%;
  transform: translate(-50%) rotate(5deg);
  transform-origin: bottom right;
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(4) {
  top: 142px;
  left: 31px;
  transform: rotate(-18deg);
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(5) {
  top: 46px;
  left: 30px;
  transform: rotate(-10deg);
}

section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(6) {
  top: 35%;
  left: 50%;
  transform: translate(-50%);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(1) {
  top: 35px;
  right: 4px;
  transform: rotate(22deg) scale(0.8);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(2) {
  top: 176px;
  right: 17px;
  transform: rotate(36deg) scale(0.8);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(3) {
  top: -33px;
  left: 48%;
  transform: translate(-50%) rotate(2deg) scale(0.8);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(4) {
  top: 170px;
  left: 6px;
  transform: rotate(-31deg) scale(0.8);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(5) {
  top: 35px;
  left: 15px;
  transform: rotate(-26deg) scale(0.8);
}

section.svelte-108njcj
  .journals
  .floating.svelte-108njcj:hover
  .io:nth-of-type(6) {
  top: 35%;
  transform: translate(-50%) scale(1.2);
}

@media (min-width: 480px) {
  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(1) {
    top: 67px;
    right: 75px;
    transform: rotate(8deg);
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(2) {
    top: 130px;
    right: 56px;
    transform: rotate(25deg);
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(3) {
    top: 23px;
    left: 50%;
    transform: translate(-50%) rotate(5deg);
    transform-origin: bottom right;
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(4) {
    top: 142px;
    left: 71px;
    transform: rotate(-18deg);
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(5) {
    top: 76px;
    left: 113px;
    transform: rotate(-10deg);
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io:nth-of-type(6) {
    top: 35%;
    left: 50%;
    transform: translate(-50%);
  }

  section.svelte-108njcj .journals .floating.svelte-108njcj .io img {
    width: 160px;
    height: auto;
    object-fit: contain;
    vertical-align: top;
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(1) {
    top: 55px;
    right: 60px;
    transform: rotate(12deg) scale(0.8);
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(2) {
    top: 152px;
    right: 30px;
    transform: rotate(30deg) scale(0.8);
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(3) {
    top: -33px;
    left: 48%;
    transform: translate(-50%) rotate(2deg) scale(0.8);
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(4) {
    top: 162px;
    left: 44px;
    transform: rotate(-25deg) scale(0.8);
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(5) {
    top: 65px;
    left: 68px;
    transform: rotate(-18deg) scale(0.8);
  }

  section.svelte-108njcj
    .journals
    .floating.svelte-108njcj:hover
    .io:nth-of-type(6) {
    top: 35%;
    transform: translate(-50%) scale(1.2);
  }
}

section.svelte-108njcj h3.svelte-108njcj.svelte-108njcj:first-of-type {
  margin-top: 1rem;
}

section.svelte-108njcj .content.svelte-108njcj.svelte-108njcj {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 90%;
  margin: var(--space-3) auto 0 auto;
}

@media (min-width: 992px) {
  section.svelte-108njcj .content.svelte-108njcj.svelte-108njcj {
    max-width: 100%;
    margin: 0;
  }
}

section.svelte-108njcj .content.svelte-108njcj > h1.svelte-108njcj {
  margin-bottom: 3rem;
}

section.svelte-108njcj .content__items.svelte-108njcj.svelte-108njcj {
  margin-left: 2rem;
}

section.svelte-108njcj .content__items.svelte-108njcj > p.svelte-108njcj {
  position: relative;
}

section.svelte-108njcj
  .content__items.svelte-108njcj
  > p.svelte-108njcj:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  background: var(--gradient-bg);
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.calot.svelte-172ks9r {
  position: absolute;
  width: 32px;
  top: -0.5rem;
  left: -0.5rem;
}

.item.svelte-qfxacf.svelte-qfxacf.svelte-qfxacf {
    position: relative;
    flex: 0 0 calc(330px - 1rem);
    max-width: calc(330px - 1rem);
    padding: 2rem 2rem 1rem 2rem;
    margin: 0 0.5rem;
    background: var(--white);
    -webkit-appearance: none;
    box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
	.item.svelte-qfxacf.svelte-qfxacf.svelte-qfxacf {
	  position: relative;
	  flex: 0 0 calc(330px - 1rem);
	  max-width: calc(330px - 1rem);
	  padding: 2rem;
	  margin: 0 0.5rem;
	  background: var(--white);
	 -webkit-appearance: none; box-shadow: var(--box-shadow);
	}
}

@media (min-width: 992px) {
  .item.svelte-qfxacf.svelte-qfxacf.svelte-qfxacf {
    flex: 0 0 calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
  }
}

.item.svelte-qfxacf .popular.svelte-qfxacf.svelte-qfxacf {
  position: absolute;
  color: var(--grey-dark);
  background: var(--gradient-bg-yellow);
  border-radius: 5px;
  top: -1.75rem;
  left: 50%;
  transform: translate(-50%);
}

.item.svelte-qfxacf .popular.svelte-qfxacf > p.svelte-qfxacf {
  padding: 0.75rem 2rem;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.item.svelte-qfxacf h3.svelte-qfxacf.svelte-qfxacf {
  position: relative;
  margin-bottom: 3rem;
  /*padding-right: 2.1rem;
  padding-left: 2rem;*/
  height: 21px;
}

.item.svelte-qfxacf .tech.svelte-qfxacf.svelte-qfxacf {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 300;
  /*min-height: 180px;*/
}

.item.svelte-qfxacf .tech strong.svelte-qfxacf.svelte-qfxacf {
  font-weight: 500;
}

.item.svelte-qfxacf .btn.svelte-qfxacf.svelte-qfxacf {
    position: unset;
    display: inline-block;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
	.item.svelte-qfxacf .btn.svelte-qfxacf.svelte-qfxacf {
	  position: relative;
	  display: inline;
	  padding-left: 3rem;
	  padding-right: 3rem;
	  bottom: -2.5rem;
	}
}

.item.svelte-qfxacf .bonus.svelte-qfxacf.svelte-qfxacf {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  height: 70%;
  min-height: 320px;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  right: -100%;
  top: 50%;
  transform: translateY(-50%);
}

.item.svelte-qfxacf .bonus.svelte-qfxacf.svelte-qfxacf:before {
  position: absolute;
  content: "+";
  font-size: 4em;
  color: var(--red-dark-spirou);
  left: -30%;
}

.item.svelte-qfxacf .bonus p.svelte-qfxacf.svelte-qfxacf {
  font-size: 1.1em;
  font-weight: 700;
}

.item.svelte-qfxacf .bonus.svelte-qfxacf .io {
  height: inherit;
}

.item.svelte-qfxacf .bonus.svelte-qfxacf .io img {
  object-fit: contain;
  width: auto;
  max-width: 80%;
  height: 100%;
}

.offers.svelte-1b13zgf.svelte-1b13zgf.svelte-1b13zgf {
  padding-bottom: 1.5rem;
}

.offers__items.svelte-1b13zgf.svelte-1b13zgf.svelte-1b13zgf {
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 40px 0 100px;
  z-index: 1;
  overflow: hidden;
  overflow-x: scroll;
}

@media (min-width: 992px) {
  .offers__items.svelte-1b13zgf.svelte-1b13zgf.svelte-1b13zgf {
    justify-content: center;
    overflow: unset;
    overflow-x: unset;
  }

  .offers__items.svelte-1b13zgf .item:nth-of-type(3):before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    max-height: 170px;
    background-image: url(./../img/petit-spirou.png);
    background-size: 220px;
    background-repeat: no-repeat;
    background-position: top center;
    opacity: 0.15;
    bottom: 100%;
    left: 0;
    z-index: -1;
  }
}

.offers.svelte-1b13zgf section.svelte-1b13zgf.svelte-1b13zgf {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .offers.svelte-1b13zgf section.svelte-1b13zgf.svelte-1b13zgf {
    padding-bottom: var(--space-3);
  }
}

.offers.svelte-1b13zgf section.svelte-1b13zgf .sc-carousel__pages-window {
  padding-top: 40px;
  padding-bottom: 100px;
}

.offers.svelte-1b13zgf section.svelte-1b13zgf .sc-carousel__pages-container {
  position: relative;
  justify-content: flex-start;
  left: -2.5rem;
}

@media (min-width: 480px) {
  .offers.svelte-1b13zgf section.svelte-1b13zgf .sc-carousel__pages-container {
    left: var(--space-2);
  }
}

@media (min-width: 768px) {
  .offers.svelte-1b13zgf section.svelte-1b13zgf .sc-carousel__pages-container {
    left: 135px;
  }
}

.offers.svelte-1b13zgf .promo.svelte-1b13zgf.svelte-1b13zgf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-2) 0.5rem;
  margin: var(--space-2) auto var(--space-1) auto;
  max-width: 540px;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
}

.offers.svelte-1b13zgf .promo.svelte-1b13zgf > p.svelte-1b13zgf {
  margin-top: 0;
}

.offers.svelte-1b13zgf .promo form.svelte-1b13zgf.svelte-1b13zgf {
  display: flex;
  width: 85%;
  font-size: var(--fz-s);
}

@media (min-width: 600px) {
  .offers.svelte-1b13zgf .promo form.svelte-1b13zgf.svelte-1b13zgf {
    font-size: var(--fz-body);
    width: 60%;
  }
}

.offers.svelte-1b13zgf .promo form.svelte-1b13zgf .field {
  margin: 0;
  flex: 0 0 auto;
  flex-grow: 1;
}

.offers.svelte-1b13zgf .promo form.svelte-1b13zgf .field input {
  font-size: var(--fz-s);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.offers.svelte-1b13zgf .promo form input.svelte-1b13zgf.svelte-1b13zgf,
.offers.svelte-1b13zgf .promo form button.svelte-1b13zgf.svelte-1b13zgf {
  padding: 0 1.25rem;
  color: var(--white);
  background: var(--gradient-bg);
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  cursor: pointer;
}

.faq-container.svelte-jece9h {
  margin: 4.5rem auto;
  max-width: var(--inner-width);
}

div.svelte-1rgsshe.svelte-1rgsshe {
  flex: 0 0 calc(100% - 1rem);
  max-width: calc(267px - 1rem);
  margin: 0 0.5rem 2rem;
}

div.svelte-1rgsshe.svelte-1rgsshe:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  div.svelte-1rgsshe.svelte-1rgsshe {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    margin: 0 0.5rem;
  }
}

div.svelte-1rgsshe .io {
  width: auto;
  height: auto;
}

div.svelte-1rgsshe .io img {
  border-radius: 50%;
  object-fit: contain;
}

div.svelte-1rgsshe p.svelte-1rgsshe {
  font-weight: 700;
}

.discover.svelte-43vlbi {
  position: relative;
}

.discover.svelte-43vlbi .container--flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
}

@media (min-width: 768px) {
  .discover.svelte-43vlbi .container--flex {
    flex-direction: row;
    justify-content: space-evenly;
    width: var(--inner-width);
  }
}

.opinion.svelte-17yzwow.svelte-17yzwow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 calc(100% - 1rem);
  max-width: calc(100% - 1rem);
  padding: 0 1.5rem 1rem;
  margin: 40px 0.5rem 0;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  height: 257px;
}

@media (min-width: 768px) {
  .opinion.svelte-17yzwow.svelte-17yzwow {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 992px) {
  .opinion.svelte-17yzwow.svelte-17yzwow {
    flex: 0 0 calc(33.3333333% - 1rem);
    max-width: calc(33.3333333% - 1rem);
  }
}

.opinion.svelte-17yzwow .io {
  height: 44px;
  display: flex;
  justify-content: center;
}

.opinion.svelte-17yzwow img {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  border-radius: 50%;
  background: var(--grey-light);
}

.opinion.svelte-17yzwow > div.svelte-17yzwow {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.opinion.svelte-17yzwow > div p.svelte-17yzwow:first-of-type {
  font-weight: 700;
}

.carousel.svelte-1rbnbpn.svelte-1rbnbpn {
  overflow: hidden;
}

.carousel.svelte-1rbnbpn .cells.svelte-1rbnbpn {
  display: flex;
  left: 0;
  transition: all 0.15s var(--bezier-1);
  height: 300px;
}

.controls.svelte-1rbnbpn.svelte-1rbnbpn {
  margin-top: 4.5rem;
  text-align: center;
}

.controls.svelte-1rbnbpn input.svelte-1rbnbpn,
.controls.svelte-1rbnbpn button.svelte-1rbnbpn {
  position: relative;
  margin: 0 1rem;
  width: 38px;
  height: 38px;
  background: var(--gradient-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.controls.svelte-1rbnbpn input.svelte-1rbnbpn.disabled,
.controls.svelte-1rbnbpn button.svelte-1rbnbpn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.controls.svelte-1rbnbpn input.svelte-1rbnbpn:after,
.controls.svelte-1rbnbpn button.svelte-1rbnbpn:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  border-radius: 2px;
  transform-origin: center;
  right: 3px;
  top: calc(50% - 2px);
  transform: rotate(-45deg) translateY(-50%);
}

.controls.svelte-1rbnbpn input.svelte-1rbnbpn:last-child:after,
.controls.svelte-1rbnbpn button.svelte-1rbnbpn:last-child:after {
  right: 8px;
  transform: rotate(-45deg) translateY(-50%) scale(-1);
}
.container--form.svelte-kwea43 {
  position: relative;
  margin: 0;
  max-width: 480px;
  background: var(--white);
  z-index: 1;
}
h2.svelte-kwea43 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  h2.svelte-kwea43 {
    flex-direction: row;
    align-items: center;
  }
}
.reset.svelte-kwea43 {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.reset--image.svelte-kwea43 {
  position: relative;
  flex-grow: 1;
  max-height: 100%;
}
.reset--image.svelte-kwea43 .io,
.reset--image.svelte-kwea43 .io img {
  position: absolute;
}
.reset--image.svelte-kwea43 .io img {
  bottom: 0;
}
.reset--image.svelte-kwea43 .io img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.svelte-1x696h7 .bam.svelte-1x696h7 {
  max-width: 740px;
  margin: 0 auto var(--space-2) auto;
}
@media (min-width: 768px) {
  div.svelte-1x696h7 .bam.svelte-1x696h7 {
    min-height: 304px;
  }
}
div.svelte-1x696h7 p.svelte-1x696h7 {
  font-size: var(--fz-m);
}
@media (min-width: 768px) {
  div.svelte-1x696h7 p.svelte-1x696h7 {
    margin: 0;
  }
}
div.svelte-1x696h7 .action.svelte-1x696h7 {
  margin: var(--space-2) 0 0 0;
}
div.svelte-1x696h7 .action .btn.svelte-1x696h7 {
  margin: 0.5rem;
}
@media (min-width: 768px) {
  div.svelte-1x696h7 .action .btn.svelte-1x696h7 {
    margin: 0 0.5rem;
  }
}
.container--flex.svelte-e6t3gl.svelte-e6t3gl {
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1rem;
}
@media (min-width: 992px) {
  .container--flex.svelte-e6t3gl.svelte-e6t3gl {
    flex-direction: row;
  }
}
.container--flex.svelte-e6t3gl .container--form.svelte-e6t3gl {
  min-width: 100%;
}
@media (min-width: 992px) {
  .container--flex.svelte-e6t3gl .container--form.svelte-e6t3gl {
    min-width: unset;
  }
}
.subscribed--item.svelte-e6t3gl.svelte-e6t3gl {
  max-width: 100%;
  margin: 0 auto var(--space-1) auto;
}
@media (min-width: 992px) {
  .subscribed--item.svelte-e6t3gl.svelte-e6t3gl {
    margin: 0;
  }
}
.subscribed--item.svelte-e6t3gl > div.svelte-e6t3gl {
  padding: var(--space-2);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  max-width:450px;
}
.container--flex.svelte-64jbmd.svelte-64jbmd {
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
@media (min-width: 992px) {
  .container--flex.svelte-64jbmd.svelte-64jbmd {
    flex-direction: row;
  }
}
.container--flex.svelte-64jbmd .container--form.svelte-64jbmd {
  min-width: 100%;
}
@media (min-width: 992px) {
  .container--flex.svelte-64jbmd .container--form.svelte-64jbmd {
    min-width: unset;
  }
}
.container--flex.svelte-64jbmd .container--form.svelte-64jbmd:first-child {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .container--flex.svelte-64jbmd .container--form.svelte-64jbmd:first-child {
    margin-bottom: 0;
  }
}
.container--flex.svelte-64jbmd
  .container--form.svelte-64jbmd:first-child
  form
  div:first-child {
  flex: 0 0 calc(100% - var(--space-1));
  max-width: calc(100% - var(--space-1));
}
@media (min-width: 768px) {
  .container--flex.svelte-64jbmd
    .container--form.svelte-64jbmd:first-child
    form
    div:first-child {
    flex: 0 0 calc(33.333333% - var(--space-1));
    max-width: calc(33.333333% - var(--space-1));
  }
}
.details--data.svelte-1iohgyr.svelte-1iohgyr {
  display: flex;
  /*flex-wrap: wrap;*/
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 480px) {
  .details--data.svelte-1iohgyr.svelte-1iohgyr {
    flex-direction: row;
    align-items: flex-start;
  }
}
.details--data.svelte-1iohgyr .io {
  width: 120px;
  height: 167px;
}
.details--data.svelte-1iohgyr .offer.svelte-1iohgyr {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  /*align-items: center;*/
}
@media (min-width: 480px) {
  .details--data.svelte-1iohgyr .offer.svelte-1iohgyr {
    margin: 0 1rem;
    /*align-items: flex-start;*/
  }
}
.details--data.svelte-1iohgyr .offer.svelte-1iohgyr .types {
  justify-content: flex-start;
  margin-bottom: var(--space-1);
}
.details--data.svelte-1iohgyr .offer.svelte-1iohgyr .info {
  top: 0;
  right: -30px;
  left: unset;
  transform: unset;
}
@media (min-width: 480px) {
  .details--data.svelte-1iohgyr .offer.svelte-1iohgyr .info {
    right: 0;
  }
}
.details--data.svelte-1iohgyr .offer.svelte-1iohgyr .info--more {
  min-width: 300px;
  top: calc(var(--space-2) - 32px);
  bottom: unset;
  z-index: 2;
}
@media (min-width: 480px) {
  .details--data.svelte-1iohgyr .offer.svelte-1iohgyr .info--more {
    min-width: unset;
    top: var(--space-2);
    left: unset;
    transform: unset;
  }
}
.details--options.svelte-1iohgyr.svelte-1iohgyr {
  display: flex;
  flex-direction: column;
  max-width: 460px;
}
.details--options.svelte-1iohgyr .s-b.svelte-1iohgyr {
  margin-bottom: 2.5rem;
}
.details--options--date.svelte-1iohgyr.svelte-1iohgyr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .details--options--date.svelte-1iohgyr.svelte-1iohgyr {
    flex-direction: row;
  }
}
.details--options--date.svelte-1iohgyr > .field.field-100 {
  flex: 1 0 auto;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .details--options--date.svelte-1iohgyr > .field.field-100 {
    width: auto;
    max-width: calc(100% - 1rem);
  }
}
.details--options--date.svelte-1iohgyr p.svelte-1iohgyr {
  color: var(--grey-mid);
}
@media (min-width: 992px) {
  .details--options--date.svelte-1iohgyr p.svelte-1iohgyr {
    margin-right: 1rem;
  }
}
.resub.svelte-w7z8wu {
  display: flex;
  /*justify-content: center;*/
}
.btn-resub.svelte-w7z8wu {
  margin: 0 1rem;
}
.btn-resub[data-existingUser="false"].svelte-w7z8wu {
  background: var(--grey-dark);
}
h4.svelte-gd6r7t:not(:first-of-type) {
  margin-top: 2rem;
}
.delivery--info.svelte-1pgvz8r h4.svelte-1pgvz8r:nth-of-type(2) {
  margin-top: 1rem;
}
.payment--wrapper.svelte-186ttvs.svelte-186ttvs.svelte-186ttvs {
  max-width: 460px;
}
.payment--info.svelte-186ttvs
  .onoff-field.svelte-186ttvs
  > span.svelte-186ttvs {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  padding-left: 0;
}
@media (min-width: 480px) {
  .payment--info.svelte-186ttvs
    .onoff-field.svelte-186ttvs
    > span.svelte-186ttvs {
    flex-direction: row;
    align-items: center;
  }
}
.payment--info.svelte-186ttvs .onoff-field .icon.svelte-186ttvs.svelte-186ttvs {
  position: relative;
  width: 35px;
  height: auto;
  margin-bottom: 0.5rem;
  top: unset;
  left: unset;
  transform: unset;
}
@media (min-width: 480px) {
  .payment--info.svelte-186ttvs
    .onoff-field
    .icon.svelte-186ttvs.svelte-186ttvs {
    margin-left: 1rem;
    margin-bottom: 0;
  }
}
.payment--info.svelte-186ttvs
  .onoff-field
  .icon.cb.svelte-186ttvs.svelte-186ttvs {
  display: flex;
  align-items: center;
}
.payment--info.svelte-186ttvs .onoff-field .icon.cb.svelte-186ttvs .io {
  flex: 1 0 auto;
  margin-right: 6px;
}
.payment--info.svelte-186ttvs .onoff-field .icon.svelte-186ttvs .io img {
  display: block;
  border-radius: 2px;
}
.recap.svelte-1ie3jj7.svelte-1ie3jj7.svelte-1ie3jj7 {
  /*position: sticky;*/
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(36.5% - 1rem);
  padding: var(--space-2);
  /*min-height: 480px;*/
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  top: var(--space-3);
  /*margin-top: var(--space-1);*/
}
@media (min-width: 992px) {
  .recap.svelte-1ie3jj7.svelte-1ie3jj7.svelte-1ie3jj7 {
    /*max-height: 506px;*/
  }
}
.recap.svelte-1ie3jj7 > span.svelte-1ie3jj7.svelte-1ie3jj7 {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
  font-size: var(--fz-s);
  color: var(--grey-mid);
  font-weight: 600;
}
.recap.svelte-1ie3jj7 > div.svelte-1ie3jj7.svelte-1ie3jj7 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-weight: 600;
}
.recap.svelte-1ie3jj7 > div.recap--offer.svelte-1ie3jj7.svelte-1ie3jj7 {
 font-size: var(--fz-h2);
}
.recap.svelte-1ie3jj7 > div.recap--delivery.svelte-1ie3jj7.svelte-1ie3jj7 {
  color: var(--grey-mid);
}
.recap.svelte-1ie3jj7 > div.recap--total.svelte-1ie3jj7.svelte-1ie3jj7 {
  font-size: var(--fz-m);
  font-weight: 700;
}
.recap.svelte-1ie3jj7 > div.recap--delivery.svelte-1ie3jj7.svelte-1ie3jj7 {
  display: flex;
  justify-content: space-between;
}
.recap.svelte-1ie3jj7 > div.recap--delivery h4.svelte-1ie3jj7.svelte-1ie3jj7 {
  margin-bottom: 2rem;
  color: var(--black);
}
.recap.svelte-1ie3jj7
  > div.recap--delivery
  h4
  .btn.svelte-1ie3jj7.svelte-1ie3jj7 {
  margin-top: 0.5rem;
}
@media (min-width: 480px) {
  .recap.svelte-1ie3jj7
    > div.recap--delivery
    h4
    .btn.svelte-1ie3jj7.svelte-1ie3jj7 {
    margin-top: unset;
    margin-left: 0.5rem;
  }
}
.recap.svelte-1ie3jj7 > div.recap--delivery.svelte-1ie3jj7 > p.svelte-1ie3jj7 {
  font-size: var(--fz-s);
}
.recap.svelte-1ie3jj7 > div.svelte-1ie3jj7.svelte-1ie3jj7:last-of-type {
  margin: 0;
  flex-grow: 1;
  justify-content: center;
}
.recap.svelte-1ie3jj7 > div:last-of-type .btn.svelte-1ie3jj7.svelte-1ie3jj7 {
  align-self: flex-end;
}
.card--wrapper.svelte-kytjo4.svelte-kytjo4.svelte-kytjo4 {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  max-width: 480px;
}
.card--wrapper.svelte-kytjo4 .field.svelte-kytjo4 > div.svelte-kytjo4 {
  position: relative;
}
.card--wrapper.svelte-kytjo4 .cc.svelte-kytjo4.svelte-kytjo4 {
  padding-left: calc(30px + 3rem);
}
.card--wrapper.svelte-kytjo4 .cc--img.svelte-kytjo4.svelte-kytjo4 {
  position: absolute;
  max-height: 30px;
  margin-left: 0.75rem;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.card--wrapper.svelte-9radgu.svelte-9radgu {
  max-width: 480px;
}
.card.svelte-9radgu > p.svelte-9radgu {
  margin-bottom: 2rem;
  font-weight: 400;
}
.container--steps.svelte-1717yu6 {
  position: relative;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 992px) {
  .container--steps.svelte-1717yu6 {
    flex-direction: row;
  }
}
.steps.svelte-1717yu6 {
  flex: 0 0 calc(60% - 1rem);
}
.container--flex.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg {
	position: sticky;
	top: 75px;
	z-index: 101;
}
@media (min-width: 992px) {
  .container--flex.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg {
    position: relative;
    top: unset;
  }
}
.container--flex.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 75%, rgba(255, 255, 255, 0) 100%);
  /*left: -25%;*/
}
@media (min-width: 992px) {
  .container--flex.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg:before {
    content: none;
  }
}
.steps.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 2rem auto;
}
@media (min-width: 992px) {
	.steps.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg {
	  width: 650px;
	}
}
.steps.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: var(--grey-mid);
  left: 50%;
  top: 25px;
  transform: translate(-50%);
}
.step.svelte-79h2lg.svelte-79h2lg.svelte-79h2lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.step.svelte-79h2lg span.svelte-79h2lg.svelte-79h2lg {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--grey-light);
  color: var(--grey-dark);
  border-radius: 50%;
}
.step.svelte-79h2lg span.svelte-79h2lg > p.svelte-79h2lg {
  position: absolute;
  margin: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.step.svelte-79h2lg p.svelte-79h2lg.svelte-79h2lg {
  font-weight: 600;
  color: var(--grey-mid);
}
.step.active.svelte-79h2lg span.svelte-79h2lg.svelte-79h2lg {
  background: var(--gradient-bg-yellow);
}
.step.active.svelte-79h2lg span.svelte-79h2lg > p.svelte-79h2lg {
  color: var(--white);
}
.step.active.svelte-79h2lg p.svelte-79h2lg.svelte-79h2lg {
  color: var(--black);
}
div.svelte-1hlrll4 {
  position: relative;
  min-height: 480px;
}
.wrapper.svelte-1c3cd2l.svelte-1c3cd2l {
  position: relative;
  margin-bottom: 3.5rem;
}
.wrapper.svelte-1c3cd2l .marsu.svelte-1c3cd2l {
  position: absolute;
  display: none;
  width: 240px;
  right: calc(100% - 30px);
}
@media (min-width: 1280px) {
  .wrapper.svelte-1c3cd2l .marsu.svelte-1c3cd2l {
    display: inline-block;
  }
}
h2.svelte-1c3cd2l.svelte-1c3cd2l {
  margin-bottom: 2rem;
}
h3.svelte-1c3cd2l.svelte-1c3cd2l {
  margin: 0;
  font-weight: 500;
}
.forDev.s-f_PBzT5OICzS.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: fixed;
  padding: 5px var(--space-1);
  background: var(--gradient-bg-yellow);
  color: var(--grey-dark);
  font-size: var(--fz-xs);
  left: var(--space-1);
  top: var(--space-1);
}
header.s-f_PBzT5OICzS.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: relative;
  background: var(--gradient-bg);
  height: 75px;
  z-index: 2;
}
header.s-f_PBzT5OICzS .navbar.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 0;
  max-width: var(--inner-width);
  height: 100%;
}
header.s-f_PBzT5OICzS .logo.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: absolute;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header.s-f_PBzT5OICzS .logo.s-f_PBzT5OICzS .io {
  max-width: 140px;
  max-height: 100%;
}
header.s-f_PBzT5OICzS .nav.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0.5rem;
  height: 100%;
  font-size: 0.75em;
}
header.s-f_PBzT5OICzS .nav.s-f_PBzT5OICzS > a.s-f_PBzT5OICzS {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.s-f_PBzT5OICzS .nav.s-f_PBzT5OICzS > a.s-f_PBzT5OICzS:nth-of-type(2) {
  margin: 0 2rem;
}
header.s-f_PBzT5OICzS .nav.s-f_PBzT5OICzS > a.s-f_PBzT5OICzS:nth-of-type(3) {
  margin-left: -12px;
}
header.s-f_PBzT5OICzS .nav > a p.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}
header.s-f_PBzT5OICzS .nav .icon.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  margin-bottom: 0.25rem;
  background: var(--grey-dark);
  border-radius: 50%;
}
header.s-f_PBzT5OICzS .nav--mobile.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
header.s-f_PBzT5OICzS .nav--mobile aside.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: absolute;
  display: flex;
  padding: calc(0.5rem - 2px) calc(42px + 0.25rem) calc(0.5rem - 2px)
    calc(0.5rem - 2px);
  background: var(--white);
  border-radius: 25px;
  opacity: 0;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light);
  bottom: calc(var(--space-1) + 1px);
  right: calc(var(--space-1) + 2px);
  transition: all 0.25s var(--bezier-1);
}
header.s-f_PBzT5OICzS .nav--mobile aside.active.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  opacity: 1;
  pointer-events: all;
}
header.s-f_PBzT5OICzS .nav--mobile aside a.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  font-size: 10px;
}
header.s-f_PBzT5OICzS .nav--mobile--bar.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: absolute;
  bottom: var(--space-1);
  right: var(--space-1);
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 44px;
  height: 44px;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: all;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: relative;
  width: 26px;
  height: 20px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS {
  position: absolute;
  display: block;
  height: 2px;
  width: 50%;
  background: var(--white);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s var(--bezier-1);
  -moz-transition: 0.25s var(--bezier-1);
  -o-transition: 0.25s var(--bezier-1);
  transition: 0.25s var(--bezier-1);
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(even) {
  left: 50%;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(odd) {
  left: 0px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(1),
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(2) {
  top: 0;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(3),
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(4) {
  top: 9px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(5),
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(6) {
  top: 18px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(1),
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(2),
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(1) {
  left: 2px;
  top: 4px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(2) {
  left: calc(50% - 2px);
  top: 4px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(3) {
  left: -50%;
  opacity: 0;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(4) {
  left: 100%;
  opacity: 0;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(5) {
  left: 2px;
  top: 13px;
}
header.s-f_PBzT5OICzS
  .nav--mobile--bar
  .sandwitch
  .sandwitch--container.active
  span.s-f_PBzT5OICzS.s-f_PBzT5OICzS:nth-child(6) {
  left: calc(50% - 2px);
  top: 13px;
}

footer.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
footer.s-FHa4EdyUjGz3 .ptispi.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  display: none;
}
@media (min-width: 1280px) {
  footer.s-FHa4EdyUjGz3 .ptispi.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    position: absolute;
    display: block;
    height: 150px;
    margin-right: 2rem;
    opacity: 0.75;
    left: 0;
    bottom: -2rem;
  }
}
@media (min-width: 1440px) {
  footer.s-FHa4EdyUjGz3 .ptispi.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    bottom: 0;
  }
}
footer.s-FHa4EdyUjGz3 .ptispi.s-FHa4EdyUjGz3 .io img {
  object-fit: contain;
}
.reinsurance.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  padding-top: 2rem;
  background: var(--grey-dark);
}
.reinsurance-item.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(320px - 1rem);
  padding: 1rem 0;
  margin: 0 0.5rem;
}
@media (min-width: 768px) {
  .reinsurance-item.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex: 0 0 calc(33.33333% - 1rem);
    max-width: calc(33.33333% - 1rem);
  }
}
.reinsurance.s-FHa4EdyUjGz3 .container--flex.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .reinsurance.s-FHa4EdyUjGz3 .container--flex.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex-direction: row;
    width: var(--inner-width);
  }
}
.footer.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  padding-bottom: 2rem;
  background: var(--gradient-bg);
}
.footer.s-FHa4EdyUjGz3 .container--flex.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  margin-top: 0;
}
.footer.s-FHa4EdyUjGz3 .actions.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  padding: 2rem 0;
}
.footer.s-FHa4EdyUjGz3 .actions .container--flex.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer.s-FHa4EdyUjGz3
    .actions
    .container--flex.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex-direction: row;
  }
}
.footer.s-FHa4EdyUjGz3 .newsletter.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3,
.footer.s-FHa4EdyUjGz3 .social.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  display: flex;
  margin: 0 0.5rem;
}
.footer.s-FHa4EdyUjGz3 .social.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  flex-grow: 1;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer.s-FHa4EdyUjGz3 .social.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .footer.s-FHa4EdyUjGz3 .social.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    justify-content: flex-end;
  }
}
.footer.s-FHa4EdyUjGz3
  .social.s-FHa4EdyUjGz3
  > div.s-FHa4EdyUjGz3:first-of-type {
  margin-bottom: var(--space-1);
}
@media (min-width: 768px) {
  .footer.s-FHa4EdyUjGz3
    .social.s-FHa4EdyUjGz3
    > div.s-FHa4EdyUjGz3:first-of-type {
    margin: 0 var(--space-2);
  }
}
.footer.s-FHa4EdyUjGz3 .social > div .btn.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  position: relative;
  padding-right: 4rem;
  font-size: 0.65em;
  color: var(--black);
  background: var(--white);
}
.footer.s-FHa4EdyUjGz3 .social > div.s-FHa4EdyUjGz3 .btn span.s-FHa4EdyUjGz3 {
  position: absolute;
  background: var(--gradient-bg);
  border-radius: 50%;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
}
.footer.s-FHa4EdyUjGz3 .newsletter.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer.s-FHa4EdyUjGz3 .newsletter.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex-direction: row;
  }
}
.footer.s-FHa4EdyUjGz3 .newsletter p.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  margin: 0 var(--space-2) var(--space-1) 0;
}
.footer.s-FHa4EdyUjGz3 .newsletter form.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 56px;
  font-size: var(--fz-xs);
}
@media (min-width: 480px) {
  .footer.s-FHa4EdyUjGz3 .newsletter form.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    font-size: var(--fz-body);
  }
}
.footer.s-FHa4EdyUjGz3 .newsletter form input.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  font-size: 1.1em;
  font-weight: 400;
  border: none;
  border-radius: 50px;
}
.footer.s-FHa4EdyUjGz3 .newsletter form button.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  position: absolute;
  border: none;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  cursor: pointer;
}
.footer.s-FHa4EdyUjGz3 .copyrights.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .footer.s-FHa4EdyUjGz3 .copyrights.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
    flex-direction: row;
  }
}
.footer.s-FHa4EdyUjGz3 .copyrights.s-FHa4EdyUjGz3 > div.s-FHa4EdyUjGz3 {
  margin: 1rem 1rem 0 1rem;
}
.footer.s-FHa4EdyUjGz3 .copyrights a.s-FHa4EdyUjGz3.s-FHa4EdyUjGz3 {
  color: var(--white);
}

div.s-Tx3MSP7btpU-.s-Tx3MSP7btpU- {
  position: absolute;
  padding: 0.5rem 0 0 0;
  margin-left: 0.5rem;
  width: var(--inner-width);
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
div.s-Tx3MSP7btpU- .crumb.s-Tx3MSP7btpU- {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
  font-size: var(--fz-xs);
  color: var(--grey-dark);
}
div.s-Tx3MSP7btpU- .crumb.s-Tx3MSP7btpU-:not(div .crumb:first-child):before {
  position: absolute;
  content: "❯";
  font-weight: 700;
  left: -1rem;
  top: -1px;
}
div.s-Tx3MSP7btpU- .crumb.active.s-Tx3MSP7btpU- {
  font-weight: 700;
}
div.s-Tx3MSP7btpU- a.s-Tx3MSP7btpU- {
  text-decoration: underline;
}

div.s-_iBR610LaYwl {
  width: 100%;
  height: 100%;
}

img.s-uvTRP8EiF9pn {
  width: 100%;
  height: 100%;
  opacity: 0;
  vertical-align: bottom;
  will-change: opacity;
  transition: opacity 0.25s var(--bezier-1);
}
img.loaded.s-uvTRP8EiF9pn {
  opacity: 1;
}

.container--flex.s-Q_Tc788At7_B.s-Q_Tc788At7_B {
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
@media (min-width: 992px) {
  .container--flex.s-Q_Tc788At7_B.s-Q_Tc788At7_B {
    flex-direction: row;
  }
}
.container--flex.s-Q_Tc788At7_B .container--form.s-Q_Tc788At7_B {
  min-width: 100%;
}
@media (min-width: 992px) {
  .container--flex.s-Q_Tc788At7_B .container--form.s-Q_Tc788At7_B {
    min-width: unset;
  }
}
.container--flex.s-Q_Tc788At7_B .container--form.s-Q_Tc788At7_B:first-child {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .container--flex.s-Q_Tc788At7_B .container--form.s-Q_Tc788At7_B:first-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
}
.container--image.s-Q_Tc788At7_B.s-Q_Tc788At7_B {
  flex: 0 0 50%;
}
.container--image.s-Q_Tc788At7_B img {
  object-fit: contain;
  object-position: left;
}
.container--form.s-Q_Tc788At7_B.s-Q_Tc788At7_B {
  z-index: 1;
}
@media (min-width: 992px) {
  .container--form.s-Q_Tc788At7_B.s-Q_Tc788At7_B {
    margin-left: 0;
  }
}

.info.s-ssUmYfx-pfZ4 {
  padding: 0 1rem;
}
form.s-ssUmYfx-pfZ4 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  flex-grow: 1;
}
div.s-ssUmYfx-pfZ4 {
  width: 100%;
}
.faq.svelte-153ih98.svelte-153ih98.svelte-153ih98 {
  padding: 1.5rem 0 1.5rem 2rem;
}
.faq.svelte-153ih98 .question.svelte-153ih98.svelte-153ih98 {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
}
.faq.svelte-153ih98 .question.svelte-153ih98.svelte-153ih98:before {
  position: absolute;
  content: "+";
  font-size: 40px;
  font-weight: 600;
  background: var(--gradient-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
}
.faq.svelte-153ih98 .question h3.svelte-153ih98.svelte-153ih98 {
  margin: 0;
  font-weight: 600;
}
.faq.svelte-153ih98 .answer.svelte-153ih98.svelte-153ih98 {
  display: none;
  margin-top: 1rem;
}
.faq.svelte-153ih98 .answer.svelte-153ih98 > div.svelte-153ih98 {
  margin: 0 0 0 2rem;
  font-weight: 500;
}
.faq.active.svelte-153ih98 .question.svelte-153ih98.svelte-153ih98:before {
  content: "-";
}
.faq.active.svelte-153ih98 .answer.svelte-153ih98.svelte-153ih98 {
  display: block;
}
.info.svelte-hsk1oe {
  padding: 0 1rem;
}

form.svelte-hsk1oe,
.form.svelte-hsk1oe {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

div.svelte-hsk1oe {
  width: 100%;
}
div.svelte-11dz0yj {
  width: 100%;
  height: 100%;
}
img.svelte-1bhwt23 {
  width: 100%;
  height: 100%;
  opacity: 0;
  vertical-align: bottom;
  will-change: opacity;
  transition: opacity 0.25s var(--bezier-1);
}
img.loaded.svelte-1bhwt23 {
  opacity: 1;
}
.info.svelte-c0mg8b.svelte-c0mg8b {
  position: absolute;
  width: 30px;
  height: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid black;
  border-radius: 5px;
  bottom: -4.5rem;
  left: 50%;
  transform: translate(-50%);
  cursor: help;
}
.info.svelte-c0mg8b span.svelte-c0mg8b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info--more.svelte-c0mg8b.svelte-c0mg8b {
  position: absolute;
  padding: 0.5rem 1rem;
  width: 80%;
  font-size: 0.8em;
  text-align: left;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: none;
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%);
}
.types.svelte-11gjcbc.svelte-11gjcbc {
  display: flex;
  justify-content: center;
  color: var(--grey-dark);
  font-size: 0.85em;
  font-weight: 700;
  /*padding-bottom: 1rem;*/
}
.types.svelte-11gjcbc > span.svelte-11gjcbc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.types.svelte-11gjcbc > span .icon.svelte-11gjcbc svg * {
  fill: var(--red-dark-spirou);
}
.types.svelte-11gjcbc > span.paper .icon.svelte-11gjcbc,
.types.svelte-11gjcbc > span.paper .icon.svelte-11gjcbc svg {
  width: 25px;
  height: 25px;
}
.types.svelte-11gjcbc > span.and.svelte-11gjcbc {
  margin: 0 1rem;
  font-size: var(--fz-l);
}
.types.svelte-11gjcbc > span.digital .icon.svelte-11gjcbc,
.types.svelte-11gjcbc > span.digital .icon.svelte-11gjcbc svg {
  width: 35px;
  height: 35px;
}
.price.svelte-ggh407.svelte-ggh407 {
  position: relative;
  min-height:70px
}
.price--data.svelte-ggh407.svelte-ggh407 {
  margin-bottom: 0.5rem;
  font-size: 1.25em;
}
.price--data.svelte-ggh407 > small.svelte-ggh407 {
  font-size: 0.75em;
  text-decoration: line-through;
  color: var(--grey-mid);
}
.price--data--badge.svelte-ggh407.svelte-ggh407 {
  margin-top: 0.25rem;
}
.price--info.svelte-ggh407.svelte-ggh407 {
  font-size: 0.65em;
  font-weight: 600;
}
.offer.cart {
  flex-direction: row !important;
}

.input__error {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-top: 0.625rem;
  color: #e20714;
  font-size: 12px;
  line-height: 1.3;
}
.input__error a {
  color: #e20714;
  text-decoration: underline;
}
.input.incomplete {
  border: 1px solid red;
}
.form-error .form-control {
  border-bottom: 1px solid red;
}
.form-error label {
  color: red !important;
}
.form-error input,
.form-error select,
.form-error textarea {
  border-bottom: 1px solid red;
  background: url(../img/picto-caution.png) no-repeat 100% center;
}
.form-error input:focus,
.form-error select:focus,
.form-error textarea:focus {
  border-bottom: 1px solid red;
}
.form-error input:focus + label,
.form-error select:focus + label,
.form-error textarea:focus + label {
  color: red;
}
.global-errors,
.form-errors {
  width: 100%;
  clear: both;
}
.global-errors .form-msg-error,
.form-errors .form-msg-error {
  text-align: center;
  margin-top: 0.3125rem;
  color: #e20714;
}
.form-errors .newsletterEmail {
  color: white;
}
.global-errors .form-msg-error {
  line-height: 1.3;
  font-size: 1rem;
}
.form-errors .form-msg-error {
  font-size: 0.875rem;
}
.global-errors .form-msg-error:first-child {
  margin-top: 0.625rem;
}
@media (min-width: 48em) {
  .global-errors .form-msg-error:first-child {
    margin-top: 1.5rem;
  }
}
.global-errors .form-msg-error img,
.form-errors .form-msg-error img {
  width: auto !important;
  height: auto !important;
  margin: 0 0.3125rem 0 0 !important;
}
.global-errors .form-msg-error a,
.form-errors .form-msg-error a {
  color: #e20714;
  text-decoration: underline;
}
.main-home .global-errors .form-msg-error:first-child {
  margin-top: 1.5625rem;
}
.main-bonsplans .global-errors .form-msg-error:first-child,
.main-univers .wrapper .global-errors .form-msg-error:first-child,
.main-edito .wrapper .global-errors .form-msg-error:first-child,
.site
  .main-titre:not(.main__mag)
  .wrapper
  .global-errors
  .form-msg-error:first-child {
  margin-top: 0;
}
.main-univers .wrapper .global-errors .form-msg-error:last-child,
.site
  .main-titre:not(.main__mag)
  .wrapper
  .global-errors
  .form-msg-error:last-child {
  margin-bottom: 1.5625rem;
}
.main-bonsplans .global-errors .form-msg-error:last-child,
.site
  .main-titre.main-promos
  .wrapper
  .global-errors
  .form-msg-error:last-child,
.site.minisite .main-titre .wrapper .global-errors .form-msg-error:last-child,
.site.minisitecart
  .main-titre
  .wrapper
  .global-errors
  .form-msg-error:last-child {
  margin-bottom: 2.8125rem;
}
.loader {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.loader .content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 60px;
  width: 150px;
  z-index: 9999;
}
.loader .text {
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.loader .spinner {
  margin: auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.loader .spinner > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.loader .spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.loader .spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader .spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.loader .spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/* TODO */
.mobile-only {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .no-mobile {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
.form-select:not(.sm-select) .select ul {
  width: calc(100% - 10px);
  margin: auto 0.3125rem;
}
.form-select {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.625rem;
}
.form-select .select:after,
.form-select .select:before,
.form-select .select .select-styled,
.form-select .select .select-options li {
  display: none;
}
.form-select .select .select-styled:after {
  content: url(../img/icons/tfoot-arrow.svg);
  top: 0.75rem;
  right: 0.625rem;
}
.form-select .select .select-options {
  max-height: 170px;
  overflow-y: auto;
}
.footer.svelte-atltgd .newsletter form input.svelte-atltgd.svelte-atltgd {
  padding: 0 165px 0 20px;
}
section.svelte-108njcj .content__items.svelte-108njcj > p {
  position: relative;
}
section.svelte-108njcj .content__items.svelte-108njcj > p:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  background: linear-gradient(90deg, #d82b31, #b52b31);
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.cacher {
  display: none;
}

.field-onoff input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
/* onoffSimple etape 2 tunnel */

.field-onoffSimple {
  flex: 0 0 auto;
  margin: 0;
  max-width: unset;
}
.field-onoffSimple-auto {
  flex: 1 0 auto;
  max-width: unset;
}
.field-onoffSimple .checkbox {
  position: relative;
  display: block;
  padding-left: 2rem;
  font-size: 0.9em;
  color: var(--grey-mid);
  cursor: pointer;
}
.field-onoffSimple .checkbox:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  text-align: center;
  color: var(--white);
  border-radius: 8px;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.field-onoffSimple .checkbox[data-checked="true"]:before {
  content: "✔";
  background: var(--gradient-bg);
}
.field-onoffSimple .onoffSimple {
  position: relative;
  display: inline-block;
  padding: 1px;
  width: 60px;
  height: 30px;
  background: var(--white);
  background-clip: content-box;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
  border-radius: 24px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.field-onoffSimple .onoffSimple > span {
  position: absolute;
  display: inline-block;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  top: 50%;
  right: calc(100% - 30px);
  will-change: right;
  transform: translateY(-50%);
  transition: all 0.15s var(--bezier-1);
  z-index: -1;
}
.field-onoffSimple .onoffSimple > span:before,
.field-onoffSimple .onoffSimple > span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: opacity;
  transition: opacity 0.15s var(--bezier-1);
}
.field-onoffSimple .onoffSimple > span:before {
  background: var(--grey-dark);
  opacity: 1;
}
.field-onoffSimple .onoffSimple > span:after {
  background: var(--gradient-bg);
  opacity: 0;
}
.field-onoffSimple .onoffSimple[data-checked="true"] > span {
  right: 1px;
}
.field-onoffSimple .onoffSimple[data-checked="true"] > span:before {
  opacity: 0;
}
.field-onoffSimple .onoffSimple[data-checked="true"] > span:after {
  opacity: 1;
}
.field-onoffSimple label {
  position: relative;
  display: block;
  margin-bottom: 0;
  color: var(--grey-dark);
}
.field-onoffSimple label sup {
  position: absolute;
  margin-left: 0.25rem;
}
.field-onoffSimple input,
.field-onoffSimple select {
  padding: 1rem 0.5rem;
  width: 100%;
  font-size: var(--fz-body);
  font-weight: 500;
  color: var(--grey-dark);
  border: none;
  border-radius: 10px;
 -webkit-appearance: none; box-shadow: var(--box-shadow-light) inset;
}
.field-onoffSimple input:focus,
.field-onoffSimple select:focus {
  outline: 4px solid #fdcaca;
}
.field-onoffSimple input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.onoffSimple-field {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  /*justify-content: center;*/
}
.onoffSimple-field:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.25s var(--bezier-1);
  z-index: 0;
}
.onoffSimple-field[data-checked="true"]:before {
  opacity: 1;
}
.onoffSimple-field > * {
  z-index: 1;
}
.onoffSimple-field > span {
  padding-left: 6px;
  margin-left: 0.5rem;
}
.onoffSimple-field .icon {
  position: absolute;
  padding: 0;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.onoffSimple-field .icon,
.onoffSimple-field .icon svg {
  width: 30px;
  height: 30px;
}
.sub-block {
  margin-top: 15px;
}
.btn-resub {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  font-family: Montserrat, sans-serif;
  font-size: var(--fz-xs);
  white-space: nowrap;
  color: var(--white);
  background: var(--gradient-bg);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  min-width: 120px;
  font-weight: 700;
  cursor: pointer;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
}
.left-block-top {
  position: relative;
  padding: 2rem;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
}

.left-block-bottom {
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-top: 1rem;
}
.right-block {
  flex: 0 0 calc(36.5% - 1rem);
}
.fieldCheckBox {
  flex: 1 1 auto;
}
.borderBlock {
  padding: 2rem;
 -webkit-appearance: none; box-shadow: var(--box-shadow);
}
.field-onoff input[type="radio"] {
  display: none;
}
.title-bottom-minimize {
  margin-bottom: 1.5rem !important;
}
.adresse {
  justify-content: normal !important;
  padding-top: 12px;
}

.flex-auto {
  flex: auto !important;
}

.opinion {
  max-width: 364px;
}

.partenaires {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -4rem;
}
.partenaires-item {
  margin: 1rem 4rem;
  max-width: calc(25% - 2rem);
  flex: calc(25% - 2rem);
}
@media only screen and (max-width: 1323px) {
  .partenaires {
    margin: 0 -10rem;
  }
  .partenaires-item {
    margin: 1rem 3rem;
  }
}
@media only screen and (max-width: 850px) {
  .partenaires {
    margin: 0;
  }
  .partenaires-item {
    margin: 2rem;
    width: 100%;
    max-width: 300px;
    flex: 100%;
  }
}
.partenaires-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.subscribed h4 {
  margin-bottom: 1.5rem;
}
.subscribed p {
  font-size: 15px;
}
.subscribed .content {
  height: auto;
  min-height: 170px;
  padding-top:1px;
}
.subscribed .actions {
  text-align: right !important;
}
.info-compte {
  display: inline-block;
  text-align: center;
  width: 23px;
  height: 22px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid black;
  border-radius: 5px;
  cursor: help;
  margin-left: 10px;
}
.info-compte span.logo-info-compte {
  font-size: 13px;
}
.flex-end-block {
  display: flex;
  justify-content: flex-end;
}
.flex-center-vertical {
  justify-content: center;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
}

.info-bulle-compte .info--more-cpte {
  position: absolute;
  padding: 0.5rem 1rem;
  font-size: 0.8em;
  text-align: left;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: none;
   width: 260px;
   height: 80px;
   left: 4%;
   z-index: 10;
}
@media (min-width: 992px) {
  .info-bulle-compte .info--more-cpte {
		position: absolute;
	    padding: 0.5rem 1rem;
	    font-size: 0.8em;
	    text-align: left;
	    background: var(--white);
	    -webkit-appearance: none;
	    box-shadow: var(--box-shadow);
	    pointer-events: none;
	    width: 300px;
	    height: 80px;
	    left: 40%;
	    bottom: 20%;
	    z-index: 10;
	}
}
.link-bibliotheque {
  padding-top: 6px;
  padding-left: 19px;
}
.link-bibliotheque a {
  /*text-decoration: underline;*/
}
.link-bibliotheque a:hover {
  /*text-decoration: none;*/
}
.disabled-btn {
  opacity: 0.3;
  cursor: default !important;
}
.pcReduc {
  background: silver;
  position: absolute;
  color: white;
  width: 60px;
  font-weight: bold;
  height: 60px;
  border-radius: 50%;
  justify-content: center;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
}
.cart .types.svelte-11gjcbc > span.svelte-11gjcbc {
  flex-direction: row !important;
}
.prodtitlecart {
  max-width: 250px;
}
.content-cart-info-item {
  display: flex;
  flex-direction: row;
}
.title-item-cart {
  padding-bottom: 13px;
}
.price-cart-item {
  display: flex;
  justify-content: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  align-items: end;
  width: min-content;
  min-height: 120px;
}
.details--data.svelte-1iohgyr .offer.svelte-1iohgyr .types {
  /*padding-right: 30px;*/
}
.cartbody section {
  padding: 1.5rem 0 3rem 0;
}
.tech strong {
  font-weight: 500;
}

.infobulle-cart {
  position: absolute;
  padding: 0.5rem 1rem;
  font-size: 0.8em;
  text-align: center;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: none;
   width: 260px;
   height: 80px;
   left: 0;
   z-index: 10;
}
@media (min-width: 992px) {
  .infobulle-cart {
		position: absolute;
		padding: 0.5rem 1rem;
		font-size: 0.8em;
		text-align: left;
		background: var(--white);
		-webkit-appearance: none; box-shadow: var(--box-shadow);
		pointer-events: none;
		bottom: 80%;
		left: 50%;
		transform: translate(-50%);
		z-index: 10;
	}
}
/*
.infobulle-cart {
  position: absolute;
  padding: 0.5rem 1rem;
  font-size: 0.8em;
  text-align: left;
  background: var(--white);
 -webkit-appearance: none; box-shadow: var(--box-shadow);
  pointer-events: none;
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%);
}*/
.formdecoAccount{
	display: flex;justify-content: space-between;margin: 0 1rem;
}

.fil-ariane-account {
  position: absolute !important;
  padding: 0.5rem 0 0 !important;
  z-index: 2 !important;
  margin: 0 3.5rem !important;
  width: auto !important;
  transform: none !important;
  left: auto !important;
  max-width: none !important;
}

@media (min-width: 992px) {
  .layout-account {
    width: auto !important;
    max-width: 92% !important;
    margin: 0 2rem !important;
  }
}

.header-menu-connected {
  display: none;
  width: 30%;
  height: auto;
  padding: 0.5rem;
  background: var(--grey-dark);
  color: white;
  z-index: 10;
  position: absolute;
  right: 0;
}
.ul-hmc {
  list-style-type: none;
  line-height: 1.5;
}
.bj-ul-hmc {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: larger;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
}
.account-table th,
.account-table td {
  padding: 1rem;
  border-top: 1px solid #bcae8f;
  border-bottom: 1px solid #bcae8f;
  text-align: left;
}
.account-table th:last-child,
.account-table td:last-child {
  text-align: center;
}
.account-table thead th,
.account-table thead td {
  background: #e2d1af;
}
.account-table tbody tr:nth-child(2n) {
  background: #fbfbfa;
}
.account-table a .svg-icon {
  color: #ffd344;
  font-size: 4rem;
}
.account-table a:hover .svg-icon,
.account-table a:focus .svg-icon {
  color: #4f4f48;
}
.account-summary {
  margin-top: 6rem;
  margin-bottom: 4rem;
}
.account-summary .title--2,
.account-summary .edito h2,
.edito .account-summary h2 {
  margin-bottom: 1rem;
}
.account-summary ul {
  margin-bottom: 4rem;
}
.account-summary ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: -1px;
  padding: 1rem 0;
  border-top: 1px solid #e2d1af;
  border-bottom: 1px solid #e2d1af;
}
.account-summary ul li.account-summary__buttons {
  border-top: none;
  border-bottom: none;
  justify-content: flex-start;
  padding-top: 2rem;
}
.account-summary ul li.account-summary__buttons .button {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.account-summary ul li.account-summary__buttons .button:last-child {
  margin-right: 0;
}
.account-summary ul li > div:last-child {
  text-align: right;
}
.account-summary ul li > div:only-child {
  text-align: left;
}
.account-frame {
  padding: 2rem;
  border: 1px solid #bcae8f;
}
.account-frame ul {
  border-top: 0.5rem solid #ebebe9;
  padding: 1rem 0;
  margin: 0;
}
.account-frame ul:first-child {
  padding-top: 0;
  border-top: 0;
}
.account-frame ul:last-child {
  margin-bottom: 0;
}
.account-frame ul li:first-child {
  border-top: none;
}

.desktop-only,
.tablet-only,
.extra-mobile-only {
  display: none !important;
}

@media screen and (max-width: 38.75em) {
  .account-table tr td a,
  .account-table tr th a {
    display: flex;
    align-items: center;
  }
  .extra-mobile-only {
    display: block !important;
  }
  .extra-mobile-only.inline {
    display: inline !important;
  }
  .no-extra-mobile {
    display: none !important;
  }
  .account-frame {
    padding: 2rem;
  }
  .account-frame ul {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
  .account-table tr {
    position: relative;
    display: block;
    margin-top: -1px;
    padding: 1rem 0;
    border-top: 1px solid #e2d1af;
    border-bottom: 1px solid #e2d1af;
  }
  .account-table tr td,
  .account-table tr th {
    display: block;
    padding: 0;
    border: none;
  }
  .account-table tr td:last-child,
  .account-table tr th:last-child {
    text-align: left;
  }
  .account-table tr td a,
  .account-table tr th a {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 63.125em) {
  p,
  li,
  a,
  button,
  address,
  label,
  input,
  select,
  textarea,
  table {
    font-size: 12px;
  }
}
.txt-c {
  text-align: center !important;
}

.btn-modifier {
margin-bottom:20px;height:25px
}

.text-address{
font-size:smaller; color: var(--grey-mid); font-weight:700
}

.bloc-adresse-recap {
padding-bottom:2rem
}

.bloc-title-btn-adr-recap {
display: flex;justify-content: space-between;margin-bottom: 0.5rem;
}

@media (max-width: 850px) {
	.formdecoAccount{
	margin: auto;
	}
	.fil-ariane-account {
	    margin-left: 0.5rem!important;
	}
	.payment--info.svelte-186ttvs .onoff-field .icon.svelte-186ttvs.svelte-186ttvs {
    width: 26px;
	}
	
	.payment--wrapper .onoff-field {
	    font-size: 0.9rem;
	}
	
	.bloc-adresse-recap h4 {
	font-size: 0.9rem;
	}
  .content-cart-info-item {
    flex-direction: column;
  }
  .title-item-cart {
    padding-bottom: 13px;
    padding-top: 30px;
    text-align: center;
  }
  .details--data.svelte-1iohgyr .offer.svelte-1iohgyr .types {
    /*justify-content: center;
    padding-right: 0;*/
  }
  .price-cart-item {
    display: flex;
    justify-content: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    align-items: end;
    width: min-content;
    width: 100%;
    min-height: auto;
  }
  .offer.cart {
    flex-direction: column !important;
  }
  .btn--medium {
    padding: 8px var(--space-1);
    font-size: 0.8rem;
  }
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.field-33.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 400px;
  background-color: #878787;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.field-100.tooltip .tooltiptext {
  visibility: hidden;
  /*min-width: 400px;*/
  background-color: #878787;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
  /*margin-left: -60px;*/

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-arrow-tooltip-0);
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

p.pwdInfoCls {
	margin:0
}

/* Tooltip container */
.tooltip-confmdp {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.field-33.tooltip-confmdp .tooltiptext-confmdp {
  visibility: hidden;
  min-width: 400px;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.field-100.tooltip-confmdp .tooltiptext-confmdp {
  visibility: hidden;
  /*min-width: 400px;*/
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
  /*margin-left: -60px;*/

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltiptext-confmdp {
  background-color: #878787;
  color: #fff;
}

.tooltiptext-confmdp.red {
  background-color: red;
  color: #fff;
}

.tooltiptext-confmdp.green {
  background-color: green;
  color: #fff;
}

/* Tooltip arrow */
.tooltip-confmdp .tooltiptext-confmdp::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #878787 transparent transparent transparent;
}

.tooltip-confmdp .tooltiptext-confmdp::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #878787 transparent transparent transparent;
}

.tooltip-confmdp .tooltiptext-confmdp.red::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: red transparent transparent transparent;
}

.tooltip-confmdp .tooltiptext-confmdp.green::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: green transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-confmdp:hover .tooltiptext-confmdp {
  visibility: visible;
  opacity: 1;
}

/*Tooltip adrmail */
/* Tooltip container */
.tooltip-adrmail {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.field-33.tooltip-adrmail .tooltiptext-adrmail {
  visibility: hidden;
  min-width: 400px;
  background-color: red;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.field-100.tooltip-adrmail .tooltiptext-adrmail {
  visibility: hidden;
  /*min-width: 400px;*/
  background-color: red;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /*left: 50%;*/
 /* margin-left: -60px;*/

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip-adrmail .tooltiptext-adrmail::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-arrow-tooltip-error);
}

/* Show the tooltip text when you mouse over the tooltip container */
/*.tooltip-adrmail:hover .tooltiptext-adrmail {
  visibility: visible;
  opacity: 1;
}*/
.bloc-title-tunnel {
	display:flex;
}
a.back-desactivated {
	color : var(--grey-mid);
	position: absolute;
	left: -2.5%;
	transform: translate(-50%);
}
a.back-activated {
	color : var(--red-spirou);
	position: absolute;
	left: -2.5%;
	transform: translate(-50%);
}
@media (max-width: 992px) {
	a.back-desactivated {
		display:none
	}
	a.back-activated {
		display:none
	}
}

button.step p {
	font-size: inherit;
}
button.step .t-c p {
	font-size: inherit;
}
@media (max-width: 992px) {
	button.step p {
	font-size: 0.6rem;
	}
	button.step .t-c p {
		font-size: 0.8rem;
	}
}

/*
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/

.select-div {
	position:relative;
}

.select-div:after {
	content: "";
    background-image: url(../img/caret-down-solid.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 3.5%;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    height: 0.8rem;
    width: 0.8rem;
    pointer-events: none;
}

@media screen and (max-width: 63.125em) {
	.tooltip-adrmail .tooltiptext-adrmail, .tooltip-confmdp .tooltiptext-confmdp, .tooltip .tooltiptext {
		font-size:12px !important
	}
}

@media (max-width: 800px) {
	.tooltiptext {
		min-width: auto !important;
	}
	
	.tooltip-adrmail .tooltiptext-adrmail, .tooltip-confmdp .tooltiptext-confmdp, .tooltip .tooltiptext {
		margin-left: auto !important;
		min-width: auto !important;
	}
}

.infobulle-inscription {
    position: absolute;
    padding: 0.5rem 1rem;
    font-size: 0.8em;
    text-align: center;
    background: var(--white);
    -webkit-appearance: none;
    box-shadow: var(--box-shadow);
    pointer-events: none;
    min-width: 260px;
    min-height: 80px;
    left: 0;
    z-index: 10;
}

@media (min-width: 992px) {
	.infobulle-inscription {
	    position: absolute;
	    padding: 0.5rem 1rem;
	    font-size: 0.8em;
	    text-align: left;
	    background: var(--white);
	    -webkit-appearance: none;
	    box-shadow: var(--box-shadow);
	    pointer-events: none;
	    /* bottom: 80%; */
	    left: 50%;
	    /* transform: translateX(20%); */
	    z-index: 10;
	}
}

.contenu-avis {
	font-size:15px;
	max-height: 110px;
}

.infoObligatoire {
	font-style: italic;
    font-size: 11px;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.infoObligatoire2 {
	font-style: italic;
    font-size: 11px;
    margin-top: -2rem;
    margin-bottom: 1.5rem;
}
.definitions-term {
	font-weight:bold
}

.d-flex{display:flex;}
.justify-content-around{justify-content: space-around;}
.flex-column{flex-direction:column;}
.text-center{text-align: center;}
.w-100{width:100%;}
.mt-5{
	margin-top: 3rem !important
}
.me-0 {
	margin-right: 0 !important
}

.me-1 {
	margin-right: .25rem !important
}

.me-2 {
	margin-right: .5rem !important
}

.me-3 {
	margin-right: 1rem !important
}

.me-4 {
	margin-right: 1.5rem !important
}

.me-5 {
	margin-right: 3rem !important
}

.me-auto {
	margin-right: auto !important
}

.mb-0 {
	margin-bottom: 0 !important
}

.mb-1 {
	margin-bottom: .25rem !important
}

.mb-2 {
	margin-bottom: .5rem !important
}

.mb-3 {
	margin-bottom: 1rem !important
}

.mb-4 {
	margin-bottom: 1.5rem !important
}

.mb-5 {
	margin-bottom: 3rem !important
}

.mb-auto {
	margin-bottom: auto !important
}
.box-shadowed{
    box-shadow: var(--box-shadow);
}

.p-0 {
	padding: 0 !important
}

.p-1 {
	padding: .25rem !important
}

.p-2 {
	padding: .5rem !important
}

.p-3 {
	padding: 1rem !important
}

.p-4 {
	padding: 1.5rem !important
}

.p-5 {
	padding: 3rem !important
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important
}

.px-1 {
	padding-right: .25rem !important;
	padding-left: .25rem !important
}

.px-2 {
	padding-right: .5rem !important;
	padding-left: .5rem !important
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important
}

.px-4 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important
}

.px-5 {
	padding-right: 3rem !important;
	padding-left: 3rem !important
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important
}

.py-1 {
	padding-top: .25rem !important;
	padding-bottom: .25rem !important
}

.py-2 {
	padding-top: .5rem !important;
	padding-bottom: .5rem !important
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important
}

.pt-0 {
	padding-top: 0 !important
}

.pt-1 {
	padding-top: .25rem !important
}

.pt-2 {
	padding-top: .5rem !important
}

.pt-3 {
	padding-top: 1rem !important
}

.pt-4 {
	padding-top: 1.5rem !important
}

.pt-5 {
	padding-top: 3rem !important
}

.pe-0 {
	padding-right: 0 !important
}

.pe-1 {
	padding-right: .25rem !important
}

.pe-2 {
	padding-right: .5rem !important
}

.pe-3 {
	padding-right: 1rem !important
}

.pe-4 {
	padding-right: 1.5rem !important
}

.pe-5 {
	padding-right: 3rem !important
}

.pb-0 {
	padding-bottom: 0 !important
}

.pb-1 {
	padding-bottom: .25rem !important
}

.pb-2 {
	padding-bottom: .5rem !important
}

.pb-3 {
	padding-bottom: 1rem !important
}

.pb-4 {
	padding-bottom: 1.5rem !important
}

.pb-5 {
	padding-bottom: 3rem !important
}

.ps-0 {
	padding-left: 0 !important
}

.ps-1 {
	padding-left: .25rem !important
}

.ps-2 {
	padding-left: .5rem !important
}

.ps-3 {
	padding-left: 1rem !important
}

.ps-4 {
	padding-left: 1.5rem !important
}

.ps-5 {
	padding-left: 3rem !important
}

#cancellationReasons tr {
    display: flex;
    flex-direction: column;
}
#cancellationReasons td{
  margin-bottom:10px;
}
.w-fit-content{
	width:fit-content;
}
.align-self-center{
    align-self: center;
}
.text-underline{text-decoration: underline;}
.b-radius-25{border-radius: 25px;}
.errorCenteredMsg {
    color: var(--red-spirou);
    width: fit-content;
    display: block;
    margin: auto;
    font-weight: bold;
}
.asterisque-obligatoire{
	color:grey;
	font-size:12px;
	font-style: italic;
}
.cancellationReasonList li {
	list-style-type: none;
}
.header-saisonnalite {
	top:61px !important
}
.saisonnalite-text {
	text-align:center;
	position: sticky;
	top: 0;
	background: white;
	z-index: 10;
	font-size: 1.5em;
	padding: 1rem 0;
	font-weight: bold;
	text-transform: uppercase;
}
.saisonnalite-text h1, 
.saisonnalite-text h2, 
.saisonnalite-text h3, 
.saisonnalite-text h4, 
.saisonnalite-text h5, 
.saisonnalite-text h6,
.saisonnalite-text p,
.saisonnalite-text div {
	margin-bottom:0
}

.aupremierplan{
	position: relative;
	z-index:100;
}

.img1-saisonnalite {
	position: absolute;
	left: 15%;
	bottom: -7%;
	max-height: 130px;
}
.img2-saisonnalite {
	position: absolute;
	bottom: 10%;
	right: 31%;
	max-height: 95px;
}
.img3-saisonnalite {
	position: absolute;
	right: -14%;
	bottom: 0;
	z-index: 0;
	max-width:235px
}
.img4-saisonnalite {
	position: absolute;
	top: 5%;
	left: -3%;
	z-index: 0;
	max-width:281px
}
.img5-saisonnalite {
	position: absolute;
	right: -6%;
	top: 5%;
	z-index: 0;
	max-width:324px
}

@media (max-width: 1300px) {
	.img1-saisonnalite {
		position: absolute;
		left: 5%;
		bottom: -7%;
		max-height: 130px;
	}
	.img2-saisonnalite {
		position: absolute;
		bottom: 46px;
		right: 179px;
		max-height: 95px;
	}
	.img3-saisonnalite {
		position: absolute;
		right: 0%;
		bottom: 25%;
		max-width: 100px;
		z-index: 0
	}
	.img4-saisonnalite {
		position: absolute;
		top: 4%;
		left: -5%;
		z-index: 0
	}
	.img5-saisonnalite {
		position: absolute;
		right: -5%;
		top: 4%;
		z-index: 0
	}
}

@media (max-width: 1030px) {
	.img4-saisonnalite {
		max-width: 220px;
		top: 6%;
		left: -5%;
		z-index: 0
	}
	.img5-saisonnalite {
		max-width: 220px;
		right: -5%;
		top: 6%;
		z-index: 0;
	}
}

@media (max-width: 991px) {
	.img1-saisonnalite {
		position: absolute;
		left: 1%;
		bottom: -16%;
		max-height: 105px;
	}
	.img2-saisonnalite {
		position: absolute;
		bottom: 10%;
		right: 39%;
		max-height: 95px;
	}
	.img3-saisonnalite {
		position: absolute;
		right: 2%;
		bottom: 11%;
		max-width: 100px;
		z-index: 0
	}
	.img4-saisonnalite {
		position: absolute;
		top: 12%;
		left: -4%;
		max-width: 160px;
		z-index: 0
	}
	.img5-saisonnalite {
		position: absolute;
		right: -4%;
		top: 12%;
		max-width: 177px;
		z-index: 0;
	}
}

@media (max-width: 834px) {
	.img1-saisonnalite {
		position: absolute;
		left: 1%;
		bottom: -16%;
		max-height: 105px;
	}
	.img2-saisonnalite {
		position: absolute;
		bottom: 10%;
		right: 38%;
		max-height: 95px;
	}
	.img3-saisonnalite {
		position: absolute;
		right: 2%;
		bottom: 11%;
		max-width: 100px;
		z-index: 0
	}
	.img4-saisonnalite {
		position: absolute;
		top: 0%;
		left: -5%;
		max-width: 160px;
		z-index: 0
	}
	.img5-saisonnalite {
		position: absolute;
		right: -5%;
		top: 0%;
		max-width: 177px;
		z-index: 0;
	}
}

@media (max-width: 834px) {
	.img1-saisonnalite {
		position: absolute;
		left: 1%;
		bottom: -16%;
		max-height: 105px;
	}
	.img2-saisonnalite {
		position: absolute;
		bottom: 10%;
		right: 38%;
		max-height: 95px;
	}
	.img3-saisonnalite {
		position: absolute;
		right: 2%;
		bottom: 11%;
		max-width: 100px;
		z-index: 0
	}
	.img4-saisonnalite {
		position: absolute;
		top: 0%;
		left: -5%;
		max-width: 160px;
		z-index: 0
	}
	.img5-saisonnalite {
		position: absolute;
		right: -5%;
		top: 0%;
		max-width: 177px;
		z-index: 0;
	}
}

@media (max-width: 430px) {
	.img1-saisonnalite {
		position: absolute;
		left: 1%;
		bottom: -16%;
		max-height: 94px;
	}
	.img2-saisonnalite {
		position: absolute;
		bottom: 10%;
		right: 28%;
		max-height: 95px;
	}
	.img3-saisonnalite {
		position: absolute;
		right: 2%;
		bottom: 11%;
		max-width: 100px;
		z-index: 0
	}
	.img4-saisonnalite {
		position: absolute;
		top: 0%;
		left: -5%;
		max-width: 75px;
		z-index: 0
	}
	.img5-saisonnalite {
		position: absolute;
		right: -5%;
		top: 0%;
		max-width: 88px;
		z-index: 0;
	}
	.header-saisonnalite {
		top:90px !important
	}
}

@media (max-width: 360px) {
	.img1-saisonnalite {
		position: absolute;
		left: 1%;
		bottom: 0%;
		max-width: 86px;
	}
}

.offers__items.svelte-1b13zgf .item.bgptspirou-noshow:nth-of-type(3):before {
	background-image:none !important;
}
