:root {
    --red: #d52b24;
    --red-dark: #b9211c;
    --ink: #17191b;
    --charcoal: #2e2f30;
    --charcoal-2: #393a3b;
    --sidebar: #565758;
    --sidebar-light: #727374;
    --paper: #ffffff;
    --canvas: #f2f3f2;
    --soft: #eceeed;
    --line: #cfd1d0;
    --line-dark: #aeb1b0;
    --muted: #747878;
    --link: #0968c7;
    --shadow: 0 1px 5px rgba(0, 0, 0, .18);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    min-width: 320px;
    background: var(--canvas);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font: 16px/1.38 Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

img,
svg {
    max-width: 100%;
}

.site-frame {
    width: min(1908px, calc(100vw - 48px));
    margin-inline: auto;
}

.application-header {
    position: relative;
    z-index: 20;
}

.product-nav {
    min-height: 66px;
    border-top: 1px solid #ed4c44;
    border-bottom: 1px solid #8f1d19;
    background: var(--red);
    color: #fff;
}

.product-nav-inner,
.context-nav-inner {
    display: flex;
    min-height: inherit;
    align-items: stretch;
}

.product-tab {
    display: inline-flex;
    min-height: 65px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-right: 1px solid rgba(118, 14, 10, .36);
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
    white-space: nowrap;
}

.product-tab.active {
    background: rgba(119, 13, 10, .16);
}

.product-tab.muted-tab {
    color: rgba(255, 255, 255, .62);
}

.product-divider {
    width: 1px;
    height: 26px;
    align-self: center;
    margin: 0 18px;
    background: rgba(255, 255, 255, .36);
}

.settings-button {
    min-height: 38px;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 2px;
    background: rgba(255, 255, 255, .13);
}

.product-spacer,
.context-spacer {
    flex: 1 1 auto;
}

.partner-wordmark {
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    font-size: 20px;
    font-weight: 800;
}

.logout-button {
    width: 66px;
    height: 65px;
    border: 0;
    border-left: 1px solid rgba(118, 14, 10, .35);
    background: transparent;
    color: #fff;
    font-size: 28px;
}

.context-nav {
    min-height: 66px;
    background: var(--charcoal);
    color: #fff;
}

.context-cell {
    display: inline-flex;
    min-height: 66px;
    align-items: center;
    padding: 0 27px;
    border-right: 1px solid #424344;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.context-cell:first-child {
    border-left: 1px solid #424344;
}

.context-cell.vehicle-name {
    max-width: min(520px, 38vw);
    overflow: hidden;
    text-overflow: ellipsis;
}

.context-cell.variant-picker {
    min-width: 290px;
    justify-content: space-between;
}

.context-cell.estimate {
    gap: 11px;
}

.estimate-value {
    padding: 4px 15px;
    border-radius: 18px;
    background: #101112;
    font-size: 14px;
}

.estimate-nav-button {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #424344;
    background: transparent;
    color: #fff;
}

.context-search {
    gap: 11px;
}

.context-locale {
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-left: 1px solid #424344;
}

.context-locale select {
    height: 38px;
    max-width: 210px;
    padding: 0 28px 0 10px;
    border: 1px solid #555;
    border-radius: 2px;
    background: #242526;
    color: #fff;
}

.application-main {
    min-height: 690px;
    padding-block: 34px 64px;
}

.application-footer {
    min-height: 118px;
    background: #191a1b;
    color: #8c8e8f;
}

.footer-inner {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 45px;
}

.footer-inner strong {
    color: #fff;
    font-size: 26px;
}

.panel {
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.panel-head {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: #f7f7f7;
}

.panel-head h1,
.panel-head h2 {
    margin: 0;
    font-size: 23px;
}

.muted {
    color: var(--muted);
}

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

.field {
    min-height: 42px;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    background: #fff;
}

input.field {
    min-width: min(360px, 100%);
    padding: 0 13px;
}

select.field {
    padding: 0 38px 0 12px;
}

.button,
.workshop-source .button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 1px solid var(--red-dark);
    border-radius: 2px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
}

.button.secondary,
.workshop-source .button.secondary {
    border-color: var(--line-dark);
    background: #fff;
    color: var(--ink);
}

.breadcrumb {
    display: flex;
    margin-bottom: 13px;
    gap: 8px;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--link);
}

.login-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background: #e6e8e7;
}

