/*PRE-STYLING - START*/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 62.5%;
    line-height: 1.6;
}

body {
    margin: 0;
    font-size: 1.6rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

ul,
menu,
dir {
    display: block;
    list-style-type: disc;
    margin-block-start: 1.6rem;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

progress {
    vertical-align: baseline;
}

template,
[hidden] {
    display: none;
}

a {
    text-decoration: none;
    background-color: transparent;
    color: #3399cc;
}

a:active,
a:hover {
    outline-width: 0;
    color: #66ccff;
}

abbr[title] {
    border-bottom: 0;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

p {
    margin: 2rem 0 0 0;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 1.3rem;
}

sub,
sup {
    font-size: 1.2rem;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.4rem;
}

sup {
    top: -0.8rem;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1.5rem;
}

figure {
    margin: 1.5rem 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

optgroup {
    font-weight: 700;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

button {
    cursor: pointer;
    font-family: var(--default-font-family);
    font-weight: var(--clickable-font-weight);
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary-button-color);
    border: none;
    border-radius: 0.2rem;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0px;
    width: auto;
    max-width: 40rem;
}

button:hover {
    background-color: var(--primary-button-hover-color);
}

button.secondary {
    background-color: transparent;
    color: #fafafa;
    border: 1px solid #fafafa;
}

button.secondary:hover {
    background-color: #fafafa;
    color: #000;
    border: 1px solid #fafafa;
}

button:disabled,
button[disabled] {
    cursor: not-allowed;
    background-color: #b1b1b1;
}

button.danger {
    background-color: #cc3333;
}

button.danger:hover {
    background-color: #aa2222;
}

fieldset {
    border: 1px solid silver;
    margin: 0 0.2rem;
    padding: 0.6rem 1rem 1.2rem;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    border: none;
    border-radius: 0;
    field-sizing: content;
    cursor: pointer;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.4rem;
}

::-webkit-scrollbar-corner,
::-webkit-resizer {
    background: rgba(255, 255, 255, 0.1);
}

/*IE Scrollbars*/
body {
    scrollbar-arrow-color: #044c8b;
    scrollbar-3dlight-color: #00417b;
    scrollbar-highlight-color: #00417b;
    scrollbar-face-color: #044c8b;
    scrollbar-shadow-color: #00417b;
    scrollbar-darkshadow-color: #00417b;
    scrollbar-track-color: #00417b;
}

.vertical-line {
    --line-color: #ffffff;
    border-left: 1px solid var(--line-color);
    height: 100%;
    margin: 0 1rem;
}

.horizontal-line {
    --line-color: #ffffff;
    border-top: 1px solid var(--line-color);
    width: 100%;
    margin: 0;
}

/*PRE-STYLING - END*/

body {
    position: relative;
    background-color: var(--body-color);
    color: #fafafa;
    margin: 0;
    padding: 0;
}

/* body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url(../img/bmw_bg.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
} */

header {
    left: 0;
    margin: 0;
    position: absolute;
    width: 100%;
}

/* Visually hidden until keyboard-focused; every page's renderPageHead()/own header emits this
   link, so it must live here (loaded everywhere), not in a page-specific stylesheet. */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    padding: 1rem 1.5rem;
    background-color: var(--primary-button-color);
    color: #fff;
}

.skip-link:focus {
    left: 0;
}

main:focus {
    outline: none;
}

/* Dealer-select multi-picker (dashboard's global filter + admin/responses.php's response
   filter) — lives here (not a page-specific stylesheet) so both pages get it without duplication. */
.dealer-select {
    position: relative;
}

.dealer-select__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-width: 20rem;
    background: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    box-shadow: none;
    padding: 0.25rem 0.5rem 0.25rem 1.2rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
}

.dealer-select__toggle:hover {
    background: transparent;
}

.dealer-select__toggle i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.dealer-select__caret {
    transition: transform 0.2s ease;
}

.dealer-select__toggle[aria-expanded="true"] .dealer-select__caret {
    transform: rotate(180deg);
}

.dealer-select__toggle span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dealer-select__panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    width: 32rem;
    max-height: 42rem;
    background: rgb(10, 16, 28);
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    padding: 1rem;
    gap: 0.5rem;
}

.dealer-select__panel[hidden] {
    display: none;
}

.dealer-select__search {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
    color: #fafafa;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.4rem;
}

.dealer-select__divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.3rem 0;
}

.dealer-select__options {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 26rem;
}

/* On dashboard.php, .dealer-select is also a .globalfilters__item, so this page's own
   `.globalfilters__item label { display: none }` rule (below) would otherwise hide these
   option rows too — this higher-specificity rule restores them. Harmless on pages (e.g.
   admin/responses.php) that don't use the .globalfilters__item class at all. */
.dealer-select .dealer-select__option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    cursor: pointer;
    border-radius: 0.4rem;
}

.dealer-select__option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dealer-select__option input[type="checkbox"] {
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    accent-color: var(--primary-button-color);
}

.dealer-select__option span {
    color: #ffffff;
}

/* Dealers with no completed responses are muted so admins can see at a glance which ones
   actually have data behind them. */
.dealer-select__option--no-responses span {
    color: #808893;
}

.dealer-select__option small {
    color: #b1b1b1;
}

.dealer-select__option--all {
    font-weight: 500;
}

.dealer-select__empty {
    font-size: 1.3rem;
    color: #b1b1b1;
    padding: 0.6rem 0.5rem;
    margin: 0;
}

.dealer-select__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.dealer-select__apply {
    width: 100%;
    font-size: 1.2rem;
    border-radius: 0.4rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0 0 0;
}

.btnGroup {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}

/* Navigation Styles - START */

.globalnav__container,
.subnav__container,
.globalfilters__container,
.section__container,
.footer__menu {
    display: flex;
    align-content: center;
    align-items: center;
    padding: 0px;
    margin: 0 10rem;
    position: relative;
    height: auto;
}

.globalnav__container {
    height: 8.5rem;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.subnav__container {
    height: 8.5rem;
    border-bottom: 1px solid rgb(60, 60, 60);
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
}

.subnav__container.sticky {
    position: sticky;
    width: 100%;
    height: 5rem;
    background-color: rgba(5, 10, 20, 0.9);
    top: 6rem;
    margin: 0;
    padding: 0 11rem;
    z-index: 900;
}

.globalnav__logo {
    flex-shrink: 0;
    margin: 0 4rem 0 0;
    height: 4rem;
}

.globalnav__logo img {
    height: 100%;
    width: auto;
}

.globalnav__container .vertical-line {
    height: 60%;
    margin: 0 4rem 0 0;
}

.globalnav__title,
.globalnav__title__mobile {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fafafa;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.globalnav__title__mobile {
    display: none;
}

.globalnav__primary,
.globalnav__secondary,
.subnav__primary,
.subnav__secondary {
    height: 100%;
}

.globalnav__primary {
    margin-left: auto;
}

.globalnav__list,
.subnav__list,
.mobilenav__list {
    display: flex;
    flex-direction: row;
    align-content: center;
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
}

.mobilenav__list {
    display: none;
    margin: 0;
}

.globalnav__item,
.subnav__item,
.mobilenav__item {
    display: flex;
    align-content: center;
    height: 100%;
}

.subnav__item {
    font-size: 1.5rem;
    font-weight: 100;
}

.globalnav__item button,
.globalnav__item a,
.subnav__item button,
.mobilenav__item button {
    height: 100%;
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: var(--subsection-2-font-size);
    position: relative;
    text-decoration: none;
    background: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
    border: 0px;
    box-shadow: none;
    padding: 0px 2rem;
    margin: 0px;
}

.subnav__item button {
    font-size: 1.5rem;
    font-weight: 300;
}

.globalnav__item button:hover,
.globalnav__item a:hover {
    border-bottom: 0.4rem solid var(--primary-button-hover-color);
    border-top: 0.4rem solid rgba(0, 0, 0, 0);
}

.globalnav__item.active button,
.globalnav__item.active a {
    border-bottom: 0.4rem solid #ffffff;
    border-top: 0.4rem solid rgba(0, 0, 0, 0);
}

.subnav__item button:hover {
    border-bottom: 0.3rem solid var(--primary-button-hover-color);
    border-top: 0.3rem solid rgba(0, 0, 0, 0);
}

.subnav__item.active button {
    border-bottom: 0.3rem solid rgb(120, 120, 120);
    border-top: 0.3rem solid rgba(0, 0, 0, 0);
}

.globalnav__icon {
    font-size: 2.4rem;
}

.mobilenav__icon {
    font-size: 1.8rem;
}

/* Navigation Styles - END */

/* Global Filter Styles - START */

.globalfilters__container {
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: space-between;
    top: 8.5rem;
    left: 0;
    padding: 0 1rem;
    width: calc(100% - 20rem);
    height: 60px;
    transition: background-color 0.5s ease-in-out;
}

.globalfilters__container.sticky {
    position: sticky;
    width: 100%;
    background-color: rgba(5, 10, 20, 0.9);
    top: 0;
    margin: 0;
    padding: 0 11rem;
    z-index: 1000;
}

.globalfilters__dropdowns {
    display: flex;
    align-content: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.globalfilters__item {
    margin-top: -5px;
}

.globalfilters__item label {
    display: none;
}

.globalfilters__primary,
.globalfilters__secondary {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.globalfilters__secondary {
    margin-left: auto;
}

select {
    width: 100%;
    padding: 0.25rem 3.5rem 0.25rem 1.2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid #ffffff;
    background-image: url(../img/icons/arrow_chevron_down_rg_wht.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

.globalfilters__primary select {
    background-size: 1.8rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.globalfilters__secondary select {
    background-size: 1.4rem;
    font-size: 1.4rem;
    font-weight: 300;
    padding-right: 3rem;
}

.globalfilters__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    font-size: 1.1rem;
    font-weight: 400;
}

.globalfilters__actions-label {
    white-space: nowrap;
}

.globalfilters__actions button {
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    border: 0px;
    box-shadow: none;
    padding: 0;
    padding-top: 3px;
    min-width: 4.4rem;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.globalfilters__actions button:hover {
    color: var(--primary-color);
}

/* Global Filter Styles - END */

/* Section Styles - START */
.section__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0px;
    margin: 6rem 10rem;
    position: relative;
}

.section__text {
    width: 80%;
    max-width: 850px;
    margin: 3rem;
}

.section__text p {
    margin: 2rem 0 0 0;
    font-size: var(--body-1-font-size);
}

.data__container,
.data__satisfaction-score--item,
.data__checklist-container {
    position: relative;
    background-color: rgba(5, 10, 20, 0.5);
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    padding: 3rem;
    margin: 0;
}

.data__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1.5rem 2rem;
}

.data__container h4 {
    font-size: var(--headline-4-font-size);
    font-weight: 600;
}

.data__container .subtitle {
    font-size: var(--body-2-font-size);
    font-style: italic;
    margin: 0.25rem 0 0 0;
}

.data__container ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.data__container ul.vertical {
    flex-direction: column;
}

.data__container ul.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.data__container ul.legend {
    justify-content: center;
}

.data__container li {
    font-size: var(--body-2-font-size);
}

.data__container .legend li {
    font-size: var(--body-3-font-size);
}

.data__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.data__stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.data__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 85rem;
    margin-top: 1.5rem;
}

.data__text p {
    font-size: var(--body-2-font-size);
    margin: 1rem 0 0 0;
}

.data-type__basic,
.data-type__h-bar-graph,
.data-type__v-bar-graph,
.data-type__100-bar-chart,
.data-type__h-bar-graph_with-labels {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.data-type__v-bar-graph.stacked .data__v-bar-graph {
    flex-direction: row;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    gap: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.data-type__v-bar-graph.stacked .data__v-bar-graph .stack {
    flex-direction: column;
    width: 100%;
    height: var(--bar-height);
}

#dealer_impacts__data--turnover-breakdown {
    height: 100%;
}

#dealer_impacts__data--turnover-breakdown .data-type__v-bar-graph.stacked {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    margin-top: 2rem;
}

#dealer_impacts__data--turnover-breakdown
    .data-type__v-bar-graph.stacked
    .data__v-bar-graph {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 20rem auto;
    gap: 0;
    width: 100%;
    height: 100%;
    align-content: end;
    align-items: end;
    margin: 0;
}

#dealer_impacts__data--turnover-breakdown
    .data-type__v-bar-graph.stacked
    .data__v-bar-graph .stack {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: var(--bar-height);
}

#dealer_impacts__data--turnover-breakdown .data__list {
    width: 100%;
}

#dealer_impacts__data--turnover-breakdown li {
    text-align: center;
}

#dealer_impacts__data--turnover-breakdown .data__bar-graph--item,
#dealer_impacts__data--turnover-breakdown .data__list li {
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease;
}

#dealer_impacts__data--turnover-breakdown:has(.dtst__labor-losses:hover) .dtst__parts-losses,
#dealer_impacts__data--turnover-breakdown:has(.dtst__parts-losses:hover) .dtst__labor-losses {
    opacity: 0.35;
}

