@charset "UTF-8";

html {
    font-size: 100%;
}

@media (max-width: 800px) {
    html {
        font-size: 80%;
    }
}


.modal {
  display: none;
  /* Masqué par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center; }
  .modal.open {
    display: flex;
    /* Affiché en mode flex pour centrer le contenu */
    align-items: center;
    justify-content: center; }
  .modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative; }
    .modal .modal-content form {
      display: flex;
      flex-direction: column;
      gap: 1.2em; }
      .modal .modal-content form label {
        font-weight: 600;
        margin-bottom: 0.1em;
        color: #1a237e; }
      .modal .modal-content form input[type="email"],
      .modal .modal-content form input[type="phone"],
      .modal .modal-content form input[type="date"],
      .modal .modal-content form input[type="datetime-local"],
      .modal .modal-content form textarea {
        padding: 0.7em 1em;
        border: 1.5px solid #b0bec5;
        border-radius: 6px;
        font-size: 1em;
        background: #f5f7fa;
        transition: border-color 0.2s;
        margin-bottom: 0.5em; }
        .modal .modal-content form input[type="email"]:focus,
        .modal .modal-content form input[type="phone"]:focus,
        .modal .modal-content form input[type="date"]:focus,
        .modal .modal-content form input[type="datetime-local"]:focus,
        .modal .modal-content form textarea:focus {
          border-color: #1976d2;
          outline: none;
          background: #fff; }
      .modal .modal-content form textarea {
        resize: vertical;
        min-height: 120px;
        font-family: inherit; }
    .modal .modal-content #close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 1.5em;
      cursor: pointer; }
    .modal .modal-content button[type="submit"] {
      border: none;
      border-radius: 20px;
      font-size: 0.98rem;
      font-weight: 500;
      padding: 12px 10px;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      text-align: center;
      color: white;
      background: #00316a; }
      .modal .modal-content button[type="submit"]:hover {
        background: #001937; }

.programme-selector {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  overflow: hidden;
  height: calc(100vh - 380px);
  overflow-y: auto; 
  margin-top: 20px;
}
  .programme-selector .programme {
    margin-bottom: 2rem; }
    .programme-selector .programme label {
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem; }
      .programme-selector .programme label input[type="radio"] {
        accent-color: #2e3a91; }
        @media (max-width: 600px) {
          .programme-selector .programme label input[type="radio"] {
            display: none; } 
          
          .programme-selector .programme label {
            
            font-size: 0.65rem;
          
          }
          
          }
      .programme-selector .programme label .details {
        font-weight: normal;
        font-size: 0.9rem;
        color: #666;
        margin-left: 0.5rem; 
      }
        @media (max-width: 600px) {
          .programme-selector .programme label .details {
            font-size: 0.6rem;
          }          
        }
      
    .programme-selector .programme .dates {
      margin-top: 1rem;
      flex-wrap: wrap;
      gap: 0.5rem; }
      .programme-selector .programme .dates span[data-date] {
        background: #eef2f9;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        cursor: pointer;
        border: 1px solid transparent;
        transition: 0.2s ease; }
        .programme-selector .programme .dates span[data-date]:hover {
          background: #d0dbf0; }
        .programme-selector .programme .dates span[data-date].selected {
          background: #2e3a91;
          color: white !important;
          border-color: #1f2960; }
    .programme-selector .programme input[type="radio"]:checked ~ .dates {
      display: flex; }
    .programme-selector .programme .dates-table,
    .programme-selector .programme .remise-info,
    .programme-selector .programme .description,
    .programme-selector .programme .intra-periode-field {
      padding-left: 2rem; }
      @media (max-width: 600px) {
        .programme-selector .programme .dates-table,
        .programme-selector .programme .remise-info,
        .programme-selector .programme .description,
        .programme-selector .programme .intra-periode-field {
          padding-left: 0; } }
    .programme-selector .programme .description p {
      padding: 0;
      margin: 0;
      font-size: 0.9rem; }
    .programme-selector .programme .intra-periode-field {
      margin: 5px 0; }
      .programme-selector .programme .intra-periode-field label {
        font-weight: 600;
        display: block;
        margin-bottom: 0.3rem;
        font-size: 1rem; }
      .programme-selector .programme .intra-periode-field input {
        width: 100%; }
    .programme-selector .programme .remise-info {
      font-size: 0.9rem;
      margin-top: 0.5rem; }
      .programme-selector .programme .remise-info .remise-1 {
        color: #18c25f; }
      .programme-selector .programme .remise-info .remise-2 {
        color: #d32f2f; }

.dates-grid {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  background-color: #eaf4fb;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: .5rem;
  overflow-x: auto;
  overflow-y: hidden; }
  @media (max-width: 600px) {
    .dates-grid {
      display: block;
      overflow-x: auto; } }
  .dates-grid thead th {
    background-color: #03a9f4;
    color: #fff;
    padding: 0rem 0rem;
    text-align: center;
    font-weight: 400;
    font-size: 0.85rem; }
  .dates-grid tbody td {
    text-align: center;
    padding: 0.5rem 0.4rem;
    vertical-align: top;
    color: #333;
    min-width: 80px; }
  .dates-grid span[data-date] {
    display: inline-block;
    background-color: #fff;
    color: #1b1b1b;
    padding: 0.15rem 0.4rem;
    margin: 0.1rem 0;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    font-weight: 500;
    font-size: 0.85em;
    border: 1px solid transparent;
    line-height: 1.1; }
    .dates-grid span[data-date]:hover {
      background-color: #e3f2fd; }
    .dates-grid span[data-date].selected {
      background-color: #1976d2;
      color: #fff !important;
      border-color: #0d47a1; }
    .dates-grid span[data-date].remise2 {
      border-color: #d32f2f;
      color: #d32f2f; }
    .dates-grid span[data-date].remise1 {
      border-color: #18c25f;
      color: #18c25f; }

header {
  text-align: center;
  margin-bottom: 2rem; 
}
  header h1 {
    font-size: 1.8rem;
    color: #0e2439; 
  }
    header h1 span {
      font-weight: bold;
      color: #2c459b; 
    }
  @media (max-width: 650px) {
    header h1 {
      font-size: 1.6rem;
    } 
  }
  header .subtitle,
  header .infos,
  header .contact {
    margin-top: 0.5rem;
    color: #003366; }

.side-buttons {
  position: fixed;
  width: 245px;
  /*transform: translateY(-50%);*/
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 0; }
  @media (max-width: 1271px) {
    .side-buttons {
      display: none; } }
  .side-buttons .side-btn {
    
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0.4rem 0.8rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s;
    text-align: left;
    min-width: 230px;
    /*&.lyon {
      background: $bleu-fonce;
      &:hover {
        background: lighten($bleu-fonce, 10%);
      }
    }

    &.paris {
      background: #388e3c;

      &:hover {
        background: #43a047;
      }
    }

    &.lille {
      background: $bleu;

      &:hover {
        background: lighten($bleu, 10%);
      }
    }*/ }
    .side-buttons .side-btn:hover {
      background: ligten(#00316a, 10%);
      transform: translateX(8px); 
    }
    /* .side-buttons .side-btn:last-of-type {
      background: #2c459b; 
    }
    .side-buttons .side-btn:last-of-type:hover {
      background: #3757c3; 
    } */


.ville_cat1 {
  background: #00316a;
}
.ville_cat2 {
  background: #0b5ab5;
}
.ville_cat3 {
  background: #2481ed;

  /* 126fdb */
  
}
/* .ville_cat4 {
  background: #0b5ab5;
}
.ville_cat5 {
  background: #126fdb;
} */


.side-buttons-vert {
  width: 250px;
  position: fixed;
  left: 0;

  transform: rotate(-90deg) translateX(-50%);
  transform-origin: top left;
  display: inline;
  z-index: 100;
}

.side-buttons-vert .side-btn {
  background: #00316a;
  color: #fff;
  border: none;
  border-radius: 8px 8px 0px 0px ;
  padding: 0.1rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
  width: 218px;
  height: 37px;

}

.side-buttons-vert .side-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 1270px) {
  .side-buttons-vert {
    display: inline-block;
  }
  .side-buttons {
    display: none;
  }
}
@media (min-width: 1271px) {
  .side-buttons-vert {
    display: none;
  }
}

.info-box {
  position: fixed;
  width: 240px;
  display: flex;
  margin-left: 600px;
  flex-direction: column;
  gap: 1rem;
  z-index: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 24px 24px 24px;
  align-items: center;
  margin-left: auto;
  z-index: 10; }
  @media (max-width: 1271px) {
    .info-box {
      display: none; } }
  .info-box h2 {
    color: #1a2633;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    margin-top: 0; }
  .info-box hr {
    position: relative;
    left: 0;
    width: calc(100% + 48px);
    border: none;
    border-top: 2px solid #00316a;
    margin: 0 0 18px 0; }
  .info-box .info-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center; }
    .info-box .info-actions .info-btn {
      border: none;
      border-radius: 20px;
      font-size: 0.98rem;
      font-weight: 500;
      padding: 12px 10px;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      text-align: center;
      color: white; }
      .info-box .info-actions .info-btn.intra {
        background: #2c459b; }
        .info-box .info-actions .info-btn.intra:hover {
          background: #3757c3; }
      .info-box .info-actions .info-btn.rappel {
        background: #e6a600; }
        .info-box .info-actions .info-btn.rappel:hover {
          background: #ffbf1a; }
  .info-box .info-contact {
    text-align: center; }
    .info-box .info-contact a {
      text-decoration: none;
      color: inherit; }
    .info-box .info-contact .info-phone {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1a2633;
      margin: 0 0 6px 0; }
    .info-box .info-contact .info-email {
      color: #1a2633;
      font-size: 1rem;
      text-decoration: underline;
      word-break: break-all; }


.question-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.question-icon .question-img {
  width: 60px;
  border-radius: 50%;
}
.question-icon .question-img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);

}

.calendar-icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20;
}

.calendar-icon .calendar-img {
  width: 60px;
  border-radius: 50%;
}
.calendar-icon .calendar-img:hover {
  transform: scale(1.1);
  filter: brightness(1.6);

}

@media (max-width: 800px) {
  .question-icon .question-img {
    width: 60px;
  }
  .calendar-icon .calendar-img {
    width: 55px;
  }

}

@media (min-width: 801px) and (max-width: 1270px) {
  .question-icon .question-img {
    width: 80px;
  }
  .calendar-icon .calendar-img {
    width: 75px;
  }
}

@media (min-width: 1271px) {
  .question-icon {
    display: none;
  }
  .calendar-icon {
    display: none;
  }
  .question-modal {
    display: none;
  }
  .centres-modal {
    display: none;
  }
}

.question-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 80%;
  min-width: 366px;
  max-width: 320px;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 5px 2px 16px rgba(0, 0, 0, 0.1);
  padding: 32px 24px 24px 24px;
  align-items: center;
}
.question-modal h2 {
  color: #1a2633;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 0; 
}
.question-modal hr {
  position: relative;
  left: -24px;
  width: calc(100% + 48px);
  border: none;
  border-top: 2px solid #00316a;
  margin: 0 0 18px 0; 
}

.question-modal .info-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center; 
}
.question-modal .info-actions .info-btn {
  border: none;
  border-radius: 20px;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 12px 10px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  text-align: center;
  color: white; 
}
.question-modal .info-actions .info-btn.intra {
  background: #2c459b; 
}
.question-modal .info-actions .info-btn.intra:hover {
  background: #3757c3; 
}
.question-modal .info-actions .info-btn.rappel {
  background: #e6a600; 
}
.question-modal .info-actions .info-btn.rappel:hover {
  background: #ffbf1a;
}
.question-modal .info-contact {
  text-align: center;
}
.question-modal .info-contact a {
  text-decoration: none;
  color: inherit; 
}
.question-modal .info-contact .info-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2633;
    margin: 0 0 6px 0; 
}
.question-modal .info-contact .info-email {
    color: #1a2633;
    font-size: 1rem;
    text-decoration: underline;
    word-break: break-all; 
}

.close-modal-cust {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}


.centres-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 80%;
  max-width: 320px;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 5px 2px 16px rgba(0, 0, 0, 0.1);
  padding: 32px 24px 24px 24px;
  align-items: center;
}
.centres-modal h2 {
  color: #00316a;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 0; 
}
.centres-modal hr {
  position: relative;
  left: -24px;
  width: calc(100% + 48px);
  border: none;
  border-top: 2px solid #00316a;
  margin: 0 0 18px 0; 
}

.centres-list a {
    font-size: 1rem;
    display: block;
    text-decoration: none;
    color: #00316a;
    margin: 1px 4px;
    padding: 6px 8px;
    transition: color 0.3s;
    font-weight: 500;
}

.centre-item:hover {
  border-radius: 4px;
    background-color: #00316a;
}
.centres-list a:hover {
    color: #fff;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #0e2439;
  color: #001e3c; }

.logo-wrapper {
  text-align: center;
  padding: 2rem 0 1rem; }
  .logo-wrapper .logo {
    width: 130px; }

.steps {
  padding: 24px 0 0 0;
  position: absolute;
  top: -57px;
  width: calc(100% - 4rem);
  margin-left: 0px;  
}
  @media (max-width: 700px) {
    .steps {
      
    }
  }
  .steps .texte {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 10px; 
    display: inline;
  }
  .steps .texte .txt-ville {
    padding-top: 4px;
    float: right; 
    font-size: 1.1rem; 
  }
  .steps .progress-bar {
    width: 100%;
    height: 22px;
    background: #d3d6db;
    border-radius: 16px;
    margin: 20px auto 12px auto;
    overflow: hidden; }
    .steps .progress-bar .progress {
      background: #174c74;
      height: 100%;
      border-radius: 16px;
      transition: width 0.4s; }

.container {
  max-width: 800px;
  min-height: 500px;
  margin: 0 auto 2rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative; 
}

  

.locations {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem; }
  .locations .location {
    flex: 1;
    text-align: left; }
    .locations .location h3 {
      margin-bottom: 5px; }
    .locations .location img {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      max-height: 220px;
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 0.5rem; 
    }
    .locations .location p {
      font-weight: bold;
      font-size: 90%;
      margin: 0.2rem 0; }
    .locations .location a {
      color: #003366;
      text-decoration: underline;
      font-size: 0.9rem; }

      @media (max-width: 800px) {
        .locations .location img {
          max-height: 160px;
        }
      }

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; }
  @media (max-width: 700px) {
    .form {
      display: block; }
      .form .form-group {
        margin-bottom: 15px; } }
  .form .form-title {
    grid-column: span 2;
    font-weight: bold;
    margin-bottom: 1rem; }
  .form .form-group {
    display: flex;
    flex-direction: column; }
    .form .form-group label {
      font-size: 0.9rem;
      margin-bottom: 0.3rem; }
    .form .form-group input {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 0.3rem; }
    .form .form-group small {
      font-size: 0.7rem;
      color: #666;
      margin-top: 0.2rem; }

.form-footer {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem; }
  .form-footer button {
    background-color: #2e3a91;
    color: #fff;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 0.4rem;
    cursor: pointer; }
  .form-footer .check {
    margin-left: 0.5rem;
    background-color: #007fff;
    color: white;
    border-radius: 50%;
    padding: 0.3rem 0.6rem;
    font-size: 1rem; }

.footer-stick {
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto 0rem;
  padding: 2rem;
}

.categorie h3 {
  font-size: 0.98rem;
  margin: .3rem;
  border-radius: 0.5rem;
  padding: .3rem;
  margin: 0;
  margin-bottom: 1rem;
  cursor: pointer; 
}

.categorie .chevron {
  display: inline-block;
  vertical-align: -13px;
  margin-right: 16px;
  margin-bottom: 10px;
  transition: transform 0.2s;
  transform: rotate(0deg);
  width: 30px;
  height: 30px;
  margin-left: 12px;
}

@media (max-width: 600px) {
  .categorie h3 {
    font-size: 70%;
    
  }
  .categorie .chevron {
    vertical-align: -7px;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    margin-left: 8px;
  }
}

.nb_participants_list {
  height: calc(100vh - 598px);
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.nb_participants {
  overflow: hidden;
}

  .nb_participants .recap-programmes .hparticipants {
    text-align: right;
    font-size: 14px;
    color: #2d3c5a;
    margin-bottom: 8px;
    margin-right: 40px; }
  .nb_participants .recap-programmes .recap-programme {
    background: #F1F5FC;
    border-radius: 12px;
    padding: 18px 20px 18px 16px;
    display: flex;
    align-items: center;
    margin-bottom: 16px; }
  .nb_participants .recap-programmes .remove_programme {
    color: #2d3c5a;
    font-weight: bold;
    font-size: 20px;
    margin-right: 16px;
    text-decoration: none; }
  .nb_participants .recap-programmes .contenu {
    flex: 1;
    display: flex;
    flex-direction: column; }
    .nb_participants .recap-programmes .contenu .programme {
      font-weight: 700;
      color: #2d3c5a; }
    .nb_participants .recap-programmes .contenu .dates {
      font-size: 15px;
      color: #2d3c5a; }
      .nb_participants .recap-programmes .contenu .dates .modifier {
        color: #2d3c5a;
        text-decoration: underline; }
    .nb_participants .recap-programmes .contenu .nb_participants {
      margin-left: 24px; }
      .nb_participants .recap-programmes .contenu .nb_participants input[type=number] {
        width: 48px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid #e0e6ed;
        padding: 4px 0;
        appearance: textfield;
        background: #fff;
        box-shadow: 0 1px 2px rgba(44, 62, 80, 0.03);
        font-size: 18px;
        height: 38px;
        outline: none;
        transition: border 0.2s; }
  .nb_participants + .form-footer {
    display: block;
    text-align: center;
    padding: 0.2rem 0rem; }
    .nb_participants + .form-footer hr {
      border: none;
      border-top: 2px dashed #0d4e86;
      margin-bottom: 1.1rem;
      margin-top: 1.1rem;
    }
    .nb_participants + .form-footer p {
      font-weight: bold;
      color: #0d4e86;
      max-width: 600px;
      margin: 0 auto 0.2rem;
      line-height: 1.4; }

.form-footer button[type="submit"] {
  background-color: #e7b600;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease; 
  margin-bottom: 8px;
  margin-top: 8px;
}
  .form-footer button[type="submit"]:hover {
    background-color: #ffcf1b; }


.input-group-number input[type=number]::-webkit-outer-spin-button,
.input-group-number input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group-number input[type=number] {
    -moz-appearance: textfield;
}

.input-group-number {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(44, 62, 80, 0.03);
  padding: 2px 4px;
  width: fit-content; }
  .input-group-number input[type=number] {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 18px;
    background: transparent;
    box-shadow: none;
    outline: none;
    margin: 0 4px; }
  .input-group-number .btn-minus,
  .input-group-number .btn-plus {
    background: #f1f5fc;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 18px;
    color: #2d3c5a;
    cursor: pointer;
    transition: background 0.2s; }
  .input-group-number .btn-minus:active,
  .input-group-number .btn-plus:active {
    background: #e0e6ed; }

.remove_programme {
  cursor: pointer; }

.add_session {
  text-align: center;
  margin-top: 4px; }
  .add_session a {
    text-decoration: none; }
    .add_session a .rond {
      background: #17446b;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px auto;
      cursor: pointer; }
      .add_session a .rond .txt {
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        margin-top: -4px; }
    .add_session a > span {
      text-decoration: underline; }

.merci-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none; }
  .merci-wrapper .merci-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(34, 64, 110, 0.08);
    padding: 48px 32px 40px 32px;
    width: 100%;
    text-align: center;
    border: 3px solid #E6C94D;
    position: relative; }
  .merci-wrapper .merci-envelope {
    margin-bottom: 32px; }
    .merci-wrapper .merci-envelope img {
      width: 180px;
      height: auto;
      display: block;
      margin: 0 auto; }
  .merci-wrapper .merci-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #23406E;
    margin-bottom: 35px; }
  .merci-wrapper .merci-title span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #23406E;
    margin-top: 4px; }
  .merci-wrapper .merci-message {
    font-size: 1.1rem;
    color: #222;
    margin: 20px 0;
    font-weight: bold; }
  .merci-wrapper .merci-sub {
    font-size: 1rem;
    color: #23406E;
    margin-bottom: 45px; }
  /* .merci-wrapper .merci-actions {
    display: flex;
    gap: 24px;
    justify-content: center; }
  .merci-wrapper .merci-btn {
    background: #23406E;
    color: #fff;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    display: inline-block; }
  .merci-wrapper .merci-btn:hover {
    background: #e6a600;
    color: #fff; } */
    .merci-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .merci-btn {
    background: #23406E;
    color: #fff;
    border-radius: 24px;
    padding: 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    display: inline-block;
    align-items: center;

    flex: 1 1 calc(25% - 24px);
    text-align: center;
    box-sizing: border-box;
    min-width: 180px;
    max-width: 100%;
  }

  .merci-btn:hover {
    background: #FFD700;
    color: #fff;
  }

.participant-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0; }
  .participant-actions > a {
    text-decoration: none; }
  .participant-actions .btn {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: #e5e7eb;
    color: #1a2630;
    cursor: pointer;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30, 40, 60, 0.04); }
    .participant-actions .btn:hover {
      box-shadow: 0 4px 16px rgba(30, 40, 60, 0.08); }
    .participant-actions .btn .btn-icon {
      margin-right: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%; }
      .participant-actions .btn .btn-icon.btn-icon-dark {
        background: #1a2630; }
      .participant-actions .btn .btn-icon.btn-icon-success {
        background: #4cd964; }
      .participant-actions .btn .btn-icon svg {
        display: block; }
    .participant-actions .btn span {
      text-align: left; }
    .participant-actions .btn strong {
      font-weight: 700;
      font-size: 1.08em;
      display: block;
      margin-bottom: 2px; }
    .participant-actions .btn .btn-desc {
      font-size: 0.97em;
      color: #6b7280;
      font-weight: 400;
      font-style: italic; }
  .participant-actions .btn-secondary {
    background: #e5e7eb;
    color: #1a2630; }
    .participant-actions .btn-secondary .btn-icon-dark {
      background: #fff; }
  .participant-actions .btn-success {
    background: #eafbee;
    color: #1a2630; }
    .participant-actions .btn-success .btn-icon-success {
      background: #fff; }
    .participant-actions .btn-success strong {
      color: #1a2630; }

.liste_participants {
  overflow: hidden;
  max-height: 70vh;
  overflow-y: scroll; }
  .liste_participants .recap-programmes .recap-programme {
    display: block;
    background: none;
    margin-bottom: 0;
    padding: 7px 0; }
    .liste_participants .recap-programmes .recap-programme .entete {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #F1F5FC;
      border-radius: 12px;
      padding: 18px 20px 18px 16px; }
      @media (max-width: 600px) {
        .liste_participants .recap-programmes .recap-programme .entete {
          flex-direction: column; } }
  .liste_participants .icone {
    margin-right: 20px;
    cursor: pointer; }
  .liste_participants .crayon {
    margin-left: 20px;
    cursor: pointer; }
  .liste_participants .editer {
    text-decoration: underline;
    cursor: pointer; }

.participants-session {
  flex-direction: column;
  align-items: flex-end;
  display: none;
  margin-top: 16px; }
  .participants-session .participant-form {
    width: 90%;
    background: #f6f9fc;
    border-radius: 12px;
    padding: 18px 18px 10px 18px;
    margin-bottom: 12px;
    position: relative; }
    .participants-session .participant-form .civilite {
      flex: 0 0 70px; }
    .participants-session .participant-form .icon-pencil {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer; }
      .participants-session .participant-form .icon-pencil img {
        width: 28px;
        height: 28px; }
    .participants-session .participant-form > div:first-child {
      display: flex;
      align-items: center;
      justify-content: space-between; }
    .participants-session .participant-form > div:last-child {
      display: flex;
      gap: 12px;
      margin-top: 10px; }
      .participants-session .participant-form > div:last-child > div {
        flex: 1; }
        .participants-session .participant-form > div:last-child > div.civilite {
          flex: 0 0 80px; }
      .participants-session .participant-form > div:last-child label {
        display: block;
        font-weight: 500;
        margin-bottom: 4px; }
      .participants-session .participant-form > div:last-child input {
        width: calc(100% - 10px);
        padding: 6px 8px;
        border: 1px solid #d1d7e0;
        border-radius: 6px;
        background: #fff;
        font-size: 1em;
        box-sizing: border-box; }
  .participants-session .participants-actions {
    width: 100%; }

/*# sourceMappingURL=inscriptions.css.map */

@media (min-width: 801px) and (max-width: 1270px) {
     .programme-selector .programme label {
        font-size: 0.8rem;

    }

    .nb_participants .recap-programmes .contenu .programme {
      font-weight: 700;
      font-size: 13px;
    }
    .nb_participants .recap-programmes .contenu .dates {
      font-size: 15px;
    }
}

@media (max-width: 688px) {
    .container {
      margin-left: 8px;
      margin-right: 8px;
      padding-left: 0.4rem;
      padding-right: 0.4rem;
    }


    .footer-stick {
      width: 92%;
      padding: 0 !important;
      margin: auto !important;
      padding-bottom: 20px !important;
    }

    .steps {
      width: calc(100% - 0.8rem);
    }

    .question-modal {
      padding: 32px 12px 24px 12px;
    }

    .question-modal hr {
      position: relative;
      left: -12px;
      width: calc(100% + 24px);
      border: none;
      border-top: 2px solid #00316a;
      margin: 0 0 18px 0; 
    }

    .nb_participants .recap-programmes .recap-programme {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .recap-programmes .recap-programme .nb_participants {
      flex-basis: 100%;
      margin-top: 1rem;
      padding-left: 28px;
    }

    .nb_participants .recap-programmes .contenu .programme {
      font-weight: 700;
      font-size: 9px;
    }
    .nb_participants .recap-programmes .contenu .dates {
      font-size: 10px;
    }
  }

  

  @media (max-width: 1440px) {
    .container {
      max-width: 600px;
    }
    .footer-stick {
      max-width: 600px;
    }
    
  }



    