/* Style the buttons that are used to open and close the accordion panel */
.accordion-sous-services {
	background-color:transparent!important;
  cursor: pointer;
	padding-bottom:0!important;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
	min-width:242px!important;
}
.accordion-sous-services::before{content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #000;
  float: left;
  margin-right: 5px;
}

.accordion-sous-services.active:before {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion-sous-services.active, .accordion-sous-services:hover, .accordion-sous-services:focus {
	background-color:transparent!important;
	text-decoration:underline!important;
	color:#000!important
}

/* Style the accordion panel. Note: hidden by default */
.panel-sous-services {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}

/* Décaler l'icône de la dernière étape */
.page-child #etapes > div:first-child .lqd-steps-indicator-wrap{position:absolute!important;right:15px!important;}