.login-card {
    width: min(430px, 100%);
    border: 1px solid var(--line-dark);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(25, 35, 45, .18);
}

.login-card .panel-head {
    display: block;
}

.login-body {
    padding: 20px 22px 24px;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.form-row .field {
    width: 100%;
}

.error {
    margin-bottom: 14px;
    color: var(--red);
    font-weight: 700;
}

.license-text {
    max-height: 52vh;
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.catalog-panel {
    min-height: 680px;
    padding: 28px;
}

.grid-makes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    padding: 22px;
}

.make-tile {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    overflow: hidden;
}

.make-tile.imported:hover,
.model-tile:hover {
    border-color: var(--red);
    box-shadow: 0 0 0 1px rgba(213, 43, 36, .18);
}

.make-tile.disabled {
    opacity: .5;
}

.make-logo {
    display: grid;
    min-height: 102px;
    place-items: center;
    padding: 12px;
}

.make-logo img {
    max-width: 126px;
    max-height: 74px;
    object-fit: contain;
}

.tile-label {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 11px;
    border-top: 1px solid var(--line);
    background: #f7f7f7;
    font-weight: 700;
}

.status-pill {
    display: none;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 256px);
    gap: 42px 61px;
    min-height: 760px;
    align-content: start;
    padding: 28px 0;
}

