.fc-slide-header {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  justify-content: space-between;
  align-items: center;
}
.fc-slide-header svg {
  position: relative;
  width: 25px;
  height: 23px;
}

/* Styles pour le formulaire de contact */
.fc-formulaire-container {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 28px;
  background: #FFF;
  box-shadow: 4px 4px 17.3px 4px rgba(0, 0, 0, 0.25);
}
.fc-formulaire-container .swiper-button-prev {
  left: -2rem;
}
.fc-formulaire-container .swiper-button-next {
  right: -2rem;
}

.fc-formulaire {
  width: 100%;
}

.fc-form-content-1 {
  margin: 0 0 0 2rem;
}
@media screen and (max-width: 600px) {
  .fc-form-content-1 {
    margin: 0;
  }
}
.fc-form-content-1 .fc-form-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .fc-form-content-1 .fc-form-group {
    flex-wrap: wrap;
  }
}
.fc-form-content-1 .fc-form-group label {
  display: block;
  margin: 0;
  color: #7A7777;
  font-size: 16px;
  white-space: nowrap;
  width: 120px;
  flex-shrink: 1;
  font-family: "avenirnextltpromedium";
}
.fc-form-content-1 .fc-form-group label.fc-label-telephone, .fc-form-content-1 .fc-form-group label.fc-label-entrepot {
  flex-shrink: 0;
  white-space: normal;
  width: 152px;
}
.fc-form-content-1 .fc-form-group label .fc-required {
  color: inherit;
}
.fc-form-content-1 .fc-form-group input[type=text],
.fc-form-content-1 .fc-form-group input[type=email],
.fc-form-content-1 .fc-form-group input[type=tel] {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #E6EFFF;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background-color: #E6EFFF;
  margin: 0;
  box-shadow: none;
  border: 1px solid #E6EFFF;
  outline: 0;
}
.fc-form-content-1 .fc-form-group input[type=text]:focus,
.fc-form-content-1 .fc-form-group input[type=email]:focus,
.fc-form-content-1 .fc-form-group input[type=tel]:focus {
  outline: none;
  background-color: #ffffff;
  border: 1px dashed #E6EFFF;
}

.fc-submit-btn {
  background-color: #3498db;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.fc-submit-btn:hover {
  background-color: #28508a;
}

.fc-submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

.fc-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: none;
}

.fc-message.fc-success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.fc-message.fc-error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Styles pour le carrousel Swiper */
.fc-swiper-container {
  width: 100%;
  position: relative;
}
.fc-swiper-container .swiper-slide {
  height: auto;
  display: flex;
  align-items: flex-start;
}

.fc-form-slide {
  width: 100%;
  padding: 0;
}
.fc-form-slide .fc-slide-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: left;
}

.fc-form-header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.fc-form-header .fc-slide-title-container {
  display: flex;
  align-items: center;
}
.fc-form-header .fc-delete-slide-container .fc-delete-slide-btn {
  padding: 0.5rem;
  border-radius: 10px;
}

.fc-slide-header-text {
  display: block;
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  font-family: "avenirnextltpromedium";
}

/* Styles pour les boutons radio OUI/NON */
.fc-radio-group {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .fc-radio-group {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.fc-radio-group .fc-radio-label {
  display: block;
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  font-family: "avenirnextltpromedium";
}
.fc-radio-group svg {
  position: relative;
  width: 25px;
  height: 23px;
}
.fc-radio-group .fc-radio-icon {
  display: flex;
  margin: 0;
  align-items: center;
}

.fc-radio-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.fc-radio-buttons input[type=radio] {
  display: none;
}

.fc-radio-btn-label {
  display: inline-block;
  width: 76px;
  padding: 6px 20px 3px;
  background-color: #F2AD34;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 10px;
  margin: 0;
  font-family: "avenirnextltprobold";
}
.fc-radio-btn-label:hover {
  background-color: #B57015;
  color: #ffffff;
}
.fc-radio-btn-label.fc-radio-non-label {
  background: #e5e5e5;
  color: #666666;
}

.fc-radio-buttons input[type=radio]:checked + .fc-radio-oui-label,
.fc-radio-buttons input[type=radio]:checked + .fc-radio-non-label {
  background: #F2AD34;
  background: linear-gradient(90deg, #F2AD34 19.71%, #B57015 100%);
  color: #ffffff;
  border: none;
}

.fc-radio-buttons input[type=radio].no-select + .fc-radio-oui-label {
  background: #e5e5e5;
  color: #666666;
}

.fc-submit-all-btn {
  background: #F2AD34;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 10px;
  background: linear-gradient(90deg, #F2AD34 19.71%, #B57015 100%);
}
.fc-submit-all-btn:hover {
  background-color: #28508a;
}
.fc-submit-all-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

/* Styles pour le bouton "Ajouter une personne" */
.fc-add-person-container {
  margin-top: 15px;
}

.fc-add-person-btn {
  background-color: #27ae60;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.fc-add-person-btn:hover {
  background-color: #229954;
}

.fc-add-person-btn:active {
  transform: scale(0.98);
}

/* Styles pour le bouton final "Inscrire toutes les personnes" */
.fc-submit-all-container {
  margin-top: 30px;
  text-align: center;
}

/* Styles pour le bouton "Recommencer les inscriptions" */
.fc-restart-container {
  margin-top: 20px;
  text-align: center;
}

.fc-restart-btn {
  background-color: #27ae60;
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 250px;
}

.fc-restart-btn:hover {
  background-color: #229954;
}

.fc-restart-btn:active {
  transform: scale(0.98);
}

/* Styles pour la navigation Swiper */
.fc-swiper-button-next,
.fc-swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: #28508a;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.fc-swiper-button-next:hover,
.fc-swiper-button-prev:hover {
  background-color: #406aa6;
  transform: scale(1.1);
}
.fc-swiper-button-next:after,
.fc-swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.fc-swiper-button-next.swiper-button-disabled,
.fc-swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: not-allowed;
}

/* Styles pour la pagination Swiper (dots avec noms) */
.fc-swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
.fc-swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  min-width: 80px;
  padding: 8px 15px;
  margin: 6p !important;
  background-color: #e0e0e0;
  color: #333;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
}

.fc-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #28508a;
  color: #ffffff;
  transform: scale(1.1);
}
.fc-swiper-pagination .swiper-pagination-bullet-active:hover {
  background-color: #406aa6;
}

.fc-swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #b0b0b0;
}

/* Styles pour les erreurs de validation */
.fc-field-error {
  border-color: #e74c3c !important;
  background-color: #fff5f5;
}

/* Responsive */
@media (max-width: 600px) {
  .fc-radio-buttons {
    flex-direction: row;
    align-items: center;
    margin: 1rem 0 0;
  }
  .fc-radio-btn-label {
    width: 100%;
    max-width: 200px;
  }
  .fc-swiper-button-next,
  .fc-swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .fc-swiper-button-next:after,
  .fc-swiper-button-prev:after {
    font-size: 16px;
  }
  .fc-submit-all-btn {
    width: 100%;
    min-width: auto;
    padding: 12px 30px;
    font-size: 16px;
  }
  .fc-restart-btn {
    width: 100%;
    min-width: auto;
    padding: 12px 30px;
    font-size: 16px;
  }
  .fc-slide-title {
    font-size: 18px;
  }
  .fc-formulaire-container {
    padding: 2rem;
    margin: 0;
  }
  .fc-swiper-pagination .swiper-pagination-bullet {
    min-width: 50px;
    padding: 5px 8px;
    font-size: 10px;
    margin: 0 2px;
  }
  .fc-radio-btn-label {
    padding: 10px 15px;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */