/*
** Feuille de style complémentaire
*/

body #container .h1-souligne {
 font-size:2.5em;
 font-weight:200;
}
body #container .h1-souligne span,
body #container .h1-souligne strong {
 font-weight:700;
}
body #container .h1-souligne:after {
 content:"";
 display:block;
 height:10px;
 width:100px;
 background:#23b8cd;
 margin-top:15px;
 margin-bottom:25px;
}
body #container .h1-souligne span {
 display:block;
 margin-top:5px;
}

/* ----------------------------------CSS NOUVELLE PAGE CHEQUES CADEAUX---------------------------------- */

/* BLOC HEADER DU CHEQUE */
.btn_cheque {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 0 16px;
  cursor: pointer;
}

.btn--cta {
  background-color: #23b8cd;
  border-radius: 30px;
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 0.2s ease-in-out; 
}

.btn--cta:hover {
  background-color: #ffffff;
  color: #23b8cd;
  border: 2px #23b8cd solid;
  transition: all 0.2s ease-in-out; 
}

.cheque__header {
  padding-top: 4%;
  padding-bottom: 4%;
}

.cheque__header__title {
  font-size: 4.5rem;
  font-weight: 500;
  color: #354d68;
  text-align: left;
  margin: 0 32% 3% 10%;
  text-transform: initial;
  line-height: 0.9em;
}

.cheque__header__chapeau {
  font-size: 2rem;
  color: #a4afbb;
  text-align: left;
  display: flex;
  align-items: center;
  padding-right: 12%;
  line-height: 1.2em;
}

.cheque__header__theme {
  display: flex;
  justify-content: center;
  margin-bottom: -150px;
}

.cheque__header__theme__figure {
  position: relative;
  transform: perspective(60cm) rotateX(35deg);
  display: flex;
}

.cheque__header__theme__figure #theme {
  display: block;
  width: 45vw;
  border-radius: 1vw;
  box-shadow: 0px 20px 20px 5px rgba(0, 0, 0, 0.15);
  border: 2px #ffffff solid;
}

.cheque__header__theme__figure #montant_dans_theme {
  font-size: 6vw;
  font-weight: 500;
  color: #ffffff;
  transform: perspective(40cm) rotateX(30deg);
  text-align: right;
  position: absolute;
  right: 28%;
  top: 30%;
} 

.img_texte {
  display: flex;
  flex-direction: row-reverse;
  margin-left: 8%;
  gap: 5%;
}

.img_texte:nth-child(2) {
  order: 2;
}/* fin BLOC HEADER CHEQUE */

/* BLOC PERSONNALISATION CHEQUE */
.cheque__form {
  background-color: #354d68;
  color: #ffffff;
  text-align: center;
  padding: 8% 8% 3% 8%;
  margin: initial;
}

.container-div {
  display: flex;
  width: 100%;
}

.content-div {
  width: 55%;
}

.content-div .change_visuel {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.last_fieldset {
  width: 45%;
}

#select-themes option {
  background-color: #354d68;
}

.span_euro {
  font-size: 6rem;
  font-weight: 500;
}

.proposition-montant label:nth-child(2) {
  margin-bottom: 5px;
}

.input_cursor_montant {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* enlever fleche haut et bas input choix valeur */
.input_cursor_montant input[type="number"]::-webkit-outer-spin-button,
.input_cursor_montant input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
    margin: 0;
}

/* pareil mais sur firefox */
.input_cursor_montant input[type="number"] {
  -moz-appearance:textfield;
}

.input_cursor_montant label[for="exp"] {
  font-size: 1.4rem;
}

.montant_perso {
  display: block;
  text-align: left;
}

/* style spécifique à l'input type range */

.montant_perso input[type="range"] {
  margin-top: 20px;
  font-size: 1.5rem;
  width: 10em;
  color: #23b8cd;
  position: relative;
  overflow: hidden;
  --thumb-height: 18px;
  --track-height: 0.125em;
  --track-color: #556a82;
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
  background-color: #354d68;
}

/* === WebKit specific styles === */
.montant_perso input[type="range"],
.montant_perso input[type="range"]::-webkit-slider-runnable-track,
.montant_perso input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

.montant_perso input[type="range"]::-webkit-slider-runnable-track,
.montant_perso input[type="range"]::-webkit-slider-thumb {
  position: relative;
}

