
:root {
    --labc-primary: #0b3b75;
    --labc-primary-dark: #062b59;
    --labc-accent: #0b78b8;

    --labc-bg: #f4f7fb;
    --labc-white: #ffffff;

    --labc-border: #d8e3ed;

    --labc-text: #0b3264;
    --labc-body: #324f69;
    --labc-muted: #7b8c9e;

    --labc-light: #edf4fa;

    --labc-success: #1f8f5f;

    --labc-shadow:
        0 5px 20px rgba(11, 50, 100, .06);
}

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

.labc-page {
    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--labc-bg);

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    color: var(--labc-text);
}

.labc-container {
    width: calc(100% - 40px);
    max-width: 1500px;

    margin: 0 auto;
}

.labc-hero {
    position: relative;

    overflow: hidden;

    padding: 48px 0 46px;

    background:
        linear-gradient(
            135deg,
            var(--labc-primary-dark) 0%,
            var(--labc-primary) 100%
        );

    color: #ffffff;
}

.labc-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -210px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .035
        );
}

.labc-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 240px;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .025
        );
}

.labc-hero .labc-container {
    position: relative;
    z-index: 2;
}

.labc-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #7fd3ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.labc-hero h1 {
    max-width: 1100px;

    margin: 0;

    color: #ffffff;

    font-size: 36px;
    font-weight: 800;

    line-height: 1.22;
}

.labc-hero p {
    max-width: 950px;

    margin: 13px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    font-size: 13px;

    line-height: 1.65;
}

.labc-content {
    padding: 40px 0 65px;
}

.labc-summary {
    display: flex;

    gap: 14px;

    margin-bottom: 20px;
}

.labc-summary-item {
    min-width: 180px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border: 1px solid var(--labc-border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow: var(--labc-shadow);
}

.labc-summary-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #edf4fa;

    color: var(--labc-primary);

    font-size: 16px;
}

.labc-summary-item > div:last-child {
    display: flex;

    flex-direction: column;
}

.labc-summary-item span {
    margin-bottom: 1px;

    color: var(--labc-muted);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.labc-summary-item strong {
    color: var(--labc-text);

    font-size: 20px;
    font-weight: 800;
}

.labc-tools {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 12px;

    margin-bottom: 22px;

    padding: 14px;

    border: 1px solid var(--labc-border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow: var(--labc-shadow);
}

.labc-search {
    position: relative;

    width: 100%;
}

.labc-search i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform:
        translateY(-50%);

    color: #7890a8;

    font-size: 12px;

    pointer-events: none;
}

.labc-search input {
    width: 100%;

    height: 44px;

    padding:
        0 15px
        0 40px;

    border:
        1px solid
        #cfdae5;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: #314d68;

    font-size: 11.5px;
}

.labc-search input::placeholder {
    color: #9aa8b6;
}

.labc-search input:focus {
    border-color:
        var(--labc-accent);

    box-shadow:
        0 0 0 3px
        rgba(
            11,
            120,
            184,
            .08
        );
}

.labc-expand-all {
    min-width: 135px;

    min-height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding:
        0 15px;

    border: 0;

    border-radius: 8px;

    background:
        var(--labc-primary);

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.labc-expand-all:hover {
    background:
        var(--labc-accent);

    transform:
        translateY(-1px);
}

.labc-accordion {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.labc-category {
    overflow: hidden;

    border:
        1px solid
        var(--labc-border) !important;

    border-radius: 12px !important;

    background: #ffffff;

    box-shadow: var(--labc-shadow);
}

.labc-category-button {
    min-height: 62px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        14px 18px;

    background:
        #ffffff !important;

    color:
        var(--labc-text) !important;

    font-size: 13px;
    font-weight: 800;

    box-shadow: none !important;
}

.labc-category-button:not(.collapsed) {
    background:
        #f6f9fc !important;

    color:
        var(--labc-primary) !important;
}

.labc-category-button:focus {
    box-shadow: none !important;
}

.labc-category-button::after {
    margin-left: 10px;

    filter:
        none;
}

.labc-category-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background:
        #edf4fa;

    color:
        var(--labc-primary);

    font-size: 14px;
}

.labc-category-title {
    flex: 1;

    min-width: 0;

    color:
        var(--labc-text);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .2px;
}

.labc-category-count {
    flex-shrink: 0;

    padding:
        5px 9px;

    border-radius: 20px;

    background:
        #eaf3fb;

    color:
        var(--labc-accent);

    font-size: 8.5px;
    font-weight: 800;

    white-space: nowrap;
}
 
.labc-category-body {
    padding: 0 !important;

    border-top:
        1px solid
        #e2e9ef;

    background:
        #ffffff;
}

.labc-table-scroll {
    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: thin;

    scrollbar-color:
        #aebdca
        #eef2f5;
}

.labc-table-scroll::-webkit-scrollbar {
    height: 9px;
}

.labc-table-scroll::-webkit-scrollbar-track {
    background:
        #eef2f5;
}

.labc-table-scroll::-webkit-scrollbar-thumb {
    background:
        #aebdca;

    border-radius: 10px;
}

.labc-table {
    width: 100%;

    min-width: 1750px;

    border-collapse: collapse;

    table-layout: fixed;

    font-size: 9.5px;
}

.labc-table thead th {
    padding:
        11px 10px;

    border-right:
        1px solid
        #d9e2ea;

    border-bottom:
        1px solid
        #cfdbe5;

    background:
        #eef3f7;

    color:
        #334f69;

    font-size: 8.5px;
    font-weight: 800;

    line-height: 1.4;

    text-align: left;

    vertical-align: middle;

    text-transform: uppercase;

    letter-spacing: .2px;
}

.labc-table thead th:last-child {
    border-right: 0;
}

.labc-table tbody td {
    padding:
        12px 10px;

    border-right:
        1px solid
        #e3e9ef;

    border-bottom:
        1px solid
        #e3e9ef;

    background: #ffffff;

    color:
        var(--labc-body);

    line-height: 1.55;

    vertical-align: top;

    word-wrap: break-word;

    overflow-wrap: anywhere;
}

.labc-table tbody td:last-child {
    border-right: 0;
}

.labc-table tbody tr:nth-child(even) td {
    background:
        #fafcfd;
}

.labc-table tbody tr:hover td {
    background:
        #f4f8fb;
}

.labc-col-number {
    width: 55px;
}

.labc-number {
    width: 55px;

    color:
        #6d8296 !important;

    font-weight: 700;

    text-align: center;
}

.labc-col-disease {
    width: 250px;
}

.labc-disease {
    color:
        var(--labc-text) !important;

    font-weight: 800;

    line-height: 1.45 !important;
}

.labc-table th:nth-child(3),
.labc-table td:nth-child(3) {
    width: 260px;
}

.labc-table th:nth-child(4),
.labc-table td:nth-child(4) {
    width: 210px;
}

.labc-table th:nth-child(5),
.labc-table td:nth-child(5) {
    width: 220px;
}

.labc-table th:nth-child(6),
.labc-table td:nth-child(6) {
    width: 280px;
}

.labc-table th:nth-child(7),
.labc-table td:nth-child(7) {
    width: 280px;
}

.labc-table th:nth-child(8),
.labc-table td:nth-child(8) {
    width: 300px;
}

.labc-table th:nth-child(9),
.labc-table td:nth-child(9) {
    width: 300px;
}

.labc-empty-cell {
    color:
        #a8b4bf;

    font-style: italic;
}

.labc-no-results {
    min-height: 95px;

    display: none;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 20px;

    color:
        #788b9d;

    font-size: 11px;

    text-align: center;
}

.labc-no-results i {
    color:
        var(--labc-accent);
}

.labc-empty-category {
    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 25px;

    color:
        var(--labc-muted);

    text-align: center;
}

.labc-empty-category i {
    margin-bottom: 10px;

    color:
        #7890a8;

    font-size: 25px;
}

.labc-empty-category p {
    margin: 0;

    font-size: 10.5px;
}

.labc-global-empty {
    min-height: 280px;

    display: none;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin-top: 20px;

    padding: 35px;

    border:
        1px solid
        var(--labc-border);

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        var(--labc-shadow);
}

.labc-global-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background:
        var(--labc-light);

    color:
        var(--labc-primary);

    font-size: 24px;
}

.labc-global-empty h2 {
    margin: 0;

    color:
        var(--labc-text);

    font-size: 19px;
    font-weight: 800;
}

.labc-global-empty p {
    max-width: 520px;

    margin:
        8px 0 0;

    color:
        var(--labc-muted);

    font-size: 11px;

    line-height: 1.65;
}

.labc-empty {
    min-height: 320px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    border:
        1px solid
        var(--labc-border);

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        var(--labc-shadow);
}

.labc-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background:
        var(--labc-light);

    color:
        var(--labc-primary);

    font-size: 25px;
}

