@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #123f7a;
    --primary-dark: #0d2f5c;
    --accent: #f36f21;
    --purple: #340f49;
    --ink: #1d2433;
    --muted: #697386;
    --line: #e7ecf3;
    --soft: #f6f8fb;
    --white: #ffffff;
    --shadow: 0 12px 36px rgba(23, 43, 77, 0.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-top {
    display: grid;
    grid-template-columns: 240px 1fr 210px;
    gap: 24px;
    align-items: center;
    padding: 16px 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: -3px;
}

.searchbar {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.searchbar input {
    flex: 1;
    border: 0;
    padding: 13px 16px;
    font-family: inherit;
    outline: none;
}

.searchbar button {
    border: 0;
    background: var(--primary);
    color: #fff;
    padding: 0 24px;
    font-weight: 600;
    cursor: pointer;
}

.contact-box {
    text-align: right;
    color: var(--muted);
    font-size: 13px;
}

.contact-box strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.main-nav {
    background: var(--primary);
}

.nav-inner {
    display: flex;
    gap: 34px;
    align-items: center;
    min-height: 46px;
}

.nav-inner a {
    color: #fff;
    font-weight: 500;
}

.page-hero,
.report-hero {
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 55%, #fff1e8 100%);
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 8px;
}

.page-hero h1,
.report-hero h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
    margin: 0 0 14px;
    color: #13294b;
}

.page-hero p,
.report-hero p {
    max-width: 760px;
    color: var(--muted);
    margin: 0;
}

.listing-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 28px;
    padding: 42px 0;
}

.industry-panel {
    position: sticky;
    top: 125px;
    align-self: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.industry-panel h3 {
    margin-top: 0;
    color: var(--primary);
}

.industry-link {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #354052;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.industry-link:hover,
.industry-link.active {
    background: #edf4ff;
    color: var(--primary);
    border-color: #d3e6ff;
}

.report-list {
    min-width: 0;
}

.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.list-header h2 {
    margin: 0;
    color: #13294b;
}

.report-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(22, 34, 51, .05);
}

.cover-placeholder {
    min-height: 178px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #5fa8ff);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    overflow: hidden;
}

.cover-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-meta,
.breadcrumb {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.report-meta span {
    background: var(--soft);
    padding: 4px 9px;
    border-radius: 999px;
}

.report-card h3 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.3;
    color: #162b52;
}

.report-card h3 a:hover {
    color: var(--accent);
}

.report-card p {
    color: var(--muted);
    margin: 0 0 14px;
}

.mini-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #42526e;
    font-size: 13px;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 10px 18px;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
}

.btn-light {
    background: #eef4fb;
    color: var(--primary);
}

.empty-state,
.api-warning {
    padding: 16px;
    border: 1px solid #ffd7ad;
    background: #fff8f1;
    border-radius: 8px;
    color: #8a4a0a;
}

.api-warning {
    margin-top: 20px;
    font-size: 13px;
}

.api-warning span {
    display: block;
    margin-top: 5px;
}

.api-warning.wide {
    margin: 0 0 20px;
}

.report-hero {
    padding: 42px 0;
}

.report-hero h1 {
    max-width: 1050px;
    font-size: clamp(26px, 3vw, 38px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 22px;
    margin-top: 28px;
}

.report-info-box,
.stat-grid > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.report-info-box {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.report-info-box span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.report-info-box strong {
    color: var(--ink);
    text-align: right;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-grid > div {
    padding: 18px;
}

.stat-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.stat-grid strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    margin-top: 4px;
}

.report-detail {
    padding: 34px 0 56px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--line);
    margin-bottom: 24px;
}

.tab-button {
    background: #fff;
    border: 0;
    padding: 14px 22px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    color: #526072;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(22, 34, 51, .05);
    padding: 28px;
}

.report-highlight {
    color: #13294b;
    font-size: 24px;
    line-height: 1.25;
    margin: 22px 0 12px;
}

blockquote {
    border-left: 4px solid var(--accent);
    background: #fff8f1;
    padding: 18px 22px;
    margin: 0 0 24px;
    color: #13294b;
}

.key-point,
.sample-cta {
    border-radius: 8px;
    padding: 18px;
    margin: 22px 0;
}

.key-point {
    background: #f2f7ff;
}

.sample-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #102f58;
    color: #fff;
}

.sample-cta a {
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 700;
}

.dashboard-grid,
.download-grid,
.signup-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.chart-card,
.download-box,
.scope-grid > div {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    background: var(--soft);
}