.montant_perso input[type="range"]::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
    100vmax currentColor;

  width: var(--thumb-width, var(--thumb-height));
  
  border: 2px #23b8cd solid;
  background-color: #354d68;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));

  filter: brightness(100%);
  clip-path: polygon(
    100% -1px,
    var(--clip-edges) -1px,
    0 var(--clip-top),
    -100vmax var(--clip-top),
    -100vmax var(--clip-bottom),
    0 var(--clip-bottom),
    var(--clip-edges) 100%,
    var(--clip-further) var(--clip-further)
  );
}

.montant_perso input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
    100% calc(var(--track-height) + 1px);
}

/* === Firefox specific styles === */
.montant_perso input[type="range"],
.montant_perso input[type="range"]::-moz-range-track,
.montant_perso input[type="range"]::-moz-range-thumb {
  appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

.montant_perso input[type="range"]::-moz-range-track,
.montant_perso input[type="range"]::-moz-range-thumb,
.montant_perso input[type="range"]::-moz-range-progress {
  background: #fff0;
}

.montant_perso input[type="range"]::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-width, var(--thumb-height));
  border-radius: var(--thumb-width, var(--thumb-height));
  cursor: grab;
}

.montant_perso input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
}

.montant_perso input[type="range"]::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}

.montant_perso input[type="range"]::-moz-range-progress {
  appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}

.montant_perso input[type="range"]::-moz-range-track,
.montant_perso input[type="range"]::-moz-range-progress {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}

.montant_perso input[type="range"]::-moz-range-thumb,
.montant_perso input[type="range"]::-moz-range-progress {
  filter: brightness(100%);
}

/* fin style input type range */

.btn--form {
  background-color: #576c84;
  border: 1px solid #a4afbb;
  border-radius: 10px;
  line-height: 2rem;
  color: #ffffff;
}

.btn_mobile {
  display: none;
  transition: all 0.2s ease-in-out;
}

.btn_desktop {
  display: inline-flex;
  transition: all 0.2s ease-in-out; 
}

.btn_mobile:hover, 
.btn_desktop:hover {
  background-color: #23b8cd;
  transition: all 0.2s ease-in-out;
  color: inherit;
}

.chevron_gauche:before, 
.chevron_droit:before {
  border-style: solid;
  border-width: 0.10em 0.10em 0 0;
  content: '';
  display: inline-block;
  height: 0.30em;
  position: relative;
  top: 0.30em;
  vertical-align: top;
  width: 0.30em;
  border-radius: 1px;
  font-size: 2rem;
}

.chevron_gauche:before {
  left: 0.13em;
  transform: rotate(-135deg);
  margin-right: 10px;
}

.chevron_droit:before {
  right: 0.13em;
  transform: rotate(45deg);
  margin-left: 10px;
}

#themes {
  width: 350px;
  border-bottom: 1px solid;
}

.fieldset_submit {
  margin-bottom: 0;
}

.fav-montant, .required_fields {
  color: #23b8cd;
}

.required_fields {
  margin-bottom: 10px;
  margin-top: 10px;
}

.fav-montant::before {
  content:"\002605"
}

.cheque__form__step {
  margin-bottom: 50px;
  text-align: center;
}

.cheque__form__step img{
  width: 60px;
  height: 60px;
  vertical-align: middle;
}

.cheque__form__step p {
  text-align: center;
  font-size: 1rem;
}

.cheque__form__step hr{
  border: none;
  border-top: 1px #FFF solid;
  margin: 0 40% 5% 40%;
}

.cheque__form__step__title {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 30px;
}

.cheque__form__step input[type=number] {
  color: #ffffff;
  text-align: inherit;
  background-color: inherit;
  font-size: 6rem;
  width: 200px;
  border: none;
  font-weight: 500;
  font-family: "Gilroy", Arial, sans-serif;
}

.cheque__form__step input[type=radio]:checked, .cheque__form__step input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  visibility: hidden;
}

.cheque__form__step .proposition-montant {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.cheque__form__step .proposition-montant .choix-montant + label {
  position: relative;
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #a4afbb;
  border-radius: 60px;
  cursor: pointer;
  background-color: #576c84;
  transition: all 0.2s ease-in-out; 
}

.cheque__form__step .proposition-montant .choix-montant:hover + label:hover {
  background-color: #23b8cd;
  border: 2px solid #23b8cd;
  transition: all 0.2s ease-in-out; 
}

.cheque__form__step .proposition-montant label[for="montant-02"] {
  border: 2px solid #23b8cd;
}

.cheque__form__step .proposition-montant .choix-montant + label .choix-montant:not(:checked) + label {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: linear-gradient(138deg, var(--red), var(--yellow));
  z-index: -1;
}

.cheque__form__step .text {
  display: flex;
  flex-direction: column;
}

.cheque__form__step .text label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: inherit;
}

.cheque__form__step .text .champs-txt {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #a4afbb;
  color: #ffffff;
  background-color: #576c84;
  margin-bottom: 10px;
  font-family: "Gilroy", Arial, sans-serif;
}

.cheque__form__step .text .champs-txt input[name="email"] {
  margin-bottom: 0;
}

.cheque__form__step .text .champs-txt::-moz-placeholder {
  color: #a4afbb;
}

.cheque__form__step .text .champs-txt::placeholder {
  color: #a4afbb;
}

.cheque__form__step .text .champs-txt:focus {
  border-color: #23b8cd;
}

.icon_payment {
  margin-top: 15px;
}

.icon_payment img {
  height: 30px;
  width: 30px;
}
/*  */

/* BANDEAU SERVICES */
.cheque__services {
  display: flex !important;
  justify-content: space-evenly;
  align-items: center;
  background-color: #eeeeee;
  padding: 90px 24px;
}

.cheque__services__content {
  width: 20%;
  height: 12rem;
}

.cheque__services__content__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.cheque__services__content__icon .icon {
  max-width: 35vw;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cheque__services__content__caption {
  text-align: center;
  color: #354d68;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 24px;
  padding: 0 22%;
} /* fin bandeau services */

/* FAQ */
.faq {
  text-align: center;
  margin: 4% 0;
  color: #354d68;
  display: block !important;
}

.faq__header h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.faq__header p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.faq_all_dropdown {
  padding: 0 10%;
  text-align: left;
}

.faq__dropdown {
  margin: 3% 0;
}

.faq__dropdown__title {
  border: 2px #354d68 solid;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}

.faq__dropdown__title:hover, 
.faq__dropdown__title.active {
  background-color: #354d68;
  color: #FFF;
  transition: all 0.2s ease-in-out;
}

.faq__dropdown__title:hover img {
  filter: brightness(0) invert(1);
}

.faq__dropdown h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.faq__dropdown p {
  font-size: 1.2rem;
  background-color: #eeeeee;
  color: #737373;
  padding: 20px;
}

.faq_toggle-icon {
  width: 24px;
  height: 24px;
}

.faq__dropdown__text--hidden .plus-icon {
  display: inline;
}

.faq__dropdown__text--hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.faq__dropdown__text--hidden .link {
  color: #23b8cd;
  text-decoration: none;
} /* fin FAQ */

/* PAGE PANIER */

.links {
  margin-top: 5rem;
  margin-left: 12rem;
}

.links a {
  text-decoration: none;
  font-style: italic;
  color: #354d68;
}

.links a:first-child {
  font-weight: 500;
}

.panier__header {
  color: #354d68;
  display: flex;
  justify-content: center;
}

.panier__header hr {
  border: 1px solid #354d68;
}

.parcours_client {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parcours_client span {
  font-size: inherit;
  display: grid;
  text-align: center;
  padding: 20px 20px 0 20px;
}

.parcours_client .second_span_parcours {
  padding: 20px 30px 0 30px;
}

.parcours_client hr {
  width: 8rem;
}

.parcours_client img {
  margin-bottom: 10px;
  height: 80px;
  width: 80px;
}

.content_panier {
  display: flex;
  width: 100%;
  gap: 5%;
  margin: 2% 0;
}

.content_panier .div_gauche {
  width: 50%;
  margin-left: 10rem;
}

.content_panier .div_droite {
  width: 35%;
  margin-right: 10rem;
}

.content_panier legend{
  color: #354d68;
}

.content_panier .text {
  background-color: #354d68;
  color: #FFFFFF;
  border-radius: 30px;
}

.recap {
  color: #354d68;
}

.recap .rubriques_cheque {
  width: 100%;
  display: flex;
}

.recap .rubriques_cheque span:first-child {
  width: 38%;
}

.recap .rubriques_cheque span:nth-child(2) {
  width: 23%;
}

.recap hr {
  border: 1px #9c9c9c solid;
}

.section_promo {
  text-align: center;
  margin: 10px 0;
}

.section_promo input[type="text"] {
  text-align: center;
}

.section_promo input:first-child {
  margin-right: 20px;
}

.btn_submit {
  padding: 10px 5%;
  border: 2px #23b8cd solid;
  height: inherit;
}

.coordonnees {
  text-align: left;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.coordonnees div:first-of-type {
  display: flex;
}

.coordonnees #confirmation_code_promo {
  display: inherit;
}

.coordonnees input[type="radio"] {
  position: inherit !important;
  left: inherit !important;
  width: inherit !important;
  height: inherit !important;
  visibility: inherit !important;
}

.coordonnees hr {
  margin: inherit;
}

.coordonnees .checkmark_radio {
  background-color: #576c84;
  border: 1px #FFFFFF solid;
  height: 15px;
  width: 15px;
}

.coordonnees .checkmark_radio:after {
  top: 0 !important;
  left: 0 !important;
  width: 10px !important;
  height: 10px !important;
}

.coordonnees .container_radio {
  padding-left: 20px;
}

.coordonnees .span_note {
  font-size: 14px;
}

.infos_cheque {
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.15) 0px 0px 20px 0px;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 10px;
  padding: 20px;
  justify-content: space-between;
}

.infos_cheque div {
  display: grid;
}

.infos_cheque .img_montant {
  position: relative;
}

.infos_cheque .div_infos_mobile {
  display: contents;
}

.div_infos_mobile hr {
  display: none;
}

.infos_cheque .first_span {
  font-weight: initial;
}

/* le visuel du cheque */
.infos_cheque img:first-of-type {
  height: 100px;
  width: 100%;
}

.div_nom_theme {
  min-width: 120px;
  text-align: center;
}


/* le nom du theme */
.infos_cheque .nom_theme {
  text-decoration: underline;
}

.nom_theme a {
  color:#354d68;
}

/* le montant du cheque */
.infos_cheque .montant_cheque {
  border: 1px #354d68 solid;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
}

/* les images du bloc, sauf l'image du visuel du chèque */
.infos_cheque img:not(.visuel_cheque){
  height: 35px;
  width: 35px;
}

/* icone poubelle */
.infos_cheque .icone_poubelle:hover {
  filter: invert(12%) sepia(100%) saturate(4233%) hue-rotate(356deg) brightness(118%) contrast(120%);
}

.infos_cheque span, .infos_cheque a {
  align-self: center;
}

.infos_cheque p {
  display: none;
}

.infos_cheque div .picto_responsive, .infos_cheque div img:not(.visuel_cheque) {
  display: none;
}

.infos_cheque #montant_dans_theme {
  position:absolute;
  left:55%;
  top:15%;
  color:#FFFFFF;
  font-size:1.6rem;
  font-weight: 500;
}

.options_paiement {
  display: flex;
  justify-content: center;
  align-items: center;
}

.options_paiement .container_radio {
  visibility: hidden;
}

.add_cheque {
  text-align: center;
  margin-top: 30px;
}

.add_cheque a {
  text-decoration: none;
}

.add_cheque span {
  margin-right: 10px;
  font-size: 3rem;
}

.add_cheque .btn--cta {
  background-color: #FFFFFF;
  color: #23b8cd;
  border: 2px #23b8cd solid;
}

.add_cheque .btn--cta:hover {
  background-color: #23b8cd;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out; 
}

.legend_inherit {
  text-align: inherit;
  margin-bottom: inherit;
}

.icon_payment {
  margin-top: 15px;
}

.icon_payment img {
  height: 30px;
  width: 30px;
}

.radio_checkbox_group {
  display: flex;
  align-items: center;
}

.radio_checkbox_group:first-of-type {
  margin-right: 60px;
}

.radio_checkbox_group input {
  margin-right: 5px;
  align-self: baseline;
}

.radio_checkbox_group label {
  margin-bottom: inherit !important;
  display: block !important;
  font-size: 14px !important;
}

.radio_checkbox_group #label_cgv {
  padding-left: 20px;
  cursor: default;
}