.model-tile {
    display: flex;
    width: 256px;
    height: 251px;
    flex-direction: column;
    border: 1px solid #d6d7d6;
    border-radius: 1px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.model-image {
    display: grid;
    min-height: 171px;
    flex: 1 1 auto;
    place-items: end center;
    padding: 20px 23px 5px;
}

.model-image img {
    width: 100%;
    max-height: 145px;
    object-fit: contain;
}

.model-tile .tile-label {
    display: block;
    min-height: 77px;
    border: 0;
    background: #fff;
    text-align: center;
}

.model-tile-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.model-tile-years {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 14px;
    font-weight: 400;
}

.vehicle-picker {
    display: grid;
    min-height: 700px;
    grid-template-columns: 418px minmax(0, 1fr);
    overflow: hidden;
}

.model-selector {
    background: var(--sidebar-light);
    color: #fff;
}

.model-selector-heading {
    min-height: 85px;
    padding: 36px 42px 18px;
    font-size: 18px;
}

.model-selector-list {
    display: grid;
}

.model-selector-button {
    min-height: 82px;
    padding: 14px 42px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: #5a5b5c;
    color: #fff;
    text-align: left;
}

.model-selector-button strong,
.model-selector-button span {
    display: block;
}

.model-selector-button strong {
    font-size: 17px;
}

.model-selector-button span {
    margin-top: 5px;
}

.model-selector-button.active {
    background: var(--charcoal-2);
}

.vehicle-filters {
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.vehicle-filters label {
    display: block;
    margin-bottom: 12px;
}

.vehicle-filter-input {
    width: 100%;
    height: 54px;
    padding: 0 14px;
    border: 0;
    border-radius: 2px;
}

.fuel-filter-title {
    margin: 31px 0 13px;
}

.fuel-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fuel-button {
    min-height: 53px;
    border: 0;
    border-radius: 2px;
    background: rgba(69, 70, 71, .35);
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
}

.fuel-button.active {
    background: #5a5b5c;
    color: #fff;
}

.model-types-pane {
    min-width: 0;
    background: #fff;
}

.model-types-pane[hidden] {
    display: none;
}

.model-summary {
    display: grid;
    min-height: 300px;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    padding: 38px 40px 22px;
}

.model-summary h1 {
    margin: 0 0 7px;
    font-size: 34px;
}

.model-summary-image {
    display: grid;
    place-items: center;
}

.model-summary-image img {
    width: min(350px, 100%);
    max-height: 195px;
    object-fit: contain;
}

.model-actions {
    display: flex;
    margin-top: 28px;
    gap: 10px;
}

.model-action {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    background: #fff;
    font-weight: 700;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.vehicle-types-table {
    width: 100%;
    min-width: 810px;
    border-collapse: collapse;
    table-layout: fixed;
}

.vehicle-types-table th,
.vehicle-types-table td {
    height: 73px;
    padding: 13px 18px;
    border: 1px solid #e1e2e1;
    text-align: left;
    vertical-align: middle;
}

.vehicle-types-table th {
    height: 53px;
    background: #f7e8e7;
    color: #4e5152;
    font-size: 14px;
}

.vehicle-types-table th:first-child,
.vehicle-types-table td:first-child {
    width: 48%;
}

.vehicle-row {
    cursor: pointer;
}

.vehicle-row:hover td {
    background: #fff4f3;
}

.vehicle-row a {
    display: block;
}

.workshop-shell {
    display: grid;
    min-height: 725px;
    grid-template-columns: 306px minmax(0, 1fr);
    border: 1px solid #cacccb;
    border-radius: 2px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.vehicle-sidebar {
    background: var(--sidebar-light);
}

.vehicle-card {
    margin: 10px;
    min-height: 246px;
    padding: 18px 15px 15px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.vehicle-card-image {
    display: grid;
    height: 175px;
    place-items: center;
}

.vehicle-card-image img {
    width: 100%;
    max-height: 165px;
    object-fit: contain;
}

.vehicle-location-link {
    display: inline-block;
    margin-top: 9px;
    color: var(--link);
    font-weight: 700;
}

.vehicle-module-nav {
    margin-top: 27px;
}

.vehicle-module-link {
    position: relative;
    display: flex;
    min-height: 79px;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    background: #595a5b;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.vehicle-module-link.active {
    background: var(--charcoal);
}

.vehicle-module-link.active::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    content: "";
    transform: translateY(-50%);
}

.module-count {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #676869;
    font-size: 13px;
}

.workshop-main {
    min-width: 0;
    padding: 22px 26px 34px;
    background: #f8f8f8;
}

.vehicle-heading {
    margin: 2px 0 10px;
    font-size: 27px;
    line-height: 1.2;
}

.source-unavailable {
    display: grid;
    min-height: 430px;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    text-align: center;
}

.technical-stage {
    min-height: 690px;
    padding: 27px;
    border: 1px solid #cacccb;
    border-radius: 2px;
    background: #fff;
    box-shadow: var(--shadow);
}

.estimate-dialog[hidden] {
    display: none;
}

.estimate-dialog {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
}

.estimate-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(14, 15, 16, .72);
}

.estimate-window {
    position: relative;
    display: grid;
    width: min(1180px, 100%);
    max-height: calc(100vh - 44px);
    grid-template-rows: auto minmax(0, 1fr) auto;
    border: 1px solid #858787;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
    overflow: hidden;
}

.estimate-header {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 22px;
    background: #595a5b;
    color: #fff;
}

.estimate-header h2,
.estimate-header p {
    margin: 0;
}

.estimate-header h2 {
    font-size: 25px;
}

.estimate-header p {
    margin-top: 3px;
    color: #dedfdf;
}

.estimate-close {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 31px;
}

.estimate-body {
    overflow: auto;
    padding: 22px;
}

.estimate-section + .estimate-section {
    margin-top: 27px;
}

.estimate-section h3,
.estimate-section-title h3 {
    margin: 0 0 11px;
    font-size: 19px;
}

.estimate-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.estimate-table-wrap {
    overflow-x: auto;
}

.estimate-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: fixed;
}

.estimate-table th,
.estimate-table td {
    padding: 10px 11px;
    border: 1px solid #d7d9d8;
    text-align: left;
    vertical-align: middle;
}

.estimate-table th {
    background: #f1f2f1;
    color: #55595a;
    font-size: 13px;
}

.estimate-table th:first-child {
    width: 55%;
}

.estimate-table input {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border: 1px solid #b9bcbb;
}

.estimate-remove {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #bbb;
    border-radius: 2px;
    background: #fff;
    color: var(--red);
    font-size: 21px;
}

.estimate-empty {
    padding: 25px !important;
    color: var(--muted);
    text-align: center !important;
}

.estimate-summary {
    display: grid;
    grid-template-columns: 180px 180px minmax(300px, 1fr);
    align-items: start;
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid #555;
}

.estimate-summary label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.estimate-summary input {
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid #b9bcbb;
}

.estimate-summary dl {
    margin: 0;
}

.estimate-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 7px 0;
    border-bottom: 1px solid #ddd;
}

.estimate-summary dd {
    margin: 0;
    font-weight: 700;
}

.estimate-summary .estimate-grand-total {
    padding-top: 13px;
    border-bottom: 0;
    font-size: 20px;
}

.estimate-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 22px;
    border-top: 1px solid #d2d4d3;
    background: #f2f3f2;
}

