:root {
    --labs-primary: #0b3b75;
    --labs-primary-dark: #062b59;
    --labs-accent: #0b78b8;

    --labs-bg: #f4f7fb;
    --labs-white: #ffffff;

    --labs-border: #d8e3ed;

    --labs-text: #0b3264;
    --labs-body: #324f69;
    --labs-muted: #7b8c9e;

    --labs-light: #edf4fa;

    --labs-shadow:
        0 5px 20px rgba(11, 50, 100, .06);
}

.labs-page,
.labs-page *,
.labs-page *::before,
.labs-page *::after {
    box-sizing: border-box;
}

.labs-page {
    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--labs-bg);

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    color: var(--labs-text);
}

.labs-container {
    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 0 auto;
}

.labs-hero {
    position: relative;
    overflow: hidden;

    padding: 48px 0 46px;

    background:
        linear-gradient(
            135deg,
            var(--labs-primary-dark) 0%,
            var(--labs-primary) 100%
        );

    color: #ffffff;
}

.labs-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -210px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .035
        );
}

.labs-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 240px;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .025
        );
}

.labs-hero .labs-container {
    position: relative;
    z-index: 2;
}

.labs-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #7fd3ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.labs-hero h1 {
    max-width: 1100px;

    margin: 0;

    color: #ffffff;

    font-size: 36px;
    font-weight: 800;

    line-height: 1.22;
}

.labs-hero p {
    max-width: 900px;

    margin: 13px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    font-size: 13px;
    line-height: 1.65;
}

.labs-content {
    padding: 40px 0 65px;
}

.labs-summary {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 20px;
}

.labs-summary-box {
    min-width: 180px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border: 1px solid var(--labs-border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow: var(--labs-shadow);
}

.labs-summary-box > i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--labs-light);

    color: var(--labs-primary);

    font-size: 16px;
}

.labs-summary-box > div {
    display: flex;
    flex-direction: column;
}

