@charset "UTF-8";
.bs-stepper .line {
  line-height: 0;
}

@media (max-width: 768px) {
  /* Contenedor del stepper (solo mobile) */
  /* Circulo del step */
  .boton-mobile {
    font-size: 35px;
  }
  #btnSiguientePaso1 {
    font-size: 35px;
  }
  .step_mobile {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #71C1B1;
    color: white;
    font-size: 18px;
  }
}
.steps_mobile {
  padding: 15px;
  overflow-x: auto; /* Permite scroll horizontal */
  scrollbar-width: none;
  width: 100% !important;
}

.steps_mobile::-webkit-scrollbar {
  display: none;
}

/* Lista de pasos */
.steps_mobile ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.steps_mobile li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

/* Texto del step */
.steps_mobile li span {
  font-size: 12px;
  white-space: nowrap;
  text-decoration: none !important;
  margin: auto;
  text-align: center;
}

.steps_mobile li a {
  text-decoration: none !important;
  font-weight: bold;
  color: #000D1D;
}

/* Línea entre los pasos */
.step-line {
  width: 100%;
  height: 2px;
  background-color: #E5E5E5;
  position: absolute;
  top: 30%;
  right: 50%;
  transform: translateY(-50%);
  z-index: -1; /* Asegura que la línea quede por detrás de los iconos */
}

.first {
  left: 0% !important;
}
.first .step-line {
  width: 20%;
  right: 70%;
}

/* Estados de los pasos */
.steps_mobile li .step_mobile {
  background: #E5E5E5;
  color: #000D1D;
}
.steps_mobile li.current .step_mobile {
  background: #539D8E;
  color: #FDFDFD;
}
.steps_mobile li.current .step-line {
  background-color: #539D8E;
}
.steps_mobile li.completed .step_mobile {
  background: #E2F0EB;
  color: #539D8E;
}
.steps_mobile li.completed .step-line {
  background-color: #539D8E;
}