body.estimate-open {
    overflow: hidden;
}

.workshop-source {
    min-width: 0;
    color: #151718;
    overflow-wrap: anywhere;
}

.workshop-source [data-workshop-rendered="true"] {
    display: block !important;
}

.workshop-source h1,
.workshop-source h2,
.workshop-source h3,
.workshop-source h4,
.workshop-source p {
    margin-top: 0;
}

.workshop-source ul,
.workshop-source ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.workshop-source table {
    width: 100%;
    border-collapse: collapse;
}

.workshop-source th,
.workshop-source td {
    padding: 9px 11px;
    border-bottom: 1px solid #d7d9d8;
    text-align: left;
    vertical-align: top;
}

.workshop-source img,
.workshop-source svg,
.workshop-source .technical-asset {
    height: auto;
    max-width: 100%;
}

.workshop-source input[type="text"],
.workshop-source input[type="search"],
.workshop-source select {
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid #b9bcbb;
    border-radius: 2px;
    background: #fff;
    color: #151718;
}

.workshop-source .workshop-link-unavailable {
    opacity: .45;
    cursor: not-allowed;
}

.workshop-source #modelDetailMaintenance,
.workshop-source #modelDetailRepairdata,
.workshop-source #modelDetailElectronics {
    display: grid !important;
    grid-template-columns: minmax(300px, 38%) minmax(0, 62%);
    gap: 28px;
}

.workshop-source .model-detail-subnav nav > ul {
    display: grid;
    gap: 8px;
}

.workshop-source .model-detail-subnav nav > ul > li > a {
    position: relative;
    display: flex;
    min-height: 69px;
    align-items: center;
    padding: 12px 48px 12px 26px;
    border: 1px solid #c8cac9;
    border-radius: 2px;
    background: #fff;
    font-size: 17px;
    font-weight: 800;
}

.workshop-source .model-detail-subnav nav > ul > li > a::after,
.workshop-source .model-detail-subnav-extend > nav > ul > li > a.arrow::after,
.workshop-source .smartpack-content a.arrow::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: #777;
    content: "›";
    font-size: 31px;
    line-height: 1;
    transform: translateY(-52%);
}

.workshop-source .model-detail-subnav nav > ul > li.active > a {
    border-color: #545657;
    background: #555657;
    color: #fff;
}

.workshop-source .model-detail-subnav nav > ul > li.active > a::after {
    color: #fff;
}

.workshop-source .model-detail-subnav-extend > nav > [data-workshop-panel] {
    display: none;
}

.workshop-source .model-detail-subnav-extend > nav > [data-workshop-panel].is-active {
    display: grid;
    gap: 11px;
}

.workshop-source .model-detail-subnav-extend > nav > [data-workshop-panel] > li {
    display: block;
    border: 1px solid #c8cac9;
    border-radius: 2px;
    background: #fff;
    list-style: none;
}

.workshop-source .model-detail-subnav-extend > nav > [data-workshop-panel] > li > a {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 13px 55px 13px 64px;
    font-size: 17px;
}

.workshop-source .model-detail-subnav-extend > nav > [data-workshop-panel] > li > a::before {
    position: absolute;
    left: 25px;
    width: 19px;
    height: 19px;
    border: 2px solid #202223;
    border-radius: 50%;
    content: "";
}

.workshop-source .model-detail-subnav-extend li.dropdown > ul,
.workshop-source .model-detail-subnav-extend li.dropdown > nav {
    display: none;
    max-height: 510px;
    overflow: auto;
    border-top: 1px solid var(--line);
}

.workshop-source .model-detail-subnav-extend li.dropdown.is-open > ul,
.workshop-source .model-detail-subnav-extend li.dropdown.is-open > nav {
    display: block;
}

.workshop-source [data-workshop-panel] .filtered-element,
.workshop-source [data-workshop-panel] .no-result-system-filter,
.workshop-source #repair-manuals .filtered-element,
.workshop-source #repair-manuals .no-result-system-filter {
    display: none;
}

.workshop-source .model-detail-subnav-extend li.dropdown li a {
    display: block;
    padding: 13px 22px;
    border-bottom: 1px solid #e0e1e0;
    color: #252728;
}

.workshop-source .model-detail-subnav-extend li.dropdown li a:hover {
    background: #f4f4f4;
    color: var(--link);
}

