li.breadcrumb__item:nth-child(n+2):before {
    content: '>';
    margin: 0.5rem;
}

.columnas_informacion_viajes {
    display: flex;
    margin-top: 25px;
}

.titulo_informacion_viaje {
    padding-bottom: 15px;
}


.columnas_informacion_viajes .columna1 {
    margin-right: 25px;
    flex: 1;
}

.columnas_informacion_viajes .columna2 {
    margin-left: 25px;
    flex: 1;
}

.informacion_viaje_seleccion {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding: 0px 15px 0px 15px;
    min-height: 3rem;
}

.radio_option_selection {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding: 0px 15px 0px 15px;
    min-height: 3rem;

    &>label {
        margin-left: -1rem;
    }
}

/* #region radio button */
.radio_container {
    padding-left: 1rem;

    &>
    label{
        margin-left: -1rem;
    }
}

input[type="radio"]:disabled + .radio_button {
    color: #ccc;
}

/* Estilo del radio button oculto */
input[type="radio"] {
    width: auto;
}

input[type="radio"]:focus + .radio_button::before {
    border-width: 3px;
}

/* Estilo del fondo del radio button cuadrado cuando está seleccionado */
input[type="radio"]:checked + .radio_button::before {
    background-color: #3498db;
    /* Cambia el color cuando está seleccionado */
}

/* Estilo del ícono del radio button (fondo cuadrado) */
.radio_button::before {
    content: '';
    display: inline-block;
    height: 20px;
    /* Ajusta según el tamaño deseado del radio button */
    width: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: -5px;
}

input:disabled~.radio_button {
    cursor: default;
}
/* #endregion */

/* #region input date */
input[type="date"] {
    display: -webkit-inline-flex;
}

input::-webkit-datetime-edit {
   -webkit-flex: 1;
   -webkit-user-modify: read-only !important;
   display: inline-block;
   min-width: 0;
   overflow: hidden;
}

input::-webkit-datetime-edit-fields-wrapper {
   -webkit-user-modify: read-only !important;
   display: inline-block;
   padding: 1px 0;
   white-space: pre;
}
/* #endregion */

/* #region input dropdown */
.dropdown-content {
    display: none;
    position: relative;
    background-color: #f6f6f6;
    min-width: 230px;
    max-height: 16rem;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    overflow-y: scroll;
}
.show {
    display: block;
}
.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
/* #endregion */

#portada_2 {
    padding: 40px 2px;
    background-color: #004884;
    text-align: center;
}

.pasos {
    display: flex;
}

.paso {
    display: flex;
    align-items: center;
    flex: 1;
    margin: 5px
}

.paso_indice,
.paso_titulo {
    height: 3rem; /* TODO: Ajusta según la altura deseada */
    display: flex;
    align-items: center;
    justify-content: center;
}

.paso_indice {
    color: white;
    background-color: #C6C6C6;
    font-family: 'Sora', sans-serif;
    padding: 0 10px;
}

.paso_titulo {
    color: white;
    background-color: #D9D9D9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    flex: 1;
    font-size: 0.9em;
}

.activo > .paso_indice {
    background-color: #1594FD;
}

.activo > .paso_titulo {
    background-color: #004884;
}

.form-error {
    color: #dd5147;
    font-size: 0.875rem;
    line-height: 1.7em;
    margin-top: 12px;
}

.form-error svg, .form-error span {
    vertical-align: middle;
}

.informacion_viaje {
    text-align: center;
}

.titulo_informacion_viaje {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.botones {
    display: flex;
    justify-content: center;
    margin: 27px 12px;
}

.boton {
    padding: 1rem 10px;
    margin: 0 25px 0 25px;
    min-width: 222px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boton_volver {
    background-color: #E73138;
    color: white;
    vertical-align: baseline;
}

.boton_volver:hover {
    background-color: #c50007;
}

.boton_continuar {
    background-color: #004884;
    color: white;
}

.boton_continuar:hover {
    background-color: #002646;
}

@media only screen and (max-width: 768px) {
    .ocultar_paso {
        display: none;
    }

    .paso_titulo {
        font-size: 0.7em;
    }

    .columnas_informacion_viajes {
        display: block;
    }

    .columnas_informacion_viajes .columna1 {
        margin-right: 0px;
    }

    .columnas_informacion_viajes .columna2 {
        margin-left: 0px;
        width: 100%;
        margin-top: 40px;
    }

    .boton {
        margin: 0 11px 0 11px;
        min-width: 111px;
    }
}

@media only screen and (min-width: 768px) {
    .mostrar_paso {
        display: none;
    }
}
