body {
  background-color: white;
}

select {
  appearance: none;
}

.id {
  font-weight: 600;
  color: white;
  opacity: 1;
}

.account-animation:hover .id {
  opacity: 0;
  transition: all 0.3s ease;
}

.account-animation svg {
  transition: transform 0.3s ease;
}

.account-animation:hover svg {
  transform: translateX(80px) scale(2);
}

.message p {
  color: #ffffff;
  text-align: center;
}

.greenalert {
  background-color: #2c2a57;
  color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.redalert {
  background-color: rgba(229, 79, 79, 0.9);
  color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.section-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.content {
  width: 90%;
  margin: 2% 5% 2% 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-title,
.content-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-title_row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.content-intro-index {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.content-intro_row,
.content-intro_row a {
  display: flex;
  align-items: center;
  gap: 10px;
}

itembtn-with-logo .content-intro_row p {
  font-weight: bold;
}

.content-form {
  background-color: transparent;
}

.content-form_title {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}

.welcome-container-title {
  display: flex;
  justify-content: space-between;
}

/* SVG */

nav svg path {
  fill: var(--color-white);
}

/* FORMULAIRE DE RECHERCHE */

.form-search {
  border: 1px solid #D9D9D9;
  background-color: white;
  padding: 12px 12px 12px 12px;
  border-radius: 50px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.form-search_button {
  background-image: url(../img/rechercher.svg);
  /* 16px x 16px */
  background-color: transparent;
  /* make the button transparent */
  background-repeat: no-repeat;
  /* make the background image appear only once */
  background-position: 0px 0px;
  /* equivalent to 'top left' */
  border: none;
  /* assuming we don't want any borders */
  cursor: pointer;
  /* make the cursor like hovering over an <a> element */
  height: 16px;
  /* make this the size of your image */
  padding-left: 16px;
  /* make text start to the right of the image */
  vertical-align: middle;
  /* align the text vertically centered */
  background-size: cover;
}

.form-search_input {
  border: none;
}

.form-search_input:focus-visible {
  outline: none;
}

.form-search_input::placeholder {
  font-family: "Poppins", sans-serif;
  color: #1E1E1E;
  font-weight: 400;
}

/* FORMULAIRE D'AJOUT/MODIFICATION */

.content-form .form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-form .form .row {
  display: flex;
  flex-direction: column;
}

.content-form .form .row-2 {
  display: flex;
  gap: 30px;
  align-items: flex-end;
}

.inputFiches2,
select,
textarea {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border: 0.1px solid #1bae81;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 100px;
  display: flex;
  text-align: center;
  width: 30%;
  background-color: #f3f3f3;
  height: 10px;
}

.inputFiches2::placeholder {
  color: #555;
  font-size: 15px;
}

.inputFiches1::placeholder {
  color: #555;
  font-size: 15px;
}

.inputFiches1,
select,
textarea {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  border: 0.1px solid #1bae81;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 50px;
  display: flex;
  text-align: center;
  background-color: #f3f3f3;
  height: 20px;
}

.showEntreprise,
select,
textarea {
  color: #000;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.inputEntreprise,
select,
textarea {
  border: 0.1px solid #1bae81;
  color: var(--item-form);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}

.inputEntreprise,
select,
textarea::placeholder {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding-left: 5px;
}

.input,
select,
textarea {
  text-align: center;
  border: 0.1px solid #1bae81;
  color: var(--item-form);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 50px;
  display: flex;
  width: 100%;
  background-color: #f3f3f3;
}

.input,
select,
textarea::placeholder {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.squareRge {
  width: 125px;
  height: 125px;
  background-color: #2c2a57;
  position: relative;
  border: 2px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
  border-radius: 20px;
}

.squareRge:before,
.squareRge:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: background-color 0.3s;
}

.squareRge:before {
  width: 70%;
  height: 4px;
}

.squareRge:after {
  width: 4px;
  height: 70%;
}

.squareRge:hover {
  background-color: #fff;
  border-color: #1bae81;
}

.squareRge:hover::before,
.squareRge:hover::after {
  background-color: #1bae81;
}

.commentaire {
  height: 100px;
}

.content-form .form .row .label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.inputfile,
.inputfiledoc {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
}

.bloc-inputfile {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  border: 1px dotted;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.image-preview {
  width: 250px;
}

.inputfiledoc + label {
  font-size: 1rem;
  color: var(--color-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
}

.bloc-inputfiledoc {
  border: 1px solid var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}

/* LES BOUTONS */

.bouton-1 {
  background-color: #1bae81;
  width: 105px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0.5rem;
  transition: 0.3s ease;
  cursor: pointer;
  color: var(--color-white);
  border: 0.1em solid #1cae81;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.bouton-1 svg path {
  fill: var(--color-white);
  transition: 0.3s ease;
}

.bouton-1:hover {
  background: transparent;
  color: #1bae81;
  border: 0.1em solid #1bae81;
}

.bouton-1:hover svg path {
  fill: #1bae81;
}

.bouton-2 {
  background-color: transparent;
  width: 105px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0.5rem;
  transition: 0.3s ease;
  cursor: pointer;
  color: #d35052;
  border: 0.1em solid #d35052;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.bouton-2 svg path {
  fill: #d35052;
  transition: 0.3s ease;
}

.bouton-2:hover {
  background-color: #d35052;
  color: #fff;
}

.bouton-2:hover svg path {
  fill: #fff;
}

.index {
  width: 100%;
  height: 580px;
  text-align: center;
}

.personal-index {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.personal-index p {
  padding: 2rem;
  margin-bottom: 1rem;
}

/* Récap réservation */
.reservation-recap {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 5px;
  border: solid 1px #d1d1d1;
}

.resa-show {
  font-family: var(--font-text);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d1d1d1;
  padding: 1rem 0;
}

.resa-show:nth-child(7),
.resa-show:nth-child(12),
.resa-show:nth-child(17) {
  border-bottom: none;
}

.input-pdf {
  display: none;
}

#add-pdf {
  border: dashed black 1px;
  height: 20px;
  cursor: pointer;
  padding: 0.5rem;
}

#add-pdf p {
  font-size: 1rem;
  margin: auto;
  font-weight: 700;
}

#previsu-pdf {
  width: 100%;
  height: 600px;
  object-fit: contain;
  margin: 0 auto;
}

#previsu-pdf iframe {
  width: 100%;
  height: 100%;
}

.input-supplementaire {
  display: none;
}

#add-supplementaire {
  border: dashed black 1px;
  height: 20px;
  cursor: pointer;
  padding: 0.5rem;
}

#add-supplementaire p {
  font-size: 1rem;
  margin: auto;
  font-weight: 700;
}

#previsu-supplementaire {
  width: 100%;
  height: 600px;
  object-fit: contain;
  margin: 0 auto;
}

#previsu-supplementaire iframe {
  width: 100%;
  height: 100%;
}

.check-documents {
  width: 20px;
  height: 20px;
}

.old-dossiers {
  background-color: #f8f8f8;
  color: var(--color-text);
  border: 1px solid;
  border-color: var(--color-text);
}

.old-dossiers:hover {
  background-color: var(--color-text);
  color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-text);
}