.btn_payment {
  margin-top: 20px;
  text-align: center;
}

.btn_payment input {
  padding: 10px 15%;
}

.disabled_button {
  background-color: #576c84;
  color: #8e9fb0;
  border: 2px #8e9fb0 solid !important;
  cursor: auto;
}

.disabled_button:hover {
  background-color: #576c84;
  color: #8e9fb0;
  border: 2px #8e9fb0 solid !important;
}

.cp_ville {
  display: flex;
  width: 100%;
}

.cp_ville br {
  display: none;
}

.cp_ville div:nth-child(1) {
  width: 30%;
  margin-right: 10px;
}

.cp_ville div:last-child {
  width: 70%;
}

.cp_ville input, .cp_ville select {
  width: 100%;
}
.cp_ville #ville {
  padding: 12px 0;
}

/* Checkbox + label */
.custom_checkbox {
  display: block;
  position: relative;
  padding-left: 20px;
  color: #FFF;
}

/* On cache la checkbox par défaut du navigateur */
.custom_checkbox input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.custom_checkbox a {
  color: #FFFFFF;
}

.custom_checkbox a:hover {
  color: #FFFFFF;
}

/* Custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 13px;
  width: 13px;
  background-color: #576c84;
  border: 1px solid #a4afbb;
  border-radius: 3px;
  cursor: pointer;
}

/* au survol, on change la border */
.checkmark:hover {
  border: 1px #23b8cd solid;
}