#dealer_impacts__data--turnover-breakdown:has(.dtst__labor-losses:hover) .dtst__labor-losses,
#dealer_impacts__data--turnover-breakdown:has(.dtst__parts-losses:hover) .dtst__parts-losses {
    opacity: 1;
}

#dealer_impacts__data--turnover-breakdown:has(.dtst__labor-losses:hover) li.dtst__labor-losses,
#dealer_impacts__data--turnover-breakdown:has(.dtst__parts-losses:hover) li.dtst__parts-losses {
    color: #fff !important;
}

.data-type__h-bar-graph_with-labels,
.data-type__pie-chart {
    display: grid;
    grid-template-columns: fit-content(25%) 1fr;
    gap: 2rem;
}

.data-type__pie-chart {
    grid-template-columns: 0.75fr 1fr;
    align-items: center;
}

.data__v-bar-graph,
.data__100-bar-chart,
.data__h-bar-graph {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 6rem;
    margin: 1.5rem 0 0.5rem 0;
}

.data__v-bar-graph .stack {
    flex-direction: column;
    width: 100%;
    height: var(--bar-height);
}

.data-type__v-bar-graph.stacked .data__v-bar-graph p {
    width: 100%;
    text-align: center;
    font-size: var(--body-3-font-size);
    margin: 0;
}

.data-type__v-bar-graph.stacked .data__v-bar-graph p.label {
    border-top: 1px solid #ffffff;
    padding: 0.5rem 0 0 0;
}

.data-type__v-bar-graph.stacked .data__v-bar-graph p.total {
    position: relative;
    top: calc(-1.5 * var(--body-2-font-size));
    height: 0;
    overflow: visible;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
}

.data__h-bar-graph {
    flex-direction: column;
}

.data-type__h-bar-graph_with-labels ul {
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: stretch;
    justify-content: space-around;
    width: 100%;
    margin: 1.5rem 0 0.5rem 0;
}

.data-type__h-bar-graph_with-labels ul li {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: left;
    vertical-align: middle;
}

.data-type__h-bar-graph_with-labels .data__h-bar-graph {
    align-items: stretch;
    width: unset;
    height: unset;
}

.data__bar-graph--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    overflow: visible;
    container-type: size;
}

.data-type__h-bar-graph_with-labels .data__bar-graph--item {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.data__bar-graph--item > span,
.data__bar-graph--item > .data__item-value {
    display: none;
}

@container (min-width: 6rem) and (min-height: 6rem) {
    .data__bar-graph--item > span,
    .data__bar-graph--item > .data__item-value {
        display: block;
    }
}

#dealer_impacts__data--training-costs .data__bar-graph--item span {
    display: none;
}

@container (min-width: 12rem) {
    #dealer_impacts__data--training-costs .data__bar-graph--item > span {
        display: block;
    }
}

#dealer_impacts {
    --labor-color: var(--blue-04);
    --parts-color: var(--orange-06);
}

#dealer_impacts__data--training-costs .level-title span {
    font-weight: 600;
}

.data__v-bar-graph .data__bar-graph--item,
.data__v-bar-graph .stack .data__bar-graph--item {
    width: 100%;
    height: var(--bar-height);
}

.data__100-bar-chart .data__bar-graph--item,
.data__h-bar-graph .data__bar-graph--item {
    width: var(--bar-width);
    height: 100%;
    min-height: 60px;
    align-items: flex-start;
    justify-content: center;
}