.bar-row {
    display: grid;
    grid-template-columns: 52px 1fr 72px;
    gap: 12px;
    align-items: center;
    margin: 10px 0;
}

.bar-track {
    background: #dde8f5;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 999px;
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.download-box {
    display: block;
}

.download-box strong,
.download-box span {
    display: block;
}

.download-box strong {
    color: var(--primary);
    font-size: 18px;
}

.download-box span {
    color: var(--muted);
    margin-top: 6px;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 28px;
}

.scope-grid strong,
.scope-grid span {
    display: block;
}

.scope-grid span {
    color: var(--muted);
    margin-top: 4px;
}

.toc-list {
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 8px;
}

.signup-card {
    align-items: start;
}

.signup-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.signup-form label {
    display: grid;
    gap: 6px;
    color: #344054;
    font-weight: 500;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    border: 1px solid #cfd7e6;
    border-radius: 5px;
    padding: 12px;
    font-family: inherit;
}

.signup-form .full {
    grid-column: 1 / -1;
}

.terms {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
}


/* Horizon-style locked dashboard */
.dashboard-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(15, 35, 65, .07);
    padding: 24px;
}

.dashboard-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.dashboard-title-row h2 {
    margin: 0;
    color: #251938;
    font-size: 24px;
    line-height: 1.25;
}

.dashboard-eyebrow {
    margin-bottom: 4px;
}

.dashboard-filter-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;
}

.dashboard-filter-row label {
    display: grid;
    gap: 5px;
    color: #0072a8;
    font-size: 13px;
    font-weight: 500;
}

.dashboard-filter-row span {
    display: inline-block;
    width: max-content;
    padding: 0 8px;
    margin-left: 12px;
    margin-bottom: -15px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.dashboard-filter-row select {
    min-height: 42px;
    border: 1px solid #008bd1;
    border-radius: 6px;
    background: #fff;
    color: #344054;
    padding: 10px 14px;
    font-family: inherit;
    outline: 0;
}

.dashboard-lock-stage {
    position: relative;
    min-height: 620px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #eef2f6;
}

.dashboard-chart-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    transition: filter .25s ease, opacity .25s ease;
}

.dashboard-chart-grid.locked-charts {
    filter: blur(5px);
    opacity: .82;
    pointer-events: none;
    user-select: none;
}

.dashboard-lock-stage.is-filtered .dashboard-chart-grid {
    opacity: .55;
}

.dash-chart-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid #eef1f6;
    border-radius: 12px;
    min-height: 250px;
    padding: 16px;
    box-shadow: 0 12px 26px rgba(20, 35, 70, .07);
}

.dash-chart-card.wide {
    grid-column: span 3;
    min-height: 250px;
}

.dash-chart-card canvas {
    width: 100% !important;
    height: 185px !important;
}

.dash-chart-card.wide canvas {
    height: 175px !important;
}

.dash-chart-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
    margin-bottom: 8px;
}

.dash-chart-head h3 {
    margin: 0;
    color: #251938;
    font-size: 15px;
    line-height: 1.35;
}

.dash-chart-head span {
    color: #8da2b8;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.dashboard-lock-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .24);
    padding: 24px;
}

.dashboard-access-btn {
    min-width: 210px;
    border: 0;
    border-radius: 8px;
    background: var(--purple);
    color: #fff;
    padding: 18px 28px;
    box-shadow: 0 15px 38px rgba(52, 15, 73, .35);
    font: inherit;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dashboard-access-btn strong {
    font-size: 18px;
}

.dashboard-inline-signup {
    display: none;
    grid-template-columns: 1fr 1.25fr;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e7d6ef;
    background: linear-gradient(135deg, #fff 0%, #f9f2ff 100%);
}

.dashboard-inline-signup.active {
    display: grid;
}

.dashboard-inline-signup h3 {
    margin: 0 0 8px;
    color: #251938;
    font-size: 22px;
}

.signup-form.compact {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
}

.scope-tree-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 22px;
    align-items: start;
    margin: 20px 0 30px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfcff;
}

.scope-tree-intro h3 {
    margin: 0 0 8px;
    color: #251938;
}

.scope-tree-intro p {
    color: var(--muted);
}

.scope-tree-intro code {
    color: var(--purple);
    background: #f3e9f8;
    border-radius: 4px;
    padding: 1px 5px;
}

.scope-tree,
.scope-tree ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.scope-tree ul {
    border-left: 1px dashed #cbd5e1;
    margin-left: 10px;
    padding-left: 18px;
}

.scope-tree li {
    position: relative;
    margin: 8px 0;
}

.scope-tree li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 18px;
    width: 14px;
    border-top: 1px dashed #cbd5e1;
}