.workshop-source [data-workshop-panel] > .electronicBox {
    display: flex;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    background: #eee;
}

.workshop-source [data-workshop-panel] > .electronicBox input {
    min-width: 0;
    flex: 1 1 auto;
}

.workshop-source [data-workshop-panel] > ul.systemGroup {
    display: block;
    border: 1px solid #c8cac9;
    border-radius: 2px;
    background: #fff;
    list-style: none;
}

.workshop-source [data-workshop-panel] > ul.systemGroup > li {
    display: block;
    list-style: none;
}

.workshop-source [data-workshop-panel] > ul.systemGroup > li > a {
    position: relative;
    display: flex;
    min-height: 70px;
    align-items: center;
    padding: 13px 55px 13px 26px;
    font-size: 17px;
}

.workshop-source [data-workshop-panel] > ul.systemGroup > li > a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: #777;
    content: "›";
    font-size: 31px;
    transform: translateY(-52%);
}

.workshop-source ul.systemGroup .dropdown-items li {
    position: relative;
    min-height: 50px;
    padding: 14px 55px 14px 22px;
    border-top: 1px solid #dedfdf;
}

.workshop-source ul.systemGroup .dropdown-items li.selected {
    background: #f3f3f3;
    box-shadow: inset 4px 0 0 var(--red);
}

.workshop-source ul.systemGroup .custom-radio-button {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}

.workshop-source ul.systemGroup input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.workshop-source .filter-box-repair-manuals {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #eee;
}

.workshop-source .filter-input-repair-manuals {
    min-width: 0;
    flex: 1 1 auto;
}

.workshop-source .warningLightsSystems {
    padding: 14px;
}

.workshop-source .warningLightsSystemsRow {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 13px;
}

.workshop-source .warningLightsSystemsRow a {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source #modelDetailOverview {
    display: block !important;
}

.workshop-source .model-detail-overview > h2 {
    margin: 6px 0 13px;
    font-size: 27px;
}

.workshop-source .column-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.workshop-source .column-50-50 > .left,
.workshop-source .column-50-50 > .right {
    min-width: 0;
}

.workshop-source .model-detail-overview .box {
    min-height: 142px;
    padding: 25px;
    border: 1px solid #c9cbca;
    border-radius: 2px;
    background: #fff;
}

.workshop-source .model-detail-overview .box p {
    margin-bottom: 9px;
    font-size: 18px;
}

.workshop-source .model-detail-overview .box select {
    width: 100%;
}

.workshop-source .model-detail-overview .box input {
    width: calc(100% - 210px);
    min-width: 190px;
}

.workshop-source #overviewContentWrap {
    margin-top: 36px;
}

.workshop-source .local-fault-results,
.workshop-source #searchResultsWrap:not(:empty) {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source .local-fault-results li a,
.workshop-source #searchResultsWrap li a {
    display: grid;
    gap: 5px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
}

.workshop-source .local-fault-results li:last-child a,
.workshop-source #searchResultsWrap li:last-child a {
    border-bottom: 0;
}

.workshop-source .local-fault-results li a span,
.workshop-source #searchResultsWrap li a span {
    color: var(--muted);
    font-size: 14px;
}

.workshop-source #overviewContentWrap h4 {
    font-size: 20px;
}

.workshop-source #overviewContentWrap ul {
    display: grid;
    gap: 11px;
}

.workshop-source #overviewContentWrap li a {
    position: relative;
    display: flex;
    min-height: 74px;
    align-items: center;
    padding: 12px 58px 12px 68px;
    border: 1px solid #c9cbca;
    border-radius: 2px;
    background: #fff;
}

.workshop-source #overviewContentWrap li a::after {
    position: absolute;
    top: 50%;
    right: 25px;
    color: #777;
    content: "›";
    font-size: 31px;
    transform: translateY(-52%);
}

.workshop-source #overviewContentWrap .counter,
.workshop-source .smartpack-content .counter {
    display: grid;
    min-width: 29px;
    height: 29px;
    margin-left: auto;
    place-items: center;
    border: 1px solid #d3d0bd;
    border-radius: 50%;
    color: #777;
    font-size: 13px;
}

.workshop-source #modelDetailSmartPack {
    display: block !important;
}

.workshop-source #smartpack .heading-lineout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}

.workshop-source #smartpack .heading h1 {
    grid-column: 1 / -1;
    font-size: 28px;
}