.data__bar-graph--item span {
    position: relative;
    font-size: var(--headline-3-font-size);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.data__100-bar-chart .data__bar-graph--item span,
.data__h-bar-graph .data__bar-graph--item span,
.data-type__h-bar-graph_with-labels .data__bar-graph--item span {
    line-height: 1;
    margin: 0;
    margin-left: 1rem;
}

.data__item-value {
    font-size: var(--headline-3-font-size);
    font-weight: 600;
    margin-top: 0.5rem;
    color: #33ccff;
}

.data__item-value span {
    font-size: var(--headline-5-font-size);
}

.data-type__pie-chart {
    padding: 2rem;
}

.data__pie-chart {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    display: block;
    overflow: visible;
}

.pie-slice {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.data-type__pie-chart .data__list .legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.data-type__pie-chart .data__list .legend-item .legend-color {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 4px;
    flex-shrink: 0;
}

/* experience color set */
.data__color-set--experience ul li:nth-child(1) {
    color: var(--experience-01);
}
.data__color-set--experience ul li:nth-child(2) {
    color: var(--experience-02);
}
.data__color-set--experience ul li:nth-child(3) {
    color: var(--experience-03);
}
.data__color-set--experience div .data__bar-graph--item:nth-child(1) {
    background: var(--experience-01);
}
.data__color-set--experience div .data__bar-graph--item:nth-child(2) {
    background: var(--experience-02);
}
.data__color-set--experience div .data__bar-graph--item:nth-child(3) {
    background: var(--experience-03);
}

/* turquoise color set */
.data__color-set--turquoise ul li:nth-child(1) {
    color: var(--turquoise-01);
}
.data__color-set--turquoise ul li:nth-child(2) {
    color: var(--turquoise-02);
}
.data__color-set--turquoise ul li:nth-child(3) {
    color: var(--turquoise-03);
}
.data__color-set--turquoise ul li:nth-child(4) {
    color: var(--turquoise-04);
}
.data__color-set--turquoise ul li:nth-child(5) {
    color: var(--turquoise-05);
}
.data__color-set--turquoise ul li:nth-child(6) {
    color: var(--turquoise-06);
}
.data__color-set--turquoise ul li:nth-child(7) {
    color: var(--turquoise-07);
}
.data__color-set--turquoise ul li:nth-child(8) {
    color: var(--turquoise-08);
}
.data__color-set--turquoise ul li:nth-child(9) {
    color: var(--turquoise-09);
}
.data__color-set--turquoise ul li:nth-child(10) {
    color: var(--turquoise-10);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(1) {
    background: var(--turquoise-01);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(2) {
    background: var(--turquoise-02);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(3) {
    background: var(--turquoise-03);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(4) {
    background: var(--turquoise-04);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(5) {
    background: var(--turquoise-05);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(6) {
    background: var(--turquoise-06);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(7) {
    background: var(--turquoise-07);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(8) {
    background: var(--turquoise-08);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(9) {
    background: var(--turquoise-09);
}
.data__color-set--turquoise .data__bar-graph--item:nth-child(10) {
    background: var(--turquoise-10);
}

/* purple color set */
.data__color-set--purple ul li:nth-child(1) {
    color: var(--purple-01);
}
.data__color-set--purple ul li:nth-child(2) {
    color: var(--purple-02);
}
.data__color-set--purple ul li:nth-child(3) {
    color: var(--purple-03);
}
.data__color-set--purple ul li:nth-child(4) {
    color: var(--purple-04);
}
.data__color-set--purple ul li:nth-child(5) {
    color: var(--purple-05);
}
.data__color-set--purple ul li:nth-child(6) {
    color: var(--purple-06);
}
.data__color-set--purple ul li:nth-child(7) {
    color: var(--purple-07);
}
.data__color-set--purple ul li:nth-child(8) {
    color: var(--purple-08);
}
.data__color-set--purple ul li:nth-child(9) {
    color: var(--purple-09);
}
.data__color-set--purple ul li:nth-child(10) {
    color: var(--purple-10);
}
.data__color-set--purple .data__bar-graph--item:nth-child(1) {
    background: var(--purple-01);
}
.data__color-set--purple .data__bar-graph--item:nth-child(2) {
    background: var(--purple-02);
}
.data__color-set--purple .data__bar-graph--item:nth-child(3) {
    background: var(--purple-03);
}
.data__color-set--purple .data__bar-graph--item:nth-child(4) {
    background: var(--purple-04);
}
.data__color-set--purple .data__bar-graph--item:nth-child(5) {
    background: var(--purple-05);
}
.data__color-set--purple .data__bar-graph--item:nth-child(6) {
    background: var(--purple-06);
}
.data__color-set--purple .data__bar-graph--item:nth-child(7) {
    background: var(--purple-07);
}
.data__color-set--purple .data__bar-graph--item:nth-child(8) {
    background: var(--purple-08);
}
.data__color-set--purple .data__bar-graph--item:nth-child(9) {
    background: var(--purple-09);
}
.data__color-set--purple .data__bar-graph--item:nth-child(10) {
    background: var(--purple-10);
}

/* orange color set */
.data__color-set--orange ul li:nth-child(1) {
    color: var(--orange-01);
}
.data__color-set--orange ul li:nth-child(2) {
    color: var(--orange-02);
}
.data__color-set--orange ul li:nth-child(3) {
    color: var(--orange-03);
}
.data__color-set--orange ul li:nth-child(4) {
    color: var(--orange-04);
}
.data__color-set--orange ul li:nth-child(5) {
    color: var(--orange-05);
}
.data__color-set--orange ul li:nth-child(6) {
    color: var(--orange-06);
}
.data__color-set--orange ul li:nth-child(7) {
    color: var(--orange-07);
}
.data__color-set--orange ul li:nth-child(8) {
    color: var(--orange-08);
}
.data__color-set--orange ul li:nth-child(9) {
    color: var(--orange-09);
}
.data__color-set--orange ul li:nth-child(10) {
    color: var(--orange-10);
}
.data__color-set--orange .data__bar-graph--item:nth-child(1) {
    background: var(--orange-01);
}
.data__color-set--orange .data__bar-graph--item:nth-child(2) {
    background: var(--orange-02);
}
.data__color-set--orange .data__bar-graph--item:nth-child(3) {
    background: var(--orange-03);
}
.data__color-set--orange .data__bar-graph--item:nth-child(4) {
    background: var(--orange-04);
}
.data__color-set--orange .data__bar-graph--item:nth-child(5) {
    background: var(--orange-05);
}
.data__color-set--orange .data__bar-graph--item:nth-child(6) {
    background: var(--orange-06);
}
.data__color-set--orange .data__bar-graph--item:nth-child(7) {
    background: var(--orange-07);
}
.data__color-set--orange .data__bar-graph--item:nth-child(8) {
    background: var(--orange-08);
}
.data__color-set--orange .data__bar-graph--item:nth-child(9) {
    background: var(--orange-09);
}
.data__color-set--orange .data__bar-graph--item:nth-child(10) {
    background: var(--orange-10);
}

/* blue color set */
.data__color-set--blue ul li:nth-child(1) {
    color: var(--blue-01);
}
.data__color-set--blue ul li:nth-child(2) {
    color: var(--blue-02);
}
.data__color-set--blue ul li:nth-child(3) {
    color: var(--blue-03);
}
.data__color-set--blue ul li:nth-child(4) {
    color: var(--blue-04);
}
.data__color-set--blue ul li:nth-child(5) {
    color: var(--blue-05);
}
.data__color-set--blue ul li:nth-child(6) {
    color: var(--blue-06);
}
.data__color-set--blue ul li:nth-child(7) {
    color: var(--blue-07);
}
.data__color-set--blue ul li:nth-child(8) {
    color: var(--blue-08);
}
.data__color-set--blue ul li:nth-child(9) {
    color: var(--blue-09);
}
.data__color-set--blue ul li:nth-child(10) {
    color: var(--blue-10);
}
.data__color-set--blue .data__bar-graph--item:nth-child(1) {
    background: var(--blue-01);
}
.data__color-set--blue .data__bar-graph--item:nth-child(2) {
    background: var(--blue-02);
}
.data__color-set--blue .data__bar-graph--item:nth-child(3) {
    background: var(--blue-03);
}
.data__color-set--blue .data__bar-graph--item:nth-child(4) {
    background: var(--blue-04);
}
.data__color-set--blue .data__bar-graph--item:nth-child(5) {
    background: var(--blue-05);
}
.data__color-set--blue .data__bar-graph--item:nth-child(6) {
    background: var(--blue-06);
}
.data__color-set--blue .data__bar-graph--item:nth-child(7) {
    background: var(--blue-07);
}
.data__color-set--blue .data__bar-graph--item:nth-child(8) {
    background: var(--blue-08);
}
.data__color-set--blue .data__bar-graph--item:nth-child(9) {
    background: var(--blue-09);
}
.data__color-set--blue .data__bar-graph--item:nth-child(10) {
    background: var(--blue-10);
}

/* turnover color set */
.data__color-set--turnover ul li:nth-child(1) {
    color: var(--labor-color);
}
.data__color-set--turnover ul li:nth-child(2) {
    color: var(--parts-color);
}
.data__color-set--turnover .stack .data__bar-graph--item:nth-child(2) {
    background: var(--labor-color);
}
.data__color-set--turnover .stack .data__bar-graph--item:nth-child(3) {
    background: var(--parts-color);
}
#dealer_impacts__data--labor-losses
    .data__color-set--turnover
    .stack
    .data__bar-graph--item {
    background: var(--labor-color);
}
#dealer_impacts__data--parts-losses
    .data__color-set--turnover
    .stack
    .data__bar-graph--item {
    background: var(--parts-color);
}

/* training color set */
.data__color-set--training ul li:nth-child(1) {
    color: var(--labor-color);
}
.data__color-set--training ul li:nth-child(2) {
    color: var(--parts-color);
}
.data__color-set--training ul li:nth-child(3) {
    color: var(--turquoise-03);
}
.data__color-set--training .data__bar-graph--item:nth-child(1) {
    background: var(--labor-color);
}
.data__color-set--training .data__bar-graph--item:nth-child(2) {
    background: var(--parts-color);
}
.data__color-set--training .data__bar-graph--item:nth-child(3) {
    background: var(--turquoise-03);
}

/* pie chart color set */
.data__color-set--pie-chart .legend-item:nth-child(1) span {
    color: var(--turquoise-02);
}
.data__color-set--pie-chart .legend-item:nth-child(2) span {
    color: var(--turquoise-04);
}
.data__color-set--pie-chart .legend-item:nth-child(3) span {
    color: var(--turquoise-06);
}
.data__color-set--pie-chart .legend-item:nth-child(4) span {
    color: var(--turquoise-08);
}
.data__color-set--pie-chart .legend-item:nth-child(5) span {
    color: var(--turquoise-09);
}
.data__color-set--pie-chart .legend-item:nth-child(6) span {
    color: var(--turquoise-07);
}
.data__color-set--pie-chart .legend-item:nth-child(7) span {
    color: var(--turquoise-05);
}
.data__color-set--pie-chart .legend-item:nth-child(8) span {
    color: var(--turquoise-03);
}
.data__color-set--pie-chart .legend-item:nth-child(1) .legend-color {
    background: var(--turquoise-02);
}
.data__color-set--pie-chart .legend-item:nth-child(2) .legend-color {
    background: var(--turquoise-04);
}
.data__color-set--pie-chart .legend-item:nth-child(3) .legend-color {
    background: var(--turquoise-06);
}
.data__color-set--pie-chart .legend-item:nth-child(4) .legend-color {
    background: var(--turquoise-08);
}
.data__color-set--pie-chart .legend-item:nth-child(5) .legend-color {
    background: var(--turquoise-09);
}
.data__color-set--pie-chart .legend-item:nth-child(6) .legend-color {
    background: var(--turquoise-07);
}
.data__color-set--pie-chart .legend-item:nth-child(7) .legend-color {
    background: var(--turquoise-05);
}
.data__color-set--pie-chart .legend-item:nth-child(8) .legend-color {
    background: var(--turquoise-03);
}
.data__color-set--pie-chart .pie-slice:nth-child(1) {
    fill: var(--turquoise-02);
}
.data__color-set--pie-chart .pie-slice:nth-child(2) {
    fill: var(--turquoise-04);
}
.data__color-set--pie-chart .pie-slice:nth-child(3) {
    fill: var(--turquoise-06);
}
.data__color-set--pie-chart .pie-slice:nth-child(4) {
    fill: var(--turquoise-08);
}
.data__color-set--pie-chart .pie-slice:nth-child(5) {
    fill: var(--turquoise-09);
}
.data__color-set--pie-chart .pie-slice:nth-child(6) {
    fill: var(--turquoise-07);
}
.data__color-set--pie-chart .pie-slice:nth-child(7) {
    fill: var(--turquoise-05);
}
.data__color-set--pie-chart .pie-slice:nth-child(8) {
    fill: var(--turquoise-03);
}

.data-type__pie-chart:has(.pie-slice:hover) .pie-slice:not(:hover),
.data-type__pie-chart:has(.pie-slice:hover) .legend-item,
.data-type__pie-chart:has(.legend-item:hover) .pie-slice,
.data-type__pie-chart:has(.legend-item:hover) .legend-item:not(:hover),
.data-type__pie-chart.has-hover .pie-slice.dimmed,
.data-type__pie-chart.has-hover .legend-item.dimmed {
    opacity: 0.35;
}

.data-type__pie-chart:has(.pie-slice:nth-child(1):hover) .legend-item:nth-child(1),
.data-type__pie-chart:has(.legend-item:nth-child(1):hover) .pie-slice:nth-child(1),
.data-type__pie-chart:has(.pie-slice:nth-child(2):hover) .legend-item:nth-child(2),
.data-type__pie-chart:has(.legend-item:nth-child(2):hover) .pie-slice:nth-child(2),
.data-type__pie-chart:has(.pie-slice:nth-child(3):hover) .legend-item:nth-child(3),
.data-type__pie-chart:has(.legend-item:nth-child(3):hover) .pie-slice:nth-child(3),
.data-type__pie-chart:has(.pie-slice:nth-child(4):hover) .legend-item:nth-child(4),
.data-type__pie-chart:has(.legend-item:nth-child(4):hover) .pie-slice:nth-child(4),
.data-type__pie-chart:has(.pie-slice:nth-child(5):hover) .legend-item:nth-child(5),
.data-type__pie-chart:has(.legend-item:nth-child(5):hover) .pie-slice:nth-child(5),
.data-type__pie-chart:has(.pie-slice:nth-child(6):hover) .legend-item:nth-child(6),
.data-type__pie-chart:has(.legend-item:nth-child(6):hover) .pie-slice:nth-child(6),
.data-type__pie-chart:has(.pie-slice:nth-child(7):hover) .legend-item:nth-child(7),
.data-type__pie-chart:has(.legend-item:nth-child(7):hover) .pie-slice:nth-child(7),
.data-type__pie-chart:has(.pie-slice:nth-child(8):hover) .legend-item:nth-child(8),
.data-type__pie-chart:has(.legend-item:nth-child(8):hover) .pie-slice:nth-child(8),
.data-type__pie-chart.has-hover .pie-slice.active,
.data-type__pie-chart.has-hover .legend-item.active {
    opacity: 1;
}

.data-type__pie-chart:has(.pie-slice:nth-child(1):hover) .legend-item:nth-child(1) span,
.data-type__pie-chart:has(.legend-item:nth-child(1):hover) .legend-item:nth-child(1) span,
.data-type__pie-chart:has(.pie-slice:nth-child(2):hover) .legend-item:nth-child(2) span,
.data-type__pie-chart:has(.legend-item:nth-child(2):hover) .legend-item:nth-child(2) span,
.data-type__pie-chart:has(.pie-slice:nth-child(3):hover) .legend-item:nth-child(3) span,
.data-type__pie-chart:has(.legend-item:nth-child(3):hover) .legend-item:nth-child(3) span,
.data-type__pie-chart:has(.pie-slice:nth-child(4):hover) .legend-item:nth-child(4) span,
.data-type__pie-chart:has(.legend-item:nth-child(4):hover) .legend-item:nth-child(4) span,
.data-type__pie-chart:has(.pie-slice:nth-child(5):hover) .legend-item:nth-child(5) span,
.data-type__pie-chart:has(.legend-item:nth-child(5):hover) .legend-item:nth-child(5) span,
.data-type__pie-chart:has(.pie-slice:nth-child(6):hover) .legend-item:nth-child(6) span,
.data-type__pie-chart:has(.legend-item:nth-child(6):hover) .legend-item:nth-child(6) span,
.data-type__pie-chart:has(.pie-slice:nth-child(7):hover) .legend-item:nth-child(7) span,
.data-type__pie-chart:has(.legend-item:nth-child(7):hover) .legend-item:nth-child(7) span,
.data-type__pie-chart:has(.pie-slice:nth-child(8):hover) .legend-item:nth-child(8) span,
.data-type__pie-chart:has(.legend-item:nth-child(8):hover) .legend-item:nth-child(8) span,
.data-type__pie-chart.has-hover .legend-item.active span {
    color: #fff !important;
}

.data__list:hover li,
.data__graph:hover > .data__bar-graph--item {
    opacity: 0.5;
}

.data__list:has(li:hover) ~ .data__graph > *,
.data__list:has(~ .data__graph > :hover) li,
.data__list:has(~ .data__graph > :hover) ~ .data__graph > * {
    opacity: 0.5;
}

.data__list li:hover,
.data__list li:hover span,
.data__graph:hover > .data__bar-graph--item:hover,
.data__list:has(:where(li:nth-child(1)):hover) ~ .data__graph > :nth-child(1),
.data__list:has(:where(li:nth-child(2)):hover) ~ .data__graph > :nth-child(2),
.data__list:has(:where(li:nth-child(3)):hover) ~ .data__graph > :nth-child(3),
.data__list:has(:where(li:nth-child(4)):hover) ~ .data__graph > :nth-child(4),
.data__list:has(:where(li:nth-child(5)):hover) ~ .data__graph > :nth-child(5),
.data__list:has(:where(li:nth-child(6)):hover) ~ .data__graph > :nth-child(6),
.data__list:has(:where(li:nth-child(7)):hover) ~ .data__graph > :nth-child(7),
.data__list:has(:where(li:nth-child(8)):hover) ~ .data__graph > :nth-child(8),
.data__list:has(:where(li:nth-child(9)):hover) ~ .data__graph > :nth-child(9),
.data__list:has(:where(li:nth-child(10)):hover) ~ .data__graph > :nth-child(10),
.data__list:has(~ .data__graph > :where(:nth-child(1)):hover) li:nth-child(1),
.data__list:has(~ .data__graph > :where(:nth-child(2)):hover) li:nth-child(2),
.data__list:has(~ .data__graph > :where(:nth-child(3)):hover) li:nth-child(3),
.data__list:has(~ .data__graph > :where(:nth-child(4)):hover) li:nth-child(4),
.data__list:has(~ .data__graph > :where(:nth-child(5)):hover) li:nth-child(5),
.data__list:has(~ .data__graph > :where(:nth-child(6)):hover) li:nth-child(6),
.data__list:has(~ .data__graph > :where(:nth-child(7)):hover) li:nth-child(7),
.data__list:has(~ .data__graph > :where(:nth-child(8)):hover) li:nth-child(8),
.data__list:has(~ .data__graph > :where(:nth-child(9)):hover) li:nth-child(9),
.data__list:has(~ .data__graph > :where(:nth-child(10)):hover)
    li:nth-child(10) {
    opacity: 1;
    color: #fff !important;
}

/* Overview Section Styles - START */
#overview {
    display: flex;
    flex-direction: column;
    background: url(../img/overview_bg.jpg) no-repeat center center;
    background-size: cover;
}

#overview .section__gradient {
    background: radial-gradient(
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    padding-top: 15.5rem;
}

#overview__data.data__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

#overview__data.data__container {
    padding: 2rem 3rem 3rem 3rem;
}

#overview .grid-row-1 {
    grid-column: span 6;
}

#overview .grid-row-3 {
    grid-column: span 6;
}

#overview .data__survey-completions {
    font-weight: 500;
}

#overview .data__survey-completions--below-minimum {
    color: var(--color-somewhat-dissatisfied);
}

#overview .data__checklist-status__container {
    width: 100%;
    padding: 0 1rem;
}

#overview .data__checklist-status__container .data__text {
    margin: 0;
    padding: 0 1rem;
}

#overview .data__checklist-status {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    gap: 2.5rem;
}

#overview .data__checklist-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

#overview .data__checklist--turnover {
    grid-column: span 1;
}

#overview .data__checklist--dealer-mngmt {
    grid-column: span 5;
}

