
/* 
    Created on : 10/10/2025
    Author     : Alexis
*/

@import url('/assets/global/css/fonts/poppins.css');

/* Header Bands */


#band-logo {
  background-color: #ffffff;
  width: 100%;
  /* background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#band-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(1.1);
}

#band-logo::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Conteneur parent pour centrer */
body, html {

  width: 100%;
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  background-color: #F7F7F7; /* optionnel */
}

#wrapper{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #C92C31, #FF7175);
}

#chatbot {
  width: 100%;
  padding: 0px 30px 30px 30px;
  font-family: 'Poppins', Arial, sans-serif;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); léger ombrage */
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

/* Stepper Styles */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px 0;
}

/* Welcome Intro Styles */
.welcome-intro {
  margin-bottom: 20px;
  padding: 15px;
  background: #ffffff;
  border-radius: 12px;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.profile-text {
  flex: 1;
}

.big-text h2 {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0 0 0 0;
  color: #ffffff;
  font-size: 2em;
  line-height: 1.2;
  font-weight: 600;
  padding: 5px 0px;
}

.big-text h3 {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0 0 0 0;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.2;
  font-weight: 400;
  padding-bottom: 20px;
}

.profile-text p {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0 0 8px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.profile-text p:last-child {
  margin-bottom: 0;
}

.profile-text strong {
  color: #36404B;
  font-weight: 600;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.stepper-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #A12024;
  z-index: 1;
}

.stepper-step.completed::after {
  background-color: #ffffff;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #A12024;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.stepper-step.active .step-number {
  background-color: #ffffff;
  color: black;
}

.stepper-step.completed .step-number {
  background-color: #ffffff;
  color: black;
}


.step-label {
  font-size: 12px;
  color: #A12024;
  text-align: center;
}

.stepper-step.active .step-label {
  color: #ffffff;
  font-weight: bold;
}

.stepper-step.completed .step-label {
  color: #ffffff;
}

/* Models Grid Styles */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.model-option {
  border: 2px solid #EC1E24;
  width: 100%;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.model-option:hover {
  border-color: #EC1E24;
}

.model-option.selected {
  border-color: #EC1E24;
  background-color: #EC1E24;
}

.model-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 8px;
}

.model-option label {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
}

/* Model Description Styles */
.model-description {
  background-color: #ffffff;
  border: 2px solid #EC1E24;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.model-description .model-name {
  color: #36404B;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.model-description .model-desc {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}



/****ANNONCEURS PARTENAIRES ****/
#annonceurs.annonceurs {
  display:none;
  width:300px;
  background: #fff;
  padding:20px;
  text-align: center;
  z-index:99;
}
#annonceurs.annonceurs table {
  width:100%;
}
.annonceurs table td {
  padding:5px;
}
.annonceurs img {
  width:80%;
}



  
  /* Sur mobile, la description s'affiche sous le modèle sélectionné */
  .model-option {
    position: relative;
  }
  
  .model-option.selected {
    grid-column: 1 / -1; /* Prend toute la largeur sur mobile */
    margin-bottom: 10px;
  }
  
  /* Description mobile : positionnée sous le modèle sélectionné */
  .mobile-description {
    display: none;
  background-color: #ffffff;
  border: 2px solid #EC1E24;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    width: 100%;
  }
  
  .model-option.selected .mobile-description {
    display: block;
  }
  
  .mobile-description .model-name {
    color: #36404B;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .mobile-description .model-desc {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }

  /* Styles pour les boutons mobile dans la description */
  .mobile-button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
  }

  .mobile-back-btn {
    background-color: inherit;
    color: #36404B;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    padding: 8px 12px;
  }

  .mobile-next-btn {
    background-color: #EC1E24;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-next-btn:hover {
    background-color: #EC1E24;
  }
  
  /* Cacher la description globale sur mobile
  .model-description {
    display: none !important;
  } */

  /* Cacher les boutons desktop sur mobile */
  @media (max-width: 768px) {
    .desktop-button-group {
      display: none !important;
    }
  }

  /* Cacher les boutons mobile sur desktop */
  @media (min-width: 769px) {
    .mobile-button-group {
      display: none !important;
    }
  }

/* Popup Styles */
.info-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.info-popup {
  background-color: white;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  width: 800px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
  border-radius: 10px 10px 0 0;
}

.popup-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: #333;
}