.workshop-source #smartpack .filter,
.workshop-source #smartpack .sort-order {
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source #smartpack .filter > label,
.workshop-source #smartpack .sort-order > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.workshop-source .filterSmartPackContainer {
    display: flex;
    gap: 8px;
}

.workshop-source .filterSmartPackContainer input {
    min-width: 0;
    flex: 1 1 auto;
}

.workshop-source .smartPackFilterCriterias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.workshop-source .smartPackFilterCriterias select,
.workshop-source .sort-order select {
    width: 100%;
}

.workshop-source .smartPackFilterCriterias .selected,
.workshop-source .sort-order .selected {
    display: none;
}

.workshop-source .smartpack-search-result {
    display: none;
}

.workshop-source .smartpack-content {
    margin-top: 24px;
}

.workshop-source .smartpack-content nav.tabs > ul {
    display: flex;
    border-bottom: 4px solid #555;
}

.workshop-source .smartpack-content nav.tabs li {
    flex: 1 1 0;
}

.workshop-source .smartpack-content nav.tabs a {
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: #eee;
    font-weight: 700;
}

.workshop-source .smartpack-content nav.tabs li.active a {
    background: #555;
    color: #fff;
}

.workshop-source #tab-content > .tmpl {
    padding: 22px 0;
}

.workshop-source #tab-content > .tmpl[hidden] {
    display: none;
}

.workshop-source #tab-content > .tmpl h2 {
    margin: 18px 0 9px;
    font-size: 21px;
}

.workshop-source #tab-content .filter-data > a {
    position: relative;
    display: block;
    min-height: 55px;
    padding: 16px 52px 16px 18px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: #fff;
}

.workshop-source #tab-content .filter-data:last-child > a {
    border-bottom: 1px solid var(--line);
}

.workshop-source .heading {
    position: relative;
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: -27px -27px 26px;
    padding: 14px 28px;
    background: #777879;
    color: #fff;
}

.workshop-source .local-document-heading {
    display: grid;
    min-height: 80px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: -27px -27px 26px;
    padding: 14px 28px;
    background: #777879;
    color: #fff;
}

.workshop-source .local-document-heading h1 {
    margin: 0;
    text-align: center;
    font-size: 26px;
}

.workshop-source .local-document-heading .button {
    border-color: #353637;
    background: #353637;
    color: #fff;
}

.workshop-source .heading h1,
.workshop-source .heading h2 {
    flex: 1 1 auto;
    margin: 0;
    text-align: center;
    font-size: 26px;
}

.workshop-source .heading .button {
    border-color: #353637;
    background: #353637;
}

.workshop-source .heading .button i {
    display: none;
}

.workshop-source .heading .button.print > span:first-child {
    display: none;
}

.workshop-source #repair-manuals > .inner,
.workshop-source #technical-drawings-overview,
.workshop-source #repair-times .wrapper {
    display: grid;
    grid-template-columns: 32% minmax(0, 68%);
    gap: 0;
}

.workshop-source #repair-manuals > .inner > .left,
.workshop-source #technical-drawings-overview > .left,
.workshop-source #repair-times .wrapper > aside {
    min-width: 0;
    background: #555657;
    color: #fff;
}

.workshop-source #repair-manuals > .inner > .left a,
.workshop-source #technical-drawings-overview > .left a,
.workshop-source #repair-times .wrapper > aside a {
    display: block;
    padding: 17px 27px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.workshop-source #repair-manuals > .inner > .right,
.workshop-source #technical-drawings-overview > .right,
.workshop-source #repair-times .wrapper > .overview {
    min-width: 0;
    padding: 22px 27px;
    background: #fff;
}

.workshop-source #repair-manuals > .inner > .right h2,
.workshop-source #technical-drawings-overview > .right h2 {
    margin: 17px 0 9px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
    font-size: 23px;
}

.workshop-source #repair-manuals > .inner > .right li,
.workshop-source #repair-manuals > .inner > .right p {
    margin-bottom: 8px;
}

.workshop-source #tmpl-manual.lubricants .repair-items > ul > li {
    display: grid;
    min-height: 46px;
    grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(110px, 1fr));
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #d7d9d8;
}

.workshop-source #tmpl-manual.lubricants .repair-items > ul > li > p {
    margin: 0;
}