#overview .data__checklist-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
    align-items: stretch;
}

#overview .data__checklist-item {
    margin-top: 1rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#overview .data__checklist-item:nth-child(5n),
#overview .data__checklist-item:last-child {
    padding-right: 0;
    border: none;
}

#overview .data__checklist-item a {
    font-size: var(--body-2-font-size);
    color: #ffffff;
}

#overview .data__checklist-item a:hover {
    color: var(--primary-color);
}

#overview .data__checklist-item .status {
    font-size: var(--body-3-font-size);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Admin-only notice shown above the Checklist Status list when no single dealer is selected
   (statuses below can't be resolved to one dealer) — used in both Overview and Next Steps. */
.data__checklist-notice {
    font-style: italic;
    color: var(--color-neutral);
}

/* Overview Section Styles - END */

/* Tech Satisfaction Section Styles - START */

.data__satisfaction-scores {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    padding: 0 3rem;
}

.data__satisfaction-score--item {
    --score: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 2rem;
    border-color: var(--border-color);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.5s ease;
}

.data__satisfaction-score--item:hover {
    border-color: var(--border-hover-color);
}

.data__satisfaction-score--item.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.data__satisfaction-score--item.active:hover {
    border-color: var(--border-color);
}

.data__satisfaction-score--item.active::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -22px;
    height: 22px;
    background: var(--body-color);
    border-left: var(--data-panel-border);
    border-right: var(--data-panel-border);
    z-index: 100;
}

.data__satisfaction-score--item i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: clamp(1.2rem, 1vw + 0.6rem, 2.4rem);
}

.data__satisfaction-gauge {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    margin-top: -1rem;
}

.data__satisfaction-gauge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.data__satisfaction-gauge-track,
.data__satisfaction-gauge-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(129.6deg);
    transform-origin: 50% 50%;
}

.data__satisfaction-gauge-track {
    stroke: #464646;
    stroke-dasharray: 78 22;
}

.data__satisfaction-gauge-progress {
    stroke: #333333;
    stroke-dasharray: calc(var(--score) * 0.78) 100;
    transition: stroke-dasharray 1s ease;
}

.data__satisfaction-gradient {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: linear-gradient(
        to bottom,
        rgba(100, 100, 100, 0.4) 0%,
        rgba(100, 100, 100, 0.15) 45%,
        rgba(100, 100, 100, 0) 100%
    );
}

