.progreso-actualizacion {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 30px 0 40px 0;
    width: 100%;
}

.paso {
    text-align: center;
    color: #999;
    min-width: 100px;
    position: relative;
}

.paso-numero {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    color: #999;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.paso-texto {
    font-size: 13px;
    margin-top: 8px;
	color: var(--azul-oscuro);
}

.linea {
    height: 2px;
    background: #ccc;
    flex: 1;
    max-width: 100px;
    margin-top: 19px;
}

.paso.activo {
    color: #0d6efd;
}

.paso.activo .paso-numero {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
	border-color:var(--azul-oscuro);
	background: var(--azul-oscuro);
}

.linea.activo {
    background: #0d6efd;
	background: var(--azul-oscuro);
}

.paso.finalizado .paso-numero {
    background: #198754;
    border-color: #198754;
}

/* =========================================================
   ACTUALIZACIÓN DE DATOS
========================================================= */

.container {
    padding-bottom: 30px;
}


/* =========================================================
   TITULO DE SECCIÓN
========================================================= */

.titulo-seccion {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* =========================================================
   FORMULARIOS
========================================================= */

.formulario {
    margin-left: 0;
    margin-right: 0;
}

.caja-formulario {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}


/* =========================================================
   COLUMNAS DEL FORMULARIO
========================================================= */

.formulario > [class*="col-"] {
    margin-bottom: 18px;
}


/* =========================================================
   LABELS
========================================================= */

.formulario label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}


/* =========================================================
   INPUTS Y SELECTS
========================================================= */

.formulario .form-control {
    height: 42px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    padding: 8px 12px;
    transition: border-color .2s ease,
                box-shadow .2s ease;
}

.formulario .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
    outline: none;
}


/* =========================================================
   CAMPOS SOLO LECTURA
========================================================= */

.formulario .form-control[readonly] {
    background-color: #f5f5f5;
    color: #666;
    cursor: default;
}


/* =========================================================
   BOTONES
========================================================= */

.text-center .btn {
    min-width: 140px;
    padding: 9px 22px;
    font-weight: 500;
    border-radius: 5px;
}

.text-center .btn + .btn {
    margin-left: 5px;
}


/* =========================================================
   DECLARACIONES - PASO 5
========================================================= */

.declaracion-contenido {
    max-height: 500px;
    overflow-y: auto;

    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 25px;

    font-size: 14px;
    line-height: 1.6;
    color: #444;

    text-align: justify;
}


/* Párrafos */

.declaracion-contenido p {
    margin-bottom: 15px;
}


/* Títulos internos */

.declaracion-contenido h5 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}


/* Listas */

.declaracion-contenido ol,
.declaracion-contenido ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.declaracion-contenido li {
    margin-bottom: 12px;
}


/* =========================================================
   CHECKBOX DE ACEPTACIÓN
========================================================= */

.form-check {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 18px 20px 18px 42px;

    min-height: 60px;
}

.form-check-input {
    cursor: pointer;
    margin-top: 4px;
}

.form-check-label {
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 1.5;
    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .titulo-seccion {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .caja-formulario {
        padding: 20px 15px;
    }

    .declaracion-contenido {
        max-height: 400px;
        padding: 18px;
        font-size: 13px;
    }

    .text-center .btn {
        margin-bottom: 8px;
    }

}

.btn-primary{
	background: var(--azul-oscuro)
}
.titulo-header-actuadata {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-left: 20px;
    white-space: nowrap;
}
@media (max-width: 768px) {

    .titulo-header-actuadata {
        font-size: 16px;
        margin-left: 10px;
    }

}