#new_loueur_form {
  width: 100%;
}
/* MOD-MS 22.02.2023 : Style pour les conditions générales */
#conditionsGenerales b, #conditionsGenerales strong{
  font-weight: bold !important;
  text-align: justify;
}
#conditionsGenerales li{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* MOD-MS 10.02.2023 : Ajout du style pour la page d'inscription lhr */
.loueur_message_inscription {
  width: 100%;
  text-align: center;
}

.acf-actions {
  text-align: center;
}
.validation-conditions-inscription{
  text-align: center;
  border-top: none !important;
}
.validation-conditions-inscription .acf-label{
  display: none;
}

/* MOD-MS 10.02.2023 : Ajout du style pour la page d'ajout bae lhr */
#baeLhr,
#baeLhrForm {
  flex-direction: column;
  text-align: center;
  font-size: 1.7rem;
}

#baeLhr input[type=checkbox] {
  /* margin-right: 5px; */
}

#baeLhrForm #logement {
  width: auto;
}

#baeLhrForm option:disabled {
  background-color: var(--new-main-color);
  color: #ffffff;
}

#baeLhrForm #dateSejour {
  text-align: left;
  display: grid;
  grid-template-columns: 14rem 1fr;
  align-items: center;
}

#baeLhrForm #dateSejour label:first-of-type span {
  display: block;
  margin-bottom: -15px;
}

#baeLhrForm #dateSejour t {
  font-size: 13px;
}

#baeLhrForm #infoFalcu {
  text-align: left;
}

#baeLhrForm #infoFalcu .info-falcu-container {
  width: 100%;
  display: flex;
}

#baeLhrForm #infoObli {
  text-align: left;
}

#baeLhrForm #infoObli .arrLine {
  display: flex;
  align-items: center;
}

#baeLhrForm #infoFalcu .info-falcu-container div,
#baeLhrForm #infoObli .arrLine div {
  width: 45%;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

#baeLhrForm .info-falcu-container div:nth-child(even),
#baeLhrForm #infoObli .arrLine div:nth-child(even) {
  padding-left: 20px;
}

#baeLhrForm .info-falcu-container div:nth-child(odd),
#baeLhrForm #infoObli .arrLine div:nth-child(odd) {
  padding-right: 20px;
}

#baeLhrForm #infoFalcu input,
#baeLhrForm #infoObli input {
  width: 100%;
}

#baeLhrForm #perSuppl {
  width: 100%;
  display: flex;
}

#baeLhrForm #perSuppl #adulte,
#baeLhrForm #perSuppl #enfant {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

#baeLhrForm #perSuppl #nbAdulte,
#baeLhrForm #perSuppl #nbEnfant {
  margin-right: 10px;
  margin-left: 10px;
}

#baeLhrForm #perSuppl #adulteListe,
#baeLhrForm #perSuppl #enfantListe {
  display: none;
  width: 100%;
  padding: 0px 25px;
}

#baeLhrForm #adulteListe .leftText,
#baeLhrForm #enfantListe .leftText {
  font-weight: bold;
  border-bottom: 1px solid var(--new-main-color);
  /* margin-bottom: 10px; */
  margin-top: 5px;
}

#baeLhrForm #adulteListe .rightBlock div,
#baeLhrForm #enfantListe .rightBlock div {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  text-align: left;
  margin: 10px 0px;
}

#baeLhrForm #adulteListe .rightBlock input,
#baeLhrForm #enfantListe .rightBlock input {
  width: 100%;
}

#baeLhrForm #enfantListe input[type=checkbox] {
  width: 1.15em !important;
  margin-right: 5px;
}

#baeLhrForm #enfantListe .rightBlock div:last-child {
  display: inline-block;
  margin: 0px;
}

#baeLhrForm .donneeValide {
  margin-top: 10px;
}

#baeLhr .returnMessage {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

#baeLhr #returnMessage span {
  width: fit-content;
  background: green;
  padding: 10px 30px 10px 30px;
  color: white;
  border-radius: 5px;
}

/* MOD-MS 13.02.2023 : Ajout du style pour la gestion des baes lhr */
#gestionBaeLhr .filter-container {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#gestionBaeLhr #baeLhrContent {
  width: 100%;
  margin-top: 15px;
}


#gestionBaeLhr .actions-container a {
  font-size: 3rem;
  margin-left: 1rem;
  color: var(--new-main-color);
}

#baeLhrForm {
  width: 100%;
}

/* MOD-MS 14.02.2023 : Ajout de tooltip pour les actions */
.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted var(--new-main-color); If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: var(--new-main-color);
  color: var(--new-text-color);
  text-align: center;
  padding: 5px 0;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
  font-size: 1.5rem;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--new-main-color) transparent transparent transparent;
}