.data__satisfaction-status {
    font-size: var(--category-status-font-size);
    text-align: center;
    overflow-wrap: break-word;
}

.data__satisfaction-status::before {
    content: "Not Enough Data";
}

.data__satisfaction-score--item h4 {
    font-size: var(--category-title-font-size);
    font-weight: 600;
    margin-top: -0.5rem;
    width: 100%;
}

.data__satisfaction-score--item.very-satisfied
    .data__satisfaction-gauge-progress {
    stroke: var(--color-very-satisfied);
}

.data__satisfaction-score--item.very-satisfied
    .data__satisfaction-status::before {
    content: "Very Satisfied";
}

.data__satisfaction-score--item.very-satisfied .data__satisfaction-gradient {
    background: var(--gradient-very-satisfied);
}

.data__satisfaction-score--item.satisfied .data__satisfaction-gauge-progress {
    stroke: var(--color-satisfied);
}

.data__satisfaction-score--item.satisfied .data__satisfaction-status::before {
    content: "Satisfied";
}

.data__satisfaction-score--item.satisfied .data__satisfaction-gradient {
    background: var(--gradient-satisfied);
}

.data__satisfaction-score--item.somewhat-satisfied
    .data__satisfaction-gauge-progress {
    stroke: var(--color-somewhat-satisfied);
}

.data__satisfaction-score--item.somewhat-satisfied
    .data__satisfaction-status::before {
    content: "Somewhat Satisfied";
}

.data__satisfaction-score--item.somewhat-satisfied
    .data__satisfaction-gradient {
    background: var(--gradient-somewhat-satisfied);
}

.data__satisfaction-score--item.neutral .data__satisfaction-gauge-progress {
    stroke: var(--color-neutral);
}

.data__satisfaction-score--item.neutral .data__satisfaction-status::before {
    content: "Neutral";
}

.data__satisfaction-score--item.neutral .data__satisfaction-gradient {
    background: var(--gradient-neutral);
}

.data__satisfaction-score--item.somewhat-dissatisfied
    .data__satisfaction-gauge-progress {
    stroke: var(--color-somewhat-dissatisfied);
}

.data__satisfaction-score--item.somewhat-dissatisfied
    .data__satisfaction-status::before {
    content: "Somewhat Dissatisfied";
}

.data__satisfaction-score--item.somewhat-dissatisfied
    .data__satisfaction-gradient {
    background: var(--gradient-somewhat-dissatisfied);
}

.data__satisfaction-score--item.dissatisfied
    .data__satisfaction-gauge-progress {
    stroke: var(--color-dissatisfied);
}

.data__satisfaction-score--item.dissatisfied
    .data__satisfaction-status::before {
    content: "Dissatisfied";
}

.data__satisfaction-score--item.dissatisfied .data__satisfaction-gradient {
    background: var(--gradient-dissatisfied);
}

.data__satisfaction-score--item.very-dissatisfied
    .data__satisfaction-gauge-progress {
    stroke: var(--color-very-dissatisfied);
}

.data__satisfaction-score--item.very-dissatisfied
    .data__satisfaction-status::before {
    content: "Very Dissatisfied";
}

.data__satisfaction-score--item.very-dissatisfied .data__satisfaction-gradient {
    background: var(--gradient-very-dissatisfied);
}

.data__satisfaction-score-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 2rem;
    margin-top: 2rem;
    padding: 3rem;
    background: var(--data-panel-background);
}

.data__satisfaction-score-details p {
    font-size: var(--body-2-font-size);
    margin: 0;
}

.sat-score__breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.sat-score__breakdown h5 {
    font-weight: 600;
    margin: 0;
}

.sat-score__breakdown--options,
.sat-score__breakdown--scale {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.sat-score__breakdown--options {
    flex-wrap: wrap;
    font-size: var(--body-3-font-size);
}

.sat-score__breakdown--scale {
    --scale-bar-width: 1rem;
    --scale-bar-height: 1rem;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 0;
    height: var(--scale-bar-height);
    border-radius: calc(var(--scale-bar-height) / 2);
    overflow: hidden;
}

.sat-score__breakdown--options .very-satisfied {
    color: var(--color-very-satisfied);
}

.sat-score__breakdown--options .satisfied {
    color: var(--color-satisfied);
}

.sat-score__breakdown--options .somewhat-satisfied {
    color: var(--color-somewhat-satisfied);
}

.sat-score__breakdown--options .neutral {
    color: var(--color-neutral);
}

.sat-score__breakdown--options .somewhat-dissatisfied {
    color: var(--color-somewhat-dissatisfied);
}

.sat-score__breakdown--options .dissatisfied {
    color: var(--color-dissatisfied);
}

.sat-score__breakdown--options .very-dissatisfied {
    color: var(--color-very-dissatisfied);
}

.sat-score__breakdown--scale .very-satisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-very-satisfied);
}

.sat-score__breakdown--scale .satisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-satisfied);
}

.sat-score__breakdown--scale .somewhat-satisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-somewhat-satisfied);
}

.sat-score__breakdown--scale .neutral {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-neutral);
}

.sat-score__breakdown--scale .somewhat-dissatisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-somewhat-dissatisfied);
}

.sat-score__breakdown--scale .dissatisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-dissatisfied);
}

.sat-score__breakdown--scale .very-dissatisfied {
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    background: var(--color-very-dissatisfied);
}

.sat-score__details {
    display: grid;
    grid-template-columns: calc(33.33% - 1rem) calc(66.66% - 1rem);
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
}

.sat-score__topics,
.sat-score__topic,
.sat-score__topic--details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.sat-score__topic {
    gap: 1rem;
}

.sat-score__topic--details {
    position: relative;
    gap: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.sat-score__topic--details i {
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 2.4rem;
}

.sat-score__topic--details h4,
.sat-score__topic--details p {
    margin: 0 1rem;
}

.sat-score__topic--status {
    font-size: 0;
    text-align: left;
    width: 100%;
    margin: 0;
}

.sat-score__topic--status:before {
    display: block;
    font-size: var(--body-2-font-size);
}

.sat-score__topic.very-satisfied .sat-score__topic--status:before {
    content: "Very Satisfied";
}

.sat-score__topic.satisfied .sat-score__topic--status:before {
    content: "Satisfied";
}

.sat-score__topic.somewhat-satisfied .sat-score__topic--status:before {
    content: "Somewhat Satisfied";
}

.sat-score__topic.neutral .sat-score__topic--status:before {
    content: "Neutral";
}

.sat-score__topic.somewhat-dissatisfied .sat-score__topic--status:before {
    content: "Somewhat Dissatisfied";
}

.sat-score__topic.dissatisfied .sat-score__topic--status:before {
    content: "Dissatisfied";
}

.sat-score__topic.very-dissatisfied .sat-score__topic--status:before {
    content: "Very Dissatisfied";
}

.sat-score__topic--scale {
    display: block;
    --scale-bar-width: 1rem;
    --scale-bar-height: 1rem;
    position: relative;
    width: 100%;
    height: var(--scale-bar-height);
}

.sat-score__topic--scale-value {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: var(--scale-bar-width);
    height: var(--scale-bar-height);
    border-radius: calc(var(--scale-bar-height) / 2);
    background: #666666;
    z-index: 10;
}

.sat-score__topic--scale-bg {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: var(--scale-bar-height);
    border-radius: calc(var(--scale-bar-height) / 2);
    background: #464646;
    z-index: 5;
}

.sat-score__topic.very-satisfied .sat-score__topic--scale-value {
    background: var(--color-very-satisfied);
}

.sat-score__topic.satisfied .sat-score__topic--scale-value {
    background: var(--color-satisfied);
}

.sat-score__topic.somewhat-satisfied .sat-score__topic--scale-value {
    background: var(--color-somewhat-satisfied);
}

.sat-score__topic.neutral .sat-score__topic--scale-value {
    background: var(--color-neutral);
}

.sat-score__topic.somewhat-dissatisfied .sat-score__topic--scale-value {
    background: var(--color-somewhat-dissatisfied);
}

.sat-score__topic.dissatisfied .sat-score__topic--scale-value {
    background: var(--color-dissatisfied);
}

.sat-score__topic.very-dissatisfied .sat-score__topic--scale-value {
    background: var(--color-very-dissatisfied);
}

.sat-score__topic.very-satisfied .sat-score__topic--details {
    background: var(--gradient-very-satisfied-reverse);
}

.sat-score__topic.satisfied .sat-score__topic--details {
    background: var(--gradient-satisfied-reverse);
}

.sat-score__topic.somewhat-satisfied .sat-score__topic--details {
    background: var(--gradient-somewhat-satisfied-reverse);
}

.sat-score__topic.neutral .sat-score__topic--details {
    background: var(--gradient-neutral-reverse);
}

.sat-score__topic.somewhat-dissatisfied .sat-score__topic--details {
    background: var(--gradient-somewhat-dissatisfied-reverse);
}

.sat-score__topic.dissatisfied .sat-score__topic--details {
    background: var(--gradient-dissatisfied-reverse);
}

.sat-score__topic.very-dissatisfied .sat-score__topic--details {
    background: var(--gradient-very-dissatisfied-reverse);
}

.sat-score__topic--resources {
    font-size: var(--body-3-font-size);
    width: 100%;
    margin: 0 0 0 1rem;
}

.areas-of-opportunities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.areas-of-opportunities__chart--points {
    --ts: 0;
    --rsi: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.areas-of-opportunities__chart--point {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--body-2-font-size);
    font-weight: 500;
    line-height: 1;
    bottom: var(--ts);
    left: var(--rsi);
    cursor: pointer;
}

.areas-of-opportunities__chart--point:hover {
    color: rgba(255, 255, 255, 1);
}

.areas-of-opportunities__chart--point.rsi-high {
    flex-direction: row-reverse;
    left: unset;
    right: calc(100% - var(--rsi));
}

.areas-of-opportunities__chart--point .dot {
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ffffff;
}

.areas-of-opportunities h5 {
    font-weight: 600;
    margin: 0;
}

.areas-of-opportunities p {
    font-size: var(--body-3-font-size);
    margin: 0;
    margin-bottom: 0.5rem;
}

.areas-of-opportunities__chart {
    position: relative;
    display: block;
    width: calc(100% - 2rem);
    height: 40rem;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
}

.areas-of-opportunities__chart--quadrants {
    position: absolute;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    width: 100%;
    height: 100%;
    font-size: var(--body-3-font-size);
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--data-panel-border-radius);
    overflow: hidden;
}

