#module-eb_registration-form #wrapper {
  padding-top: 0;
}
#module-eb_registration-form #wrapper > .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
#multistep-form {
  display: flex;
  flex-wrap: wrap;
}

/*LEFT COL STEP MENU*/
#multistep-form .left_col {
  width: 30%;
  background-color: #f4f3f5;
  min-height: 100vh;
  padding: 2rem;
}
#multistep-form .left_col .logo {
  width: 190px;
  max-width: 100%;
}
.left_col .step_menu {
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.left_col .step_menu .step_nav {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
}
.left_col .step_menu .step_nav .step_nb {
  font-size: 22px;
  margin-right: 1rem;
  background-color: rgba(221, 180, 211, 0.44);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}
.left_col .step_menu .step_nav.active .step_nb {
  background-color: #a94a92;
  color: white;
  opacity: 1;
}
.left_col .step_menu .step_nav .step_name p:not(.h3) {
  font-size: 13px;
  margin-bottom: 0;
}

/*RIGHT COL FORM*/
#multistep-form .right_col {
  width: 70%;
  padding: 2rem;
}
#multistep-form .right_col h1 {
  margin-bottom: 4rem;
}
#multistep-form .right_col .col_content {
  width: 650px;
  max-width: 100%;
  margin: auto;
}
#multistep-form .alert ul {
  margin-bottom: 0;
}

.right_col .form_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px 15px;
}
.right_col .form_fields small {
  color: #7a7a7a;
  line-height: 8px;
  vertical-align: sub;
}
.right_col .form_fields .form-group.full_w {
  grid-column: span 2;
}
.right_col .form-group.required label:after {
  content: "*";
  position: relative;
  font-size: inherit;
  color: #f1416c;
  padding-left: 0.25rem;
  font-weight: 700;
}
.right_col .step_title {
  margin-bottom: 1.5rem;
}
.right_col .step_title h5 {
  font-size: 20px;
}
.right_col .step_title p {
  font-size: 13px;
}

.right_col .start_step {
  margin-top: 18%;
}
.right_col .checkbox_btns label {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  cursor: pointer;
  background-color: #f4f3f5;
  transition: 0.1s;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.right_col .checkbox_btns label:hover {
  background-color: #eceaed;
}
.right_col .checkbox_btns input {
  display: none;
}
.right_col .checkbox_btns p {
  margin-bottom: 0;
  font-size: 13px;
}
.right_col .docs_list {
  background-color: #f4f3f5;
  padding: 1.5rem;
  margin-top: 2rem;
  h6 {
    font-size: 14px;
  }
  ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin-top: 1rem;
  }
  li {
    padding: 0.3rem 0;
    font-size: 13px;
  }
}

/*FOOTER*/
.step_footer {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}
.step_footer .btn {
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}
.step_footer .btn i {
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px;
}
.step_footer .btn-prev {
  background-color: rgba(221, 180, 211, 0.35);
  color: #a94a92;
}
.step_footer .btn-next {
  background-color: #a94a92;
  color: white;
}

@media screen and (max-width: 768px) {
  #multistep-form .left_col {
    height: fit-content;
  }
  #multistep-form .left_col,
  #multistep-form .right_col {
    width: 100%;
  }
  .right_col .step_title h5 {
    font-size: 16px;
  }
  .right_col .form_fields .form-group {
    grid-column: span 2;
  }
}
.step {
  display: none;
}

/*INPUT TYPE FILE CUSTOM (@todo add to commons ??)*/
.form-type-file {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: 2px dashed #ccc;
  border-radius: 5px;
  padding: 15px;
  background-color: #f4f3f5;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 0.3rem;
}
.form-type-file:hover {
  border-color: #007bff;
  background-color: #eef5ff;
}

/* Hide the default file input */
.custom-file-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
/* Style for the file input label */
.custom-file-label {
  margin-bottom: 0;
  flex-grow: 1;
  color: #7a7a7a;
  font-size: 13px;
  text-align: center;
  pointer-events: none;
}
.custom-file-label:after {
  content: "" !important;
}

/* Active state for the file input */
.custom-file-input:focus + .custom-file-label {
  border-color: #007bff;
  outline: none;
}
/* File name display */
.custom-file-input:valid + .custom-file-label::after {
  content: "Fichier sélectionné";
  color: green;
  font-size: 14px;
  font-weight: bold;
}
