@charset "UTF-8";
html {
  overflow-x: hidden;
}

/* CSS CONVERGENCE */

/*CONVERGENCE COULEURS*/
.blanc {
  color: #ffffff;
}

.vert {
  color: #085c5b;
}

.or {
  color: #cc933d;
}

.gris {
  color: #545251;
}

.grisClair {
  color: #bfb1ac;
}

/*Logo Menu Mobile*/

.logoMenuMobile span.menu-text {
  display: block;
  width: 100%;
  text-align: center;
}

.logoMenuMobile img {
  width: 300px;
  max-width: 100%;
  padding: 20px;
}

/*FORM QUESTIONNAIRE*/
.cf7-form-content {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  min-height: 250px;
}

.cf7-multi-horizontal-wrapper {
  max-width: 100%;
  margin: auto;

}

.cf7-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.cf7-progress-fill {
  height: 100%;
  background: #085c5b;
  width: 0;
  transition: width 0.4s ease-in-out;
}

.cf7-step {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.cf7-step.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0%);
  position: relative;
}

.cf7-step.slide-left {
  transform: translateX(-100%);
}

.cf7-step.slide-right {
  transform: translateX(100%);
}

.cf7-step h3 {
  font-family: "congenial-light", Sans-serif;
  font-size: 32px;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0;
}

.cf7-step p {
  font-size: 22px;
  line-height: 1em;
  margin-top: 15px;
}

.cf7-step .cf7-quest {
  padding-bottom: 20px;
}

.cf7-nav {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #cc933d;
}

.cf7-nav p {
  display: flex;
  justify-content: space-between;
}

button.cf7-next,
button.cf7-prev {
  background-color: #cc933d;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 18px;
  font-size: 1rem;
  font-weight: 400;
  font-family: Times, Georgia, serif;
  text-transform: uppercase;
}

button.cf7-prev {
  background-color: #085c5b;
  padding: 10px 15px;
}

.cf7-quest.textChampx3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cf7-quest.champx2 .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cf7-quest.champx3 .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cf7-quest.champx4 .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cf7-quest.champx5 .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {

  .cf7-quest.textChampx3,
  .cf7-quest.champx2 .wpcf7-checkbox,
  .cf7-quest.champx3 .wpcf7-checkbox,
  .cf7-quest.champx4 .wpcf7-checkbox {
    grid-template-columns: 1fr;
  }

  .cf7-quest.champx5 .wpcf7-checkbox {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .cf7-quest.champx5 .wpcf7-checkbox label {
    gap: 1px;
    padding: 5px 2px !important;
  }

  .cf7-step p {
    font-size: 18px;
  }
}

.wpcf7-list-item {
  margin-left: 0;
}

/*QUEST Case Radio*/

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
  color: #000;
}

.wpcf7-form-control.wpcf7-radio input[type="radio"]:checked+span {
  background-color: #efefef;
  border-color: #085c5b;
  color: #cc933d;
}

.wpcf7-form-control.wpcf7-radio label:has(input:checked) {
  background-color: #efefef;
  border-color: #085c5b;
  color: #000000;
}

.wpcf7-form-control.wpcf7-radio input[type="radio"] {
  accent-color: #cc933d;
  width: 16px;
  height: 16px;
}

/*QUEST Case Checkbox */
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 5px;
  background-color: #efefef;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}

.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
  accent-color: #cc933d;
  width: 16px;
  height: 16px;
}

.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked+span,
.wpcf7-form-control.wpcf7-checkbox label:has(input:checked) {
  background-color: #efefef;
  border-color: #085c5b;
  color: #cc933d;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

/*QUEST Acceptance RGPD */
.wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wpcf7-form-control.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #efefef;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  accent-color: #cc933d;
  width: 16px;
  height: 16px;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked+span,
.wpcf7-form-control.wpcf7-acceptance label:has(input:checked) {
  background-color: #efefef;
  /*border-color: #085c5b;*/
  color: #cc933d;
}

.wpcf7-form-control.wpcf7-acceptance {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
  margin-top: 10px;
}

.wpcf7-form-control.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

/*QUEST Submit*/
.wpcf7-submit {
  float: right;
}

/*QUEST Text area*/
.wpcf7-textarea {
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
}

/*QUEST Text*/
.wpcf7-text {
  background-color: #f9f9f9 !important;
  border: 1px solid #f9f9f9 !important;
}

/*QUEST Logo image*/
.quest-logo p {
  display: block;
  width: 100%;
  float: left;
  margin: 20px auto 60px auto;
  text-align: center;
}

.quest-logo img {
  width: 400px;
  max-width: 100%;
  margin: auto;
  border: none;
}

/*QUESt CF7 message final*/
.wpcf7-response-output {
  display: none;
}

/*QUEST Message Popup*/

.cf7-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf7-popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 0;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.cf7-popup-content h4 {
  font-size: 26px;
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1em;
  Text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #545251;
}

.cf7-popup-content p {
  font-size: 20px;
  line-height: 1em;
}

.cf7-popup-close {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #085c5b;
  color: white;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

/*ACCORDEON METHODE*/

.accordion {}

.method-accordion-item {}

.method-accordion-title {
  cursor: pointer;
}

.method-accordion-content {
  display: none;
}

/*FLOAT QUEST BTN pour accès*/

#QuestfloatingBtn {
  position: fixed;
  right: 0;
  top: 130px;
  transform: translateY(-50%);
  background-color: #085c5b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-family: Times, Georgia, serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
  animation: slideInRight 0.6s ease forwards;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  height: 55px;
  display: flex;
  align-items: center;
  /* Aligne verticalement le contenu */
  justify-content: center;
  /* (optionnel) centre horizontalement */
  gap: 10px;
  /* espace entre icône et texte */
}

@keyframes slideInRight {
  0% {
    transform: translateX(150%) translateY(-50%);
    opacity: 0;
  }

  100% {
    transform: translateX(0%) translateY(-50%);
    opacity: 1;
  }
}

#QuestfloatingBtn::before {
  content: "\f27a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
}

#QuestfloatingBtn.collapsed {
  width: 50px;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

#QuestfloatingBtn.collapsed:hover {
  width: auto;
  padding: 10px 20px;
}

#QuestfloatingBtn.collapsed .txtBtnQuest {
  display: none;
}


/*FLIP CARD rectoVerso produits SAV*/

.flip-card {
  position: relative;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
  min-height: 350px;
}

.flip-card-front {}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card.flip-active .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card.flip-active .flip-card-inner .flip-card-front {
  display: none;
}

.flip-card .flip-card-inner .flip-card-back {
  display: none;
}

.flip-card.flip-active .flip-card-inner .flip-card-back {
  display: flex;
}



/*POP UP produits SAV*/
/*
.flip-card-inner {
	cursor : pointer ;
}

.flip-card-front {
	height:50px;
}
.flip-card-back {
	display:none!important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #FFFFFF ;
  padding: 40px;
  max-width: 500px;
  border-radius: 0px;
  position: relative;
  text-align:center;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}


.modal-overlay.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 0px;
  right: 8px;
  cursor: pointer;
  font-size: 30px;
	color:#545251; 
}
*/

@media (max-width: 936px) {
  .ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
    top: 0;
    right: 10px;
    box-shadow: none !important;
  }

  .ast-desktop .astra-mm-icon-label,
  .ast-header-break-point .astra-mm-icon-label {
    margin: 0 10px 0 0 !important;
    float: left;
  }
}