.areas-of-opportunities__chart--quadrant_high-low,
.areas-of-opportunities__chart--quadrant_high-high,
.areas-of-opportunities__chart--quadrant_low-low,
.areas-of-opportunities__chart--quadrant_low-high {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.areas-of-opportunities__chart--quadrant_high-high {
    background: #002300;
}

.areas-of-opportunities__chart--quadrant_low-low {
    background: #1e0000;
}

.areas-of-opportunities__chart--title-left,
.label-left {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.areas-of-opportunities__chart--title-left,
.areas-of-opportunities__chart--title-bottom {
    font-size: var(--body-2-font-size);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.areas-of-opportunities__chart--title-left {
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    height: 100%;
    text-align: center;
}

.areas-of-opportunities__chart--title-bottom {
    position: absolute;
    left: 50%;
    bottom: -2.5rem;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.areas-of-opportunities__chart--quadrant_high-low .label-left {
    position: absolute;
    left: 1rem;
    bottom: 1.5rem;
}

.areas-of-opportunities__chart--quadrant_low-low .label-left {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
}

.areas-of-opportunities__chart--quadrant_low-low .label-bottom {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
}

.areas-of-opportunities__chart--quadrant_low-high .label-bottom {
    position: absolute;
    left: 1.5rem;
    bottom: 1rem;
}

/* ### Modals ### */
.breakdown-modal,
.reco-modal {
    position: absolute;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    width: 250px;
    padding: 1.5rem;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    background: var(--body-color);
}

/* --arrow-left (set inline by JS to line the tail up with the cursor) falls back to centered. */
.breakdown-modal::before,
.reco-modal::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: var(--arrow-left, 50%);
    transform: translateX(-50%) rotate(45deg);
    width: 2rem;
    height: 2rem;
    background: var(--body-color);
    border-left: var(--data-panel-border);
    border-top: var(--data-panel-border);
}

/* Used when the modal has to flip above the cursor to stay inside the viewport. */
.breakdown-modal--arrow-bottom::before {
    top: auto;
    bottom: -1rem;
    border-left: none;
    border-top: none;
    border-right: var(--data-panel-border);
    border-bottom: var(--data-panel-border);
}

.breakdown-modal h5 {
    font-weight: 600;
    margin: 0;
}

.breakdown-modal p {
    font-size: var(--body-3-font-size);
    margin: 0;
    margin-bottom: 1rem;
}

.breakdown-modal span {
    font-weight: 600;
    color: #ffffff;
}

.breakdown-modal__list {
    width: 100%;
    margin: 0;
    padding-left: 1.6rem;
    font-size: var(--body-3-font-size);
}

.breakdown-modal__list li {
    margin-bottom: 0.5rem;
}

.breakdown-modal__list li:last-child {
    margin-bottom: 0;
}

.meter-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.meter-bar,
.meter-bar-bg {
    --scale-bar-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: var(--scale-bar-width);
    height: 0.5rem;
    border-radius: 0.25rem;
    background: #464646;
}

.meter-bar {
    z-index: 100;
}

.meter-bar-bg {
    z-index: 10;
}

.very-satisfied .meter-bar {
    background: var(--color-very-satisfied);
}

.satisfied .meter-bar {
    background: var(--color-satisfied);
}

.somewhat-satisfied .meter-bar {
    background: var(--color-somewhat-satisfied);
}

.neutral .meter-bar {
    background: var(--color-neutral);
}

.somewhat-dissatisfied .meter-bar {
    background: var(--color-somewhat-dissatisfied);
}

.dissatisfied .meter-bar {
    background: var(--color-dissatisfied);
}

.very-dissatisfied .meter-bar {
    background: var(--color-very-dissatisfied);
}

.reco-modal {
    width: fit-content;
    min-width: 250px;
    max-width: 500px;
    gap: 0.5rem;
}

.reco-modal h5 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.reco-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    width: 100%;
}

.reco-container,
.reco-container p {
    font-size: var(--body-3-font-size);
    margin: 0;
}

.reco-container .reco-head {
    font-weight: 600;
}

/* Tech Satisfaction Section Styles - END */

/* Dealer Impacts Section Styles - START */

#dealer_impacts__data.data__grid {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-content: stretch;
}

/* Dealer Impacts Section Styles - END */

/* Comments Section Styles - START */

#comments .section__text {
    margin-bottom: 1.5rem;
}

.comments-tabs {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    align-content: stretch;
    gap: 2rem;
    width: 100%;
}

/* .comments-tabs>input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
} */

.comments-nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 3rem 0 0 0;
}

.comment-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    background: var(--body-color);
    cursor: pointer;
    transition: border-color 0.5s ease;
}

.comment-tab:not(.active):hover {
    border-color: var(--border-hover-color);
}

.comment-tab.active {
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    border-right: none;
}

.comment-tab.active::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    right: -22px;
    width: 24px;
    height: 100%;
    background: var(--body-color);
    border-top: var(--data-panel-border);
    border-bottom: var(--data-panel-border);
}

.tab-color {
    display: block;
    height: 100%;
    min-height: 2rem;
    max-height: 3.5rem;
    aspect-ratio: 1 / 1;
    /* flex-shrink: 0; */
    border-radius: 50%;
    background: #343434;
}

.comment-tab.very-satisfied .tab-color {
    background: var(--color-very-satisfied);
}

.comment-tab.satisfied .tab-color {
    background: var(--color-satisfied);
}

.comment-tab.somewhat-satisfied .tab-color {
    background: var(--color-somewhat-satisfied);
}

.comment-tab.neutral .tab-color {
    background: var(--color-neutral);
}

.comment-tab.somewhat-dissatisfied .tab-color {
    background: var(--color-somewhat-dissatisfied);
}

.comment-tab.dissatisfied .tab-color {
    background: var(--color-dissatisfied);
}

.comment-tab.very-dissatisfied .tab-color {
    background: var(--color-very-dissatisfied);
}

.tab-name {
    min-width: 0;
    font-size: var(--category-title-font-size);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-count {
    font-size: var(--category-status-font-size);
    font-weight: 600;
    white-space: nowrap;
}

.comments-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    box-sizing: border-box;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    background: var(--body-color);
    overflow: hidden;
}

.comment-panel {
    /* display: none; */
    display: block;
    position: absolute;
    inset: 0;
    padding: 1.4rem 2.8rem;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #606367 transparent;
}

/* WebKit scrollbar */
.comment-panel::-webkit-scrollbar {
    width: 5px;
}

.comment-panel::-webkit-scrollbar-track {
    background: transparent;
}

.comment-panel::-webkit-scrollbar-thumb {
    background: #606367;
    border-radius: 5px;
}

.comment-panel::-webkit-scrollbar-thumb:hover {
    background: #777a80;
}

.comment {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    box-sizing: border-box;
    font-size: var(--body-1-font-size);
    font-weight: 400;
    border-bottom: 1px solid #3b3d42;
}

.comment:last-child {
    border-bottom: none;
}

/* Comments Section Styles - END */

/* Next Steps Section Styles - START */

.next_steps__content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: calc(100% - 2rem);
    margin: -2rem 0 0 2rem;
}

.next_steps__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 3rem;
    height: auto;
    align-self: stretch;
    margin: 0;
    padding: 0;
}

.following-arrow {
    position: sticky;
    top: var(--sticky-top, 110px);
    align-self: center;
    z-index: 1;
    font-size: 3rem;
    line-height: 0;
    color: #ffffff;
}

.next_steps__line .vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    width: 1px;
    z-index: 0;
    margin-top: 2rem;
}

.next_steps__content .next-steps__steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
    padding-left: 1.5rem;
}

.next_steps__content .section__text {
    margin-left: 0;
}

.next_steps__content .next-steps__step-1 .section__text {
    margin-top: 0;
}

.next_steps__content h3,
.next_steps__content h4 {
    font-weight: 600;
}

.next_steps__content h4 {
    margin: 1rem 0 0 0;
}

.next_steps__content p {
    font-size: var(--body-2-font-size);
    margin: 0.5rem 0 0 0;
}

.next_steps__content .next-steps__step-1 .data__container {
    max-width: 60rem;
}

.next_steps__content .data__checklist-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    padding: 0;
    border: none;
}

.next_steps__content .data__checklist-container:last-child {
    margin-bottom: 0.5rem;
}

.next_steps__content .data__checklist-container h5 {
    font-weight: 600;
}

.next_steps__content .data__checklist-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    align-items: stretch;
    margin-top: 1rem;
    padding: 0 0.5rem;
    font-size: var(--body-2-font-size);
}

.next_steps__content .data__checklist-item a {
    color: #ffffff;
}

.next_steps__content .data__checklist-item a:hover {
    color: var(--primary-color);
}

/* TABLE */

.data__problem-areas--table {
    width: 100%;
    min-width: 20rem;
}

.data__problem-areas--header,
.data__problem-area {
    display: grid;
    grid-template-columns:
        minmax(30rem, 32%) minmax(12rem, 10%) minmax(30rem, 1fr)
        8rem;
    align-items: center;
    column-gap: 1.5rem;
    width: 100%;
}

.data__problem-area--no-dealer {
    grid-template-columns: 1fr;
}

.data__problem-areas--header {
    min-height: 4rem;
    padding: 0 1.5rem;
    font-size: var(--body-2-font-size);
    font-weight: 300;
}

