.portada-entidad {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    display: flex;
    justify-content: center;
}

.portada-section {
    background: url("../images/fondo-entidad.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 534px;
    padding: 70px 0px 0px 0px;
    color: rgba(255, 255, 255, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.portada-content {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.titulo-entidad {
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    display: flex;
    margin-bottom: 25px;
}

.texto-portada {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    display: flex;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .portada-content {
        width: 61%;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .portada-content {
        width: 69%;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .titulo-entidad {
        font-size: 24px;
    }

    .texto-portada {
        font-size: 16px;
    }

    .portada-content {
        width: 87%;
        margin-bottom: 90px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .titulo-entidad {
        font-size: 24px;
    }

    .texto-portada {
        font-size: 16px;
    }

    .portada-content {
        width: 88%;
        margin-bottom: 15px;
    }
}




.titulo-reporte {
    margin: 40px auto 0px auto;
    max-width: 1128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.titulo-reporte h4 {
    color: rgba(35, 94, 173, 1);
    font-weight: bold;
    font-size: 32px;
    text-align: left;
    margin: 0;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .titulo-reporte {
        max-width: 840px;
    }

    .titulo-reporte h4 {
        max-width: 840px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .titulo-reporte {
        max-width: 711px;
    }

    .titulo-reporte h4 {
        max-width: 711px;
    }
}

@media (max-width: 904px) and (min-width: 751px) {
    .titulo-reporte {
        padding: 0px 20px;
    }

    .titulo-reporte h4 {
        padding: 0px 9px;
        font-size: 24px;
    }
}

@media (max-width: 750px) and (min-width: 0px) {
    .titulo-reporte {
        padding: 0px 5px;
    }

    .titulo-reporte h4 {
        padding: 0px 20px;
        font-size: 24px;
    }
}





.buscador-entidad-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1169px;
    margin: 0px auto 20px auto;
    padding: 0 20px;
    margin-top: 30px;
}

.buscador-entidad {
    flex: 1 1 0px;
    position: relative;
}

.buscador-entidad input {
    width: 100%;
    height: 64px;
    padding: 10px 40px 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(204, 204, 204, 1);
    cursor: pointer;
}

.icono-borrar,
.icono-buscar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.icono-borrar {
    right: 50px;
    font-size: 24px;
}

.icono-buscar {
    right: 10px;
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
}

.dropdown-resultados {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.dropdown-resultados li {
    padding: 10px;
}

.dropdown-resultados li:hover {
    background-color: rgba(240, 240, 240, 1);
}

input:disabled,
select:disabled {
    background-color: rgba(245, 245, 245, 1);
    cursor: default !important;
    opacity: 0.6;
}

button:disabled {
    cursor: default !important;
    opacity: 0.6;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .buscador-entidad-wrapper {
        max-width: 873px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .buscador-entidad-wrapper {
        max-width: 746px;
    }

    .buscador-entidad {
        flex: 1 1 0px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .buscador-entidad-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 746px;
    }

    .buscador-entidad {
        flex: 1 1 45px;
    }
}

@media (max-width: 749px) and (min-width: 600px) {
    .buscador-entidad-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .buscador-entidad {
        flex: 1 1 45px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .buscador-entidad-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 746px;
    }

    .buscador-entidad {
        flex: 0 0 0;
    }
}





.entidad-tabla-wrapper {
    border: 1px solid rgba(147, 149, 152, 1);
    border-radius: 12px;
    max-width: 1128px;
    margin: 45px auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

.cantidad-entidad {
    color: rgba(35, 94, 173, 1);
    font-weight: 600;
    font-size: 32px;
}

.entidad-tabla {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    width: 100%;
}

.entidad-tabla thead {
    background-color: rgba(5, 158, 219, 0.1);
    color: rgba(6, 79, 113, 1);
    font-weight: 600;
}

.entidad-tabla th,
.entidad-tabla td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    max-width: 380px;
}

.buscador-row th {
    background: rgba(255, 255, 255, 1);
    padding: 0;
}

.buscador-box {
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    padding: 10px;
    margin: 12px;
}

.buscador-box .buscador-entidad {
    width: 100%;
}

.ordenar-entidad {
    color: rgba(6, 79, 113, 1);
    text-decoration: none;
}

.doc-nombre {
    gap: 12px;
    align-items: center;
}

.doc-nombre div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.icono-doc {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(238, 238, 238, 1);
    border-radius: 100px;
}

.entidad-etiqueta-entidad {
    background: rgba(238, 238, 238, 1) !important;
    color: rgba(88, 88, 90, 1) !important;
    width: fit-content;
    padding: 9px 18px 9px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
}

.entidad-accion {
    font-size: 24px;
    color: rgba(88, 88, 90, 1);
    cursor: pointer;
}

.entidad-accion:hover {
    color: rgba(0, 69, 107, 1);
}

.entidad-mobile {
    display: flex;
    flex-direction: column;
}

.entidad-card-movil {
    border: 1px solid rgba(204, 204, 204, 1);
    padding: 16px;
}

.entidad-cabecera {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.entidad-cabecera img {
    width: 36px;
    height: 36px;
}

.doc-info {
    flex-grow: 1;
}

.doc-titulo {
    font-weight: 600;
    font-size: 14px;
}

.doc-peso {
    font-size: 12px;
    color: rgba(136, 136, 136, 1);
}

.descarga-icono i {
    font-size: 20px;
    color: rgba(0, 69, 107, 1);
}

.doc-etiqueta {
    background: rgba(238, 238, 238, 1) !important;
    color: rgba(88, 88, 90, 1) !important;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

#material_descargable_organizaciones_desktop {
    display: block;
}

#material_descargable_organizaciones_mobile {
    display: none;
}

#material_descargable_organizaciones_desktop_empresas {
    display: block;
}

#material_descargable_organizaciones_mobile_empresas {
    display: none;
}

.no-docs {
    margin: 20px auto 0px auto ! important;
    max-width: 1128px ! important;
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .entidad-tabla-wrapper {
        width: 840px;
    }

    .no-docs {
        max-width: 840px !important;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .entidad-tabla-wrapper {
        width: 711px;
    }

    .no-docs {
        max-width: 711px ! important;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .entidad-tabla-wrapper {
        width: 568px;
    }

    .no-docs {
        max-width: 570px ! important;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .entidad-tabla-wrapper {
        width: 328px;
        min-height: auto;
    }

    .cantidad-entidad {
        font-size: 24px;
    }

    .no-docs {
        max-width: 350px ! important;
    }
}

@media (max-width: 904px) {
    #material_descargable_organizaciones_desktop {
        display: none;
    }

    #material_descargable_organizaciones_mobile {
        display: block;
    }

    #material_descargable_organizaciones_desktop_empresas {
        display: none;
    }

    #material_descargable_organizaciones_mobile_empresas {
        display: block;
    }
}

@media (max-width: 599px) {
    #material_descargable_organizaciones_mobile {
        margin-bottom: 70px;
    }

    #material_descargable_organizaciones_mobile_empresas {
        margin-bottom: 70px;
    }
}







.pag-entidad-wrapper {
    display: flex;
    height: 80px;
}

.pag-entidad {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    list-style: none;
    position: relative;
}

.pag-entidad .numeros-entidad {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding-left: 0 !important;
}

.pag-item-entidad {
    display: inline;
}

.pag-link-entidad {
    color: rgba(34, 74, 162, 1);
    padding: 12px 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pag-link-entidad i {
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pag-link-entidad:hover {
    color: rgba(34, 74, 162, 0.5);
}

.pag-item-entidad.active .pag-link-entidad {
    background-color: rgba(238, 238, 238, 1);
    color: rgba(34, 74, 162, 1);
    border-color: rgba(238, 238, 238, 1);
    display: flex;
    justify-content: center;
}

.pag-item-entidad.disabled .pag-link-entidad {
    color: rgba(204, 204, 204, 1);
    pointer-events: none;
    background-color: transparent;
    border-bottom: 2px solid rgba(204, 204, 204, 1);
}

.pag-item-entidad.puntos .pag-link-v {
    border-bottom: none !important;
}

.nav-btn-entidad .pag-link-entidad {
    border-bottom: 2px solid rgba(34, 74, 162, 1);
    justify-content: center;
    transition: border-color 0.3s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-btn-entidad .pag-link-entidad:hover {
    border-bottom: 2px solid rgba(34, 74, 162, 0.5);
}

@media (max-width: 1239px) {
    .pag-link-entidad .text-nav-entidad {
        display: none;
    }
}

@media (max-width: 904px) {
    .texto-nav-entidad {
        display: none;
    }
}

#entidad_desktop {
    display: block;
}

#entidad_mobile {
    display: none;
}

#entidad_desktop {
    display: block;
}

#entidad_mobile {
    display: none;
}

@media (max-width: 904px) {
    #entidad_desktop {
        display: none;
    }

    #entidad_mobile {
        display: block;
    }

    #entidad_desktop {
        display: none;
    }

    #entidad_mobile {
        display: block;
    }
}