.form-control {
  font-family: system-ui, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

.form-control input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: var(--color-text);
  width: 0.45em;
  height: 0.45em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.form-control + .form-control {
  margin-top: 1em;
}

.form-control input[type="checkbox"]::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: var(--color-text);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-control input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.bloc-call-dashboard {
  width: 215px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #1bae81;
  border-radius: 10px;
}

.btn-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background-color: #1bae81;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: default;
  width: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.btn-with-logo-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background-color: #1bae81;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: default;
  width: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
  scale: 0.8;
}

.btn-with-logo-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-right: 20px;
  padding-left: 0px;
  background-color: #fff;
  color: #1bae81;
  border: 0.1em solid #1bae81;
  border-radius: 100px;
  cursor: pointer;
  scale: 0.8;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-with-logo-add:hover {
  background-color: #1bae81;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-with-logo-add:hover circle {
  stroke: #fff;
  fill: #1bae81;
  transition: all 0.3s ease-in-out;
}

.btn-with-logo-add:hover line {
  stroke: #fff;
  transition: all 0.3s ease-in-out;
}

.size-button {
  scale: 0.8;
}

.btn-with-logo span {
  font-size: 16px;
  font-weight: 600;
}

.btn-with-logo-tab span {
  font-size: 16px;
  font-weight: 600;
}