.workshop-source #tmpl-manual.lubricants .repair-items > ul > li.note {
    display: block;
    min-height: 0;
    padding: 9px 4px 9px 34px;
    font-weight: 600;
}

.workshop-source #tmpl-manual.lubricants .repair-items > ul > li.note::before {
    display: inline-grid;
    width: 18px;
    height: 18px;
    margin-left: -29px;
    margin-right: 9px;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    content: "!";
    font-size: 12px;
}

.workshop-source #repair-times .times.expanded-header,
.workshop-source #repair-times .filter-search,
.workshop-source #maintenance-schedule .time-schedule,
.workshop-source #maintenance-schedule .maintenance-overview,
.workshop-source #location-detail .inner,
.workshop-source #electronic-systems .title-bar {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #f2f3f2;
}

.workshop-source #repair-times .times.expanded-header {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) 100px 170px 150px auto;
    align-items: center;
    gap: 15px;
}

.workshop-source #repair-times .times.expanded-header > label {
    font-weight: 700;
}

.workshop-source #repair-times .times.expanded-header p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 13px;
}

.workshop-source #repair-times .times.expanded-header .detail {
    color: var(--link);
}

.workshop-source #repair-times .repair-times-detail {
    display: none;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source #repair-times.show-selection-detail .repair-times-detail {
    display: block;
}

.workshop-source #repair-times-detail-jobs > li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.workshop-source #repair-times .filter-search {
    display: flex;
    gap: 9px;
}

.workshop-source #repair-times .filter-search input {
    min-width: 0;
    flex: 1 1 auto;
}

.workshop-source #repair-times .overview h2,
.workshop-source #repair-times .overview h3,
.workshop-source #repair-times .overview h4 {
    margin: 0;
}

.workshop-source #repair-times .overview li,
.workshop-source #repair-times .overview .level,
.workshop-source #repair-times .overview .job {
    border-bottom: 1px solid var(--line);
}

.workshop-source #repair-times-overview li.dropdown > a {
    position: relative;
    display: block;
    min-height: 54px;
    padding: 16px 48px 16px 15px;
    border: 1px solid var(--line);
    background: #f2f3f2;
    font-weight: 700;
}

.workshop-source #repair-times-overview li.dropdown > a::after {
    position: absolute;
    top: 50%;
    right: 18px;
    content: "›";
    font-size: 27px;
    transform: translateY(-52%);
}

.workshop-source #repair-times-overview li.dropdown > .dropdown-items {
    display: none;
}

.workshop-source #repair-times-overview li.dropdown.is-open > .dropdown-items {
    display: block;
}

.workshop-source #repair-times-overview li[data-id] {
    display: grid;
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 40px 68px;
    align-items: center;
    gap: 10px;
    padding: 7px 9px 7px 15px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.workshop-source #repair-times-overview li[data-id].selected-job {
    background: #fff4f3;
    box-shadow: inset 4px 0 0 var(--red);
}

.workshop-source #repair-times-overview li[data-id] > .title {
    min-width: 0;
}

.workshop-source #repair-times-overview .oeCode {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.workshop-source #repair-times-overview .add-remove-job {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #aaa;
    border-radius: 2px;
    background: #fff;
    color: var(--red);
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
}

.workshop-source #repair-times-overview .add-remove-job input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.workshop-source #repair-times-overview li[data-id] > .time {
    text-align: right;
    font-weight: 700;
}

.workshop-source #maintenance-schedule .time-schedule {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.workshop-source #maintenance-schedule .maintenance-item {
    margin-bottom: 10px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source #maintenance-schedule fieldset {
    margin: 16px 0;
    border: 1px solid var(--line);
}

.workshop-source #electronic-systems nav.tabs > ul {
    display: flex;
    margin-bottom: 18px;
    border-bottom: 4px solid #555;
}

.workshop-source #electronic-systems nav.tabs li {
    flex: 1 1 0;
}

.workshop-source #electronic-systems nav.tabs a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid var(--line);
    background: #eee;
    text-align: center;
}

.workshop-source #electronic-systems nav.tabs li.active a {
    background: #555;
    color: #fff;
}

.workshop-source #electronic-systems .electronic-systems-overview > .tmpl {
    display: none;
}

.workshop-source #electronic-systems .electronic-systems-overview > .tmpl.is-active {
    display: block;
}

.workshop-source #electronic-systems .tmpl li > a,
.workshop-source #locationSystemWrapper li > a {
    display: block;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: #fff;
}