.resource-header {
    text-align: center;
}

.data__problem-area {
    min-height: 6rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.5rem;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    font-size: var(--headline-4-font-size);
    transition: border-color 0.5s ease;
}

.data__problem-area:hover {
    border-color: var(--border-hover-color);
}

.data__problem-topic,
.data__problem-drm-score {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 1.5rem;
}

.data__problem-status,
.data__problem-drm-score-status {
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    border-radius: 50%;
    background: #343434;
}

.data__problem-area .very-satisfied {
    background: var(--color-very-satisfied);
}

.data__problem-area .satisfied {
    background: var(--color-satisfied);
}

.data__problem-area .somewhat-satisfied {
    background: var(--color-somewhat-satisfied);
}

.data__problem-area .neutral {
    background: var(--color-neutral);
}

.data__problem-area .somewhat-dissatisfied {
    background: var(--color-somewhat-dissatisfied);
}

.data__problem-area .dissatisfied {
    background: var(--color-dissatisfied);
}

.data__problem-area .very-dissatisfied {
    background: var(--color-very-dissatisfied);
}

.data__problem-category,
.data__problem-drm-score-value {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data__problem-recommendation {
    font-size: var(--body-1-font-size);
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
}

.data__problem-category,
.data__problem-recommendation {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data__problem-resource {
    display: flex;
    align-items: center;
    justify-content: center;
}

.data__problem-resource button {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0.3rem 0 0 0.3rem;
    border: none;
    background: none;
    font-size: 3rem;
    color: #ffffff;
}

.next_steps__content .resources__container {
    max-width: 50rem !important;
}

/* Next Steps Section Styles - END */

/* Resources Section Styles - START */

#resources .section__text {
    margin-bottom: 1rem;
}

.resources__category {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
    width: 100%;
    margin: 0 3rem 2rem 3rem;
}

.resources__group {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 2rem 0;
    border-bottom: var(--data-panel-border);
}

.resources__group:last-child {
    border: none;
}

.resources__container,
.resources__text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
}

.resources__text p {
    font-size: var(--body-2-font-size);
    padding: 0;
    margin: 0.5rem 2rem;
}

.resources__container button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: transparent;
    border: var(--data-panel-border);
    border-radius: var(--data-panel-border-radius);
    padding: 2rem;
    line-height: 1.25;
    width: 100%;
    max-width: unset;
    z-index: 1;
    transition: border-color 0.5s ease;
}

.resources__container button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--data-panel-border-radius);
    opacity: 0;
    z-index: -1;
    transition: opacity 1s ease;
}

.resources__container button:hover::before {
    opacity: 1;
}

.resources__container button:hover {
    border-color: var(--border-hover-color);
}

