/* body{
  background-color: #FFF9F0;
} */
.form-full{
  width: 50%;
      font-family: "Manrope", sans-serif;
  font-style:normal;

}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}
.card{
      border-radius: 15px;
      border: none;

}
.btn.active {
  background-color: #e4146b;
  color: white;
      border: 2px solid #e4146b;

}
.btn:hover {
  background-color: #e4146b;
  color: white;
      border: 2px solid #e4146b;
      cursor: pointer;

}
h1{
  font-weight: 600;
}
h3{
  font-size: 1.5rem;
}
button {
  min-width: 120px;
}
.progress {
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar-c {
  transition: width 0.4s ease;
}
.bg-success-c{
  background-color: #e4146b;
}
.btn{
  background-color: #ffffff;
  border: 2px solid #0B3C5D;
  color: #0B3C5D;
}
label{
  font-size: 1.2rem;
font-weight: 600;
}
    .input-group-text.custom {
      background-color: #e4146b;
      color: #fff;
      border: none;
      border-radius: 7px
    }
    .input-group input, span{
      font-size: 1.2rem;
    }

.left-border-section {
  border-left: 2px solid #dee2e6; /* light grey line */
  padding-left: 15px;
}
.suivant{
  border-radius: 15px;
  padding: 15px;
  font-size: 1.2rem;
  width: 100%;
  background-color: #e4146b;
  color: #ffffff;
    border: 2px solid #e4146b;

}
select{
  width: 100%;
  border-radius: 2px solid #959595;
  padding: 15px;
  border-radius: 10px;
}
.retour{
  border: 2px solid #0B3C5D;
  border-radius: 15px;
  padding: 15px;
  font-size: 1.2rem;
  width: 100%;
  background-color: #ffffff;
  color: #0B3C5D;

}
.suivant:hover{
  width: 100%;
  background-color: #e4146b;
  color: #ffffff;

}
.fade-slide {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
   display: none;
}

.fade-slide.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.warning{
  color: rgb(255, 58, 58);
  font-weight: 400;
  font-size: 1.2rem;
}
.warning_1{
  color: rgb(255, 58, 58);
  font-weight: 400;
  font-size: 1.2rem;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s ease-in-out;
}
.select-warning{
  border: 2px solid #ff0800;
}
.input-warning{
  border: 2px solid #ff0800;
}
.autocomplete-wrapper {
  position: relative;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
display: none;
  background: white;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;

  list-style: none;
  margin: 0;
  padding: 0;
}

#my-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db; /* Couleur de votre site */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}