.labc-empty h2 {
    margin: 0;

    color:
        var(--labc-text);

    font-size: 19px;
    font-weight: 800;
}

.labc-empty p {
    max-width: 520px;

    margin:
        8px 0 0;

    color:
        var(--labc-muted);

    font-size: 11px;

    line-height: 1.65;
}

@media (max-width: 991.98px) {

    .labc-summary {
        flex-wrap: wrap;
    }

    .labc-tools {
        grid-template-columns: 1fr;
    }

    .labc-expand-all {
        width: 100%;
    }

    .labc-category-button {
        min-height: 58px;
    }

    .labc-category-title {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {

    .labc-container {
        width:
            calc(100% - 24px);
    }

    .labc-hero {
        padding:
            31px 0;
    }

    .labc-eyebrow {
        font-size: 8px;

        line-height: 1.5;
    }

    .labc-hero h1 {
        font-size: 23px;
    }

    .labc-hero p {
        font-size: 11.5px;
    }

    .labc-content {
        padding:
            28px 0 42px;
    }


    /* RESUMEN */

    .labc-summary {
        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 10px;
    }

    .labc-summary-item {
        min-width: 0;

        padding: 12px;
    }

    .labc-summary-icon {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .labc-summary-item strong {
        font-size: 17px;
    }


    /* BUSCADOR */

    .labc-tools {
        padding: 10px;
    }

    .labc-search input {
        font-size: 10.5px;
    }


    /* CATEGORÍA */

    .labc-category-button {
        padding:
            12px 13px;

        gap: 9px;
    }

    .labc-category-icon {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }

    .labc-category-title {
        font-size: 10.5px;

        line-height: 1.35;
    }

    .labc-category-count {
        display: none;
    }


    /* TABLA */

    .labc-table {
        min-width: 1650px;

        font-size: 8.8px;
    }

    .labc-table thead th {
        padding:
            9px 8px;

        font-size: 7.8px;
    }

    .labc-table tbody td {
        padding:
            10px 8px;
    }
}

@media (max-width: 390px) {

    .labc-hero h1 {
        font-size: 20px;
    }

    .labc-summary {
        grid-template-columns: 1fr;
    }

    .labc-category-title {
        font-size: 10px;
    }
}