.client-dashboard {
  width: auto !important;
  position: relative;
  cursor: default;
}

.client-dashboard svg:last-child {
  opacity: 0;
  position: absolute;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.client-dashboard:hover button {
  opacity: 0;
  width: 30%;
  cursor: default;
}

.client-dashboard:hover svg:last-child {
  opacity: 1;
}

.img_background {
  width: auto;
  height: 85vh;
  position: absolute;
  z-index: -9999;
  right: 0;
  bottom: 6vh;
}

.img_background_reverse {
  width: 300px;
  height: 700px;
  position: absolute;
  z-index: -9999;
  left: 0;
  bottom: 6vh;
  transform: scaleX(-1);
}

.img_tab {
  width: 13px;
}

.button-none {
  text-decoration: none;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  font-size: 13px;
}

.button-none span {
  font-size: 13px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #2c2a57;
}

.div-form {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.div-input-form {
  display: flex;
  gap: 15%;
  justify-content: center;
}

.div-input-form-edit {
  display: flex;
  gap: 10%;
  justify-content: center;
}

.div-input-form-edit-button {
  display: flex;
  gap: 10%;
  justify-content: center;
  margin-top: 30px;
}

.input-width-one {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.input-width-two {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.input-width-two-pop {
  width: 100%;
}

.input-width-two-pop input {
  border: 0.1em solid #1bae81;
  font-size: smaller;
  margin-left: -20px;
}

.input input {
  padding: 20px;
  border: 0.1em solid #1bae81;
}

.input-width-two-pop input::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #4d72b8;
  text-align: center;
}

.checkBoxDiv {
  font-size: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  cursor: pointer;
  color: #4d72b8;
}

.checkBoxDiv:hover {
  color: #1bae81;
}

.input-label {
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  color: #4d72b8;
}

.input-label-fiches {
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  color: #000;
}

.user-profil {
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.name-tag {
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #4d72b8;
}

.name-tag-role {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #4d72b8;
}

.tag-info {
  display: flex;
  flex-direction: column;
  width: 200px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.tag-error {
  color: #d35052;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px;
}

.section-content-user {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  gap: 20%;
  width: 85%;
}

.personal-informations-admin {
  display: flex;
  flex-direction: column;
  gap: 10vh;
}

.personal-informations-user {
  display: flex;
  gap: 3vh;
}

.personal-informations-user-one {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.personal-informations-user-two {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.div-edit-user {
  border-radius: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 45px;
  padding-right: 45px;
  background-color: transparent;
  border: 0.1em solid #2c2a57;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.div-edit-user svg {
  fill: transparent;
  stroke: #4d72b8;
  stroke-width: 0.1em;
}

.bouton-user-edit {
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 20px;
  border: 0.1em solid #1bae81;
  color: #1bae81;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.bouton-user-edit:hover {
  background-color: #1bae81;
  color: #fff;
  transition: all 0.2s ease-in;
}

.hoversvg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hoversvg svg:hover {
  fill: #1bae81;
  stroke: #1bae81;
}

.bouton-user-edit-removed {
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #4d72b8;
  position: relative;
  /* ajouter une position relative pour positionner la barre de survol */
}

.bouton-user-edit-removed:hover {
  color: #1bae81;
}

.bar-hover {
  background-color: #4d72b8;
  height: 1px;
  width: 33%;
  border-radius: 50px;
  position: absolute;
  /* ajouter une position absolue pour la barre de survol */
  bottom: 0;
  /* positionner la barre de survol en bas du bouton */
  left: 0;
  /* positionner la barre de survol à gauche du bouton */
  transition: width 0.3s ease-out;
  /* ajouter une transition pour l'animation de la barre de survol */
}

.bouton-user-edit-removed:hover .bar-hover {
  width: 100%;
  background-color: #1bae81;
  /* augmenter la largeur de la barre de survol lors du survol */
}

/* POP-UP */

.inputEditProfil {
  width: 200px;
  background-color: #f3f3f3;
  border-radius: 9999px;
  padding-left: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  border: none;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content-profil {
  background-color: #fff;
  border: 1px solid #ccc;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 40px;
  z-index: 9;
  height: 60vh;
  width: 60%;
}

.popup-content {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-confimed {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.text-input {
  border: 0;
  outline: none;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #2c2a57;
}

.backFiches {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8vh;
  border: 0.3em solid #f3f3f3;
  padding: 4%;
  padding-left: 8%;
  padding-right: 8%;
}

.div-form-edit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
}

.btn-minus {
  border: 0;
  font-size: 25px;
  background-color: transparent;
  cursor: pointer;
  margin-right: 5%;
  padding: 15px;
}

.btn-plus {
  border: 0;
  font-size: 25px;
  background-color: transparent;
  cursor: pointer;
  margin-left: 5%;
  padding: 15px;
}

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

.testInput {
  display: none;
}

.containerInput input {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.custom-file-label {
  height: 150px;
  padding: 20px 0px 20px 0px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1bae81;
  font-weight: 600;
  font-size: 20px;
  border: 2px solid #1bae81;
  border-radius: 10px;
  background-color: #f2f2f2;
  width: 200px;
  text-align: center;
}

.custom-file-label:hover {
  background-color: #1bae81;
  color: #fff;
}

.custom-file-label:hover circle {
  stroke: white;
  fill: white;
}

.custom-file-label:hover line {
  stroke: #1bae81;
}

.fileExiste {
  font-size: 12px;
  font-weight: bold;
  color: #1bae81;
  text-decoration: underline #1bae81;
  text-underline-offset: 2px;
  height: 0;
  text-align: center;
}

.custom-file-label:hover .fileExiste {
  font-size: 12px;
  color: #fff;
  text-decoration: underline #fff;
}

.p_form_dossier {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.p_form_traitement_lot {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  width: 200px;
}

.h1_dossier {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  border: 0;
  background-color: transparent;
  outline: none;
}

.input_dossier {
  background-color: #e9e9e9;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  outline: none;
}

.input_dossier::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  outline: none;
  text-align: center;
}

.input_dossier,
select,
textarea {
  border: none;
  border-radius: 0;
  padding: 0;
  width: 300px;
  height: 40px;
  text-align: center;
}

.formDossierH1 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #000;
}

.formDossierH2 {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #000;
}

.formDossierH3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.formDossierH4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  padding-top: 2%;
  width: 300px;
}

.AddH4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  padding-top: 2%;
}

.custom-file-label a {
  color: #1bae81;
  font-size: 18px;
}

.custom-file-label:hover a {
  color: #fff;
}

.custom-file-label:hover path {
  stroke: #fff;
}

.showFiches1 {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border: 0;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 100px;
  text-align: center;
  background-color: #f3f3f3;
}

.showFiches2 {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 100px;
  text-align: center;
  width: 100px;
  background-color: #f3f3f3;
}

.profile-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
}

.profile-user-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
}

.svgUser svg {
  fill: #4d72b8;
  stroke: #1bae81;
  stroke-width: 1px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.buttonProfilImage {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  cursor: pointer;
  width: 70%;
  font-size: 20px;
  border: 1px solid #1bae81;
  border-radius: 20px;
  height: 40px;
}

.buttonProfilImageSupp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  cursor: pointer;
  width: 70%;
  font-size: 20px;
  border: 1px solid #1bae81;
  border-radius: 20px;
  height: 40px;
}

.buttonProfilImage:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1bae81;
}

.buttonProfilImage:hover path {
  stroke: #fff;
}

.buttonProfilImageSupp:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1bae81;
}

.buttonProfilImageSupp:hover path {
  fill: #fff;
}

.button-download {
  background-color: #eeeeee;
  border: 1px solid #1bae81;
  border-radius: 5px;
  width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.button-download:hover {
  background-color: #1bae81;
  border: 1px solid #fff;
}

.button-download:hover a {
  color: #fff;
}

.button-download:hover a path {
  stroke: #fff;
}

.button-download a {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #1bae81;
  font-size: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.custom-emmy {
  background-color: #eeeeee;
  border: none;
  border-radius: 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #a3a3a3;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

/* CUSTOM CONTROLEUR */

.custom-class-div-controleur {
  background-color: #e3e5e7;
  margin: 10px;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

.custom-class-div-controleur:hover {
  background-color: #1bae81;
}

.custom-class-div-controleur:hover .custom-class-label-controleur {
  color: #fff;
}

.custom-class-widget-controleur {
  border: none;
  outline: none;
  width: 20px;
  height: 20px;
  position: relative;
}

.custom-class-widget-controleur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.custom-class-div-isCloture {
  background-color: white;
  border: 2px solid #1bae81;
  margin: 10px;
  padding: 2.5% 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 50px;
}

.custom-class-widget-isCloture {
  border: none;
  outline: none;
  width: 30px;
  height: 15px;
  position: relative;
  margin-right: 5px;
}

.custom-class-widget-isCloture::before {
  content: "";
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid #1bae81;
  border-radius: 50px;
}

.custom-class-widget-isCloture:checked::before {
  background-color: #1bae81;
}

.custom-class-widget-controleur:checked::before {
  background-color: #4d72b8;
}

.custom-class-label-controleur {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #000;
  width: 100%;
}

.custom-class-label-isCloture {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #1bae81;
  width: 100px;
  width: 100%;
  white-space: nowrap;
}

.custom-frame-controleur {
  max-height: 20vh;
  width: 20%;
  overflow-y: auto;
}

.custom-frame-operations {
  max-height: 20vh;
  width: 90%;
  overflow-y: auto;
}

/* FRAME CONTROLEUR */

.custom-frame-controleur::-webkit-scrollbar {
  width: 4px; /* Largeur de la barre de défilement */
  margin-left: 10px;
}

.custom-frame-controleur::-webkit-scrollbar-thumb {
  background-color: #888; /* Couleur de la poignée de défilement */
  border-radius: 4px;
}

.custom-frame-controleur::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Couleur de la poignée de défilement au survol */
}

.custom-frame-controleur::-webkit-scrollbar-track {
  background-color: #f5f5f5; /* Couleur de la piste de défilement */
  border-radius: 4px;
}

/* FRAME OPERATIONS */

.custom-frame-operations::-webkit-scrollbar {
  width: 4px; /* Largeur de la barre de défilement */
}

.custom-frame-operations::-webkit-scrollbar-thumb {
  background-color: #888; /* Couleur de la poignée de défilement */
  border-radius: 4px;
}

.custom-frame-operations::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Couleur de la poignée de défilement au survol */
}

.custom-frame-operations::-webkit-scrollbar-track {
  background-color: #f5f5f5; /* Couleur de la piste de défilement */
  border-radius: 4px;
}

/* CUSTOM FICHES */

.custom-text-fiches-traitement {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #000;
  display: flex;

  justify-content: space-between;
}

.custom-div-fiches-traitement {
  width: 100%;
  max-height: 22vh;
  overflow-y: auto;
}

.custom-div-fiches-traitement::-webkit-scrollbar {
  width: 4px; /* Largeur de la barre de défilement */
}

.custom-div-fiches-traitement::-webkit-scrollbar-thumb {
  background-color: #888; /* Couleur de la poignée de défilement */
  border-radius: 4px;
}

.custom-div-fiches-traitement::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Couleur de la poignée de défilement au survol */
}

.custom-div-fiches-traitement::-webkit-scrollbar-track {
  background-color: #f5f5f5; /* Couleur de la piste de défilement */
  border-radius: 4px;
}

.custom-div-button-add-files {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 1%;
  padding-bottom: 1%;
  border-radius: 5px;
  cursor: pointer;
}

.custom-div-button-add-files p {
  color: #1bae81;
  font-size: 15px;
  text-align: center;
}

.custom-div-button-add-files:hover {
  background-color: #1bae81;
}

.custom-div-button-add-files:hover circle {
  fill: #fff;
  stroke: #fff;
}

.custom-div-button-add-files:hover line {
  stroke: #1bae81;
}

.custom-div-button-add-files:hover p {
  color: white;
}

.hoverValide:hover path {
  stroke: 1px;
}

.hoverValide:hover path {
  fill: #fff;
  stroke: #1bae81;
  transition: transform 0.5s ease;
}

.hoverValide:not(:hover) svg {
  transform: rotateY(0deg);
  transition: transform 0.5s ease;
}

.hoverEmpty:hover svg {
  transform: rotateY(180deg);
  transition: transform 0.5s ease;
}

.hoverEmpty:not(:hover) svg {
  transform: rotateY(0deg);
  transition: transform 0.5s ease;
}

.buttonControlePourcentage {
  background-color: #707070;
  color: #fff;
  border-radius: 9999px;
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.operationsResume {
  display: flex;
  justify-content: space-evenly;
  background-color: #e3e5e7;
  padding: 5px;
}

.operationsResume2 {
  display: flex;
  gap: 40px;
  margin-left: 20px;
  background-color: #e3e5e7;
  margin: 10px;
  padding: 10px;
}

.operationsResume:hover {
  background-color: #b4b4b4;
}

.hoverCustomP a {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #1bae81;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hoverCustomP a:hover {
  color: #1bae81;
  text-decoration: underline #4d72b8;
}

.button-delete-operation-traitement {
  cursor: pointer;
  background-color: #d35052;
  border: 0.1em solid #d35052;
  width: 55px;
  height: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.button-delete-operation-traitement:hover {
  transform: scale(1.1);
}

/* Scrollbar principal */
::-webkit-scrollbar {
  width: 10px;
}

/* Poignée de la scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #2c2a57;
}

/* Fond de la scrollbar */
::-webkit-scrollbar-track {
  background-color: #ada7a7;
}

.checkBoxStyle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-class-div-contact-valide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.custom-class-label-contact-valide {
  font-family: "Poppins", sans-serif;
  color: #000;
  width: 100px;
  font-size: 15px;
}
.label-rouge {
  color: #d3414a; /* Texte en rouge */
  border: 2px solid #d3414a;
  text-align: center;
  padding: 0 15px;
}

.label-vert {
  color: #35ae80; /* Texte en vert */
  border: 2px solid #35ae80;
  text-align: center;
  padding: 0 15px;
}
.custom-class-widget-contact-valide-1 {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: 0.12em solid #1bae81;

  display: none;
  place-content: center;
  scale: 0.9;
}

.custom-class-widget-contact-valide-1::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

.custom-class-widget-contact-valide-1:checked::before {
  background-color: #1bae81;
  border-radius: 50%;
  transform: scale(1);
}

.custom-class-widget-contact-valide-2 {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: 0.12em solid #d35052;
  border-radius: 50%;
  display: none;
  place-content: center;
  scale: 0.9;
}

.custom-class-widget-contact-valide-2::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

.custom-class-widget-contact-valide-2:checked::before {
  background-color: #d35052;
  border-radius: 50%;
  transform: scale(1);
}

.underOperations {
  text-decoration: underline;
  text-decoration-color: #1bae81;
  text-underline-offset: 8px;
}

.bouton-operations {
  background-color: #fff;
  width: 105px;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 60px;
  transition: 0.3s ease;
  cursor: pointer;
  color: #1bae81;
  border: 0.15em solid #1bae81;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.bouton-operations svg path {
  fill: #1bae81;
  transition: 0.3s ease;
}

.bouton-operations:hover {
  background-color: #1bae81;
  color: #fff;
}

.bouton-operations:hover svg path {
  fill: #fff;
}

.bouton-disabled {
  background-color: #1bae81;
  width: 105px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 60px;
  transition: 0.3s ease;
  cursor: pointer;
  color: var(--color-white);
  border: 0.1em solid #1bae81;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.5;
  pointer-events: none;
}

.bouton-disabled svg path {
  fill: #fff;
}

.rgeDate {
  background-color: #f3f3f3;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  color: #000;
  border: none;
  width: 180px;
  font-weight: bold;
  border-radius: 10px;
}

.circleEtatRgeValide {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1bae81;
  align-self: center;
  justify-self: center;
}

.circleEtatRgeSemiValide {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fccb5c;
  align-self: center;
  justify-self: center;
}

.circleEtatRgePasValide {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d35052;
  align-self: center;
  justify-self: center;
}

.inputInstallateur {
  background-color: #f3f3f3;
  padding: 10px;
  padding-left: 40px;
  font-family: "Poppins", sans-serif;
  color: #000;
  border: none;
  width: 100%;
  font-weight: bold;
  border-radius: 10px;
  z-index: 0;
}

.inputSelectInstallateur {
  background-color: #f3f3f3;
  padding: 5px;
  font-family: "Poppins", sans-serif;
  color: #000;
  border: none;
  width: 100%;
  font-weight: bold;
  border-radius: 10px;
  z-index: 0;
}

.infoInputTexteInstallateur {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  width: 400px;
  position: absolute;
  bottom: 0;
  margin-bottom: -25px;
}

.infoUserAssocie {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.searchUserAssocie {
  background-color: #f3f3f3;
  padding: 4px;
  font-family: "Poppins", sans-serif;
  color: #000;
  border: 1px solid #707070;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 30%;
}

.inputUserAssocie {
  background-color: #f3f3f3;
  font-family: "Poppins", sans-serif;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  width: 100%;
  outline: none;
  padding: 4px;
}

.cardUserAssocie {
  background-color: #f3f3f3;
  padding: 20px;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 28%;
}

.userAssocieNom {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
}

.userAssociePrenom {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}

.userAssocieEmail {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  text-transform: lowercase;
}

.userAssocieButton {
  background-color: #1bae81;
  padding: 10px;
  padding-left: 32px;
  padding-right: 32px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border: 1px solid #1bae81;
  font-weight: bold;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 16px;
  cursor: pointer;
}

.userAssocieButton path {
  fill: #fff;
}
.userAssocieButton:hover {
  background-color: transparent;
  color: #1bae81;
  cursor: pointer;
  border: 1px solid #1bae81;
}

.addUserAssocie {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #000;
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #000;
  border-radius: 30px;
  transition: 0.3s ease;
}

.addUserAssocie:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.userAssocieButtonClose {
  background-color: #000;
  padding: 10px;
  padding-left: 32px;
  padding-right: 32px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border: 1px solid #000;
  font-weight: bold;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 16px;
  cursor: pointer;
}

.userAssocieButtonClose:hover {
  background-color: transparent;
  color: #000;
  cursor: pointer;
  border: 1px solid #000;
}

.bouton-active {
  color: white !important;
  background-color: #0b1c2c !important;
}

.truncate {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.truncate-container {
  position: relative;
  display: inline-block;
}

.truncate-full {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #292558;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
}

.truncate-container:hover .truncate-full {
  display: block;
}

.custom-placeholder::placeholder {
  opacity: 0.5; /* Réduire l'opacité du placeholder */
  color: #999; /* Optionnel : changer la couleur */
}