.export-message-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-message-container .export-message {
  padding: 5px 15px;
  margin: 10px 0px;
  background-color: var(--new-main-color);
  color: var(--new-text-color);
  width: fit-content;
}

/* MOD-MS 15.02.2023 : Liste loueurs */
#listLoueursContainer{
  flex-direction: column;
    align-items: center;
    justify-content: center;
}
#listLoueursContainer .actions-list-loueurs{
  width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
#listLoueursContainer .list-loueurs{
  width: 100%;
}

/* Profil */
#modificationProfil{
  width: 100%;
}
#modificationProfil #acf-form{
  width: 100%;
}

#message{
  width: 100%;
  text-align: center;
}
#message p{
  padding: 5px 15px;
  margin: 10px 0px;
  background-color: var(--new-main-color);
  color: var(--new-text-color);
  width: fit-content;
  display: inline-block;
}


/* MOBILE ET APP */
/* App */
/* MOD-MS 22.02.2023 : Ajout style form inscription */
.validation-conditions-inscription .message{
  display: inline;
}
.validation-conditions-inscription .message a{
  text-decoration: underline;
}

body.wpappninja #baeLhrForm #dateSejour div {
  width: 100%;
}

body.wpappninja #baeLhr .retour-page a {
  text-decoration: underline;
}

body.wpappninja #baeLhr #returnMessage {
  margin-top: 2em;
  width: 100%;
  font-size: 1.2rem;
}

body.wpappninja #baeLhr #baeActions a {
  font-size: 1.2rem;
}

/* Gesiton des BAES LHR */
body.wpappninja #gestionBaeLhr {
  padding: 0px 0px;
}

body.wpappninja #gestionBaeLhr select {
  text-align: center;
}
body.wpappninja #gestionBaeLhr #logement{
  margin: 0px;
}
body.wpappninja #gestionBaeLhr #baeLhrContent select {
  font-size: inherit;
}

body.wpappninja #gestionBaeLhr #baeLhrList_filter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Mobile */
@media screen and (max-width: 870px) {

  /* Header */
  .site-header a,
  .page-header,
  .page-header .entry-title {
    font-size: 25px;
  }

  /* MOD-MS 22.02.2023 : Ajout style form inscription */
  .validation-conditions-inscription{
    text-align: justify;
    font-size: .8em;
  }

  /* Ajout BAE LHR */
  #baeLhr,
  #baeLhrForm {
    padding: 0px 2vw;
  }

  #baeLhr .retour-page {
    margin: 10px 0px;
  }

  #baeLhr .retour-page a {
    display: block;
  }

  #baeLhr .retour-page span {
    display: none;
  }

  #baeLhrForm .logement-selec {
    margin-bottom: 10px;
  }

  #baeLhrForm .logement-selec label {
    display: block;
  }

  #baeLhrForm .logement-selec select {
    width: 100%;
    display: block;
  }

  #baeLhrForm #logement {
    width: 100%;
  }

  #baeLhrForm #dateSejour {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #baeLhrForm #infoFalcu {
    text-align: center;
  }

  #baeLhrForm #infoFalcu .info-falcu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #baeLhrForm #infoFalcu .info-falcu-container div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  #baeLhrForm #perSuppl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #baeLhrForm #infoObli {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #baeLhrForm #infoObli .arrLine {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  #baeLhrForm #infoObli .arrLine div {
    display: inline-block;
    width: 100%;
    padding: 5px 0px !important;
  }

  #baeLhrForm #adulteListe .rightBlock div,
  #baeLhrForm #enfantListe .rightBlock div {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 0px;
  }

  /* MOD-MS 13.02.2023 : Ajout du style mobile pour la page de gestion des baes lhr */
  #baeLhrContent {
    font-size: 12px;
  }

  #gestionBaeLhr .filter-container {
    flex-direction: column;
  }

  #gestionBaeLhr .filter-container div {
    margin: 5px 0px;
  }

  #gestionBaeLhr .filter-container select {
    margin-top: 10px;
  }

  #gestionBaeLhr th,
  #gestionBaeLhr td,
  #gestionBaeLhr .filter-container,
  #gestionBaeLhr .filter-container select {
    font-size: 12px;
  }

  #baeLhrContent .dataTables_length label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* MOD-MS 15.02.2023 */
  #listLoueursContainer,
  #listLoueursContainer th,
  #listLoueursContainer td,
  #listLoueursContainer select {
    font-size: 12px;
  }
  #listLoueursContainer .actions-list-loueurs{
      text-align: center;
      margin-bottom: 15px;
      margin-top: 10px;
  }
  #listLoueursContainer .actions-list-loueurs .export-loueurs{
    width: auto;
  }
  #listLoueursContainer .list-loueurs{
    width: 100%;
  }
}