/* Meriden Motors - Header Font Override (DM Serif Display) */
h1,
h2,
h3,
h4,
h5,
h6,
.cw-mm-hero-headline,
.cw-mm-why-heading,
.cw-mm-cta-text h2,
.inventoryslideshow-title-heading {
  font-family: "DM Serif Display", serif !important;
  font-weight: 400 !important;
  text-transform: none !important;
  -webkit-text-stroke: 0 !important;
}

.cw-mm-hero-headline em,
.cw-mm-why-heading em {
  font-family: "DM Serif Display", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.btn-primary {
  color: #000 !important;
}

.btn-primary:hover {
  color: #000 !important;
}

.form .btn-primary {
  color: #000 !important;
}

.form .btn-primary, .form .btn-primary:focus, .form .btn-primary:hover, .form .btn-primary:not([disabled]):not(.disabled).active, .form .btn-primary:not([disabled]):not(.disabled):active, .form .show>.btn-primary.dropdown-toggle {
  color: #000 !important;
}

section.inventory-search-module .form-select {
  min-height: 50px;
  height: 50px;
  line-height: unset;
  cursor: pointer;
  background-color: #A4CBFF !important;
}

/* Meriden Motors - Header */
/* The platform always renders its own real nav (built from the site's actual menu) as a
   sibling after our custom header code, regardless of UseCustomCode. Rather than hide it
   and fake our own links, we restyle it in place -- so the nav always reflects the real
   pages.

   Mobile layout strategy: nav's toggler and the dropdown panel are both children of the
   SAME <nav> element. Every previous attempt tried to keep the toggler in place by
   fighting nav's own box (resizing it, anchoring to it, anchoring elsewhere while nav
   moved) -- and nav's box unavoidably has to resize/reflow for the dropdown to open,
   which kept dragging the toggler along with it one way or another.

   Fixing this at the root instead: nav and its inner .container are set to
   display:contents, which removes their own boxes from rendering entirely and makes
   their children (the toggler and the collapse panel) direct grid items of
   .header-container. That grid has 3 fixed rows: row 1 = logo + toggler, row 2 = the
   dropdown panel, row 3 = phone/button. Grid rows size independently of each other --
   row 2 growing when the panel opens cannot move anything in row 1, because CSS grid
   (unlike flexbox) doesn't reflow earlier items when a later one changes size. */
header.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.cw-mm-header {
  display: contents !important;
}

.cw-mm-header-logo {
  grid-column: 1;
  grid-row: 1;
}

.cw-mm-header-logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Row 3: always below the logo/toggler row and the dropdown row, centered.
   width:100% is explicit here rather than relying on grid's default item stretch,
   which wasn't taking effect. */
.cw-mm-header-actions {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.cw-mm-header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.cw-mm-header-phone i {
  color: var(--color-theme-primary);
}

.cw-mm-header-cta {
  display: inline-block;
  background-color: var(--color-theme-primary);
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--color-theme-primary);
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cw-mm-header-cta:hover {
  background-color: var(--color-theme-highlight);
  border-color: var(--color-theme-highlight);
  color: #000;
}

/* The real, functional navigation -- built from the site's actual menu */
nav.navbar,
nav.navbar > .container,
nav.navbar > .container-fluid {
  display: contents !important;
}

nav.navbar .navbar-brand {
  display: none !important;
}

/* Row 1, column 3: shares the logo's row, fixed in place regardless of what row 2 does. */
nav.navbar .navbar-toggler {
  grid-column: 3;
  grid-row: 1;
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.5rem;
}

nav.navbar .navbar-toggler .icon-bar {
  background-color: #ffffff;
}

/* Row 2: only present in the grid when it has content (the panel is open) -- an empty
   row takes no space, so nothing shifts while collapsed. */
nav.navbar .navbar-collapse {
  grid-column: 1 / -1;
  grid-row: 2;
}

nav.navbar .navbar-nav {
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0;
}

nav.navbar .nav-item {
  text-align: center;
}

nav.navbar .nav-link {
  color: var(--color-theme-text) !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0 !important;
}

nav.navbar .nav-link:hover,
nav.navbar .nav-link.dropdown-toggle:hover {
  color: var(--color-theme-primary) !important;
}

nav.navbar .nav-item.active > .nav-link {
  color: var(--color-theme-primary) !important;
}

nav.navbar .dropdown-menu {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 0.4rem 0;
}

nav.navbar .dropdown-item {
  color: #c7c7c7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
  font-weight: 600;
}

nav.navbar .dropdown-item:hover,
nav.navbar .dropdown-item:focus {
  background-color: #141414;
  color: var(--color-theme-primary);
}

nav.navbar .badge {
  background-color: var(--color-theme-primary);
  color: var(--color-theme-text-btn);
}

@media (min-width: 280px) {
  .cw-mm-header-logo img {
    height: 108px;
  }
}

@media (min-width: 440px) {
  .cw-mm-header-logo img {
    height: 118px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
/* @media (min-width: 768px) {
  .cw-mm-header-logo img {
    height: 28px;
  }
} */

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  /* Desktop goes back to a plain horizontal flex bar -- none of the mobile grid
     restructuring applies here, since the toggler is hidden and there's no dropdown
     panel to isolate from anything. */
     .cw-mm-header-logo img {
      height: 80px;
    }

  .header-container {
    display: flex !important;
    flex-wrap: nowrap !important;
  }

  .cw-mm-header-logo {
    order: 1;
  }

  .cw-mm-header-actions {
    order: 3;
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    margin-left: auto;
  }

  nav.navbar,
  nav.navbar > .container,
  nav.navbar > .container-fluid {
    display: flex !important;
  }

  nav.navbar {
    flex: 1 1 auto !important;
    order: 2 !important;
    align-items: center;
    min-width: 0;
  }

  nav.navbar > .container,
  nav.navbar > .container-fluid {
    max-width: none !important;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  nav.navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }

  nav.navbar .navbar-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2rem !important;
    padding: 0 !important;
    width: 100%;
  }

  nav.navbar .nav-item {
    flex-shrink: 0 !important;
  }

  nav.navbar .nav-link {
    white-space: nowrap !important;
  }

  nav.navbar .dropdown-menu {
    margin-top: 0.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .cw-mm-header-logo img {
    height: 148px;
  }

  .header-container {
    padding: 0.9rem 2rem;
  }

  nav.navbar .navbar-nav {
    gap: 1.6rem !important;
  }
}

/* Meriden Motors - Hero */
.cw-mm-hero {
  position: relative;
  background-color: var(--color-theme-background);
  overflow: hidden;
}

.cw-mm-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.cw-mm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: -webkit-linear-gradient(180deg, rgba(10, 10, 10, 0.55), var(--color-theme-background) 92%);
  background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.55), var(--color-theme-background) 92%); */
}

