body {
    background-color: #f0f4f9; /*#6e9ba8;*/
    height: 100vh;
}
.section {
    display: none;
}

.section.active {
    display: block;
}

.steps {
    margin-bottom: 30px;
}

.steps .step {
    margin: 0 5px;
    padding: 15px 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: lightgray;
    color: white;
}

.steps .active {
    background-color: #007bff;
}
.contenedor-form {
    background-color: white;
    padding: 50px 10px;
    border-radius: 30px;
    border: 1px solid #9eb6bb;
    -webkit-box-shadow: 4px 4px 5px -1px rgba(133, 133, 133, 1);
    -moz-box-shadow: 4px 4px 5px -1px rgba(133, 133, 133, 1);
    box-shadow: 4px 4px 5px -1px rgba(133, 133, 133, 1);
}
/* Estilos para el círculo de carga */
.spinner-border {
    width: 3rem;
    height: 3rem;
    margin: 20px auto;
}

#loading {
    display: none;
    text-align: center;
}

.card-activa {
    border: 2px solid blue !important;
}
.card-imagen {
    width: 50%;
    display: block
    margin: 0 auto;
}
.boton-seleccion-plan {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}



/* Progressbar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0 4rem;
  z-index: 0;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 82%;
  background-color: #dcdcdc;
  z-index: 0;
}

.progress {
  background-color: #007bff;
  width: 0%;
  transition: 0.3s;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step-active::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666;
}

.progress-step-active {
  background-color: #007bff;
  color: #f3f3f3;
}