/* checkbox cochée, on change le bg et la border */
.custom_checkbox input:checked ~ .checkmark {
  background-color: #23b8cd;
  border: 1px solid #a4afbb;
}

.prix_ttc {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  font-size: 1.5rem;
}

.mt-10 {
  margin-top: 10px;
}

/* fin PAGE PANIER */


@media screen and (max-width: 1260px) {
  /* BLOC HEADER */
  .cheque__header__theme {
    margin-bottom: -100px;
  }

  .cheque__header__theme__figure {
    justify-content: center;
  }

  .cheque__header__theme__figure #theme {
    width: 85vw;
  }

  .cheque__header__theme__figure #montant_dans_theme {
    font-size: 10vw;
  } 

  .img_texte {
    display: block;
    margin-left: 0;
  }/* fin BLOC HEADER CHEQUE */

  /* BLOC PERSONNALISATION CHEQUE */
  .cheque__form {
    padding-top: 12%;
  }

  .container-div {
    display: block;
  }

  .content-div, .last_fieldset {
    width: initial;
  }

  .last_fieldset {
    margin-bottom: 0;
  }

  .btn_mobile {
    display: inline-flex;
  }
  
  .btn_desktop {
    display: none;
  }

  .chevron_gauche:before {
    margin-right: 0;
  }
  
  .chevron_droit:before {
    margin-left: 0;
  }

  .cheque__form__step {
    margin-top: 25px;
  }

  .cheque__form__step .proposition-montant .choix-montant + label {
    width: 90px;
  }

  .cheque__form__step__title {
    font-size: 2rem;
  }

  .cheque__form__step input[type=number] {
    width: 100px;
  }

  .input_cursor_montant {
    display: block;
  }

  .montant_perso {
    text-align: center;
  }

  .div_montant {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .input_cursor_montant label[for="exp"] {
    font-size: 1.2rem;
  }

  #montant {
    font-size: 5rem;
    width: 200px;
  }

  .span_euro {
    font-size: 5rem;
  }

  #themes {
    width: initial;
  }

  #themes span {
    font-size: 1.2rem;
  }
  /*  */

  /* bandeau services */
  .cheque__services {
    flex-direction: column;
    gap: 48px;
    padding: 50px 24px;
  }

  .cheque__services__content {
    width: inherit;
    height: inherit;
  }
  
  .cheque__services__content__icon {
    aspect-ratio: 3/1;
    height: inherit;
  }

  .cheque__services__content__icon .icon {
    width: 100px;
  }

  .cheque__services__content__icon .icon_calendrier {
    width: 90px;
  }
  
  .cheque__services__content__caption {
    padding: 0 34px;
  } /* fin bandeau services */

  /* FAQ */
  .faq {
    margin: 50px 0;
  }

  .faq h2 {
    font-size: 2.0rem;
  } 

  .faq__header p {
    font-size: 1.2rem;
  }

  .faq_all_dropdown {
    padding: 0 5%;
  }

  .faq__dropdown h3 {
    font-size: 1rem;
  }

  .faq__dropdown p {
    font-size: 1rem;
  }

  .faq img {
    margin-left: 20px;
  }/* fin FAQ */

  /* PAGE PANIER */

  .panier__header img, 
  .content_panier img {
    max-width: inherit;
  }

  .links {
    display: none;
  }

  .content_panier {
    display: block;
    margin: 10% 0;
  }

  .content_panier .div_gauche {
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
  }

  .content_panier .div_droite {
    margin: 3rem 1rem 0 1rem;
    width: auto;
  }

  .recap .rubriques_cheque span:nth-child(2) {
    display: none;
  }
  
  .recap .rubriques_cheque span:nth-child(3) {
    display: none;
  }

  .recap p {
    font-weight: initial;
  }

  .infos_cheque {
    display: block;
  }

  .infos_cheque div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .infos_cheque #montant_dans_theme {
    left: 60%;
    top: 15%;
    font-size: 1.2rem;
  }

  .infos_cheque .div_infos_mobile {
    display: flex;
    flex-direction: row;
  }

  .div_infos_mobile {
    justify-content: space-around;
    margin-top: 20px;
  }

  .div_infos_mobile div {
    display: block;
    text-align: center;
  }

  .div_infos_mobile p {
    margin-bottom: 20px;
  }

  .div_infos_mobile hr {
    display: block;
  }

  .infos_cheque p {
    display: block;
  }

  .infos_cheque div a, 
  .infos_cheque div img:not(.visuel_cheque) {
    display: block !important;
  }

  .infos_cheque .picto_responsive {
    margin-left: 10px;
  }

  .infos_cheque a, 
  .infos_cheque img:not(.visuel_cheque) {
    display: none;
  }

  .infos_cheque .visuel_cheque {
    margin-right: 20px;
    max-width: inherit;
  }

  .infos_cheque .montant_cheque {
    padding: 5px 30px;
  }

  .btn_payment input {
    padding: 10px 10%;
  }

  .cp_ville {
    display: block;
  }

  .cp_ville br {
    display: block;
  }

  .cp_ville div:nth-child(1) {
    width: inherit;
    margin-right: inherit;
  }

  .cp_ville div:last-child {
    width: inherit;
  }

  .section_promo {
    text-align: left;
    display: flex;
  }

  .section_promo .btn--cta {
    font-size: inherit;
  }

  .coordonnees {
    padding: 20px;
  }

  .coordonnees div:first-of-type {
    justify-content: center;
  }

  .section_promo input:first-child {
    margin-right: 15px;
  }

  /* fin PAGE PANIER */
}

