<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#header .dd {
    border: 1px solid var(--col-linea-gris1);
}

#header .tarjeta .row section b {
    line-height: 110%;
    display: inline-block;
}

#header aside {
    display: flex;
    flex-direction: column;
}

#header .titular {
    font-size: 2rem;
    font-weight: 600;
    padding: 0 5px;
    border-bottom: 1px solid var(--col-black);
    display: inline-block;
    margin: 10px 0;
}

#header .titular-seccion {
    padding: 0 5px;
    margin-bottom: 5px;
    display: block;
    color: var(--col-andina);
}

#header hr {
    width: 100% !important;
    height: 1px;
    background: var(--col-black);
    margin: 10px 0;
}

    #header hr.b2 {
        width: 100%;
        height: 2px;
        background: var(--col-black);
        margin: 20px 0;
    }

    #header hr.b2 {
        width: 100%;
        height: 3px;
        background: var(--col-black);
        margin: 20px 0;
    }

    #header hr.b4 {
        width: 100%;
        height: 4px;
        background: var(--col-black);
        margin: 20px 0;
    }

#header .cols-2 {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

#header .cols-4 {
    display: grid;
    grid-gap: 4rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    padding-top: 10px;
    margin: 20px 0;
}

#header .cols-5 {
    display: grid;
    grid-gap: 2rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding-top: 10px;
    margin: 20px 0;
}

#header .cols-6 {
    display: grid;
    grid-gap: 2rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

#header .cols-10 {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

#header .linex:nth-child(odd) {
    background-color: red;
}

#header .gridgap4 {
    grid-gap: 4rem;
}

#header .span2 {
    grid-column: span 2;
}

#header .span3 {
    grid-column: span 2;
}

#header .span4 {
    grid-column: span 4;
}

#header .span5 {
    grid-column: span 2;
}

@media only screen and (max-width: 836px) {
    #header .span2-mobil {
        grid-column: span 2;
    }

    #header .cols-5 {
        grid-gap: 0;
    }
}
</pre></body></html>