.workshop-source #smartpack-detail .eo-vin-date,
.workshop-source #smartpack-detail ul.overview {
    margin-bottom: 16px;
    padding: 17px;
    border: 1px solid var(--line);
    background: #fff;
}

.workshop-source #smartpack-detail ul.overview li::first-line {
    font-weight: 700;
}

.workshop-source .clearfix::after {
    display: table;
    clear: both;
    content: "";
}

.workshop-source .noResult {
    padding: 18px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1120px) {
    .product-tab {
        padding-inline: 16px;
        font-size: 15px;
    }

    .partner-wordmark {
        display: none;
    }

    .vehicle-picker {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .workshop-shell {
        grid-template-columns: 255px minmax(0, 1fr);
    }

    .workshop-source #modelDetailMaintenance,
    .workshop-source #modelDetailRepairdata,
    .workshop-source #modelDetailElectronics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-frame {
        width: calc(100vw - 20px);
    }

    .product-nav-inner,
    .context-nav-inner {
        overflow-x: auto;
    }

    .product-nav,
    .context-nav,
    .product-tab,
    .context-cell {
        min-height: 52px;
    }

    .product-tab,
    .context-cell {
        padding-inline: 15px;
    }

    .product-tab.muted-tab,
    .product-tab.settings-button,
    .product-divider,
    .logout-button,
    .context-cell.variant-picker,
    .context-cell.estimate {
        display: none;
    }

    .application-main {
        padding-block: 14px 34px;
    }

    .panel-head,
    .toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    input.field {
        min-width: 0;
        width: 100%;
    }

    .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-block: 12px;
    }

    .model-tile {
        width: auto;
        height: 205px;
    }

    .model-image {
        min-height: 130px;
    }

    .vehicle-picker,
    .workshop-shell {
        grid-template-columns: 1fr;
    }

    .model-selector {
        max-height: 420px;
        overflow: auto;
    }

    .model-summary {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .model-summary h1 {
        font-size: 26px;
    }

    .model-summary-image {
        order: -1;
        height: 150px;
    }

    .vehicle-sidebar {
        display: grid;
        grid-template-columns: 155px minmax(0, 1fr);
    }

    .vehicle-card {
        min-height: 0;
        margin: 8px;
        padding: 8px;
    }

    .vehicle-card-image {
        height: 105px;
    }

    .vehicle-module-nav {
        margin-top: 0;
    }

    .vehicle-module-link {
        min-height: 48px;
        padding-inline: 14px;
        font-size: 14px;
    }

    .workshop-main,
    .technical-stage {
        padding: 14px;
    }

    .vehicle-heading {
        font-size: 20px;
    }

    .workshop-source .column-50-50,
    .workshop-source #smartpack .heading-lineout,
    .workshop-source #repair-manuals > .inner,
    .workshop-source #technical-drawings-overview,
    .workshop-source #repair-times .wrapper {
        grid-template-columns: 1fr;
    }

    .workshop-source .heading {
        margin: -14px -14px 18px;
        padding: 12px;
    }

    .workshop-source .local-document-heading {
        grid-template-columns: 1fr;
        margin: -14px -14px 18px;
        padding: 12px;
    }

    .workshop-source .local-document-heading h1 {
        order: -1;
        font-size: 19px;
    }

    .workshop-source .heading h1,
    .workshop-source .heading h2 {
        font-size: 19px;
    }

    .workshop-source .smartPackFilterCriterias {
        grid-template-columns: 1fr;
    }

    .workshop-source #tmpl-manual.lubricants .repair-items > ul > li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .workshop-source #repair-times .times.expanded-header {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .estimate-dialog {
        padding: 8px;
    }

    .estimate-window {
        max-height: calc(100vh - 16px);
    }

    .estimate-body {
        padding: 14px;
    }

    .estimate-summary {
        grid-template-columns: 1fr 1fr;
    }

    .estimate-summary dl {
        grid-column: 1 / -1;
    }
}

@media print {
    .application-header,
    .application-footer,
    .vehicle-sidebar,
    .workshop-source .heading .button,
    .workshop-source .filter-search {
        display: none !important;
    }

    .site-frame {
        width: 100%;
    }

    .application-main,
    .technical-stage {
        padding: 0;
    }

    .workshop-shell {
        display: block;
        border: 0;
        box-shadow: none;
    }
}
