<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tabs {
    width: 100%;
}

    .tabs h2 {
        font-size: 2.3rem;
    }

    .tabs nav {
        display: flex;
        flex-wrap: wrap;
        padding-left: 0;
        padding-right: 0;
    }

        .tabs nav button {
            padding: 10px 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: bold;
            text-align: left;
            letter-spacing: 0.1rem;
            flex-grow: 1;
            max-width: 40ch;
            min-height: 5.5rem;
        }

            .tabs nav button::after {
                content: url(/portals/0/library/Icons/chevron-down/chevron-down.svg);
                margin-left: 2rem;
                width: 0.95rem;
                height: auto;
                flex-shrink: 0;
                transition: transform 250ms ease;
            }

            .tabs nav button:hover,
            .tabs nav button:focus {
                background-color: var(--blue)
            }

@media screen and (max-width: 767px) {
    .tabs nav button {
        max-width: none;
        width: 100%;
    }
}

.tabs &gt; section {
    display: none;
    min-height: 100px;
}

    .tabs &gt; section.is-active {
        display: block;
    }

.tabs button.is-active {
    background-color: var(--blue)
}

.tabs nav button.is-active::after {
    transform: rotateX(180deg);
}

.tabs &gt; .cpc-container {
    padding-top: 0;
    padding-bottom: 0;
}

.tabs .tab-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
}
</pre></body></html>