.arx_loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #707070;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  display: none;
}

.arx_loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-bottom: 4px solid #ff3d00;
  border-left: 4px solid transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* FUNNEL OME PAGE  **********************************************************************/
#arx_cets_funnel_container {
  width: 100%;
  padding: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

#arx_cets_funnel_container.loading {
  opacity: 0.8;
}

#arx_cets_funnel_container.loading .arx_loader {
  display: block;
}

#arx_cets_funnel_container h2 {
  font-weight: 800;
  color: #fff;
}

/* FUNNEL V2 */
#arx_cets_funnel_container .titre {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
#arx_cets_funnel_container .titre strong {
  color: #000;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.funnel_hide {
  display: none;
}

.arx_funnel_navigation {
  display: none; /* Cachée par défaut */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.arx_funnel_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  cursor: pointer; /* Permet de cliquer sur les étapes précédentes */
  min-height: 90px;
}

.step-number {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.step-title {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.step-choice {
  font-size: 12px;
  background: var(--arx-cets-primary, #ef7e2c);
  color: white;
  padding: 4px 5px;
  border-radius: 0px;
  margin-top: 5px;
  display: none; /* Sera affiché dynamiquement */
  text-transform: capitalize;
  line-height: 14px;
}

/* Ligne entre les étapes */
.arx_funnel_line {
  flex-grow: 1;
  height: 2px;
  width: 50%;
  background: #e0e0e0;
  position: relative;
  display: block;
  margin-top: -65px;
}

/* Activer la ligne entre les étapes sélectionnées */
.arx_funnel_line.active {
  background: var(--arx-cets-primary, #ef7e2c);
  display: block; /* La ligne devient visible */
}

/* Activer la couleur des numéros d'étapes */
.arx_funnel_step.active .step-number {
  color: var(--arx-cets-primary, #ef7e2c);
  font-weight: bold;
}

.arx_funnel_step.active .step-title {
  color: var(--arx-cets-primary, #ef7e2c);
}
#arx_solution_summary {
  margin: 50px 50px 0 50px;
}
#arx_solution_details {
  max-height: 250px;
  overflow-y: auto;
  text-align: center;
}
#arx_solution_details::-webkit-scrollbar {
  width: 6px;
}

#arx_solution_details::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ffffff00;
}

#arx_solution_details::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #868686;
}
#arx_solution_details p {
  color: #5c5c5c;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 130.769% */
}
#arx_solution_details p.arx_summary_title {
  color: #1d1d1d;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 56.667% */
  text-transform: uppercase;
  margin-bottom: 15px;
}
#arx_solution_details .solution-item {
  margin-bottom: 10px;
}
#arx_solution_details .solution-item .solution-link {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#arx_solution_buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.arx_solution_button_decouvrir {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 375% */
  text-transform: uppercase;
  border-radius: 5px;
  background: #1d1d1d;
  padding: 0 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.arx_solution_button_decouvrir:hover {
  color: var(--arx-cets-text-light, #ffffff);
  background-color: var(--arx-cets-primary, #ef7e2c);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.arx_solution_button_contact {
  color: var(--arx-cets-text-light, #ffffff);
  border: 0;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  border-radius: 5px;
  background-color: var(--arx-cets-primary, #ef7e2c);
  padding: 10px 15px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.arx_solution_button_contact:hover {
  background-color: var(--arx-cets-primary-opacity, #8f4b00);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#arx_cets_funnel_container .v2_button {
  padding: 25px 40px;
  background-color: var(--arx-cets-primary, #ef7e2c);
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 5px;
  text-align: center;
  color: #1d1d1d;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#arx_cets_funnel_container .v2_button:hover {
  color: #fff;
  background-color: #3a3838;
}

.level_2_boutons_container,
.level_4_boutons_container,
.level_5_boutons_container,
#level_3_chantier .level_3_boutons_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
#arx_cets_funnel_container .v2_button.level_2_boutons,
#arx_cets_funnel_container .v2_level_4 .v2_button,
#arx_cets_funnel_container #level_3_chantier .v2_button.level_3_boutons {
  margin-bottom: 0;
  text-align: left;
  padding-left: 40px;
  position: relative;
}
#arx_cets_funnel_container .v2_level_4 .v2_button {
  margin-bottom: 0;
  text-align: left;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}
#arx_cets_funnel_container .v2_button.level_3_boutons,
#arx_cets_funnel_container .v2_button.level_5_boutons {
  margin-bottom: 15px;
  text-align: left;
  padding-left: 40px;
  position: relative;
}
#arx_cets_funnel_container .v2_button.level_2_boutons::before,
#arx_cets_funnel_container .v2_level_4 .v2_button::before,
#arx_cets_funnel_container
  #level_3_chantier
  .v2_button.level_3_boutons::before {
  content: "";
  background-image: url("../img/encoche_right.webp");
  height: 22px;
  width: 22px;
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#arx_cets_funnel_container .v2_button.level_3_boutons::before,
#arx_cets_funnel_container .v2_button.level_5_boutons::before {
  content: "";
  background-image: url("../img/encoche_right.webp");
  height: 22px;
  width: 22px;
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#level_1_container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.level_1_item {
  font-size: 22px;
  line-height: 1.1em;
  text-align: center;
  padding: 30px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: solid 1px #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  align-items: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #706f6f !important;
}

.level_1_item:hover {
  border: solid 1px #707070;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
  background-color: #333;
  color: #fff !important;
}

.level_1_item img {
  max-width: 70px;
  margin-bottom: 20px;
}

.level_1_item strong {
  color: #706f6f;
  display: block;
}

.level_1_item:hover strong {
  color: #fff;
  display: block;
}

.secondary_level {
  display: none;
  padding: 20px;
  border: dotted 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

.secondary_level .arx_title {
  color: #fff;
  font-size: 22px;
}

.secondary_level .arx_title strong {
  display: inline-block;
  color: var(--arx-cets-primary, #ef7e2c);
  background-color: #fff;
  height: 30px;
  width: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 5px;
}

.secondary_level .arx_liste_items {
  padding-top: 20px;
}

.secondary_level .arx_liste_items .item {
  padding: 10px 20px;
  background-color: #fff;
  color: #707070;
  margin-bottom: 7px;
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-border-radius: 30px 30px 30px 30px;
  border-radius: 30px 30px 30px 30px;
}

.secondary_level .arx_liste_items .item:hover {
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}

.item.selected {
  background-color: #707070 !important;
  color: #fff !important;
}

.etape_suivante {
  background-color: black;
  color: var(--arx-cets-primary, #ef7e2c);
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  position: absolute;
  bottom: -20px;
  right: -20px;
  border: none;
  font-size: 1.2em;
  /* display:none; */
  cursor: pointer;
}

#level_2_container,
#level_3_container,
#level_4_container {
  display: none;
}

/* PAGE LSITE DES SOLUTIONS  **********************************************************************/
#arx_cets_solutions_container_inner {
  display: flex;
}

#arx_cets_filters_container {
  width: 25%;
  background-color: #f7f7f7;
  padding: 20px;
}

.arx_cet_global_title {
  background-image: url(../img/filter.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 40px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.arx_cets_filtre_title {
  font-size: 18px;
  font-weight: 800;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 40px;
  margin-bottom: 20px;
}

.arx_cets_filtre_title.prestation {
  background-image: url(../img/picto-prestation.svg);
}

.arx_cets_filtre_title.secteur {
  background-image: url(../img/picto-secteur.svg);
}

.arx_cets_filtre_title.support {
  background-image: url(../img/picto-surface.svg);
}

.arx_cets_filtre_title.traitement {
  background-image: url(../img/picto-problematique.svg);
}

.arx_cets_filter_type {
  border-top: dotted 1px rgba(0, 0, 0, 0.5);
  padding-top: 20px;
  padding-bottom: 20px;
}

.arx_cets_filter_item {
  padding-left: 40px;
  font-size: 15px;
}

#arx_cets_results_container {
  padding: 20px 40px;
  width: 75%;
  background-color: #fff;
}

#arx_cets_results_container.loading {
  opacity: 0.5;
}

#arx_cets_results_container.loading .arx_loader {
  display: block;
}

#arx_cets_solutions_liste_container {
  /* display:flex;
    flex-wrap: wrap;*/
}

.arx_cets_solution_item {
  padding: 55px 0px 55px 25px;
  border-bottom: solid 1px #706f6f;
  display: flex;
  /*    flex-wrap:wrap;*/
}

/*
.arx_cets_solution_item > div:first-child {
    flex : 0 0 70%;

}
*/
.arx_cets_solution_item > div:nth-child(2) {
  flex: 0 0 30%;
}

.arx_cets_solution_item:nth-child(odd) {
  background-color: #fffbf7;
}

.arx_cets_solution_item a {
  color: #706f6f;
}

.arx_cets_solution_title {
  font-size: 30px;
  font-weight: 800;
  color: #706f6f;
  padding-bottom: 10px;
  text-align: left;
}

.arx_cets_societe_solutions_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.arx_cets_solution_item a.cta {
  display: inline-block;
  background-color: var(--arx-cets-primary, #ef7e2c);
  font-size: 18px;
  color: #fff;
  padding: 5px 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: solid 1px var(--arx-cets-primary, #ef7e2c);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.arx_cets_solution_item a.cta:hover {
  background-color: #fff;
  color: var(--arx-cets-primary, #ef7e2c);
  border: solid 1px var(--arx-cets-primary, #ef7e2c);
}

.arx_cets_solution_item .arx_cets_solution_extrait {
  max-width: 650px;
  padding-bottom: 30px;
  font-size: 14px;
  text-align: left;
}

.arx_cets_solution_item .arx_cets_secteurs {
  padding-left: 50px;
  background-image: url(../img/picto-secteur.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  min-height: 40px;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
}

.arx_cets_solution_item .arx_cets_secteurs span {
  display: inline-block;
  color: #000;
  /*background-color:rgba(0,0,0,0.2);*/
  padding: 0px 4px;
  margin-right: 10px;
  font-size: 0.9em;
}

.arx_cets_solution_item .arx_cets_supports {
  padding-left: 50px;
  background-image: url(../img/picto-surface.svg);
  background-repeat: no-repeat;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
  background-size: 30px 30px;
  min-height: 40px;
}

.arx_cets_solution_item .arx_cets_supports span {
  display: inline-block;
  color: #000;
  /*background-color:rgba(0,0,0,0.2);*/
  padding: 0px 4px;
  margin-right: 10px;
  font-size: 0.9em;
}

.arx_cets_solution_item .arx_cets_traitements {
  padding-left: 50px;
  background-image: url(../img/picto-problematique.svg);
  background-repeat: no-repeat;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
  background-size: 30px 30px;
  min-height: 40px;
}

.arx_cets_solution_item .arx_cets_traitements span {
  display: inline-block;
  color: #000;
  /*background-color:rgba(0,0,0,0.2);*/
  padding: 0px 4px;
  margin-right: 10px;
  font-size: 0.9em;
}

.no_result {
  font-size: 20px;
  color: #000;
}

.no_result a {
  color: #000;
  text-decoration: underline;
}

#arx_cets_results_container_ajax h1 {
  padding-bottom: 40px;
  font-weight: 800;
  font-size: 50px;
  color: var(--arx-cets-primary, #ef7e2c) !important;
}

.arx_cets_apply_filter {
  visibility: visible;
  float: right;
  border: solid 0px #fff;
  background-color: #fff;
  text-transform: uppercase;
  color: #fff;
  padding: 5px;
  font-weight: 800;
  background-color: var(--arx-cets-primary, #ef7e2c);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: translateY(-5px);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.arx_cets_apply_filter.visible:hover {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.arx_cets_apply_filter.visible {
  visibility: visible;
  opacity: 1;
}

/* DEBUT - LISTING INTERLOCUTEUR SINGLE SOLUTION */
.container_list_interlocuteur {
  /* display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;*/
}

.container_list_interlocuteur .arx_cets_societe_item_inner p,
.container_list_interlocuteur .arx_cets_societe_item_inner a {
  font-size: 14px !important;
  text-align: left;
  line-height: 1.3em;
}

.container_list_interlocuteur .arx_cets_societe_item {
  flex: 0 1 0;
  min-width: 150px;
  text-align: left;
  background-color: white;
  padding: 25px;
  margin-bottom: 20px;
}

.container_list_interlocuteur
  .arx_cets_societe_item_inner
  .arx_cets_societe_logo {
  height: 100px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

.container_list_interlocuteur
  .arx_cets_societe_item_inner
  .arx_cets_societe_name
  p {
  /*    margin-top:10px;*/
  font-size: 18px !important;
  font-weight: 800;
  color: #000;
  padding-bottom: 5px;
}

.container_list_interlocuteur
  .arx_cets_societe_item_inner
  .arx_cets_societe_tel
  p {
  margin-top: 10px;
  font-size: 16px !important;
  font-weight: 800;
}

.container_list_interlocuteur .arx_cets_societe_common,
.container_list_interlocuteur .arx_cets_societe_prestation {
  margin-top: 8px;
}

.container_list_interlocuteur .arx_cets_societe_item_inner button {
  background-color: var(--arx-cets-primary, #ef7e2c);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 16px;
}

.arx_tag_prestation_societe_container {
  margin-bottom: 10px;
}

.arx_tag_prestation_societe_content {
  display: flex;
  flex-wrap: wrap;
}

.arx_tag_prestation_societe_content p {
  background-color: #706f6f;
  color: #ffffff;
  padding: 5px 10px !important;
  border-radius: 20px;
  margin-right: 5px;
  margin-top: 5px;
}

.arx_tag_secteur_common_societe_container {
  margin-bottom: 10px;
}

.arx_tag_secteur_common_societe_content {
  display: flex;
  flex-wrap: wrap;
}

.arx_tag_secteur_common_societe_content a {
  background-color: #a5a5a5;
  color: #ffffff;
  padding: 5px 10px !important;
  border-radius: 20px;
  margin-right: 5px;
  margin-top: 5px;
}

/* FIN - LISTING INTERLOCUTEUR SINGLE SOLUTION */

/* DEBUT - LISTING CERTIFICATIONS SINGLE SOLUTION */
.container_list_certifications {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}

.container_list_certifications .arx_cets_certification_item {
  flex: 0 1 0;
  min-width: 100px;
}

.container_list_certifications .arx_cets_certification_item_inner {
  text-align: center;
}

.container_list_certifications
  .arx_cets_certification_item_inner
  .arx_cets_certification_logo {
  height: 70px;
  max-width: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* FIN - LISTING CERTIFICATIONS SINGLE SOLUTION */

/* DEBUT - LISTING CLIENTS SINGLE SOLUTION */
.container_list_clients {
  display: flex;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
}

.container_list_clients .arx_cets_client_item {
  flex: 0 1 0;
  min-width: 100px;
}

.container_list_clients .arx_cets_client_item_inner .arx_cets_client_logo {
  height: 70px;
  max-width: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* FIN - LISTING CLIENTS SINGLE SOLUTION */

/* DEBUT - LISTING SOCIETES */
.container_annuaire_societes .single_annuaire_societe .container_logo_societe {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container_annuaire_societes .single_annuaire_societe .container_logo_societe a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.container_annuaire_societes .single_annuaire_societe .container_logo_societe img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.container_annuaire_societes .single_annuaire_societe {
  width: 100%;
  cursor: pointer;
}

.truncated-text {
  max-width: 278px;
  /* Ajustez la largeur maximale en fonction de votre mise en page */
  overflow: hidden;
  /*  text-overflow: ellipsis;*/
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.tooltip-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  white-space: normal;
}

/* Personnalisez l'apparence de l'infobulle */
.truncated-text:hover .tooltip-content {
  display: block;
}

/* Ajoutez une flèche à l'infobulle */
.tooltip-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #f1f1f1 transparent;
}

.container_annuaire_societes
  .single_annuaire_societe
  .container_activite_societe {
  overflow: visible !important;
}

.container_annuaire_societes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5.5%;
  justify-content: center;
}

.container_annuaire_societes .single_annuaire_societe .with_icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4%;
  align-items: center;
  text-align: center;
  /* margin-bottom: 13.174%; */
  justify-content: center;
}

.container_annuaire_societes .single_annuaire_societe .with_icon i {
  color: var(--arx-cets-primary, #ef7e2c);
  font-size: 25px;
  width: 35px;
}

.container_annuaire_societes .single_annuaire_societe .with_icon p {
  line-height: 1.2em;
  font-size: 17px;
  width: 77%;
}

.container_annuaire_societes .single_annuaire_societe .container_nom_societe {
  color: #000 !important;
  font-weight: 600;
  font-size: 22px;
  margin-top: 27px !important;
  margin-bottom: 10px !important;
  line-height: 1em;
  text-align: center;
  display: none;
}

.container_annuaire_societes
  .single_annuaire_societe
  .container_activite_societe {
  font-size: 16px;
  /* background-color: var(--arx-cets-primary, #ef7e2c); */
  /* border-radius: 50px 50px 50px 50px; */
  overflow: hidden;
  padding-top: 5px !important;
  /* padding-right: 30px!important; */
  padding-bottom: 5px !important;
  /* padding-left: 30px!important; */
  margin-bottom: 27px !important;
  color: #000000;
}

.container_annuaire_societes .single_annuaire_societe .container_logo_societe {
  width: 100%;
  height: 140px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.container_annuaire_societes .single_annuaire_societe:hover {
  transform: scale(0.95) !important;
}

.container_annuaire_societes .single_annuaire_societe {
  transition: transform 300ms ease 0ms;
  background-color: #ffffff;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-radius: 20px;
  width: 20.875%;
  margin-bottom: 5.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container_information_societe_single div {
  padding-bottom: 15px;
}

.container_information_societe_single div a {
  color: var(--arx-cets-primary, #ef7e2c);
  text-decoration: underline;
}

.arx_cets_societe_solutions_container .arx_cets_solution_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  padding: 25px;
  margin-bottom: 30px;
  border: solid 1px #706f6f;
}

.arx_cets_solution_image {
  width: 75%;
}

/* FIN - LISTING SOCIETES */

/* DEBUT - LISTING SECTEURS */
.container_annuaire_secteurs {
  flex-direction: column;
  align-items: center;
}

.container_annuaire_secteurs .single_annuaire_secteur {
  width: 100%;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}

.truncated-text {
  max-width: 278px;
  /* Ajustez la largeur maximale en fonction de votre mise en page */
  overflow: hidden;
  /*  text-overflow: ellipsis;*/
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.tooltip-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  white-space: normal;
}

/* Personnalisez l'apparence de l'infobulle */
.truncated-text:hover .tooltip-content {
  display: block;
}

/* Ajoutez une flèche à l'infobulle */
.tooltip-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #f1f1f1 transparent;
}

.container_annuaire_secteurs
  .single_annuaire_secteur
  .container_activite_secteur {
  overflow: visible !important;
}

.container_annuaire_secteurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5.5%;
  justify-content: center;
}

.container_annuaire_secteurs .single_annuaire_secteur .with_icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4%;
  align-items: center;
  text-align: center;
  /* margin-bottom: 13.174%; */
  justify-content: center;
}

.container_annuaire_secteurs .single_annuaire_secteur .with_icon i {
  color: #000;
  font-size: 20px;
  width: 35px;
}

.container_annuaire_secteurs .single_annuaire_secteur .with_icon p {
  line-height: 1.2em;
  font-size: 17px;
  width: 77%;
}

.container_annuaire_secteurs .single_annuaire_secteur .container_nom_secteur {
  color: #000 !important;
  color: #000;

  font-size: 20px;
  margin-top: 27px !important;
  margin-bottom: 10px !important;
  line-height: 1em;
  text-align: center;
}

.container_annuaire_secteurs
  .single_annuaire_secteur
  .container_activite_secteur {
  font-size: 16px;
  /* background-color: var(--arx-cets-primary, #ef7e2c); */
  /* border-radius: 50px 50px 50px 50px; */
  overflow: hidden;
  padding-top: 5px !important;
  /* padding-right: 30px!important; */
  padding-bottom: 5px !important;
  /* padding-left: 30px!important; */
  margin-bottom: 27px !important;
  color: #000000;
}

.container_annuaire_secteurs .single_annuaire_secteur .container_logo_secteur {
  width: 100%;
  height: 165px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}

.container_annuaire_secteurs .single_annuaire_secteur:hover {
  transform: scale(0.95) !important;
}

.container_annuaire_secteurs .single_annuaire_secteur {
  transition: transform 300ms ease 0ms;
  background-color: #ffffff;
  width: 20.875%;
  margin-bottom: 5.5%;
}

.container_annuaire_secteurs .single_annuaire_secteur .container_nom_secteur {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.arx_cets_secteur_solutions_container .arx_cets_solution_item {
  display: block !important;
  padding: 0px 0px 20px 0px !important;
  background-color: transparent !important;
  border: none;
}

.arx_cets_secteur_solutions_container
  .arx_cets_solution_item
  .arx_cets_solution_title {
  font-size: 23px;
  font-weight: 800;
  color: #000 !important;
}

/* FIN - LISTING SECTEURS */

/* DEBUT - FOOTER */
.arx_divi_menu_colone .et-menu-nav ul {
  flex-direction: column;
}

.arx_divi_menu_colone .et_pb_menu__wrap {
  justify-content: flex-start !important;
}

/* FIN - FOOTER */

.arx_item_outer {
  padding: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.arx_item_outer:hover {
  padding: 20px;
}

@media (max-width: 1400px) {
  #arx_cets_funnel_container {
    max-width: 90%;
  }
}

@media (max-width: 990px) {
  .container_annuaire_societes {
    display: block;
  }

  .container_annuaire_societes .single_annuaire_societe {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
  }

  .container_annuaire_societes .container_nom_societe {
    display: none;
  }

  .container_annuaire_societes
    .single_annuaire_societe:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
    width: 100%;
  }

  .container_annuaire_societes
    .single_annuaire_societe
    .container_logo_societe {
    height: 200px;
  }

  .container_annuaire_secteurs {
    flex-direction: column;
  }

  .container_annuaire_secteurs .single_annuaire_secteur {
    width: 100%;
    margin-bottom: 15.5%;
  }

  .container_list_certifications,
  .container_list_clients {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .container_list_certifications
    .arx_cets_certification_item_inner
    .arx_cets_certification_logo,
  .container_list_clients .arx_cets_client_item_inner .arx_cets_client_logo {
    max-width: 100%;
  }

  .arx_cets_certification_item:nth-last-child(1):nth-child(odd),
  .arx_cets_client_item:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  #arx_cets_funnel_container {
    max-width: 100%;
    padding: 10px;
  }

  #arx_cets_funnel_container h2 {
    font-size: 20px;
    padding-top: 10px;
  }

  #level_1_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
    justify-content: space-evenly;
    align-content: center;
    justify-items: center;
  }

  .level_1_item {
    font-size: 16px;
    line-height: 1em;
    padding: 14px;
    width: 80%;
    margin-bottom: 15px;
  }

  .level_1_item:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  .level_1_item img {
    max-width: 40px;
    margin-bottom: 10px;
  }

  .secondary_level {
    padding: 10px;
  }

  .secondary_level .arx_liste_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
    justify-content: center;
    justify-items: center;
    align-items: center;
  }

  .secondary_level .arx_liste_items .item:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  .secondary_level .arx_liste_items .item {
    text-align: center;
    font-size: 13px;
    padding: 5px;
    width: 95%;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
  }

  /*
	.secondary_level .arx_liste_items .item:last-child{
		grid-column: span 2;
	}
*/
  .secondary_level .arx_title {
    font-size: 17px;
  }

  .secondary_level .arx_title strong {
    padding: 0px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    height: 20px;
    width: 20px;
  }

  .etape_suivante {
    bottom: -50px;
    transform: translate(50%, 0px);
    width: 80%;
    right: 50%;
  }
}

@media (max-width: 330px) {
  .secondary_level .arx_liste_items .item {
    grid-column: span 2;
  }
}

.open_filtre {
  display: none !important;
}

@media (max-width: 1200px) {
  .open_filtre {
    display: block !important;
    padding-left: 20px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    border-bottom: dotted 1px rgba(0, 0, 0, 0.5);
    padding-bottom: 15px;
  }

  .open_filtre img {
    margin-right: 5px;
  }

  .open_filtre > div {
    display: flex;
    justify-content: flex-start;
  }

  .arx_cet_global_title {
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #arx_cets_results_container_ajax h1,
  #arx_cets_results_container_ajax h1 strong {
    font-size: 40px !important;
  }

  .arx_cets_apply_filter {
    float: none;
    transform: translateY(0px);
  }

  #arx_cets_filters_container {
    left: ;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    padding-right: 10px;
    padding-left: 10px;
    background-color: #fff !important;
    height: 100%;
    transition: all 0.7s cubic-bezier(0.18, 0.79, 0.4, 0.99);
    will-change: transform;
    position: absolute;
    width: 100% !important;
    min-width: 100%;
    top: 0;
    overflow-y: auto;
    margin: 0;
  }

  #arx_cets_solutions_container_inner {
    display: flex;
    flex-direction: column;
  }

  #arx_cets_results_container {
    width: 100% !important;
    padding-right: 15px;
    padding-left: 15px;
  }

  #arx_cets_filters_container.visible {
    transform: none;
    -webkit-transform: none;
    margin-left: 0% !important;
  }

  .arx_cets_solution_item .arx_cets_solution_extrait {
    line-height: 1.3em;
    padding-bottom: 15px;
  }

  .arx_cets_solution_title {
    font-size: 25px !important;
  }

  .arx_cets_solution_item > div:nth-child(2) {
    flex: 0 0 100%;
    width: 100%;
  }

  .arx_cets_solution_item .arx_cets_supports span {
    margin-right: 4px;
  }

  .arx_cets_solution_item a.cta {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .arx_cets_solution_item .arx_cets_secteurs,
  .arx_cets_solution_item .arx_cets_supports,
  .arx_cets_solution_item .arx_cets_traitements {
    font-size: 14px;
  }

  .arx_cets_solution_item {
    padding: 20px 15px 20px 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}

/*HOME SECTEUR*/
/*
.container_annuaire_secteurs_home{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}
*/

.container_annuaire_secteurs_home .arx_border_home_secteur {
  border: solid 0px black;
  border-color: #ffffff;
  transition: border 300ms ease 0ms;
  position: relative;
  line-height: 0px !important;
  border-radius: 20px !important;
}

.container_annuaire_secteurs_home .arx_border_home_secteur a {
  line-height: 0px !important;
}

.container_annuaire_secteurs_home .arx_border2_home_secteur {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5vw;
  line-height: 1.5em;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
  padding-top: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 10px !important;
  padding-left: 15px !important;
  margin-bottom: 0px !important;
  width: 100%;
  position: absolute !important;
  bottom: 0px;
  right: auto;

  text-align: center;
}

.container_annuaire_secteurs_home .arx_border2_home_secteur a {
  color: #ffffff !important;
  transition: color 300ms ease 0ms;
}

.container_annuaire_secteurs_home
  .contenu_arx_secteur_home:hover
  .arx_border2_home_secteur
  a {
  color: #fff !important;
}

.container_annuaire_secteurs_home .contenu_arx_secteur_home {
  padding: 0px 8px;
}

.container_annuaire_secteurs_home
  .contenu_arx_secteur_home:hover
  .arx_border_home_secteur {
  /* border-width: 2px;*/
  transform: scale(0.95);
}
.container_annuaire_secteurs_home
  .contenu_arx_secteur_home
  .arx_border_home_secteur {
  border-radius: 20px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.container_annuaire_secteurs_home a.lien {
  display: block;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
  font-weight: 300;
  font-size: 0.8em;
  line-height: 1em;
}

.container_annuaire_secteurs_home .slick-next {
  top: calc(50% -10px);
  right: -50px !important;
}

.container_annuaire_secteurs_home .slick-prev {
  top: calc(50% -10px);
  left: -50px !important;
}

.slick-next:before {
  content: url(/wp-content/uploads/2025/02/right-chevron.svg);
}

.slick-prev:before {
  content: url(/wp-content/uploads/2025/02/left-chevron.svg);
}

/* DÉBUT - CSS LIST & MAP */
#map_entreprises .et_pb_row .et_pb_column:first-of-type {
  margin-right: 15px !important;
  width: 60%;
}
#map_entreprises .et_pb_row .et_pb_column:last-of-type {
  margin-right: 0px !important;
  width: 40%;
}
#arx_list_societes {
  /* display: none !important; */
  position: relative;
  max-width: 100%;
  padding: 15px;
  border-radius: 10px;
  margin-right: 15px;
  margin-top: 30px;
  overflow-y: auto;
  max-height: calc(75vh - 30px * 2);
}
#arx_list_societes::-webkit-scrollbar,
#funel_solution::-webkit-scrollbar {
  width: 6px;
}

#arx_list_societes::-webkit-scrollbar-track,
#funel_solution::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ffffff00;
}

#arx_list_societes::-webkit-scrollbar-thumb,
#funel_solution::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #868686;
}
.arx-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
}
.arx-entreprise {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 15px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  position: relative;
}
.arx-entreprise.active {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px var(--arx-cets-primary, #ef7e2c);
  border-radius: 10px;
  border-bottom: 0;
}
.arx-entreprise:hover {
  background: #f8f8f8;
  cursor: pointer;
}
.arx-logo {
  object-fit: contain;
  margin-right: 15px;
  max-width: 100%;
  margin-bottom: 10px;
}
.arx_info_left {
  width: 40%;
}
.arx_info_right {
  width: 60%;
}
.arx_info_right h3 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.arx_info_right p {
  color: #5c5c5c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.arx-phone {
  color: #f17d2c !important;
  margin-bottom: 10px;
}
.arx-phone a {
  color: #f17d2c !important;
}
.arx-intervention {
  color: #5c5c5c;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 100% */
  position: relative;
  margin-left: 14px;
}
.arx-intervention::before {
  content: "";
  background-image: url(/img_arx/right.webp);
  width: 13px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.arx-intervention span {
  color: #5c5c5c;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
}
.arx-entreprise.active .arx-link {
  display: inline-block;
  color: #f17d2c;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.arx-link {
  display: none;
}
.arx-link:hover {
  text-decoration: underline;
}
.arx_adresse {
  padding-bottom: 3px;
}
/* FIN - CSS LIST & MAP */

.et_pb_text_inner h2.h2_solution {
  font-weight: 700 !important;
  color: #3a3838 !important;
  font-family: "Bai Jamjuree", Helvetica, Arial, Lucida, sans-serif;
  font-size: 26px !important;
  padding-bottom: 40px;
  line-height: 1em !important;
}

@media only screen and (max-width: 767px) {
  #arx_solution_id img {
    max-width: 100% !important;
  }
  #arx_list_societes {
    margin-right: 0;
    margin-top: 0;
    max-height: 55vh;
  }
}