.ec-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .40);
    z-index: 1050;
}

.ec-modal-close {
    position: absolute;
    right: 14px;
    top: 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: rgba(88, 88, 90, 1);
}

.ec-modal-close:hover {
    color: rgba(17, 17, 17, 1);
}

.ec-modal-header {
    text-align: center;
}

.ec-modal-header h5 {
    margin: 25px;
    font-weight: 700;
    font-size: 20px;
    color: rgba(51, 51, 51, 1);
}

.ec-pill {
    display: grid;
    grid-template-columns: auto auto auto 0fr;
    gap: 30px;
    padding: 8px 12px;
    border: 1px solid rgba(88, 88, 90, 1);
    border-radius: 8px;
}

.ec-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    font-size: 14px;
    color: rgba(64, 64, 64, 1);
}

.ec-pill-item i {
    font-size: 18px;
}

.ec-alert {
    display: flex;
    gap: 5px;
    margin: 30px 0px 35px;
    height: 112px;
}

.ec-alert-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-alert-icon i {
    font-size: 24px;
    color: rgba(250, 191, 44, 1);
}

.ec-alert-text {
    font-size: 12px !important;
    font-weight: 600;
}

.ec-alert-text p {
    color: rgba(88, 88, 90, 1);
    line-height: 1.45;
    font-size: 12px ! important;
    font-weight: 600;
}

