
/* The OEM's bar is a light grey strip under the header. */
.szk-subnav[data-v-773b69e5] {
  background: #f2f2f3;
  border-bottom: 1px solid #e3e3e5;
}

/* Pinned to the viewport top on scroll, as the OEM's vehicle nav does. Sits
   under 980 (UIkit's uk-sticky) — the site's own scrolled navbar is hidden on
   these pages (see body.bw-page rules in BuildAndPrice.vue) so the two never
   stack. */
.szk-subnav--sticky[data-v-773b69e5] {
  position: sticky;
  top: 0;
  z-index: 970;
}
.szk-subnav__inner[data-v-773b69e5] {
  display: flex;
  align-items: stretch;
  gap: 30px;
  min-height: 62px;
}
.szk-subnav__mark[data-v-773b69e5] {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.szk-subnav__mark img[data-v-773b69e5] {
  height: 26px;
  width: auto;
  filter: brightness(0);
}
.szk-subnav__mark span[data-v-773b69e5] {
  font-family: "TTCommons_DemiBold", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #121212;
}
.szk-subnav__links[data-v-773b69e5] {
  display: flex;
  align-items: stretch;
  gap: 35px;
  margin: 0 auto;
}
.szk-subnav__link[data-v-773b69e5] {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "TTCommons_DemiBold", Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #121212;
  text-decoration: none;
}
.szk-subnav__link[data-v-773b69e5]:hover {
  color: #121212;
  text-decoration: none;
}

/* The OEM underlines the active section in black. */
.szk-subnav__link[data-v-773b69e5]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #121212;
  transform: scaleX(0);
  transition: transform 200ms ease;
}
.szk-subnav__link[data-v-773b69e5]:hover::after,
.szk-subnav__link.is-active[data-v-773b69e5]::after {
  transform: scaleX(1);
}
.szk-subnav__contact[data-v-773b69e5] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "TTCommons_DemiBold", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #121212;
  text-decoration: none;
}
.szk-subnav__contact[data-v-773b69e5]:hover {
  color: #121212;
  text-decoration: none;
}
@media (max-width: 959px) {
.szk-subnav__inner[data-v-773b69e5] {
    flex-wrap: wrap;
    gap: 0 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 0;
}
.szk-subnav__mark[data-v-773b69e5] {
    order: 1;
}
.szk-subnav__contact[data-v-773b69e5] {
    order: 2;
    margin-left: auto;
}
.szk-subnav__links[data-v-773b69e5] {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    margin: 8px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.szk-subnav__link[data-v-773b69e5] {
    padding: 6px 0;
    white-space: nowrap;
}
}