/* corrections visuelles page cheque cadeau (pour le titre et sous titre) */
@media only screen and (min-width: 969px) and (max-width: 1400px) {
  .cheque__header__title {
    font-size: 5rem;
    margin: 0 10% 0 10%;
  }

  .cheque__header__chapeau {
    font-size: 2.6rem;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 968px) {
  .cheque__header__title {
    text-align: center;
    font-size: 2.6rem;
    margin: 0 8% 0 8%;
  }

  .cheque__header__chapeau {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
  }

  .infos_cheque img:not(.visuel_cheque){
    height: 30px;
    width: 30px;
  }
}

/* corrections visuelles page panier (pictos parcours client) */
@media only screen and (max-width: 968px) {
  .parcours_client hr {
    width: 2.5rem;
  }

  .parcours_client img {
    height: 70px;
    width: 70px;
  }

  .parcours_client span {
    padding: 20px 12px 0 12px;
    font-size: 12px;
  }
}

/* correction visuelle page panier petite tablette */
@media only screen and (min-width: 540px) and (max-width: 767px) {
  .montant_visuel {
    top: 30rem;
    left: 12rem;
  }

  .first_span {
    font-size: 1.2rem !important;
  }
}

/* correction visuelle page panier petite tablette */
@media only screen and (max-width: 767px) {
  .cheque__header__theme {
    margin-bottom: -60px;
  }

  .section_promo {
    justify-content: center;
  }

  .section_promo input:first-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .infos_cheque .visuel_cheque {
    height: 70px !important;
    width: 130px !important;
  }

  .infos_cheque #montant_dans_theme {
    left: 45%;
    top: 12%;
  }
}

/* corrections visuelles page panier pour tout type de tablette */
@media only screen and (min-width: 540px) and (max-width: 969px) {
  .infos_cheque div:first-of-type {
    justify-content: space-evenly;
  }
}

/* corrections visuelles page panier pour tablettes (sauf petites) */
@media only screen and (min-width: 767px) and (max-width: 969px) {
  .montant_visuel {
    top: 32.5rem;
    left: 16rem;
  }
}

/* corrections visuelles page panier très petits écrans */
@media only screen and (max-width: 380px) {
  .panier__header {
    display: flex;
    margin: 0 20px;
  }

  .montant_visuel {
    top: 27.5rem;
  }

  .section_promo {
    display: block;
    text-align: center;
  }

  .section_promo .btn_submit {
    margin-top: 20px;
  }

  .infos_cheque .visuel_cheque {
    height: 65px !important;
    width: 100px !important;
  }
}