.ec-alert-text em {
    color: rgba(88, 88, 90, 1);
    font-size: 12px;
    font-weight: 400;
}

.ec-section-title {
    color: rgba(64, 64, 64, 1);
    font-weight: 600;
    font-size: 20px;
}

.ec-box-vacio {
    border: 1px solid rgba(147, 149, 152, 1);
    border-radius: 10px;
    min-height: 350px;
    padding: 5px 15px;
    display: flex;
    color: rgba(64, 64, 64, 1);
    font-size: 14px;
}

.ec-comp {
    margin-bottom: 16px
}

.ec-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.ec-comp-img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.ec-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(to right,
            rgba(8, 159, 228, 1),
            rgba(34, 74, 162, 1));
    border-radius: 6px;
    transition: width .25s ease;
}

.ec-comp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.ec-comp-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ec-comp-badge img {
    width: 10px;
    height: 12px;
    object-fit: contain;
}

.ec-comp-card {
    border: 1px solid rgba(147, 149, 152, 1);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

.ec-niveles-header {
    display: grid;
    grid-template-columns: 110px 1fr 48px;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(230, 243, 251, 1);
    color: rgba(6, 79, 113, 1);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(230, 236, 245, 1);
    position: sticky;
    top: 0;
    z-index: 1;
}

.ec-niveles-progreso-title {
    justify-self: end;
    text-align: right;
    margin-right: -35px;
}

.ec-niveles {
    padding: 6px 12px 10px;
}

.ec-nivel-row {
    display: grid;
    grid-template-columns: 110px 1fr 48px;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(230, 236, 245, 1);
}

.ec-nivel-row:last-child {
    border-bottom: 0;
}

.ec-progress {
    background: rgba(230, 236, 245, 1);
    height: 6px;
    border-radius: 6px;
    overflow: hidden;
    justify-self: end;
    width: 89px;
}

.ec-nivel-pct {
    font-size: 12px;
    color: rgba(35, 94, 173, 1);
    font-weight: 600;
}

.ec-nivel-subtitle {
    font-weight: 400;
    color: rgba(88, 88, 90, 1);
}

.ec-nivel-head {
    font-size: 14px;
    font-weight: 600;
}

.ec-modal-dialog {
    width: 620px;
    max-height: 840px;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 18px 22px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
}

.ec-scroll-area {
    flex: 1 1 auto;
    overflow: auto;
    padding-right: 6px;
}

.ec-modal-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.ec-modal-footer {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.ec-btn-resumen {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(to right,
            rgba(8, 159, 228, 1),
            rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    transition: opacity 0.2s ease;
}

.ec-btn-resumen:hover {
    background: linear-gradient(to right,
            rgba(8, 159, 228, 0.7),
            rgba(34, 74, 162, 0.7));
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 599px) {
    .ec-modal-dialog {
        width: 360px;
    }

    .ec-pill {
        grid-template-columns: 1fr auto;
    }

    .ec-alert {
        gap: 2px;
        margin: 30px -6px 35px;
        width: 328px;
        height: 144px;
    }

    .ec-niveles-progreso-title {
        margin-right: -42px;
    }
}