.popup-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.popup-content .container.polluscore {
  max-width: none;
  padding: 0;
  margin: 0;
}

.popup-content .ml {
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

.popup-content .ml b {
  font-weight: 600;
  color: #222;
}

.popup-content .ml img {
  max-width: 100px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Empêcher le scroll du body quand la popup est ouverte */
body.popup-open {
  overflow: hidden;
}

/* Responsive pour la popup */
@media (max-width: 768px) {
  .info-popup {
    width: 95%;
    max-height: 95%;
  }
  
  .popup-header {
    padding: 15px;
  }
  
  .popup-header h3 {
    font-size: 16px;
  }
  
  .popup-content {
    padding: 15px;
  }
  
  .popup-content .ml {
    font-size: 11px;
  }
}

/* Button Group Styles */
.button-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 15px;
}

.back-btn {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: inherit;
  color: #36404B;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
}


.next-btn {
  background-color: #FFC125;
  color: black;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.next-btn:hover {
  background-color: #FFC125;
}

.next-btn.disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.next-btn.disabled:hover {
  background-color: #cccccc;
}

/* CTA Solicitar Styles */
.cta-solicitar {
  margin: 20px 0;
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border: 2px dashed #007bff;
}

.btn-solicitar {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-solicitar:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.btn-solicitar:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.btn-solicitar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-solicitar:hover::before {
  left: 100%;
}

/* Contact Form Styles */
.contact-form {
  margin: 0px 0;
}

.form-step {
  margin-bottom: 15px;
}

.form-step.hidden {
  display: none;
}

.contact-form .form-control {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form .form-control.error {
  border-color: #dc3545;
  background-color: #f8d7da;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
  display: block;
}

.contact-form select.form-control {
  background-color: white;
}

.next-form-btn, .finish-btn {
  background-color: #FFC125;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
}

.next-form-btn:hover, .finish-btn:hover {
  background-color: #FFC125;
}

.back-form-btn, .main-back {
  background-color: inherit;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
}


/* Options Styles */
.options {
  margin: 15px 0;
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.options-ajout {
  margin: 15px 0;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.options-ajout.many-options>div:first-child{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.options input[type="radio"], .options-ajout input[type="radio"], #contact-step input[type="radio"]
{
  display: none;
}

.options label {
  font-family: 'Poppins', Arial, sans-serif;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* empêche le retour à la ligne */
}

 .options-ajout label {
  font-family: 'Poppins', Arial, sans-serif;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 150px;
  height: auto;
  border: 2px solid #EC1E24;
}

.option-label {
  background-color: #ffffff;
  color: #EC1E24;
  font-size: 1.1em;
  font-weight: 600;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  /* max-width: max-content; */
  align-items: center;
}

.options label:hover, .options-ajout label:hover {
  background-color: #EC1E24;
  border-color: #EC1E24;
  transform: translateY(-2px);
}

.option-label:hover {
  color: #ffffff;
}

.options label.option-label:hover, .options-ajout label.option-label:hover {
  background-color: #EC1E24;
  border-color: #EC1E24;
}

.options input[type="radio"]:checked + span, .options-ajout input[type="radio"]:checked + span,
.options label:has(input[type="radio"]:checked), .options-ajout label:has(input[type="radio"]:checked), #contact-step label:has(input[type="radio"]:checked) {
  background-color: #EC1E24;
  color: white;
}

.radio-formulaire {
display: flex;
flex-flow: row;
}


#contact-step label {
  background-color: #ffffff;
  color: #EC1E24;
  font-size: 1.1em;
  font-weight: 600;
  width: 100%;
  height: auto;
  text-align: center;
  border: 2px solid #EC1E24;
  border-radius: 5px;
  margin: 5px;
}

#cta-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

.question-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.options-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s;
}

.option:hover {
  transform: scale(1.05);
}

.option-image {
  width: auto;
  height: 50px;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: filter 0.15s;
}

.option span {
  margin-top: 8px;
  text-align: center;
  font-size: 0.95rem;
}

/* Étape finale */
.contact-intro p {
  line-height: 1.4;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  #chatbot {
    width: 100%;
  }
  
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .model-image {
    height: 100%;
  }
  
  .model-option label {
    font-size: 16px;
  }
  
  .button-group {
    flex-direction: column-reverse;
  }
  
  .back-btn, .next-btn, .back-form-btn, .main-back, .next-form-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .cta-solicitar {
    margin: 15px 0;
    padding: 10px;
  }
  
  .btn-solicitar {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .back-btn, .next-btn, .back-form-btn, .main-back, .next-form-btn {
    width: 100%;
    margin-bottom: 5px;
  }
}

#chat-window {
  height: calc(100% - 80px);
  overflow-y: auto;
  margin-bottom: 10px;
  padding: 20px 20px 0px 20px;
  flex: 1;
  background-color: white;
  border-radius: 20px;
}

.message {
  margin: 0px 0;
  padding: 10px;
  border-radius: 15px;
  display: inline-block;
  max-width: 100%;
  clear: both;
}

.bot {
  background-color: #f1f1f1;
  float: left;
}

.user {
  background-color: #EC1E24;
  color: white;
  float: right;
}

/* Lucas Message Styles */

.message-time {
  font-size: 11px;
  color: #888;
  text-align: right;
  margin-top: 5px;
  font-weight: normal;
}


.lucas-message {
  background: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  max-width: 95%;
}


.lucas-profile {
  flex-shrink: 0;
}

.lucas-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.lucas-text {
  font-family: 'Poppins', Arial, sans-serif;
  color: #000000;
  flex: 1;
  background-color: none;
  border-radius: 15px;
  position: relative;
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: 600;
}



.lucas-text-2 {
  font-family: 'Poppins', Arial, sans-serif;
  color: #000000;
  font-weight: 600;
}



a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    color: #000000;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.responsive {
    display: none;
}

.desktop {
    display: block;
}

h1{
    font-size: 36px;
    line-height: normal;
    color: #0d132d;
    font-weight: 600;
    margin-bottom: 35px;
    margin-top: 0;
}

.nopad {
    padding-left: 0px;
    padding-right: 0px;
}

/***** HEADER *****/
header {
    padding: 20px 0;
}

header img {
   width: 25%;

}

header p {
    font-size: 1.2em;
    line-height: normal;
    color: #0d132d;
    font-weight: 400;
    margin-top: 20px;
    text-align: right;
 
 }

 header b {
    color: #cb1237;
    font-weight: 400;
 
 }



.header {
    margin: 0;
    color: #000;
    margin-top: 25px;
    text-align: right;
}


/****** Offre *****/

section.offre {
    background-color: #f9f9f9;
    min-height: 650px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.recapitulatif section.offre {
  background: linear-gradient(to right, #C92C31, #FF7175);
    min-height: 620px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.recapitulatif .merci {
    color: #0d132d;
}

.recapitulatif .accroche {
    margin-top: 75px;
}

.info-message {
  text-align: left;
  padding: 20px;
}

.info-message p {
  font-size: 14px;
  color: #36404B;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.info-message h2 {
  font-size: 10px;
  color: #36404B;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.accroche {
    margin-top: 60px;
}

.accroche img {
    width: 84%;
}

.accroche .wrap {
    padding-right: 6rem;
}

.logo img {
    width: 240px;
    padding: 0;
}

.product img {
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.2);
}

/* Formulaire
   ========================================================================== */

.formulaire {
    text-align: center;
    margin-top: 0;
}


.right-form {
    margin: 60px 0 0 0;
    max-width: 442px;
    background-color: #0d132d;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.title-form {
    padding: 0 15px 0 15px;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 22px;
}

.title-form span {
    color: #000;
}

.title-form b {
    color:#36404B;
}

.label_title {
    margin-top: 15px;
}



.form-control {
    background-color: #fff!important;
    font-family: 'Poppins', Arial, sans-serif;
    color: #000;
    display: block;
    width: 100%;
    height: 44px;
    padding: 12px;
    font-size: 15px;
    line-height: 1.2;
    border-radius: 5px;
    border: none;
    outline: none;
    padding-bottom: 10px;
    font-weight: 400;
}

input:placeholder {
    color: #000;
}

.form-control[disabled] {
    background-color: #fff;
}


.btn-default {
    background-color: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #0a4e7c;
    outline: none;
    padding-bottom: 10px;
}


.form-control::placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder {
    color: #7c7c7c;
}

.label {
    text-align: left;
    color: #000000;
    /*    width: 140px;*/
    padding: 15px;
    margin: -15px 5px 0 0px;
    font-size: 10px;
    font-weight: 400;
    border-radius: 0;
    white-space: normal;
    line-height: 1.2;
    font-weight: normal;
}

.checkbox-label {
    text-align: left;
    color: #202e36;
    display: block;
    padding: 8px 15px;
    margin: -15px 5px 0 5px;
    font-size: 10px;
    clear: both;
    font-weight: 400;
    border-radius: 0;
    white-space: normal;
    line-height: 1.2;
    border-radius: 0 10px 10px 10px;
}


.btn-participer {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #FFC125;
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}

.btn-participer:not([disabled]):hover {
    opacity: 90%;
}

.sub-cta {
    font-size: 10px;
    color: #000000;
    text-align: justify;
    padding-top: 15px;
}
.sub-cta a{
    color: #000000;
}
.name,
.cp {
    padding-right: 5px
}

.adresseH {
    margin-bottom: 0
}

.custom-control-label {
    font-weight: 100;
    font-size: 11px;
    float: right;
    width: 90%
}

textarea.form-control {
    height: 90px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    font-size: 10px;
}

.dropdown-menu>li>a {
    padding: 3px 5px;
}

.accroche2 span {
    font-size: 21px
}

.color {
    color: #2e2e2e;
    text-decoration: underline;
}

.mlsub {
    font-size: 10px;
    color: #000;
    text-align: justify;
    padding: 20px 20px 0px 20px;
    line-height: 1.2;
}

.mlsub a {
    color: #000 !important;
    text-decoration: underline;
}

.civilite {
    clear: both;
}


.hidden-form {
    display: none;
}

.phoneerror {
    z-index: 99;
    display: none;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: red;
}



.right-form .btn-main {
    width: 100%;
    text-align: center;
    margin-top: 14px;
    padding: 12px 15px;
    background-color: #ffa60c !important;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 150px;
    display: block;
    transition: background-color 0.5s ease;
}

.right-form .btn-main:not([disabled]):hover {
    background-color: #999 !important;
}


.right-form .btn-back {
    width: 80px;
    display: block;
    margin: 1rem 0 0;
    background-color: transparent;
    background-image: none;
    border: 0;
}


.line .btn-bottom .btn-participer2:hover {
    text-decoration: none;
}

.mentions {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.2em;
    text-align: justify;
    font-weight: 400;
    color: #2e2e2e;
    padding: 0px 20px 15px 20px;
}

.mentions a {
    text-decoration: underline;
}


/** 
* Progress-bar

/** 
* Radio buttons
*/

.button {
    /*  float: left;*/
    margin: 0 5px 0 0;
    /*width: 100px;
    height: 40px;*/
    position: relative;
}

.button label,
.button input {
    /*display: block;
    position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.button input[type="radio"]:checked+label {
    background: #20b8be;
    border-radius: 4px;
}

.button label {
    text-align: center;
    cursor: pointer;
    z-index: 90;
    font-weight: normal;
}



#retour{
font-family: 'Poppins', Arial, sans-serif;
background-color: inherit;
color: #36404B;
font-weight: 600;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 5px;
}


#suivant {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #EC1E24;
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.cta-retour {
  display: flex;
  flex-direction: column-reverse;
}
/* ==========================================================================
   Body
   ========================================================================== */

.line1 {
    padding: 70px 0;
    background-color:#0d132d;
}

.line1 .ico {
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: normal;
}


.line1 .man img {
    width:100%;
}



.line1 h1 {
    text-align: left;
    color: #cb1237;
    font-size: 1.8em;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    padding-top: 80px;
}

.line1 h2 {
    text-align: left;
    color: #fff;
    font-size: 3em;
    line-height: normal;
    font-weight: 400;
}

.line1 h3 {
    text-align: center;
    color: #fff;
    font-size: 1.5em;
    line-height: normal;
    font-weight: 600;
}

.line1 h4 {
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    line-height: normal;
    font-weight: 400;
}

.line1 p {
    text-align: left;
    color: #fff;
    font-size: 1.2em;
    line-height: normal;
    font-weight: 400;
    padding-top: 40px;
    padding-right: 140px;
}






.line2 {
    padding: 70px 0;
    background-color:#fff;
}



.line2 img {
    width:70%;
    padding-bottom: 5px;
    padding-top: 50px;
    display: block;
    margin: auto;

}


.line2 h1 {
    text-align: center;
    color: #cb1237;
    font-size: 1.8em;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    padding-top: 20px;
}

.line2 h2 {
    text-align: center;
    color: #000;
    font-size: 3em;
    line-height: normal;
    font-weight: 400;
}

.line2 h3 {
    text-align: center;
    color: #000;
    font-size: 1.5em;
    line-height: normal;
    font-weight: 600;
}

.line2 h4 {
    text-align: center;
    color: #000;
    font-size: 1.2em;
    line-height: normal;
    font-weight: 400;
}

.line2 p {
    text-align: center;
    color: #000;
    font-size: 1.2em;
    line-height: normal;
    font-weight: 400;
    padding-top: 40px;
}





.line3 {
    padding: 70px 0;
    background-color:#f8f8f8;
}



.line3 img {
    width:100%;
    padding-bottom: 5px;
    padding-top: 30px;
    margin: auto;
}


.line3 h1 {
    text-align: center;
    color: #cb1237;
    font-size: 1.8em;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    padding-top: 20px;
}

.line3 h2 {
    text-align: center;
    color: #000;
    font-size: 3em;
    line-height: normal;
    font-weight: 400;
}


.btn-bottom {
    margin-top: 24px;
    margin-bottom: 20px;
}

.btn-bottom .btn-participer2 {
    width: 220px;
    text-align: center;
    padding: 15px 30px 15px 30px;
    background-color: #ffda01 !important;
    color: #202e36;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    display: block;

}

.btnrdv {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding: 12px 15px;
    background-color: #2490D7;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    display: block;
    transition: background-color 0.5s ease;
}

.btnrdv:hover {
    opacity: 90%;
}

.btn2 {
    max-width: 360px;
}

.bloc-elem.quantite .form-group {
    position: static !important; /* Assurez-vous d'utiliser !important pour annuler la règle globale */
}


.bloc-elem .form-group {
    margin-bottom: 14px;
    position: relative;
    clear: both;
    font-size: 10px;
}

.img_absolute{
    position: absolute;
    bottom: -68px;
    left: 0px;
}


.line1 .btn-participer2 {
    width: 60%;
    background-color: #36404B;
    font-weight: 600;
    font-size: 20px;
    border-radius: 0px;
    border: none;
    color: #fff;
    padding: 14px 20px;
    margin-top: 50px;
    float: left;
}


.btn-participer2 {
    width: 30%;
    background-color: #36404B;
    font-weight: 600;
    font-size: 20px;
    border-radius: 0px;
    border: none;
    color: #fff;
    padding: 14px 20px;
    margin-top: 50px;
}


/* ==========================================================================
   Recapitulatif
   ========================================================================== */

.merci {
    padding-top: 0px;
    font-size: 2.2rem;
    color: #36404B;
    text-align: left;
}

p {
  font-size: 1.2em;
  color: #000;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: 600;
}

.merci img {
    width: 300px;
    margin: 0px 0 20px 0;

}




/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background-color: #ffffff;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 50px 0px 50px 0px;

}

footer .ml {
    font-size: 0.8em;
    font-weight: 400;
    text-align: justify;
    color: #000000;
}

footer a{
    color: #000000;
}

footer img{
    padding-bottom: 50px;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 1199px) {
    .merci {
        font-size: 1.6rem;
    }

    header p {
        font-size: 1em;
     
     }
}

@media (max-width: 990px) {
    
    .formulaire {
        text-align: center;
        margin-top: 0;
    }
    
    section.offre,
    section.offre.bg1 {
        background-image: none;
        background-color: #ffffff;
        min-height: 380px;
    }

  

    section.offre .img1 {
        display: none;
    }

    section.offre.bg1 .img {
        display: none;
    }

    section.offre.bg1 .img1 {
        display: block;
    }

    .responsive {
        display: block;
    }

    .responsive img {
        width: 100%;
    }

    .desktop {
        display: none;
    }

    .right-form {
        margin: 40px 0 0px;
        max-width: none;
        margin-top: 0px;
        border-radius: 0 0 30px 30px;
    }

    .line {
        padding: 30px 0;
    }

    .line h2 {
        font-size: 24px;
    }

    .btn-bottom .btn-participer2 {
        font-size: 16px;
    }


    .merci {
        font-size: 1.25rem;
    }

    .merci img {
        margin-top: 70px;
    }

    .line h3 {
        font-size: 22px;
        margin: 20px 20px 0px 20px;
    }

    .picto img {
        width: 20%;
    }

    .img_absolute{
        bottom: -96px;
        left: 20px;
    }

    .blocform{
        background-color: #0d132d;
    }


    h1{
        font-size: 26px;
    }

    header img {
        width: 35%;
        display: block;
        margin: 0 auto;
      
     
     }
     
     header p {
         font-size: 1.1em;
         line-height: normal;
         color: #0d132d;
         font-weight: 400;
         margin-top: 30px;
         margin-bottom: 10px;
         text-align: center;
      
      }

      .line1 p {
        text-align: left;
        color: #fff;
        font-size: 1.2em;
        line-height: normal;
        font-weight: 400;
        padding-top: 40px;
        padding-right: 0px;
    }

    .line1 h1 {
        text-align: left;
        color: #cb1237;
        font-size: 2em;
        line-height: normal;
        text-transform: uppercase;
        letter-spacing: 2.2px;
        padding-top: 60px;
    }

    .line1 .btn-participer2 {
        width: 100%;
        background-color: #36404B;
        font-weight: 600;
        font-size: 20px;
        border-radius: 0px;
        border: none;
        color: #fff;
        padding: 14px 20px;
        margin-top: 50px;
        float: none;
    }

    .btn-participer2 {
        width: 100%;
        background-color: #36404B;
        font-weight: 600;
        font-size: 20px;
        border-radius: 0px;
        border: none;
        color: #fff;
        padding: 14px 20px;
        margin-top: 50px;
    }

    #suivant {
      width: 100%;
    }
    
}


@media (max-width: 768px) {

  /* Conteneur des options : on active le wrap */
  .options,
  .options-ajout.many-options>div:first-child {
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: space-between;
  }

  /* Chaque option prend exactement 50% moins l'espace du gap */
  .options label,
  .options-ajout label {
      flex: 0 0 calc(50% - 5px) !important; /* 2 colonnes avec 10px de gap */
      max-width: calc(50% - 5px) !important;
      margin-bottom: 10px;
      box-sizing: border-box;
      text-align: center;
  }

  /* Ajustement du chatbot */
  #chatbot {
      width: 100%;
  }
}

/* CSS pour les options quand il y en a moins de 3 */
.options-ajout.few-options > div:first-child {
  display: flex !important;
  flex-flow: row;
  /* align-items: flex-end; Aligne à droite */
  gap: 10px; /* Petit espace entre les options */
}



/* Version mobile pour les few-options */
@media (max-width: 768px) {
  .options-ajout.few-options > div:first-child {
    align-items: center; /* Centré sur mobile */
  }
  
  .options-ajout.few-options label {
    margin-right: 0;
    text-align: center;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
    #chatbot {
        width: 100%;
        max-width: 800px;
    }
}

@media (min-width: 1025px) {
    #chatbot {
        width: 100%;
        max-width: 900px;
    }
}



@media (min-width: 991px) {
    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }

    .features .equal h2,
    .features .equal p {
        display: flex;
        align-items: center;
        height: 100%;
        text-align: left;
    }
}

/**********/

label {
    display: block;
    font-weight: normal;
}

label.radio-label {
    display: inline-block;
}

.deux .radio-label {
    width: 50%;
}

.trois .radio-label {
    width: 33.3333%;
}

.cinq .radio-label {
    width: 20%;
}