.labs-summary-box span {
    margin-bottom: 1px;

    color: var(--labs-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.labs-summary-box strong {
    color: var(--labs-text);

    font-size: 20px;
    font-weight: 800;
}

.labs-search {
    position: relative;

    margin-bottom: 22px;

    padding: 14px;

    border: 1px solid var(--labs-border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow: var(--labs-shadow);
}

.labs-search > i {
    position: absolute;

    left: 30px;
    top: 50%;

    transform: translateY(-50%);

    color: #7890a8;

    font-size: 12px;

    pointer-events: none;
}

.labs-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;
}

.labs-search input::placeholder {
    color: #9aa8b6;
}

.labs-search input:focus {
    border-color: var(--labs-accent);

    box-shadow:
        0 0 0 3px
        rgba(
            11,
            120,
            184,
            .08
        );
}

.labs-units {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.labs-unit {
    overflow: hidden;

    border: 1px solid var(--labs-border);

    border-radius: 13px;

    background: #ffffff;

    box-shadow: var(--labs-shadow);

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.labs-unit:hover {
    border-color: #bfd0df;

    box-shadow:
        0 8px 26px
        rgba(
            11,
            50,
            100,
            .08
        );
}

.labs-unit-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 16px 18px;

    border-bottom:
        1px solid
        #dfe7ee;

    background:
        #f7f9fc;
}

.labs-unit-title {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 0;
}

.labs-unit-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        #eaf3fb;

    color:
        var(--labs-primary);

    font-size: 15px;
}

.labs-unit-title > div {
    min-width: 0;
}

.labs-unit-title > div > span {
    display: block;

    margin-bottom: 2px;

    color:
        var(--labs-accent);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.labs-unit-title h2 {
    margin: 0;

    color:
        var(--labs-text);

    font-size: 15px;
    font-weight: 800;

    line-height: 1.35;

    text-transform: uppercase;
}

.labs-unit-count {
    flex-shrink: 0;

    padding:
        5px 9px;

    border-radius: 20px;

    background:
        #eaf3fb;

    color:
        var(--labs-accent);

    font-size: 8.5px;
    font-weight: 800;

    white-space: nowrap;
}

.labs-table-wrap {
    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: thin;

    scrollbar-color:
        #aebdca
        #eef2f5;
}

.labs-table-wrap::-webkit-scrollbar {
    height: 9px;
}

.labs-table-wrap::-webkit-scrollbar-track {
    background: #eef2f5;
}

.labs-table-wrap::-webkit-scrollbar-thumb {
    background: #aebdca;

    border-radius: 10px;
}

.labs-table {
    width: 100%;

    min-width: 1050px;

    border-collapse: collapse;

    table-layout: fixed;

    font-size: 10px;
}

.labs-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;

    vertical-align: middle;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: .2px;
}

.labs-table thead th:last-child {
    border-right: 0;
}

.labs-table tbody td {
    padding:
        12px 10px;

    border-right:
        1px solid
        #e3e9ef;

    border-bottom:
        1px solid
        #e3e9ef;

    background:
        #ffffff;

    color:
        var(--labs-body);

    line-height: 1.6;

    vertical-align: top;

    overflow-wrap: anywhere;

    word-wrap: break-word;
}

.labs-table tbody td:last-child {
    border-right: 0;
}

.labs-table tbody tr:nth-child(even) td {
    background:
        #fafcfd;
}

.labs-table tbody tr:hover td {
    background:
        #f4f8fb;
}

.labs-table th:nth-child(1),
.labs-table td:nth-child(1) {
    width: 55px;
}

.labs-number {
    color:
        #6d8296 !important;

    font-weight: 700;

    text-align: center;
}

.labs-table th:nth-child(2),
.labs-table td:nth-child(2) {
    width: 210px;
}

.labs-disease {
    color:
        var(--labs-text) !important;

    font-weight: 800;

    line-height: 1.45 !important;
}

.labs-table th:nth-child(3),
.labs-table td:nth-child(3) {
    width: 430px;
}

.labs-table th:nth-child(4),
.labs-table td:nth-child(4) {
    width: 360px;
}

.labs-empty-cell {
    color: #a8b4bf;

    font-style: italic;
}

.labs-unit-empty {
    display: none;

    padding: 25px 15px;

    color:
        var(--labs-muted);

    text-align: center;

    font-size: 10.5px;
}

.labs-global-empty {
    min-height: 280px;

    display: none;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin-top: 20px;

    padding: 35px 20px;

    border: 1px solid var(--labs-border);

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow: var(--labs-shadow);
}

.labs-global-empty > i {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background: var(--labs-light);

    color: var(--labs-primary);

    font-size: 24px;
}

.labs-global-empty h2 {
    margin: 0;

    color: var(--labs-text);

    font-size: 19px;
    font-weight: 800;
}

.labs-global-empty p {
    max-width: 520px;

    margin: 8px 0 0;

    color: var(--labs-muted);

    font-size: 11px;

    line-height: 1.65;
}

.labs-empty {
    min-height: 320px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    border: 1px solid var(--labs-border);

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow: var(--labs-shadow);
}

.labs-empty > i {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background: var(--labs-light);

    color: var(--labs-primary);

    font-size: 25px;
}

.labs-empty h2 {
    margin: 0;

    color: var(--labs-text);

    font-size: 19px;
    font-weight: 800;
}

.labs-empty p {
    max-width: 520px;

    margin: 8px 0 0;

    color: var(--labs-muted);

    font-size: 11px;

    line-height: 1.65;
}

@media (max-width: 991.98px) {

    .labs-summary {
        flex-wrap: wrap;
    }

    .labs-unit-header {
        align-items: flex-start;
    }

}

@media (max-width: 575.98px) {

    .labs-container {
        width:
            calc(100% - 24px);
    }


    /* HERO */

    .labs-hero {
        padding:
            31px 0;
    }

    .labs-eyebrow {
        font-size: 8px;

        line-height: 1.5;
    }

    .labs-hero h1 {
        font-size: 23px;
    }

    .labs-hero p {
        font-size: 11.5px;
    }


    /* CONTENT */

    .labs-content {
        padding:
            28px 0 42px;
    }


    /* RESUMEN */

    .labs-summary {
        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 10px;
    }

    .labs-summary-box {
        min-width: 0;

        padding: 12px;
    }

    .labs-summary-box > i {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .labs-summary-box strong {
        font-size: 17px;
    }


    /* BUSCADOR */

    .labs-search {
        padding: 10px;
    }

    .labs-search > i {
        left: 25px;
    }

    .labs-search input {
        font-size: 10.5px;
    }


    /* UNIDAD */

    .labs-unit-header {
        padding: 13px;

        gap: 10px;
    }

    .labs-unit-icon {
        width: 35px;
        height: 35px;

        font-size: 12px;
    }

    .labs-unit-title > div > span {
        font-size: 7.5px;
    }

    .labs-unit-title h2 {
        font-size: 11px;
    }

    .labs-unit-count {
        display: none;
    }


    /* TABLA */

    .labs-table {
        min-width: 950px;

        font-size: 9px;
    }

    .labs-table thead th {
        padding:
            9px 8px;

        font-size: 7.8px;
    }

    .labs-table tbody td {
        padding:
            10px 8px;
    }

}

@media (max-width: 390px) {

    .labs-hero h1 {
        font-size: 20px;
    }

    .labs-summary {
        grid-template-columns: 1fr;
    }

    .labs-unit-title h2 {
        font-size: 10.5px;
    }

}