.scope-tree > li::before {
    display: none;
}

.tree-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #dbe5f0;
    border-radius: 7px;
    padding: 8px 12px;
    color: #344054;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(15, 35, 65, .04);
}

.tree-label::before {
    content: "▣";
    color: var(--purple);
    font-size: 11px;
}

.site-footer {
    background: #102f58;
    color: #d8e4f4;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 4px 0;
}

@media (max-width: 900px) {
    .header-top,
    .listing-layout,
    .hero-grid,
    .dashboard-grid,
    .download-grid,
    .signup-card,
    .scope-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        text-align: left;
    }

    .industry-panel {
        position: static;
    }

    .report-card {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .sample-cta,
    .overview-chart-head,
    .dashboard-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-filter-row,
    .dashboard-chart-grid,
    .dashboard-inline-signup,
    .scope-tree-wrap {
        grid-template-columns: 1fr;
    }

    .dash-chart-card.wide {
        grid-column: span 1;
    }

    .dashboard-lock-stage {
        min-height: 980px;
    }
}

/* Production refinements */
.compact-hero {
    padding: 42px 0;
}

.hero-copy p {
    max-width: 900px;
}

.filter-heading,
.section-title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.filter-heading h3,
.section-title-row h2 {
    margin: 0;
}

.filter-heading a {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

.industry-tree-nav {
    display: grid;
    gap: 6px;
}

.industry-branch {
    border: 1px solid transparent;
    border-radius: 8px;
}

.industry-branch[open] {
    background: #f8fbff;
    border-color: #e1eaf7;
}

.industry-branch summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    border-radius: 8px;
    color: #23344e;
    font-weight: 600;
}

.industry-branch summary::-webkit-details-marker {
    display: none;
}

.industry-branch summary::after {
    content: "⌄";
    float: right;
    color: var(--primary);
}

.industry-branch[open] summary::after {
    transform: rotate(180deg);
}

.industry-children {
    border-left: 1px dashed #cbd5e1;
    margin: 0 0 10px 16px;
    padding-left: 10px;
}

.industry-children .industry-link {
    font-size: 14px;
    padding: 8px 10px;
}

.result-context {
    color: var(--muted);
    margin: 4px 0 0;
    font-size: 13px;
}

.report-content p:first-child,
.report-content h2:first-child,
.report-content blockquote:first-child {
    margin-top: 0;
}


.overview-market-chart {
    border: 1px solid #e7edf5;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 34px rgba(15, 35, 65, .07);
    padding: 20px;
    margin: 0 0 24px;
}

.overview-chart-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.overview-chart-head h2 {
    margin: 3px 0 0;
    color: #251938;
    font-size: 22px;
    line-height: 1.25;
}

.overview-chart-head > span {
    background: #fff;
    border: 1px solid #e1eaf7;
    border-radius: 999px;
    color: #0072a8;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    white-space: nowrap;
}

.overview-chart-canvas {
    height: 320px;
}

.overview-chart-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.empty-card {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    padding: 18px;
}

.form-message {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cde7d8;
    background: #f0fff5;
    color: #166534;
    font-size: 14px;
}

/* Parent-child dashboard filters */
.tree-filter-row label {
    position: relative;
}

.tree-select {
    position: relative;
    min-height: 42px;
}

.tree-select summary {
    list-style: none;
    min-height: 42px;
    border: 1px solid #008bd1;
    border-radius: 6px;
    background: #fff;
    color: #344054;
    padding: 10px 14px;
    font-family: inherit;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tree-select summary::-webkit-details-marker {
    display: none;
}

.tree-select summary b {
    color: #0072a8;
    font-size: 15px;
}

.tree-select[open] summary {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(52, 15, 73, .08);
}

.tree-select-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 320px;
    overflow: auto;
    background: #fff;
    border: 1px solid #dbe5f0;
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(15, 35, 65, .16);
    padding: 10px;
}

.tree-select-clear {
    border: 0;
    background: #f1f5f9;
    color: #334155;
    border-radius: 6px;
    padding: 7px 10px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}

.filter-tree,
.filter-tree ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-tree .filter-tree {
    border-left: 1px dashed #d7e0ea;
    margin-left: 13px;
    padding-left: 12px;
}

.filter-tree li {
    margin: 2px 0;
}

.filter-tree-option {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 8px !important;
    padding: 7px 8px;
    border-radius: 6px;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
}

.filter-tree-option:hover {
    background: #edf4ff;
}

.filter-tree-option input {
    accent-color: var(--purple);
}

