.container-mobile {
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;

    border-radius: 5px;
    overflow: hidden;
}

:root {
  --primary-color: #FE9900;

  font-size: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: century-gothic-bold,"Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  /* display: grid; */
  /* place-items: center; */
  min-height: 100vh;
  font-size: 22px;
}
/* Global Stylings */
label {
  display: block;
  margin-bottom: 0.5rem;
}

h1{
    font-family: 'Blu Sans', sans-serif;
    font-weight: 900;
    font-size: 1.3em;
}

.explicacion-pequena{
    font-size: 0.85rem;
    color: #666;
    line-height: 1;
    font-family:century-gothic-reg, "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.width-50 {
  width: 50%;
}

.ml-auto {
  margin-left: auto;
}

.text-center {
  text-align: center;
}

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

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

.progress {
  background-color: var(--primary-color);
  width: 0%;
  transition: 0.3s;
}

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

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

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

.progress-step-active {
  background-color: var(--primary-color);
  color: #fff;
}

.flex-g0-s0 {
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

.w100px{
    width: 100px !important;
}

/* Form */
.form {
  /* width: clamp(320px, 30%, 430px); */
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  padding: 1.5rem;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}

.input-group-form-item {
  margin: 1rem 0;
}
.input-msg{
    width: 100%;
}

@keyframes animate {
  from {
    /* transform: scale(1, 0); */
    opacity: 0;
  }
  to {
    /* transform: scale(1, 1); */
    opacity: 1;
  }
}

/* Button */
.btns-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.btn {
  padding: 0.25rem 0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn[disabled]{
    background-color: #ccc;
    cursor: not-allowed;
    color:#fff;
}

.v-hidden{
    visibility: hidden;
}

.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1;
}

.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.botonera-continuar-derecha{
    display:flex;
    justify-content: flex-end;
}


/* TOAST */
.toast {
  position: absolute;
  top:20px;
  left:50%;
  transform: translateX(-50%);
  z-index: 1050;
  border:2px solid orange;
  background-color: #fff;
}

.spinner-border{
  width: 1rem;
  height: 1rem;
  border-width: 0.2rem;
}



.row-persona{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  margin-inline: auto;
  width: 95%;
}
.resultado-persona{
  font-size: 16px;
}
.dato-persona{
  font-family: century-gothic-reg, "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}
.resultado-dato-persona{
  text-align: right;
}