.resources__container button h4 {
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.resources__container button i:before {
    font-family: bmw_next_icons_regular !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    font-size: 2.4rem;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.resources__container button.resource__pdf {
    background: var(--gradient-pdf);
}

.resources__container button.resource__pdf::before {
    background: var(--gradient-pdf-reverse);
}

.resources__container button.resource__pdf i:before {
    content: "\f20d";
}

.resources__container button.resource__xlsx {
    background: var(--gradient-xlsx);
}

.resources__container button.resource__xlsx::before {
    background: var(--gradient-xlsx-reverse);
}

.resources__container button.resource__xlsx i:before {
    /* content: "\f511"; */
    content: "\f20b";
}

.resources__container button.resource__pptx {
    background: var(--gradient-pptx);
}

.resources__container button.resource__pptx::before {
    background: var(--gradient-pptx-reverse);
}

.resources__container button.resource__pptx i:before {
    /* content: "\f555"; */
    content: "\f20e";
}

.resources__container button.resource__docx {
    background: var(--gradient-docx);
}

.resources__container button.resource__docx::before {
    background: var(--gradient-docx-reverse);
}

.resources__container button.resource__docx i:before {
    /* content: "\f20f"; */
    content: "\f210";
}

.resources__container button.resource__link {
    background: var(--gradient-link);
}

.resources__container button.resource__link::before {
    background: var(--gradient-link-reverse);
}

.resources__container button.resource__link i:before {
    content: "\f1d5";
}

/* Resources Section Styles - END */

footer {
    background: #000000;
    padding: 2rem 3rem 4rem 3rem;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.footer__menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0;
    margin: 1rem 0 0 0;
    text-decoration: none;
    list-style: none;
}

.footer__menu ul li a {
    font-size: var(--body-2-font-size);
    color: #ffffff;
    text-decoration: none;
}

.copyright {
    font-size: var(--body-3-font-size);
    color: rgba(255, 255, 255, 0.6);
}

.done {
    color: var(--color-satisfied);
}

.due {
    color: var(--color-neutral);
}

.past-due {
    color: var(--color-somewhat-dissatisfied);
}

.incomplete {
    color: var(--color-very-dissatisfied);
}

/* A completed Dealer Retention Management Checklist's DRM score, scoped to .status so these
   don't bleed into other components that reuse the same 7 satisfaction-bucket class names. */
.status.very-dissatisfied {
    color: var(--color-very-dissatisfied);
}
.status.dissatisfied {
    color: var(--color-dissatisfied);
}
.status.somewhat-dissatisfied {
    color: var(--color-somewhat-dissatisfied);
}
.status.neutral {
    color: var(--color-neutral);
}
.status.somewhat-satisfied {
    color: var(--color-somewhat-satisfied);
}
.status.satisfied {
    color: var(--color-satisfied);
}
.status.very-satisfied {
    color: var(--color-very-satisfied);
}

.text-highlight {
    color: rgb(125, 200, 250);
}

.text-highlight--below-minimum {
    color: var(--color-somewhat-dissatisfied);
}

/* Section Styles - END */

/* ===== RESPONSIVE STYLES ===== */

/* Anchor sections below the sticky filter+subnav stack */
section[id] {
    scroll-margin-top: var(--sticky-top);
}

/* Keyboard focus ring for interactive elements */
:is(button, select, a, label, input, textarea):focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

label[hidden] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    color: red;
}

/* ---- Ultra-wide (≥ 1920px): cap readable content width ---- */
@media screen and (min-width: 1920px) {
    .globalnav__container,
    .subnav__container,
    .section__container,
    .footer__menu {
        max-width: 1700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Clear base margin so left: 50% / translateX(-50%) centres accurately */
    .globalfilters__container:not(.sticky) {
        width: 1700px;
        max-width: 1700px;
        margin-left: 0;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Full-width sticky bars: shift content to match the capped layout via dynamic padding */
    .globalfilters__container.sticky,
    .subnav__container.sticky {
        max-width: none;
        width: 100%;
        padding-left: calc((100% - 1700px) / 2);
        padding-right: calc((100% - 1700px) / 2);
    }
}

/* ---- Compact desktop (≤ 1280px): shrink gutters ---- */
@media screen and (max-width: 1280px) {
    .globalnav__container,
    .subnav__container,
    .globalfilters__container,
    .section__container,
    .footer__menu {
        margin-left: 5rem;
        margin-right: 5rem;
    }

    .section__container {
        margin-top: 6rem;
        margin-bottom: 0;
    }

    .globalfilters__container:not(.sticky) {
        width: calc(100% - 10rem);
    }

    .subnav__container.sticky {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .globalfilters__container.sticky {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

/* ---- Tablet landscape (≤ 1024px): reflow multi-column grids ---- */
@media screen and (max-width: 1024px) {
    .globalnav__container,
    .subnav__container,
    .globalfilters__container,
    .section__container,
    .footer__menu {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .globalnav__container {
        height: 6rem;
    }

    .section__container {
        margin-top: 5rem;
        margin-bottom: 0;
    }

    .globalfilters__container:not(.sticky) {
        width: calc(100% - 6rem);
        top: 6rem;
    }

    .subnav__container.sticky {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .globalfilters__container.sticky {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .globalnav__logo {
        height: 2.5rem;
    }

    .globalnav__primary {
        display: none;
    }

    .globalnav__secondary {
        margin-left: auto;
    }

    .data__problem-areas--header,
    .data__problem-area {
        grid-template-columns: minmax(260px, 36%) 120px minmax(240px, 1fr) 70px;
    }

    .data-type__h-bar-graph,
    .data-type__v-bar-graph,
    .data-type__100-bar-chart,
    .data-type__h-bar-graph_with-labels,
    .data__stack {
        flex-direction: row;
        gap: 2rem;
    }

    .data__graph {
        padding-bottom: 2rem;
    }

    .data__h-bar-graph {
        padding-bottom: 0;
    }

    .subnav__primary {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .subnav__primary::-webkit-scrollbar {
        display: none;
    }

    .subnav__primary .subnav__list {
        width: max-content;
    }

    #overview__data.data__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #overview .grid-row-1,
    #overview .grid-row-3 {
        grid-column: span 3;
    }

    #overview .data__checklist--turnover {
        grid-column: span 1;
    }

    #overview .data__checklist--dealer-mngmt {
        grid-column: span 2;
    }

    #overview .data__checklist-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #overview .data__checklist-item:nth-child(3n),
    #overview .data__checklist-item:last-child {
        padding-right: 0;
        border: none;
    }

    /* z-index:1 elevates the carousel's stacking context (from mask-image) above the details panel */
    .data__satisfaction-scores {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-inline: calc(50% - 10rem);
        padding-bottom: 2.2rem;
        gap: 1rem;
        height: auto;
        position: relative;
        z-index: 1;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5rem,
            black calc(100% - 5rem),
            transparent
        );
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5rem,
            black calc(100% - 5rem),
            transparent
        );
    }

    .data__satisfaction-scores::-webkit-scrollbar {
        display: none;
    }

    .data__satisfaction-score--item {
        flex: 0 0 20rem;
        scroll-snap-align: center;
    }

    /* Pull panel 1px into the carousel padding so the bridge (z-index:100) overlaps and covers the top border */
    .data__satisfaction-score-details {
        margin-top: -3px;
    }

    .comments-tabs {
        grid-template-columns: 50% 50%;
    }

    .sat-score__details {
        grid-template-columns: 1fr;
    }

    #statistics__data.data__grid {
        grid-template-columns: 1fr;
    }

    .sat-score__breakdown--options {
        font-size: var(--body-4-font-size);
    }

    #dealer_impacts__data.data__grid {
        grid-template-columns: 1fr;
    }

    #dealer_impacts__data > .data__stack {
        flex-direction: column;
    }

    #dealer_impacts__data--training-costs .data-type__100-bar-chart {
        flex-direction: column;
    }

    .resources__group {
        grid-template-columns: 50% 50%;
        gap: 2rem;
    }

    .resources__category {
        margin-left: 0;
        margin-right: 0;
    }

    .resources__text p {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ---- Tablet portrait (≤ 768px): tighten gutters, 2-column gauges ---- */
@media screen and (max-width: 768px) {
    .globalnav__container,
    .subnav__container,
    .globalfilters__container,
    .section__container,
    .footer__menu {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .section__container {
        margin-top: 4rem;
        margin-bottom: 0;
    }

    .globalfilters__container:not(.sticky) {
        width: calc(100% - 4rem);
    }

    .subnav__container.sticky {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .globalfilters__container.sticky {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .globalfilters__actions-label {
        display: none;
    }

    .section__text {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .data__problem-areas--table {
        overflow-x: auto;
    }

    .data__problem-areas--header,
    .data__problem-area {
        min-width: 850px;
        grid-template-columns: 300px 130px 1fr 70px;
    }

    .areas-of-opportunities__chart {
        height: 28rem;
    }

    .data__problem-areas--header {
        /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        width: 100%;
        min-width: 20rem;
    }

    .data__problem-area {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
        min-width: 20rem;
        /* max-width: 30rem;
        min-height: 4rem; */
        padding: 1rem;
    }

    .data__problem-status,
    .data__problem-drm-score-status {
        width: 3rem;
        height: 3rem;
        flex: 0 0 3rem;
    }

    .data__problem-recommendation {
        overflow: unset;
        text-overflow: unset;
        width: 100%;
        white-space: normal;
    }

    .resources__group {
        grid-template-columns: 1fr;
    }

    #dealer_impacts__data .data__grid {
        grid-template-columns: 1fr;
    }

    .footer__menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .globalnav__container,
    .subnav__container,
    .globalfilters__container,
    .section__container,
    .footer__menu {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .globalnav__container {
        height: 5rem;
    }

    .globalnav__title {
        display: none;
    }

    .globalnav__title__mobile {
        display: block;
    }

    .section__container {
        margin-top: 3rem;
        margin-bottom: 0;
    }

    .globalfilters__container {
        top: 5rem;
    }

    .globalfilters__container:not(.sticky) {
        width: 100%;
        margin: 0;
    }

    .globalfilters__container.sticky {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .mobilenav__list {
        display: flex;
    }

    /* Shrink logo gap to give page title more room */
    .globalnav__logo {
        margin-right: 1.5rem;
    }

    .globalnav__container .vertical-line {
        margin-right: 1.5rem;
    }

    .globalnav__item button {
        padding: 0 1.2rem;
    }

    .globalfilters__dropdowns,
    .globalfilters__primary,
    .globalfilters__secondary,
    .subnav__container,
    .subnav__primary,
    .subnav__secondary,
    .subnav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2rem;
    }

    .globalfilters__dropdowns,
    .subnav__container {
        display: none;
        position: absolute;
        top: 6rem;
        left: 0;
        background: rgba(5, 10, 20, 0.9);
        width: 100%;
        height: auto;
        margin: 0;
        padding: 2rem 2rem 3rem 2rem;
        z-index: 500;
    }

    .subnav__container {
        position: fixed;
        top: 11rem;
    }

    .globalfilters__primary,
    .globalfilters__secondary {
        margin: 0;
    }

    .subnav__primary,
    .subnav__secondary,
    .subnav__list {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .subnav__container.sticky {
        position: fixed;
        top: 5rem;
        height: auto;
        padding: 2rem 2rem 3rem 2rem;
    }

    .globalfilters__container.sticky ~ main .subnav__container {
        top: 6rem;
    }

    .mobile-nav-open header,
    .mobile-filter-open header,
    .mobile-nav-open .globalfilters__container,
    .mobile-filter-open .globalfilters__container {
        background: rgba(5, 10, 20, 0.9);
    }

    .mobile-nav-open .subnav__container {
        display: flex;
    }

    .mobile-filter-open .globalfilters__dropdowns {
        display: flex;
    }

    :root {
        --sticky-top: 16rem;
    }

    #overview .section__gradient {
        padding-top: 11rem;
    }

    /* Overview: 2-column gauge grid */
    #overview__data.data__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    #overview .grid-row-1,
    #overview .grid-row-3 {
        grid-column: span 2;
    }

    /* Checklist rows: stack */
    #overview .data__checklist--turnover,
    #overview .data__checklist--dealer-mngmt {
        grid-column: span 2;
    }

    #overview .data__checklist-items,
    .data__checklist-items {
        grid-template-columns: 1fr;
    }

    #overview .data__checklist-item,
    .data__checklist-item {
        flex-direction: column;
        padding-right: 0;
        border: none;
    }

    .next-steps__step {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        min-width: 20rem;
        max-width: 30rem;
    }

    #next_steps .data__checklist-item {
        gap: 0.5rem;
    }

    .data-type__basic,
    .data-type__h-bar-graph,
    .data-type__v-bar-graph,
    .data-type__100-bar-chart,
    .data-type__h-bar-graph_with-labels,
    .data__stack {
        flex-direction: column;
    }

    /* Labels stack above the graph again here, so give it a definite height to size the % bars */
    .data__v-bar-graph,
    .data__100-bar-chart {
        height: 10rem;
    }

    .areas-of-opportunities {
        margin-left: 0;
    }

    /* Quadrant chart: further reduce height */
    .areas-of-opportunities__chart {
        width: 100%;
        height: 22rem;
    }

    .areas-of-opportunities__chart--title-left {
        left: -2rem;
    }

    .areas-of-opportunities__chart--title-bottom {
        bottom: -2rem;
    }

    .data-type__pie-chart,
    .data-type__h-bar-graph_with-labels {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .data__pie-chart {
        width: min(260px, 80vw);
        margin: 0 auto;
    }

    .comments-tabs {
        grid-template-columns: 1fr;
    }

    .comments-nav {
        padding-top: 0;
    }

    .comments-content {
        height: 500px;
    }

    .comment-tab {
        display: none;
        min-height: 60px;
        padding: 0.5rem 1rem;
    }

    .comment-tab.active {
        display: grid;
        border: 1px solid var(--border-hover-color);
        border-radius: var(--data-panel-border-radius);
        padding-right: 4rem;
    }

    .comment-tab.active::after {
        font-family: bmw_next_icons_regular;
        font-size: 2rem;
        content: "\f19d";
        position: absolute;
        top: 50%;
        right: 10px;
        bottom: unset;
        width: auto;
        height: unset;
        border: unset;
        transform: translateY(-50%);
    }

    /* When the active tab is tapped to expand the list, show all tabs */
    .comments-tabs.expanded .comment-tab {
        display: grid;
    }

    .comment-tab .tab-name,
    .comment-tab .tab-count {
        font-size: 1.7rem;
    }

    .data__problem-areas--header {
        display: none;
    }
}

/* ---- Small mobile (≤ 480px): remove vertical divider, single-column scores ---- */
@media screen and (max-width: 480px) {
    /* Remove header divider line to reclaim space for the page title */
    .globalnav__container .vertical-line {
        margin: 0 2rem;
    }

    .globalnav__logo {
        margin-right: 1rem;
    }

    /* Satisfaction scores: single column */

    /* Reduce comments panel height on small screens */
    .comments-content {
        min-height: 350px;
    }
}

/* ---- Landscape phone (≤ 500px tall): shrink sticky header stack ---- */
@media screen and (max-height: 500px) and (orientation: landscape) {
    :root {
        --sticky-top: 75px;
    }

    .globalnav__container {
        height: 5rem;
    }

    .globalfilters__container:not(.sticky) {
        top: 5rem;
        height: 35px;
    }

    .subnav__container.sticky {
        top: 3.5rem;
    }
}

/* ---- Reduced motion: disable transitions and smooth scrolling ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .data__satisfaction-gauge-progress {
        transition: none !important;
    }
}

/* ---- Print: remove navigation chrome, make data legible on white ---- */
@media print {
    header,
    .globalfilters__container,
    .subnav__container {
        display: none !important;
    }

    body,
    .data__container,
    .data__satisfaction-score--item,
    .data__checklist-container,
    .comment,
    .comment-tab,
    .comments-content,
    .data__problem-area,
    .areas-of-opportunities__chart--quadrant_high-high,
    .areas-of-opportunities__chart--quadrant_low-low {
        background: #ffffff !important;
        color: #000000 !important;
        border-color: #999999 !important;
    }

    #overview {
        background: none !important;
    }

    #overview .section__gradient {
        background: none !important;
        padding-top: 2rem;
    }

    .section__container {
        margin: 1rem 0 !important;
    }

    .data__satisfaction-gauge-track {
        stroke: #cccccc !important;
    }

    .data__satisfaction-gauge-progress {
        stroke: #444444 !important;
    }

    .areas-of-opportunities__chart {
        border: 1px solid #999999 !important;
    }

    .areas-of-opportunities__chart--point,
    .areas-of-opportunities__chart--title-left,
    .areas-of-opportunities__chart--title-bottom,
    .label-left,
    .label-bottom {
        color: #333333 !important;
    }

    .areas-of-opportunities__chart--point .dot {
        background: #333333 !important;
    }

    section {
        page-break-inside: avoid;
    }
}