.tree-select-empty {
    color: #64748b;
    font-size: 13px;
    padding: 12px;
}

/* Recursive TOC */
.toc-card {
    padding: 0;
    overflow: hidden;
}

.toc-card .section-title-row {
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    background: #fbfcff;
}

.toc-tree,
.toc-tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-tree {
    padding: 18px 28px 28px;
}

.toc-tree ul {
    margin-left: 24px;
    border-left: 1px dashed #cbd5e1;
    padding-left: 18px;
}

.toc-tree li {
    margin: 10px 0;
}

.toc-node {
    display: flex;
    gap: 12px;
    align-items: baseline;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
    padding: 10px 12px;
}

.toc-node span {
    color: var(--accent);
    font-weight: 700;
    min-width: 34px;
}

.toc-node strong {
    color: #23344e;
    font-size: 14px;
    line-height: 1.45;
}

/* Scope: segment first, then geography */
.scope-card .section-title-row {
    margin-bottom: 18px;
}

.scope-tree-wrap.two-column-scope {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    background: transparent;
    border: 0;
    padding: 0;
}

.scope-tree-block {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfcff;
    padding: 20px;
    min-width: 0;
}

.scope-tree-block .scope-tree-intro {
    margin-bottom: 14px;
}

.scope-tree-block .scope-tree {
    max-height: 520px;
    overflow: auto;
    padding-right: 4px;
}

@media (max-width: 900px) {
    .scope-tree-wrap.two-column-scope {
        grid-template-columns: 1fr;
    }

    .tree-select-panel {
        position: relative;
        top: auto;
        margin-top: 8px;
    }
}

.dashboard-filter-row .tree-select span,
.dashboard-filter-row .filter-tree-option span {
    display: inline;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    position: static;
    z-index: auto;
}

/* Version switching and API-rendered report content */
.version-switcher {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(22, 34, 51, .05);
}

.version-switcher label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #13294b;
}

.version-switcher select {
    min-width: 230px;
    border: 1px solid #d5dfec;
    border-radius: 8px;
    padding: 9px 34px 9px 12px;
    background: #fff;
    color: #17233a;
    font-weight: 500;
}

.api-content {
    color: #38475c;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.content-list {
    margin: 0 0 18px 22px;
    color: #38475c;
    line-height: 1.7;
}

.content-list li {
    margin-bottom: 8px;
}

.content-caption {
    margin: -4px 0 16px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

.table-content {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .version-switcher {
        display: grid;
        width: 100%;
    }

    .version-switcher select {
        width: 100%;
        min-width: 0;
    }
}

.simple-overview {
    padding: 4px 0 0;
}

.simple-overview h2 {
    margin: 0 0 18px;
    color: #14213d;
    font-size: 28px;
    line-height: 1.25;
}

.overview-subsections {
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid #e4ebf3;
    border-radius: 14px;
    background: #f8fbff;
}

.overview-subsections h3 {
    margin: 0 0 12px;
    color: #17233a;
    font-size: 16px;
}

.overview-subsections ul {
    margin: 0;
    padding-left: 20px;
    color: #38475c;
    line-height: 1.75;
}

.overview-subsections li {
    margin-bottom: 5px;
}

/* Geography-specific SEO sample pages */
.geo-context {
    max-width: 930px;
    margin-top: 8px !important;
}

.geo-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 8px;
}

.geo-nav a {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfdced;
    border-radius: 999px;
    background: #fff;
    color: #21354f;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 15px;
    box-shadow: 0 5px 14px rgba(15, 35, 65, .04);
}

.geo-nav a:hover,
.geo-nav a.active {
    border-color: var(--accent);
    background: #fff4ec;
    color: #a54408;
}



.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1140px
    }
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,.gx-0 {
    --bs-gutter-x: 0
}

.g-0,.gy-0 {
    --bs-gutter-y: 0
}

.g-1,.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm {
        flex:1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,.gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,.gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,.gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,.gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,.gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,.gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,.gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,.gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,.gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,.gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,.gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,.gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md {
        flex:1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,.gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,.gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,.gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,.gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,.gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,.gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,.gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,.gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,.gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,.gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,.gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,.gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex:1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,.gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,.gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,.gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,.gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,.gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,.gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,.gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,.gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,.gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,.gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,.gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,.gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex:1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,.gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,.gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,.gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,.gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,.gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,.gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,.gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,.gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,.gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,.gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,.gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,.gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex:1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,.gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,.gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,.gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,.gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,.gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,.gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,.gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,.gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,.gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,.gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,.gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,.gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}