.cw-mm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2.5rem;
}

.cw-mm-hero-headline {
  color: var(--color-theme-header);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.cw-mm-hero-headline em {
  color: var(--color-theme-primary);
  font-style: italic;
}

.cw-mm-hero-sub {
  color: var(--color-theme-text);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 1.75rem;
}

.cw-mm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.cw-mm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cw-mm-btn-primary {
  background-color: var(--color-theme-primary);
  color: #000 !important;
  border-color: var(--color-theme-primary);
}

.cw-mm-btn-primary:hover {
  background-color: var(--color-theme-highlight);
  border-color: var(--color-theme-highlight);
  color: var(--color-theme-text-btn);
}

.cw-mm-btn-outline {
  background-color: transparent;
  color: var(--color-theme-header);
  border-color: rgba(255, 255, 255, 0.35);
}

.cw-mm-btn-outline:hover {
  border-color: var(--color-theme-primary);
  color: var(--color-theme-primary);
}

.cw-mm-btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cw-mm-btn-outline-light:hover {
  border-color: #ffffff;
}

.cw-mm-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 620px;
}

.cw-mm-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1rem;
}

.cw-mm-stat-value {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.cw-mm-stat-label {
  display: block;
  color: var(--color-theme-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .cw-mm-hero-headline {
    font-size: 3.2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-hero-inner {
    padding: 4rem 2rem 3rem;
  }

  .cw-mm-hero-headline {
    font-size: 3.8rem;
  }

  .cw-mm-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-hero-headline {
    font-size: 4.4rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .cw-mm-hero-inner {
    padding: 5rem 2rem 3.5rem;
  }

  .cw-mm-hero-headline {
    font-size: 4.8rem;
  }
}

/* Meriden Motors - Makes We Often Carry (charcoal band) */
.cw-mm-makes-bar {
  position: relative;
  z-index: 2;
  background-color: #141414 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-mm-makes-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  text-align: center;
}

.cw-mm-makes-label {
  display: block;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin-bottom: 0.85rem;
}

.cw-mm-makes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 1.6rem;
}

.cw-mm-makes-list a {
  color: #d4d4d4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.cw-mm-makes-list a:hover {
  color: var(--color-theme-primary);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-makes-inner {
    padding: 1.5rem 2rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Featured Vehicles Title Block (custom, replaces built-in slideshow title/button) */
.cw-mm-featured-title-block {
  background-color: var(--color-theme-background);
  padding: 2.5rem 1.25rem 1.5rem;
}

.cw-mm-featured-title-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cw-mm-featured-eyebrow {
  display: block;
  color: var(--color-theme-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cw-mm-featured-heading {
  color: var(--color-theme-header);
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
}

.cw-mm-featured-heading em {
  color: var(--color-theme-header);
  font-style: italic;
}

.cw-mm-featured-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-theme-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.cw-mm-featured-viewall:hover {
  color: var(--color-theme-highlight);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-featured-title-block {
    padding: 3.5rem 2rem 1.5rem;
  }

  .cw-mm-featured-title-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cw-mm-featured-heading {
    font-size: 2.6rem;
  }

  .cw-mm-featured-viewall {
    margin-bottom: 0.4rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Featured Vehicles (Inventory Slideshow restyle) */
.cw-mm-featured {
  background-color: var(--color-theme-background) !important;
  padding: 0 0 2.5rem;
}

.page-home .inventoryslideshow {
  padding-top: 2em !important;
}

.cw-mm-featured .inventoryslideshow-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cw-mm-featured .inventoryslideshow-title,
.cw-mm-featured .inventoryslideshow-btn {
  display: none !important;
}

.cw-mm-featured .inventoryslideshow-arrow {
  background-color: #141414 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.cw-mm-featured .inventoryslideshow-arrow i {
  color: var(--color-theme-header) !important;
}

.cw-mm-featured .item__card {
  background-color: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px !important;
  overflow: hidden;
}

.cw-mm-featured .item__card__details__wrapper {
  padding: 0.9rem 1rem 1.1rem;
}

.cw-mm-featured .item__title h3 {
  color: var(--color-theme-header);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.cw-mm-featured .item__style {
  color: var(--color-theme-text);
  font-size: 0.8rem;
  margin: 0.15rem 0 0.6rem;
}

.cw-mm-featured .item__data {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.6rem;
}

.cw-mm-featured .item__data__price {
  color: var(--color-theme-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.cw-mm-featured .Fslash__divide {
  color: #5a5a5a;
}

.cw-mm-featured .item__data__value {
  color: var(--color-theme-text);
  font-size: 0.85rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-featured {
    padding: 0 0 3.5rem;
  }

  .cw-mm-featured .inventoryslideshow-container {
    padding: 0 2rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Why Us */
.cw-mm-why {
  background-color: #141414 !important;
  padding: 6.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-mm-why-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cw-mm-why-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.cw-mm-why-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.cw-mm-why-eyebrow {
  display: block;
  color: var(--color-theme-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cw-mm-why-heading {
  color: var(--color-theme-header);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.cw-mm-why-heading em {
  font-style: italic;
}

.cw-mm-why-copy {
  color: var(--color-theme-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 1.75rem;
}

.cw-mm-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.cw-mm-why-item {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cw-mm-why-item i {
  color: var(--color-theme-primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
}

.cw-mm-why-item h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}

.cw-mm-why-item p {
  color: var(--color-theme-text);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .cw-mm-why-image {
    height: 340px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-why {
    padding: 8.5rem 0;
  }

  .cw-mm-why-container {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .cw-mm-why-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cw-mm-why-image {
    flex: 1 1 50%;
    height: auto;
  }

  .cw-mm-why-heading {
    font-size: 2.4rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-why-heading {
    font-size: 2.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - CTA Band */
.cw-mm-cta-wrap {
  background-color: var(--color-theme-secondary) !important;
}

/* Boxed variant -- an inset panel matching the card grid's width/margins instead of a
   full-bleed strip. Used on pages (like Services) where the CTA follows a card module. */
.cw-mm-cta-boxed-outer {
  background-color: var(--color-theme-background);
  padding: 0 1.25rem 3rem;
}

.cw-mm-cta-boxed-outer .cw-mm-cta-boxed {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--color-theme-secondary);
  border-radius: 10px;
  overflow: hidden;
}

.cw-mm-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cw-mm-cta-text h2 {
  color: var(--color-theme-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.cw-mm-cta-text p {
  color: var(--color-theme-primary);
  font-size: 0.9rem;
  margin: 0;
}

.cw-mm-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-cta-boxed-outer {
    padding: 0 2rem 3.5rem;
  }

  .cw-mm-cta-inner {
    padding: 2.75rem 2rem;
  }

  .cw-mm-cta-text h2 {
    font-size: 1.9rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Footer */
.cw-mm-footer {
  background-color: #000000;
  padding: 2.5rem 1.25rem 1.5rem;
}

.cw-mm-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.cw-mm-footer-brand .cw-mm-footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 0.85rem;
}

@media (min-width: 280px) {
  .cw-mm-footer-brand .cw-mm-footer-logo {
    height: 30px;
  }
}

@media (min-width: 330px) {
  .cw-mm-footer-brand .cw-mm-footer-logo {
    height: 52px;
  }
}

.cw-mm-footer-brand p {
  color: #8a8a8a;
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 0.9rem;
}

.cw-mm-footer-social {
  display: flex;
  gap: 0.6rem;
}

.cw-mm-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #b7b7b7;
  text-decoration: none;
  font-size: 0.85rem;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cw-mm-footer-social a:hover {
  color: var(--color-theme-primary);
  border-color: var(--color-theme-primary);
}

.cw-mm-footer-heading {
  display: block;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.cw-mm-footer-col a {
  display: block;
  color: #b7b7b7;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.cw-mm-footer-col a:hover {
  color: var(--color-theme-primary);
}

.cw-mm-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  color: #6f6f6f;
  font-size: 0.78rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-footer {
    padding: 3.5rem 2rem 1.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Services Grid */
.cw-mm-services-grid {
  background-color: var(--color-theme-background);
  padding: 1.5rem 1.25rem 3rem;
}

.cw-mm-services-grid-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.cw-mm-service-card {
  display: block;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.cw-mm-service-card:hover {
  border-color: var(--color-theme-primary);
}

.cw-mm-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-theme-primary);
  border-radius: 6px;
  color: var(--color-theme-primary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.cw-mm-service-card h3 {
  color: var(--color-theme-header);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.cw-mm-service-card p {
  color: var(--color-theme-text);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
}

.cw-mm-service-note {
  display: block;
  color: var(--color-theme-primary);
  font-size: 0.8rem;
  line-height: 1.5;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-services-grid {
    padding: 2rem 2rem 4rem;
  }

  .cw-mm-services-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-services-grid-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Page Title (Services) */
.cw-mm-page-title {
  background-color: var(--color-theme-background);
  padding: 2.5rem 1.25rem 1rem;
}

.cw-mm-page-title-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.cw-mm-page-title-eyebrow {
  display: block;
  color: var(--color-theme-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cw-mm-page-title-heading {
  color: var(--color-theme-header);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.85rem;
  line-height: 1.1;
}

.cw-mm-page-title-heading em {
  font-style: italic;
}

.cw-mm-page-title-sub {
  color: var(--color-theme-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-page-title {
    padding: 3.5rem 2rem 1.5rem;
  }

  .cw-mm-page-title-heading {
    font-size: 2.6rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-page-title-heading {
    font-size: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Our Story (About page) */
.cw-mm-story {
  background-color: var(--color-theme-background);
}

.cw-mm-story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cw-mm-story-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.cw-mm-story-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.cw-mm-story-eyebrow {
  display: block;
  color: var(--color-theme-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cw-mm-story-heading {
  color: var(--color-theme-header);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.cw-mm-story-heading em {
  font-style: italic;
}

.cw-mm-story-copy {
  color: var(--color-theme-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 1.1rem;
}

.cw-mm-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 560px;
  margin-top: 0.75rem;
}

@media (min-width: 280px) {
  .cw-mm-story-stats {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 440px) {
  .cw-mm-story-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .cw-mm-story-image {
    height: 340px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cw-mm-story-container {
    padding: 3.5rem 2rem;
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .cw-mm-story-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cw-mm-story-image {
    flex: 1 1 50%;
    height: auto;
  }

  .cw-mm-story-heading {
    font-size: 2.4rem;
  }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  .cw-mm-story-heading {
    font-size: 2.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Contact (BusinessInfo + Form) */
/* The BusinessInfo module never renders its cssClass onto the markup (a platform quirk
   specific to this module type -- confirmed by inspecting the live DOM), so cw-mm-contact
   never actually existed in the page. Scoping to the module's own rendered element id
   instead, since that id is always present regardless of cssClass support. */
#module_934aa8a6-b890-498a-af45-04d9341c3c17 {
  background-color: var(--color-theme-background);
  padding: 2.5rem 1.25rem 3.5rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .businessinfo-container {
  max-width: 1400px;
  padding: 0;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .col-lg-5,
#module_934aa8a6-b890-498a-af45-04d9341c3c17 .col-lg-7 {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* Native module has no custom heading field, so the visible section labels are
   CSS-injected to match the reference design. */
#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-companyinfo::before {
  content: "Visit Us";
  display: block;
  color: var(--color-theme-header);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-title.contact-businessname {
  display: none;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap::before {
  content: "Send a Message";
  display: block;
  color: var(--color-theme-header);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* Keeping the module's native circular icon badge as-is (border/size/background
   untouched) -- only adding flex centering on the outer element so its glyph content
   centers inside whatever box the native styling already draws. */
#module_934aa8a6-b890-498a-af45-04d9341c3c17 i.contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-address,
#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-email-link,
#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-phone-link {
  display: flex;
  align-items: flex-start;
  color: var(--color-theme-text);
  text-decoration: none;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-details-info {
  color: var(--color-theme-header);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-email-link .contact-details-info,
#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-phone-link .contact-details-info {
  font-weight: 700;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-hours .contact-title {
  display: none;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-hourstime {
  margin-bottom: 0.6rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-hourstime-day {
  color: var(--color-theme-text);
  font-size: 0.9rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .contact-hourstime-time {
  color: var(--color-theme-header);
  font-weight: 600;
  font-size: 0.9rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap label.control-label {
  color: var(--color-theme-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap .form-control {
  background-color: var(--color-theme-background) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px;
  color: var(--color-theme-header) !important;
  padding: 0.7rem 0.85rem;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap .form-control::-webkit-input-placeholder {
  color: var(--color-theme-text);
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap .form-control:focus {
  border-color: var(--color-theme-primary) !important;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap .btn-submit {
  display: block;
  width: 100%;
  background-color: var(--color-theme-primary) !important;
  border-color: var(--color-theme-primary) !important;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .form-wrap .btn-submit:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
}

#module_934aa8a6-b890-498a-af45-04d9341c3c17 .formDisclaimer__content-wrapper {
  color: var(--color-theme-text);
  font-size: 0.7rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  #module_934aa8a6-b890-498a-af45-04d9341c3c17 {
    padding: 3.5rem 2rem 4.5rem;
  }

  #module_934aa8a6-b890-498a-af45-04d9341c3c17 .col-lg-5,
  #module_934aa8a6-b890-498a-af45-04d9341c3c17 .col-lg-7 {
    flex: 1 1 0;
    max-width: none;
    padding: 2.25rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Contact (BusinessInfo + Form) - Contact page instance */
/* The BusinessInfo module never renders its cssClass onto the markup (a platform quirk
   specific to this module type -- confirmed by inspecting the live DOM), so cw-mm-contact
   never actually existed in the page. Scoping to the module's own rendered element id
   instead, since that id is always present regardless of cssClass support. */
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 {
  background-color: var(--color-theme-background);
  padding: 2.5rem 1.25rem 3.5rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .businessinfo-container {
  max-width: 1400px;
  padding: 0;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .col-lg-5,
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .col-lg-7 {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* Native module has no custom heading field, so the visible section labels are
   CSS-injected to match the reference design. */
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-companyinfo::before {
  content: "Visit Us";
  display: block;
  color: var(--color-theme-header);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-title.contact-businessname {
  display: none;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap::before {
  content: "Send a Message";
  display: block;
  color: var(--color-theme-header);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* Keeping the module's native circular icon badge as-is (border/size/background
   untouched) -- only adding flex centering on the outer element so its glyph content
   centers inside whatever box the native styling already draws. */
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 i.contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-address,
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-email-link,
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-phone-link {
  display: flex;
  align-items: flex-start;
  color: var(--color-theme-text);
  text-decoration: none;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-details-info {
  color: var(--color-theme-header);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-email-link .contact-details-info,
#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-phone-link .contact-details-info {
  font-weight: 700;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-hours .contact-title {
  display: none;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-hourstime {
  margin-bottom: 0.6rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-hourstime-day {
  color: var(--color-theme-text);
  font-size: 0.9rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .contact-hourstime-time {
  color: var(--color-theme-header);
  font-weight: 600;
  font-size: 0.9rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap label.control-label {
  color: var(--color-theme-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap .form-control {
  background-color: var(--color-theme-background) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px;
  color: var(--color-theme-header) !important;
  padding: 0.7rem 0.85rem;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap .form-control::-webkit-input-placeholder {
  color: var(--color-theme-text);
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap .form-control:focus {
  border-color: var(--color-theme-primary) !important;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap .btn-submit {
  display: block;
  width: 100%;
  background-color: var(--color-theme-primary) !important;
  border-color: var(--color-theme-primary) !important;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .form-wrap .btn-submit:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
}

#module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .formDisclaimer__content-wrapper {
  color: var(--color-theme-text);
  font-size: 0.7rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
  #module_69b99131-a8bb-4e90-a2f5-63e7288280e8 {
    padding: 3.5rem 2rem 4.5rem;
  }

  #module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .col-lg-5,
  #module_69b99131-a8bb-4e90-a2f5-63e7288280e8 .col-lg-7 {
    flex: 1 1 0;
    max-width: none;
    padding: 2.25rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Meriden Motors - Standalone Forms module fields (Value My Trade, Schedule Test Drive,
   Schedule Service, Car Finder -- excludes the LoanApp module on the Finance page,
   which is a different module type). Layout/width intentionally left untouched --
   only the field styling is changed to match the Contact page's form. */
.form label.control-label {
  color: var(--color-theme-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.form .form-control {
  background-color: var(--color-theme-background) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px;
  color: var(--color-theme-header) !important;
  padding: 0.7rem 0.85rem;
}

.form .form-control::-webkit-input-placeholder {
  color: var(--color-theme-text);
}

.form .form-control::-moz-placeholder {
  color: var(--color-theme-text);
}

.form .form-control:-ms-input-placeholder {
  color: var(--color-theme-text);
}

.form .form-control:focus {
  border-color: var(--color-theme-primary) !important;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form [type="checkbox"] + .label-frms::before,
.form [type="radio"] + .label-frms::before {
  background-color: var(--color-theme-background);
}

.srp-ftc-headline.variant-l2-tag[b-zjf070b8es] {
  background: var(--color-theme-primary) !important;
  color: #000 !important;
}

.srp-ftc-headline.variant-l2-tag .value[b-zjf070b8es] {
  color: #000 !important;
}

.inventory-cta .btn:not(.btn-pre-qualified) {
  color: #000 !important;
}

.inventory-cta .btn:hover {
  color: #484848 !important;
}

.inventory .card-header {
  background-color: var(--color-theme-primary) !important;
  color: #000 !important;
}

.inventory .btn-link.btn-clear-filter {
  color: #000 !important;
}

.inventory .page-item.active .page-link {
  color: #000 !important;
}

ul.nav.justify-content-center.text-center.flex-md-row.flex-column.footer-nav-links.mb-4.mt-3 {
  display: none !important;
}

.footer {
  padding-top: 0em !important;
}

.vdp-module-canvas-razor-wrapper .btn-outline-secondary {
  border-color: var(--color-theme-primary) !important;
  color: var(--color-theme-primary) !important;
}

button.btn.btn-primary.mb-2 {
  color: #000 !important;
}

.vdp__dealerInfo__mod  a.btn.btn-primary.flex-fill.btnPhoneCall {
  color: #000 !important;
}

.vdp__dealerInfo__mod .btn.btn-primary.flex-fill {
  color: #000 !important;
}

.loan__calc__content  a.btn.btn-primary.col-12.my-3 {
  color: #000 !important;
}

.vdp__sticky-navigation__content a.btn.btn-primary.mb-2.button_sn_item.align-content-center {
  color: #000 !important;
}

.vdp__info__addt__mod a.btn.btn-secondary.px-5 {
  color: rgb(255, 255, 255) !important;
}

.vdp__message__wrapper button.btn.btn-primary.col-12.mb-3 {
  color: #000 !important;
}

.photoGallery__modal__footer  button.btn.btn-outline-secondary {
  border-color: var(--color-theme-secondary) !important;
  color: var(--color-theme-secondary) !important;
}

.photoGallery__modal__footer  button.btn.btn-outline-secondary:hover {
  color: #fff !important;
}

.photoGallery__modal__footer button.btn.btn-secondary {
  color: #fff !important;
}

[b-h85p0r54yf] .businessHours .sn_business_open {
  color: #000 !important;
}

.store__hours .hours__status {
  color: #000 !important;
}

.vdp__veh__info__mod .veh__info__item:nth-child(even)[VehicleInfoWidgetCssScope] {
  background-color: #1f1f1f !important;
}

.loan-app-module .btn-primary:disabled {
  color: #b5b5b5 !important;
}
