@charset "UTF-8";
/* colors */
/* The CTA and Main colors are pulled from site templates created by the Design team. These colors vary per OEM or group. */
/* CTA stands for Call-to-Action. The CTA color is often a bright, eye-catching color like red or light blue, used for links and important buttons. */
/* The Main color is often a dark, muted color like black or navy blue, used for backgrounds and less important buttons. */
/* fonts */
/* breakpoints */
/* borders */
/* local variables */
/* TODO: remove if border color classes are added to site templates */
/* Construct a media query that applies to multiple ranges of breakpoints. First and last argument must either be a single number or a list of 2 numbers. */
/* Make sure to give the truncated element a width. If the truncated element has display: flex or inline-flex, add min-width: 0 to the truncated element's immediate parent. If the flex truncated element is nested inside one or more other flex containers, also add min-width: 0 to the nearest ancestor element that does NOT have display: flex or inline-flex */
/* Works well for either single elements, or multiple elements grouped under the same parent */
/* Remove default styling from button element */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. NOTE: doesn't just use position: absolute because Safari doesn't like it. */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. Uses the SVG itself as a mask. NOTE: doesn't just use position: absolute because Safari doesn't like it. Expected code structure: <div class="icon" style="{the image url}"><img src="{the image url}"></div> */
.vehicle-image-gallery {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  overscroll-behavior: contain;
}
.vehicle-image-gallery .vehicle-flags {
  display: none;
}
.vehicle-image-gallery .gallery-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #222;
  opacity: 0.95;
  height: 100%;
  width: 100%;
}
.vehicle-image-gallery .gallery-content {
  position: fixed;
  border: solid 1px #707070;
  height: 100%;
  width: 100%;
}
.vehicle-image-gallery .gallery-content .gallery-header {
  padding: 6px 30px 8px 30px;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.vehicle-image-gallery .gallery-content .gallery-header--title {
  font-size: 30px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-header--title {
    display: none;
  }
}
.vehicle-image-gallery .gallery-content .gallery-header--close {
  width: 20px;
  height: 26px;
  padding: 5px 0;
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.77;
  letter-spacing: normal;
  text-align: left;
  color: #4f4f6f;
  margin-left: auto;
  cursor: pointer;
}
.vehicle-image-gallery .gallery-content .gallery-main {
  display: flex;
  height: 100%;
  width: 100%;
}
.vehicle-image-gallery .gallery-content .gallery-main #gallery-spins {
  display: none;
}
.vehicle-image-gallery .gallery-content .gallery-main #gallery-photos {
  display: block;
  opacity: unset;
  height: 100%;
}
.vehicle-image-gallery .gallery-content .gallery-main #photoGalleryTabContent {
  width: fit-content;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails {
  height: calc(100% - 65px);
  width: 20%;
  margin: 8px 12px 0 8px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails {
    width: 100%;
    margin: 8px 11px;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails {
  height: 100%;
  padding: 1px;
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails {
    height: auto;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 8px;
  margin-left: 0;
  border-width: 0;
  cursor: pointer;
  transition: none;
  background: #222;
  position: relative;
  overflow: hidden;
  width: calc(100% - 0px);
  padding-bottom: calc((100% - 0px) * 0.75);
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail::before {
  border-width: 0 !important;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail.square {
  border-radius: 0;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail:not(.square) {
  border-radius: 10px;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail:hover {
  cursor: pointer;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail:focus-visible {
  outline: 2px solid #fff !important;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail.floorplanBackground::before {
  background-color: transparent;
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail {
    width: fit-content;
    padding-bottom: 0;
    margin: 0 auto 8px;
  }
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail, .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail::before {
    background-color: transparent;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail__image {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail__image {
    display: block;
    width: auto;
    max-width: 100%;
    position: static !important;
    transform: none !important;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail--selected {
  border-width: 5px;
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .gallery-thumbnails .thumbnails .thumbnail--selected {
    border-width: 0px;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__item:not(.square) .hero-carousel__image {
  border-radius: 10px;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  max-height: calc(100vh - 50px);
  padding: 8px 0;
}
@media (max-width: 991px) {
  .vehicle-image-gallery .gallery-content .gallery-main .hero-carousel {
    display: none;
  }
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__image {
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__items {
  width: 100%;
  height: 90vh;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__item {
  align-items: center;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__item::before {
  background-color: transparent;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__item picture {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__image-link {
  display: flex;
  height: 100%;
}
.vehicle-image-gallery .gallery-content .gallery-main .hero-carousel__image-counter {
  top: 18px;
  right: 30px;
}
.vehicle-image-gallery #photoGalleryTabsWrapper {
  display: none;
}

@media (min-width: 992px) {
  .vehicle-images--mod {
    max-width: 656px;
    margin: 0 !important;
  }
}
@media (min-width: 1081px) {
  .vehicle-images--mod {
    max-width: 835px;
  }
}
@media (min-width: 1367px) {
  .vehicle-images--mod {
    max-width: 1198px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .vehicle-images--mod {
    padding: 20px 3vw 20px;
  }
}
.vehicle-images--mod button.thumbnail.active, .vehicle-images--mod button.thumbnail:focus, .vehicle-images--mod button.thumbnail:hover {
  border-color: var(--cta-background-color);
}
.vehicle-images--mod .main-image-block {
  position: relative;
}
.vehicle-images--mod .hero-carousel {
  margin-bottom: 20px;
}
.vehicle-images--mod .hero-carousel__items {
  aspect-ratio: 4/3;
}
.vehicle-images--mod .hero-carousel__image-counter {
  display: none;
}
.vehicle-images--mod .hero-carousel__item:not(.square), .vehicle-images--mod .hero-carousel__item:not(.square)::before {
  border-radius: 0.36em;
}
@media (min-width: 1367px) {
  .vehicle-images--mod .hero-carousel__controls:not(.vertical) {
    height: calc(100% - 2 * var(--gallery-padding-large));
    top: var(--gallery-padding-large);
    width: calc(100% - (12px + var(--gallery-padding-large)));
  }
}
@media (min-width: 1081px) and (max-width: 1366px) {
  .vehicle-images--mod .hero-carousel__controls:not(.vertical) {
    height: calc(100% - 2 * var(--gallery-padding-medium));
    top: var(--gallery-padding-medium);
    width: calc(100% - (12px + var(--gallery-padding-medium)));
  }
}
@media (min-width: 1081px) {
  .vehicle-images--mod .hero-carousel__controls:not(.vertical) {
    left: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1080px) {
  .vehicle-images--mod .hero-carousel__controls.vertical {
    width: calc(100% - 24px);
  }
}
.vehicle-images--mod #photoGalleryTabsWrapper {
  position: relative;
  width: 100%;
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs {
  border-bottom: none;
}
@media (max-width: 991px) {
  .vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs {
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item {
    flex: 1 0 auto;
  }
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item .photo-gallery-tab {
  border-radius: 0.36em 0.36em 0 0;
  color: #5c5c5c;
  border: 2px solid #ebecf0;
  padding: 15px 10px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-right: 0;
  height: 40px;
  background-color: #ffffff;
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item .photo-gallery-tab#spins-tab {
  width: 112px;
  white-space: nowrap;
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item .photo-gallery-tab#photos-tab {
  width: 112px;
}
@media (max-width: 360px) {
  .vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item .photo-gallery-tab#spins-tab, .vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item .photo-gallery-tab#photos-tab {
    width: 100%;
  }
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item:hover .photo-gallery-tab {
  background-color: #f2f3f6;
}
.vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs .nav-item.active .photo-gallery-tab {
  background-color: #dcdce2;
  border-color: #dcdce2;
  color: #333333;
}
@media (max-width: 640px) {
  .vehicle-images--mod #photoGalleryTabsWrapper, .vehicle-images--mod #photoGalleryTabsWrapper #photoGalleryTabs {
    position: static;
    margin-top: 0px;
  }
}
.vehicle-images--mod #photoGalleryTabContent {
  position: relative;
}
.vehicle-images--mod #photoGalleryTabContent #gallery-spins {
  margin-bottom: 20px;
}
.vehicle-images--mod #photoGalleryTabContent #gallery-spins .main-image-block .vehicle-flags {
  bottom: 24px;
}
@media (max-width: 991px) {
  .vehicle-images--mod #photoGalleryTabContent #gallery-spins .main-image-block .vehicle-flags {
    bottom: 0;
  }
}
.vehicle-images--mod #photoGalleryTabContent #gallery-photos .main-image-block {
  margin-bottom: 20px;
}
.vehicle-images--mod #photoGalleryTabContent #gallery-photos .hero-carousel__item:not(.square) {
  border-top-left-radius: 0;
}
.vehicle-images--mod #photoGalleryTabContent #gallery-photos .hero-carousel__item:not(.square)::before {
  border-top-left-radius: 0;
}
@media (max-width: 991px) {
  .vehicle-images--mod #photoGalleryTabContent #gallery-photos .hero-carousel__item, .vehicle-images--mod #photoGalleryTabContent #gallery-photos .hero-carousel__item::before {
    border-radius: 0;
  }
}
.vehicle-images--mod #photoGalleryTabContent #gallery-interior360 #interior360-container {
  height: 500px;
}
.vehicle-images--mod .thumbnails .confirmAvailabilitySidebar, .vehicle-images--mod .thumbnails .thumbnail {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  border-radius: 0;
  margin-bottom: 8px;
  border-width: 0;
  transition: none;
}
.vehicle-images--mod .thumbnails .confirmAvailabilitySidebar:focus-visible, .vehicle-images--mod .thumbnails .thumbnail:focus-visible {
  outline: 2px solid var(--main-color) !important;
}
.vehicle-images--mod .thumbnails .confirmAvailabilitySidebar__image, .vehicle-images--mod .thumbnails .thumbnail__image {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
}
.vehicle-images--mod .thumbnails .video-btn-icon {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
  text-align: center;
  padding: 0px;
}
.vehicle-images--mod .thumbnails .thumbnail-tpi {
  background-color: #666666;
  color: #fff;
}
.vehicle-images--mod .thumbnails .thumbnail-tpi__content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vehicle-images--mod .thumbnails .thumbnail-tpi__content img {
  width: 2.5vw;
  margin-bottom: 0.3vw;
}
@media (min-width: 1367px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content img {
    width: 50px;
  }
}
@media (min-width: 1080px) and (max-width: 1366px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content img {
    width: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content img {
    width: 24px;
  }
}
@media (min-width: 1367px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content span {
    font-size: 1.3em;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content span {
    font-size: 1.2em;
  }
}
@media (max-width: 767px) {
  .vehicle-images--mod .thumbnails .thumbnail-tpi__content span {
    font-size: 1.1em;
  }
}
.vehicle-images--mod .thumbnails--desktop {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .vehicle-images--mod .thumbnails--desktop .thumbnail:not(.thumbnail-tpi):hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(18, 18, 18, 0.5);
  }
}
.vehicle-images--mod .thumbnails--desktop__top {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media (min-width: 992px) and (max-width: 1080px) {
  .vehicle-images--mod .thumbnails--desktop__top {
    padding-right: 24px;
  }
}
.vehicle-images--mod .thumbnails--desktop__bottom {
  display: contents;
}
.vehicle-images--mod .thumbnails--desktop__sidebar {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  height: 300px;
  scrollbar-width: thin;
  scrollbar-width: thin;
}
.vehicle-images--mod .thumbnails--desktop__sidebar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.vehicle-images--mod .thumbnails--desktop__sidebar::-webkit-scrollbar-track {
  background: #ebecf0;
}
.vehicle-images--mod .thumbnails--desktop__sidebar::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  border-radius: 10px;
}
.vehicle-images--mod .thumbnails--desktop__sidebar:not(.scrollbar-visible) {
  scrollbar-width: none;
}
.vehicle-images--mod .thumbnails--desktop__sidebar:not(.scrollbar-visible)::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .vehicle-images--mod .thumbnails--desktop__sidebar {
    width: 135px;
  }
  .vehicle-images--mod .thumbnails--desktop__sidebar.scrollbar-visible {
    width: 140px;
  }
  @supports (-moz-appearance: none) {
    .vehicle-images--mod .thumbnails--desktop__sidebar.scrollbar-visible {
      width: 143px;
    }
  }
}
@media (min-width: 1367px) {
  .vehicle-images--mod .thumbnails--desktop__sidebar {
    width: 163px;
  }
  .vehicle-images--mod .thumbnails--desktop__sidebar.scrollbar-visible {
    width: 168px;
  }
  @supports (-moz-appearance: none) {
    .vehicle-images--mod .thumbnails--desktop__sidebar.scrollbar-visible {
      width: 171px;
    }
  }
}
.vehicle-images--mod .thumbnails--desktop__sidebar .video-btn-container,
.vehicle-images--mod .thumbnails--desktop__sidebar .thumbnail,
.vehicle-images--mod .thumbnails--desktop__sidebar .confirmAvailabilitySidebar {
  height: 100%/3;
  border-radius: 0;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .thumbnail {
  position: relative;
  overflow: hidden;
  width: calc(100% - 0px);
  padding-bottom: calc((100% - 0px) * 0.75);
}
.vehicle-images--mod .thumbnails--desktop__sidebar .thumbnail::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(-50%, 0px);
}
.vehicle-images--mod .thumbnails--desktop__sidebar .thumbnail--selected img {
  opacity: 0.5;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .thumbnail--selected.border-cta {
  border-color: transparent;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .confirmAvailabilitySidebar {
  position: relative;
  overflow: hidden;
  width: calc(100% - 8px);
  padding-bottom: calc((100% - 8px) * 0.75);
  height: 100%/3;
  flex-grow: 1;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .confirmAvailabilitySidebar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f4f5f7;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images--mod .thumbnails--desktop__sidebar .confirmAvailabilitySidebar p {
  color: #a5a5a5;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .ePriceBtnWrapper {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
  text-align: center;
  padding: 0px;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .ePriceBtnWrapper .fa-picture-o {
  color: #dcdce2;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .video-btn-container .video-btn-icon {
  max-height: 45px;
}
.vehicle-images--mod .thumbnails--desktop__sidebar .noMorePhotosIcon {
  max-height: 65px;
}
.vehicle-images--mod .thumbnails--mobile {
  display: flex;
  position: relative;
  padding: 1px 1.3% 1px 1px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.vehicle-images--mod .thumbnails--mobile::-webkit-scrollbar {
  display: none;
}
.vehicle-images--mod .thumbnails--mobile:hover {
  cursor: grab;
}
.vehicle-images--mod .thumbnails--mobile:hover:active {
  cursor: ew-resize;
}
@media (min-width: 992px) {
  .vehicle-images--mod .thumbnails--mobile {
    display: none;
  }
}
.vehicle-images--mod .thumbnails--mobile .thumbnail {
  flex-shrink: 0;
  margin-bottom: 0;
  min-width: 80px;
  min-height: 60px;
  cursor: pointer;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail:not(.thumbnail-tpi) {
  position: relative;
  overflow: hidden;
  width: calc(12% - 0px);
  padding-bottom: calc((12% - 0px) * 0.75);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail:not(.thumbnail-tpi)::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(-50%, 0px);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail.thumbnail-tpi {
  background-color: #666666;
  position: relative;
  overflow: hidden;
  width: calc(12% - 0px);
  padding-bottom: calc((12% - 0px) * 0);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail.thumbnail-tpi::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(-50%, 0px);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail:hover:active {
  cursor: ew-resize;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail:first-of-type {
  margin-left: 0;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail:not(:first-of-type) {
  margin-left: 1.3%;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected.border-cta {
  border-color: transparent;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected:not(.thumbnail-tpi) {
  position: relative;
  overflow: hidden;
  width: calc(12% - 0px);
  padding-bottom: calc((12% - 0px) * 0.75);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected:not(.thumbnail-tpi)::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(-50%, 0px);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected.thumbnail-tpi {
  color: #ccc;
  position: relative;
  overflow: hidden;
  width: calc(12% - 0px);
  padding-bottom: calc((12% - 0px) * 0);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected.thumbnail-tpi::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(-50%, 0px);
}
.vehicle-images--mod .thumbnails--mobile .thumbnail--selected img {
  opacity: 0.5;
}
.vehicle-images--mod .thumbnails--mobile .thumbnail .video-btn-icon {
  max-height: 22.5px;
}
.vehicle-images--mod .vehicle-flags {
  position: absolute;
  bottom: 32px;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .vehicle-images--mod .vehicle-flags {
    bottom: 0;
  }
}
.vehicle-images--mod .vehicle-flags .specialTags--right {
  margin-top: 4px;
}
.vehicle-images--mod .vehicle-flags .popover {
  white-space: nowrap;
}
.vehicle-images--mod .vehicle-flags .tdg_container_inv {
  width: 31px;
  height: 28px;
  background-color: #dcdce2;
  position: relative;
  z-index: 1;
}
.vehicle-images--mod .vehicle-flags .tdg_container_inv .tdg-heart {
  margin: 6px 5px;
  height: 19px;
}
.vehicle-images--mod .main-image-block {
  width: 100%;
  display: flex;
}
.vehicle-images--mod .main-image-block .hero-carousel {
  margin-left: 0px;
  width: 100%;
}
@media (min-width: 1367px) {
  .vehicle-images--mod .main-image-block .hero-carousel {
    padding: var(--gallery-padding-large) var(--gallery-padding-large) var(--gallery-padding-large) 12px;
    background-color: #f2f3f6;
    border-radius: 0 0.36em 0.36em 0;
  }
}
@media (min-width: 1081px) and (max-width: 1366px) {
  .vehicle-images--mod .main-image-block .hero-carousel {
    padding: var(--gallery-padding-medium) var(--gallery-padding-medium) var(--gallery-padding-medium) 12px;
    background-color: #f2f3f6;
    border-radius: 0 0.36em 0.36em 0;
  }
}
.vehicle-images--mod .main-image-block .hero-carousel .hero-carousel__item {
  margin: 0 5px;
}
.vehicle-images--mod .main-image-block .hero-carousel .hero-carousel__item div:not(#interior360-container div), .vehicle-images--mod .main-image-block .hero-carousel .hero-carousel__item a {
  z-index: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .vehicle-images--mod .main-image-block .hero-carousel .hero-carousel__item div:not(#interior360-container div) img, .vehicle-images--mod .main-image-block .hero-carousel .hero-carousel__item a img {
    width: 100%;
  }
}
.vehicle-images--mod .main-image-block + .thumbnails--desktop {
  row-gap: 10px;
  column-gap: 10px;
}
.vehicle-images--mod .main-image-block + .thumbnails--desktop .thumbnail {
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
  padding-bottom: calc(100% * 0.75);
}
@media (min-width: 1367px) {
  .vehicle-images--mod .main-image-block .thumbnails--desktop {
    padding: var(--gallery-padding-large) 12px var(--gallery-padding-large) var(--gallery-padding-large);
    background-color: #f2f3f6;
    border-radius: 0.36em 0 0 0.36em;
  }
}
@media (min-width: 1081px) and (max-width: 1366px) {
  .vehicle-images--mod .main-image-block .thumbnails--desktop {
    padding: var(--gallery-padding-medium) 12px var(--gallery-padding-medium) var(--gallery-padding-medium);
    background-color: #f2f3f6;
    border-radius: 0.36em 0 0 0.36em;
  }
}
@media (max-width: 991px) {
  .vehicle-images--mod .main-image-block + .thumbnails--desktop, .vehicle-images--mod .main-image-block .thumbnails--desktop {
    display: none;
  }
}
.vehicle-images--mod .main-image-block .thumbnails .missingImgOverlay {
  transform: translate(-50%, 0%);
  height: 100%;
  left: 50%;
  max-width: 350px;
  grid-template-rows: 1.4fr [title] 47% [subtitle] 7% 1fr;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .vdp__bottom-block .bottom-block {
    margin: 0 !important;
  }
}

:root {
  --gallery-padding-large: 44px;
  --gallery-padding-medium: 24px;
}

.spin360-iframe {
  width: 100%;
  aspect-ratio: 4/3;
}

.vehicle-images a.thumbnail.active, .vehicle-images a.thumbnail:focus, .vehicle-images a.thumbnail:hover {
  border-color: var(--cta-background-color);
}
.vehicle-images #photoGalleryTabContent .main-image-block .thumbnails .thumbnail#thumbnail--desktop--0:not(.square) {
  border-radius: 0 0 0 0.36em;
}
.vehicle-images .main-image-block .thumbnails .thumbnail#thumbnail--desktop--0:not(.square) {
  border-radius: 0.36em 0 0 0.36em;
}
.vehicle-images .main-image-block {
  position: relative;
}
.vehicle-images .hero-carousel {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .vehicle-images .hero-carousel {
    display: none;
  }
}
.vehicle-images #photoGalleryTabsWrapper {
  position: relative;
  width: 100%;
}
.vehicle-images #photoGalleryTabsWrapper #photoGalleryTabs {
  display: flex;
  border-bottom: none;
}
@media (max-width: 991px) {
  .vehicle-images #photoGalleryTabsWrapper #photoGalleryTabs {
    justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .vehicle-images #photoGalleryTabsWrapper, .vehicle-images #photoGalleryTabsWrapper #photoGalleryTabs {
    position: static;
    margin-top: 0px;
  }
}
.vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab {
  border-radius: 0.36em 0.36em 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #5c5c5c;
  border: 2px solid #ebecf0;
  padding: 10px 10px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-right: 0;
  min-height: 40px;
  background-color: #ffffff;
}
.vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab#spins-tab {
  width: 112px;
  white-space: nowrap;
}
.vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab#photos-tab {
  width: 112px;
}
@media (max-width: 360px) {
  .vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab#spins-tab, .vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab#photos-tab {
    width: 100%;
  }
}
.vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab:hover {
  background-color: #f2f3f6;
}
.vehicle-images #photoGalleryTabsWrapper .photo-gallery-tab.active {
  background-color: #dcdce2;
  border-color: #dcdce2;
  color: #333333;
}
.vehicle-images .photo-tabs-wrapper--hidden {
  display: none;
}
.vehicle-images #photoGalleryTabContent {
  position: relative;
}
.vehicle-images #photoGalleryTabContent #gallery-spins {
  margin-bottom: 20px;
}
.vehicle-images #photoGalleryTabContent #gallery-spins .main-image-block .vehicle-flags {
  bottom: 24px;
}
@media (max-width: 991px) {
  .vehicle-images #photoGalleryTabContent #gallery-spins .main-image-block .vehicle-flags {
    bottom: 0;
  }
}
.vehicle-images #photoGalleryTabContent #gallery-photos .main-image-block {
  margin-bottom: 20px;
}
.vehicle-images #photoGalleryTabContent #gallery-photos .hero-carousel__item:not(.square) {
  border-top-left-radius: 0;
}
.vehicle-images #photoGalleryTabContent #gallery-photos .hero-carousel__item:not(.square)::before {
  border-top-left-radius: 0;
}
@media (max-width: 991px) {
  .vehicle-images #photoGalleryTabContent #gallery-photos .hero-carousel__item, .vehicle-images #photoGalleryTabContent #gallery-photos .hero-carousel__item::before {
    border-radius: 0;
  }
}
.vehicle-images #photoGalleryTabContent #gallery-interior360 #interior360-container {
  height: 500px;
}
.vehicle-images #photoGalleryTabContent .solution360-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  border: solid #dcdce2 1px;
}
@media (min-width: 991px) {
  .vehicle-images #photoGalleryTabContent .solution360-container--rounded {
    border-radius: 0 0.36em 0.36em 0.36em;
  }
}
.vehicle-images #photoGalleryTabContent .solution360-container__text {
  margin: 0;
}
.vehicle-images .thumbnails .video-btn-container, .vehicle-images .thumbnails .confirmAvailabilitySidebar, .vehicle-images .thumbnails .thumbnail {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  border-radius: 0;
  margin-bottom: 10px;
  margin-left: 10px;
  border-width: 0;
  transition: none;
  position: relative;
  overflow: hidden;
  width: calc(50% - 10px);
  padding-bottom: calc((50% - 10px) * 0.75);
}
.vehicle-images .thumbnails .video-btn-container::before, .vehicle-images .thumbnails .confirmAvailabilitySidebar::before, .vehicle-images .thumbnails .thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails .video-btn-container:focus-visible, .vehicle-images .thumbnails .confirmAvailabilitySidebar:focus-visible, .vehicle-images .thumbnails .thumbnail:focus-visible {
  outline: 2px solid var(--main-color) !important;
}
.vehicle-images .thumbnails .video-btn-container__image, .vehicle-images .thumbnails .confirmAvailabilitySidebar__image, .vehicle-images .thumbnails .thumbnail__image {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
}
.vehicle-images .thumbnails .video-btn-container.floorplanBackground::before, .vehicle-images .thumbnails .confirmAvailabilitySidebar.floorplanBackground::before, .vehicle-images .thumbnails .thumbnail.floorplanBackground::before {
  background-color: transparent;
}
.vehicle-images .thumbnails .video-btn-icon {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
  text-align: center;
  padding: 0px;
}
.vehicle-images .thumbnails--desktop {
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .vehicle-images .thumbnails--desktop .thumbnail:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(18, 18, 18, 0.5);
  }
}
.vehicle-images .thumbnails--desktop .thumbnail:hover .expand-btn, .vehicle-images .thumbnails--desktop .thumbnail:focus .expand-btn {
  display: block;
}
.vehicle-images .thumbnails--desktop .thumbnail .expand-btn {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  display: none;
  padding: 8px 10px;
  z-index: 999;
  pointer-events: none;
}
.vehicle-images .thumbnails--desktop #thumbnails--desktop__bottom-load-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  grid-gap: 10px;
}
.vehicle-images .thumbnails--desktop #thumbnails--desktop__bottom-load-more:not(.square) {
  border-radius: 0.36em;
}
.vehicle-images .thumbnails--desktop__top {
  width: 100%;
  display: flex;
  position: relative;
}
.vehicle-images .thumbnails--desktop__top .thumbnail#thumbnail--desktop--0:not(.expanded) {
  position: relative;
  overflow: hidden;
  width: calc(75% - 10px);
  padding-bottom: calc((75% - 10px) * 0.75);
}
.vehicle-images .thumbnails--desktop__top .thumbnail#thumbnail--desktop--0:not(.expanded)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--desktop__top .thumbnail#thumbnail--desktop--0.expanded {
  position: relative;
  overflow: hidden;
  width: calc(100% - 10px);
  padding-bottom: calc((100% - 10px) * 0.75);
}
.vehicle-images .thumbnails--desktop__top .thumbnail#thumbnail--desktop--0.expanded::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--desktop__bottom {
  display: contents;
}
.vehicle-images .thumbnails--desktop__sidebar {
  width: 25%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-left: 12px;
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail,
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar {
  height: 100%/3;
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container:not(.square),
.vehicle-images .thumbnails--desktop__sidebar .thumbnail:not(.square),
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar:not(.square) {
  /* Setting the last-of-type first is needed for when the thumbnail is both first and last. */
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container:not(.square):last-of-type, .vehicle-images .thumbnails--desktop__sidebar .video-btn-container:not(.square):last-of-type::before,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail:not(.square):last-of-type,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail:not(.square):last-of-type::before,
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar:not(.square):last-of-type,
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar:not(.square):last-of-type::before {
  border-radius: 0 0 0.36em 0;
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container:not(.square):first-of-type, .vehicle-images .thumbnails--desktop__sidebar .video-btn-container:not(.square):first-of-type::before,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail:not(.square):first-of-type,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail:not(.square):first-of-type::before,
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar:not(.square):first-of-type,
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar:not(.square):first-of-type::before {
  border-radius: 0 0.36em 0 0;
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail {
  position: relative;
  overflow: hidden;
  width: calc(100% - 10px);
  padding-bottom: calc((100% - 10px) * 0.75);
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container::before,
.vehicle-images .thumbnails--desktop__sidebar .thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar {
  position: relative;
  overflow: hidden;
  width: calc(100% - 10px);
  padding-bottom: calc((100% - 10px) * 0.75);
  height: 100%/3;
  flex-grow: 1;
}
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f4f5f7;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--desktop__sidebar .confirmAvailabilitySidebar p {
  color: #a5a5a5;
}
.vehicle-images .thumbnails--desktop__sidebar .ePriceBtnWrapper {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
  text-align: center;
  padding: 0px;
}
.vehicle-images .thumbnails--desktop__sidebar .ePriceBtnWrapper .fa-picture-o {
  color: #dcdce2;
}
.vehicle-images .thumbnails--desktop__sidebar .video-btn-container .video-btn-icon {
  max-height: 45px;
}
.vehicle-images .thumbnails--desktop__sidebar .noMorePhotosIcon {
  max-height: 65px;
}
.vehicle-images .thumbnails--desktop__sidebar .uwm-button-override {
  background-image: none !important;
  content: "" !important;
  background-color: #222 !important;
  position: relative;
  overflow: hidden;
  height: 95% !important;
  width: calc(100% - 10px) !important;
  margin-left: 10px;
  margin-bottom: 10px;
}
.vehicle-images .thumbnails--desktop__sidebar .uwm-button-override::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 30%;
  transform: translate(-50%, -50%) scale(1.02);
  background-image: url(https://cdn.dlron.us/static/industry-automotive/icons/video-icon.svg) !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle-images .thumbnails--mobile {
  display: flex;
  padding: 1px 1.3% 1px 1px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.vehicle-images .thumbnails--mobile::-webkit-scrollbar {
  display: none;
}
.vehicle-images .thumbnails--mobile:hover {
  cursor: grab;
}
.vehicle-images .thumbnails--mobile:hover:active {
  cursor: ew-resize;
}
@media (min-width: 992px) {
  .vehicle-images .thumbnails--mobile {
    display: none;
  }
}
.vehicle-images .thumbnails--mobile .video-btn-container,
.vehicle-images .thumbnails--mobile .thumbnail {
  flex-shrink: 0;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: calc(20% - 0px);
  padding-bottom: calc((20% - 0px) * 0.75);
}
.vehicle-images .thumbnails--mobile .video-btn-container::before,
.vehicle-images .thumbnails--mobile .thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--mobile .video-btn-container:not(.square), .vehicle-images .thumbnails--mobile .video-btn-container:not(.square)::before,
.vehicle-images .thumbnails--mobile .thumbnail:not(.square),
.vehicle-images .thumbnails--mobile .thumbnail:not(.square)::before {
  border-radius: 8px;
}
.vehicle-images .thumbnails--mobile .video-btn-container:hover:active,
.vehicle-images .thumbnails--mobile .thumbnail:hover:active {
  cursor: ew-resize;
}
.vehicle-images .thumbnails--mobile .video-btn-container:first-of-type,
.vehicle-images .thumbnails--mobile .thumbnail:first-of-type {
  margin-left: 0;
}
.vehicle-images .thumbnails--mobile .video-btn-container:not(:first-of-type),
.vehicle-images .thumbnails--mobile .thumbnail:not(:first-of-type) {
  margin-left: 1.3%;
}
.vehicle-images .thumbnails--mobile .video-btn-container--selected,
.vehicle-images .thumbnails--mobile .thumbnail--selected {
  border-width: 2px;
  position: relative;
  overflow: hidden;
  width: calc(20% - 4px);
  padding-bottom: calc((20% - 4px) * 0.75);
}
.vehicle-images .thumbnails--mobile .video-btn-container--selected::before,
.vehicle-images .thumbnails--mobile .thumbnail--selected::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.vehicle-images .thumbnails--mobile .video-btn-container .video-btn-icon,
.vehicle-images .thumbnails--mobile .thumbnail .video-btn-icon {
  max-height: 22.5px;
}
.vehicle-images .thumbnails--mobile .uwm-button-override {
  background-image: none !important;
  content: "" !important;
  background-color: #222 !important;
  flex-shrink: 0;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: calc(20% - 0px);
  padding-bottom: calc((20% - 0px) * 0.75);
}
.vehicle-images .thumbnails--mobile .uwm-button-override::before {
  content: "";
  position: absolute;
  min-width: 0;
  top: 50%;
  left: 50%;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) scale(0.3);
  background-image: url(https://cdn.dlron.us/static/industry-automotive/icons/video-icon.svg) !important;
  text-align: center;
  padding: 0px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle-images .thumbnails #load-more-vehicles {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 21px;
}
.vehicle-images .thumbnails #load-more-vehicles #load-more-vehicles__btn {
  height: 35px;
  font-weight: 700 !important;
  font-size: 13px;
  border-radius: 5px;
  border-width: 2px;
  text-transform: none;
  padding-top: 0px;
  padding-bottom: 0px;
}
.vehicle-images .vehicle-flags {
  position: absolute;
  bottom: 32px;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .vehicle-images .vehicle-flags {
    bottom: 0;
  }
}
.vehicle-images .vehicle-flags .specialTags--right {
  margin-top: 4px;
}
.vehicle-images .vehicle-flags .popover {
  white-space: nowrap;
}
.vehicle-images .vehicle-flags .tdg_container_inv {
  width: 31px;
  height: 28px;
  background-color: #dcdce2;
  position: relative;
  z-index: 1;
}
.vehicle-images .vehicle-flags .tdg_container_inv .tdg-heart {
  margin: 6px 5px;
  height: 19px;
}
.vehicle-images .main-image-block + .thumbnails--desktop {
  row-gap: 10px;
  column-gap: 10px;
}
.vehicle-images .main-image-block + .thumbnails--desktop .thumbnail {
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
  padding-bottom: calc(100% * 0.75);
}
.vehicle-images .main-image-block .thumbnails--desktop {
  margin-left: -10px;
}
@media (max-width: 991px) {
  .vehicle-images .main-image-block + .thumbnails--desktop, .vehicle-images .main-image-block .thumbnails--desktop {
    display: none;
  }
}
.vehicle-images .main-image-block .thumbnails .missingImgOverlay {
  transform: translate(-50%, 0%);
  height: 100%;
  left: 50%;
  max-width: 350px;
  grid-template-rows: 1.4fr [title] 47% [subtitle] 7% 1fr;
  font-weight: bold;
}

.vehicle-card, .vehicleCard {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(176, 189, 206, 0.3);
  box-shadow: 0 0 15px 0 rgba(176, 189, 206, 0.3);
  /* Ad Cards */
}
.vehicle-card:not(.square), .vehicleCard:not(.square) {
  border-radius: 20px;
}
.vehicle-card do-personalized-content.signals-card, .vehicleCard do-personalized-content.signals-card {
  display: block;
  width: 100%;
  height: 600px;
}

.similar-vehicles {
  padding-bottom: 40px;
}
.similar-vehicles__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}
.similar-vehicles__cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media (min-width: 1440px) {
  .full-width-page .similar-vehicles__cards {
    flex-wrap: nowrap;
  }
}
.similar-vehicles .vehicleCard {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.similar-vehicles .vehicleCard:not(.square) .top-container .vehicleTitle, .similar-vehicles .vehicleCard:not(.square) .top-container .vehicleTitle::before {
  border-radius: 20px 20px 0 0;
}
.similar-vehicles .vehicleCard .bottom-container {
  padding: 10px 20px 19px;
}
@media (max-width: 535px) {
  .similar-vehicles .vehicleCard .bottom-container {
    padding: 21px 20px 19px;
  }
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle {
  text-transform: capitalize;
  height: 72px;
}
@media (min-width: 536px) {
  .similar-vehicles .vehicleCard .bottom-container .vehicleTitle {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .similar-vehicles .vehicleCard .bottom-container .vehicleTitle .vehicleTitleInner {
    align-content: center;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle .h2 {
  font-size: 20px;
  font-weight: 900;
  color: #333333;
  line-height: 1.25;
  margin: 0;
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle .text-muted {
  line-height: 1.25;
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 900;
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle__year-make-model {
  font-weight: 900;
  line-height: 1.17;
  margin: 0;
  flex: 0 1 auto;
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle__make-model::after {
  content: " ";
  white-space: pre;
}
.similar-vehicles .vehicleCard .bottom-container .vehicleTitle__trim-and-appended {
  font-weight: normal;
  font-size: 20px;
  flex: 1 1 auto;
}
@media (max-width: 991px) {
  .similar-vehicles .vehicleCard .bottom-container .vehicleTitle__trim-and-appended {
    display: none;
  }
}
@media (min-width: 1581px) {
  .similar-vehicles .vehicleCard {
    width: calc(25% - 9px);
  }
  .similar-vehicles .vehicleCard:not(:first-of-type) {
    margin-left: 12px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(-n + 4) {
    display: flex;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 5) {
    display: none;
  }
}
@media (max-width: 1580px) and (min-width: 992px) {
  .similar-vehicles .vehicleCard {
    width: calc(33.3333333333% - 12.6666666667px);
  }
  .similar-vehicles .vehicleCard:not(:first-of-type) {
    margin-left: 19px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(-n + 3) {
    display: flex;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 4) {
    display: none;
  }
}
@media (min-width: 1201px) {
  .similar-vehicles .vehicleCard {
    min-width: 235px;
  }
}
@media (max-width: 1200px) {
  .similar-vehicles .vehicleCard .vehiclePricingHighlights {
    justify-content: center;
    text-align: center;
    padding: 10px 0 19px;
  }
  .similar-vehicles .vehicleCard .tab-pane:not(.buy-content) .vehiclePricingHighlight:not(.monthlyPayment) {
    display: none;
  }
  .similar-vehicles .vehicleCard .tab-pane:not(.buy-content) .vehiclePricingHighlight.monthlyPayment {
    text-align: center;
    margin: 0 auto;
  }
  .similar-vehicles .vehicleCard .tab-pane:not(.buy-content) .vehiclePricingHighlight.monthlyPayment .vehiclePricingHighlightLabel {
    display: block;
  }
  .similar-vehicles .vehicleCard .buy-content .vehiclePricingHighlight:not(.featuredPrice) {
    display: none;
  }
  .similar-vehicles .vehicleCard .buy-content .vehiclePricingHighlight.featuredPrice {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .similar-vehicles .vehicleCard {
    width: calc(50% - 17px / 2);
  }
  .similar-vehicles .vehicleCard:nth-of-type(2n) {
    margin-left: 17px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 3) {
    margin-top: 12px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 5) {
    display: none;
  }
  .similar-vehicles .vehicleCard .bottom-container {
    padding: 7px 20px 9px;
  }
  .similar-vehicles .vehicleCard .bottom-container .vehicleTitle .h2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) and (min-width: 536px) {
  .similar-vehicles .vehicleCard {
    width: calc(50% - 15px / 2);
  }
  .similar-vehicles .vehicleCard:nth-of-type(2n) {
    margin-left: 15px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 3) {
    margin-top: 15px;
  }
  .similar-vehicles .vehicleCard:nth-of-type(n + 5) {
    display: none;
  }
  .similar-vehicles .vehicleCard .bottom-container {
    padding: 7px 20px 9px;
  }
  .similar-vehicles .vehicleCard .bottom-container .vehicleTitle .h2 {
    font-size: 18px;
  }
}
@media (max-width: 535px) {
  .similar-vehicles .vehicleCard {
    width: 100%;
    margin-left: 0 !important;
  }
  .similar-vehicles .vehicleCard:not(:first-of-type) {
    margin-top: 15px;
  }
}
.similar-vehicles .vehicleCard > * {
  width: 100%;
}
.similar-vehicles .vehicleCard .layoutHelper {
  display: none;
}
.similar-vehicles .vehicleCard .vehicleImg {
  flex: 0 0 auto;
}
.similar-vehicles .vehicleCard .top-container .specialTags--bottom:first-of-type {
  left: 20px;
}
.similar-vehicles .vehicleCard .top-container .specialTags--bottom:nth-of-type(2) {
  /* Spacing of first tag (20px) + tag width (30px) + space between tags (2px) */
  left: 52px;
}
.similar-vehicles .vehicleCard .top-container .vehicleTitle {
  display: block;
  position: relative;
  overflow: hidden;
  width: calc(100% - 0px);
  padding-bottom: calc((100% - 0px) * 0.67);
}
.similar-vehicles .vehicleCard .top-container .vehicleTitle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.similar-vehicles .vehicleCard .top-container .vehicleTitle::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.similar-vehicles .vehicleCard .top-container .vehicleTitle img {
  position: absolute;
  width: 100%;
  min-width: 0;
  top: 50%;
  left: 50%;
  /* Slightly scaling up keeps an ugly border from showing when image size isn't a whole number */
  transform: translate(-50%, -50%) scale(1.02);
}
.similar-vehicles .vehicleCard .vehiclePricingStack {
  padding: 0 20px;
  flex: 1 0 100px;
}
.similar-vehicles .vehicleCard .vehiclePricingStack .priceBlockItemDivider {
  display: none;
}
.similar-vehicles .vehicleCard .vehiclePricingStack .buy-content .priceBlock .priceBlockItem:not(.priceBlockItemFeaturedPrice) {
  display: none;
}
.similar-vehicles .vehicleCard .vehiclePricingStack .priceBlockItemFeaturedPrice {
  padding-bottom: 17px;
}
.similar-vehicles .vehicleCard .vehiclePricingStack .multi-tabs .nav-item:nth-of-type(2) {
  flex: 1.5;
}
@media (max-width: 300px) {
  .similar-vehicles .vehicleCard .vehiclePricingStack .multi-tabs {
    display: none;
  }
}
.similar-vehicles .vehicleCard .vehiclePricingStack + hr {
  display: none;
  margin-bottom: 0;
}
.similar-vehicles .vehicleCard .vehiclePricingStack + hr + div:last-of-type {
  display: block !important;
  text-align: center;
  margin-bottom: 0 !important;
  border-top: 2px solid #ebecf0;
}
.similar-vehicles .vehicleCard .vehiclePricingStack + hr + div:last-of-type .vehicleTitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.67;
  text-transform: uppercase;
  padding: 10px 0;
}
.similar-vehicles .vehicleCard .vehiclePricingStack + hr + div:last-of-type .vehicleTitle p {
  margin: 0;
}
.similar-vehicles .vehicleCard .vehiclePricingStack .vehiclePricingDisclaimers {
  display: none;
}
@media (max-width: 767px) {
  .similar-vehicles .vehicleCard .vehiclePricingHighlights {
    padding: 0 0 17px;
  }
}

/* 
  * TODO
  * Reference this variables from the vehicleCardListBlock.scss file
*/
@media (max-width: 580px) {
  .similar-vehicles__title {
    padding: 0 20px;
  }
}
.similar-vehicles .vehicleCard:not(.square) {
  border-radius: 0.36em;
}
.similar-vehicles .vehicleCard:not(.square) .top-container .vehicleTitle, .similar-vehicles .vehicleCard:not(.square) .top-container .vehicleTitle::before {
  border-radius: 0.36em 0.36em 0 0;
}
.similar-vehicles .vehicle-card--carbravo {
  border: 2px solid #6BC24A;
}
.similar-vehicles .vehicle-image img {
  object-fit: contain;
}
.similar-vehicles .vehicle-image__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "image";
  aspect-ratio: 4/3;
  overflow: hidden;
}
.similar-vehicles .vehicle-image__overlay {
  grid-area: image;
  z-index: 1;
}
.similar-vehicles .vehicle-image__overlay--carbravo {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: ". carbravo" ". bravobudget";
  padding: 0.7rem;
  row-gap: 0.5rem;
  justify-items: flex-end;
}
.similar-vehicles .vehicle-image__carbravo, .similar-vehicles .vehicle-image__bravobudget {
  max-width: 100%;
}
.similar-vehicles .vehicle-image__carbravo {
  grid-area: carbravo;
}
.similar-vehicles .vehicle-image__bravobudget {
  grid-area: bravobudget;
}
.similar-vehicles .vehicle-image__container {
  display: grid;
  grid-template-areas: "background-foreground-missing";
  grid-area: image;
}
.similar-vehicles .vehicle-image__background-wrapper {
  grid-area: background-foreground-missing;
}
.similar-vehicles .vehicle-image__front-wrapper {
  grid-area: background-foreground-missing;
  display: grid;
  place-items: center;
}
.similar-vehicles .vehicle-image__background-image {
  object-fit: cover;
  filter: blur(10px);
  aspect-ratio: 4/3;
  width: 100%;
}
.similar-vehicles .vehicle-image__background-image, .similar-vehicles .vehicle-image__background-image::before {
  border-radius: 0.36em 0.36em 0 0;
}
.similar-vehicles .vehicle-image__front-image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.similar-vehicles .vehicle-image__front-image, .similar-vehicles .vehicle-image__front-image::before {
  border-radius: 0.36em 0.36em 0 0;
}
@media (max-width: 535px) {
  .similar-vehicles .vehicle-image__front-image {
    max-height: calc((min(519px, 100vw) - 0px * (1 - 1)) / 1 * 0.75);
  }
}
@media (min-width: 536px) and (max-width: 767px) {
  .similar-vehicles .vehicle-image__front-image {
    max-height: calc((min(519px, 100vw) - 15px * (2 - 1)) / 2 * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .similar-vehicles .vehicle-image__front-image {
    max-height: calc((min(519px, 100vw) - 17px * (2 - 1)) / 2 * 0.75);
  }
}
@media (min-width: 992px) and (max-width: 1580px) {
  .similar-vehicles .vehicle-image__front-image {
    max-height: calc((calc(100vw - calc(33.333vw - 40px)) - 19px * (3 - 1)) / 3 * 0.75);
  }
}
@media (min-width: 1581px) {
  .similar-vehicles .vehicle-image__front-image {
    max-height: calc((calc(100vw - calc(33.333vw - 40px)) - 12px * (4 - 1)) / 4 * 0.75);
  }
}

.vehicle-details .price-drop {
  margin: 0 20px;
  background-color: var(--cta-background-color);
  color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
@media (min-width: 991px) {
  .vehicle-details .price-drop {
    width: 89%;
    max-width: 365px;
    margin: 0 auto;
  }
}
.vehicle-details .price-drop.do47255 {
  width: 100%;
  max-width: none;
  margin: 0;
  background-color: #dcdce2 !important;
  color: #333333 !important;
  box-shadow: none;
}
.vehicle-details .price-drop__label {
  text-transform: uppercase;
}
.vehicle-details .price-drop__label, .vehicle-details .price-drop__label:hover {
  color: #ffffff;
}
.vehicle-details .price-drop__label.do47255 {
  flex: 1 0 0;
  color: #333333 !important;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 14.4px; /* 120% */
  text-transform: uppercase;
  margin-top: 10px;
  transition: margin-top 0.2s;
}
.vehicle-details .price-drop__toggle-msg {
  color: #333333 !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.4px; /* 120% */
  text-transform: none !important;
  margin-top: 10px;
  transition: margin-top 0.2s;
}
.vehicle-details .price-drop__toggle-msg--closed {
  display: none;
}
.vehicle-details .price-drop__toggle-msg--open {
  display: block;
}
.vehicle-details .price-drop__amount {
  display: inline-block;
  flex: 1 1 auto;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
}
.vehicle-details .price-drop__header {
  color: #ffffff;
}
.vehicle-details .price-drop__body-content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 0 38px 14px 48px;
}
.vehicle-details .price-drop__body-content.do47255 {
  padding: 8px 14px 8px 34px;
}
.vehicle-details .price-drop__alert-button {
  padding: 2px 12px;
  font-weight: 700 !important;
  display: block;
  background-color: #ffffff;
  color: var(--cta-background-color);
}
.vehicle-details .price-drop__alert-button:hover {
  text-decoration: underline;
}
.vehicle-details .price-drop__header {
  display: flex;
  column-gap: 17px;
  position: relative;
  padding: 3px 14px 4px 48px;
  text-align: left;
  border: none;
  white-space: normal !important;
  transition: padding 0.2s;
  background-color: transparent;
}
.vehicle-details .price-drop__header .specialTags--bottom {
  width: 26px;
  height: 34px;
  clip-path: path("M 0 0 h 26 v 34 l -13 -8 l -13 8 z");
  left: 16px;
  padding: 2px 0 3px;
  background-color: var(--cta-background-color);
  color: var(--cta-background-color);
  letter-spacing: normal;
}
.vehicle-details .price-drop__header .specialTags--bottom::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 26px;
  height: 34px;
  clip-path: path("M 1 1 h 24 v 31 l -12 -7.5 l -12 7.5 z");
  z-index: -1;
}
.vehicle-details .price-drop__header.do47255 {
  display: flex;
  align-items: center;
  column-gap: 4px;
  position: relative;
  padding: 4px 14px 4px 6px;
  text-align: left;
  border: none;
  transition: padding 0.2s;
  height: 24px;
  box-shadow: none;
  width: 100%;
}
.vehicle-details .price-drop__header.do47255.collapsed .price-drop__label,
.vehicle-details .price-drop__header.do47255.collapsed .price-drop__toggle-msg {
  margin-top: 0;
}
.vehicle-details .price-drop__header.do47255.collapsed .price-drop__toggle-msg--closed {
  display: block;
}
.vehicle-details .price-drop__header.do47255.collapsed .price-drop__toggle-msg--open {
  display: none;
}
.vehicle-details .price-drop__header.do47255 .specialTags--circle {
  margin-top: 10px;
  letter-spacing: normal;
}
.vehicle-details .price-drop__label {
  font-size: 12px;
  font-weight: 900;
}

.vehicle-details .price-drop {
  border-radius: 0.36em;
}
@media (min-width: 991px) {
  .vehicle-details .price-drop {
    border-radius: 0.36em 0.36em 0 0;
  }
}

.vehicle-dropdown {
  position: relative;
  /* Share button DOM is in its own partial with different elements classes, needs individual styling */
}
.vehicle-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--cta-background-color);
  border: none;
  background-color: transparent;
  border-radius: 50%;
}
.vehicle-dropdown__trigger:hover, .vehicle-dropdown__trigger:active, .vehicle-dropdown__trigger:focus {
  color: #333333;
}
.vehicle-dropdown__trigger.less-whitespace {
  height: 20px;
}
.vehicle-dropdown__dots {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  font-size: 4px;
}
.vehicle-dropdown__menu {
  margin: 5px 0 0;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
  float: none;
  right: 0;
  left: auto;
  padding: 0;
  background-color: #ffffff;
  border: none;
  /* Styling "borrowed" from .dropdown-menu styling rules in bootstrap.css */
  position: absolute;
  top: 100%;
  z-index: 10;
  min-width: 145px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-clip: padding-box;
  border-radius: 4px;
  display: none;
}
.vehicle-dropdown__menu.open {
  display: block;
}
.vehicle-dropdown__menu hr {
  width: 125px;
  margin-top: 0;
  margin-bottom: 0;
}
.vehicle-dropdown__item .dropdown-button:hover, .vehicle-dropdown__item .dropdown-button:active, .vehicle-dropdown__item .dropdown-button:focus,
.vehicle-dropdown__item .vehicle-dropdown__action:hover,
.vehicle-dropdown__item .vehicle-dropdown__action:active,
.vehicle-dropdown__item .vehicle-dropdown__action:focus {
  border-color: #eaecf0;
}
.vehicle-dropdown__item:first-of-type .dropdown-button,
.vehicle-dropdown__item:first-of-type .vehicle-dropdown__action {
  border-radius: 5px 5px 0 0;
}
.vehicle-dropdown__item:last-of-type .dropdown-button,
.vehicle-dropdown__item:last-of-type .vehicle-dropdown__action {
  border-radius: 0 0 5px 5px;
}
.vehicle-dropdown__item--copy-link .copied {
  background: var(--cta-background-color) !important;
  color: #ffffff;
}
.vehicle-dropdown__item--copy-link .copied::after {
  background-color: #ffffff !important;
}
.vehicle-dropdown__action {
  width: 100%;
  /* !important to override bootstrap */
  display: grid !important;
  padding: 0px 15px !important;
  grid-template-areas: "icon label";
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto;
  border-width: 0;
  border-style: solid;
  border-color: #f4f5f7;
  background-color: #ffffff;
  min-height: 42px;
  column-gap: 12px;
  text-align: left;
  align-items: center;
  color: inherit !important;
}
.vehicle-dropdown__action:hover {
  background-color: #f4f5f7;
}
.vehicle-dropdown__action::after {
  content: "";
  background-color: #333333;
  width: 18px;
  height: 18px;
  display: block;
  grid-area: icon;
  z-index: 1;
  mix-blend-mode: screen;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.vehicle-dropdown__action--details::after {
  mask-image: var(--details-icon-url);
  -webkit-mask-image: var(--details-icon-url);
}
.vehicle-dropdown__icon {
  grid-area: icon;
  width: 18px;
  height: auto;
  font-size: 20px;
}
.vehicle-dropdown__label {
  grid-area: label;
}
.vehicle-dropdown .dropdown-button {
  width: 100%;
  /* !important to override bootstrap */
  display: grid !important;
  padding: 0px 15px !important;
  grid-template-areas: "icon label";
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto;
  border-width: 0;
  border-style: solid;
  border-color: #f4f5f7;
  background-color: #ffffff;
  min-height: 42px;
  column-gap: 12px;
  text-align: left;
  align-items: center;
}
.vehicle-dropdown .dropdown-button:hover {
  background-color: #f4f5f7;
}
.vehicle-dropdown .dropdown-button::after {
  content: "";
  background-color: #333333;
  width: 18px;
  height: 18px;
  display: block;
  grid-area: icon;
  z-index: 1;
  mix-blend-mode: screen;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.vehicle-dropdown .dropdown-button--copy::after {
  mask-image: var(--copy-icon-url);
  -webkit-mask-image: var(--copy-icon-url);
}
.vehicle-dropdown .dropdown-button--share::after {
  mask-image: var(--share-icon-url);
  -webkit-mask-image: var(--share-icon-url);
}
.vehicle-dropdown .dropdown-button--print::after {
  mask-image: var(--print-icon-url);
  -webkit-mask-image: var(--print-icon-url);
}
.vehicle-dropdown .dropdown-button__icon {
  grid-area: icon;
  width: 18px;
  height: auto;
}
.vehicle-dropdown .dropdown-button__label {
  grid-area: label;
}

.details-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-areas: "title tdg-heart dropdown" "status . .";
  align-items: center;
}
.details-header__title {
  grid-area: title;
}
.details-header__tdg-heart {
  grid-area: tdg-heart;
}
.details-header__dropdown {
  grid-area: dropdown;
}
.details-header__status {
  grid-area: status;
}
.details-header__status {
  display: flex;
}
.details-header .vehicle-title__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
  margin: 0;
}
.details-header .vehicle-title__year-make-model {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.17;
  margin: 0;
  flex: 0 1 auto;
}
.details-header .vehicle-title__year {
  color: #a5a5a5;
}
.details-header .vehicle-title__year__recreational-vehicles {
  color: #707070;
}
.details-header .vehicle-title__make-model::after {
  content: " ";
  white-space: pre;
}
.details-header .vehicle-title__trim-and-appended {
  font-size: 16px;
  line-height: 1.25;
  flex: 1 1 auto;
}
.details-header .vehicle-status {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  color: var(--cta-background-color);
}
.details-header .vehicle-status__icon {
  font-size: 14px;
}
.details-header .vehicle-status__label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8rem;
  font-size: 16px;
  font-weight: 700;
}
.details-header .vdp-special-offer {
  margin-left: 15px;
  display: flex;
  gap: 2px;
  align-items: center;
}
.details-header .vdp-special-offer__icon {
  display: flex;
  padding: 2px;
}
.details-header .vdp-special-offer__icon i {
  color: var(--main-color);
}
.details-header .vdp-special-offer__label {
  color: #707070;
  font-size: 12px;
}
.details-header .vehicle-eta {
  display: inline-flex;
  align-items: center;
}
.details-header .vehicle-status-info-button {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
}
.details-header .vehicle-eta-icon,
.details-header .vehicle-status-info-icon {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  display: grid;
  grid-template-areas: "icon";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.details-header .vehicle-eta-icon__image,
.details-header .vehicle-status-info-icon__image {
  grid-area: icon;
}
.details-header .vehicle-eta-icon::after,
.details-header .vehicle-status-info-icon::after {
  content: "";
  display: block;
  background-color: var(--cta-background-color);
  mix-blend-mode: screen;
  grid-area: icon;
  width: 100%;
  height: 100%;
}
.details-header .vehicle-eta-icon__image,
.details-header .vehicle-status-info-icon__image {
  width: 1.6rem;
}

.rv-status-row {
  align-items: center;
  display: flex;
  gap: 1.07em;
  height: 100%;
  justify-content: space-between;
  padding: 0.86em 0 0;
  width: 100%;
}
.rv-status-row .vehicle-status-rv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.43em;
  font-size: 1.2rem !important;
  line-height: 1;
  text-align: center;
  background-color: #f4f5f7;
  border: 1px solid #dcdce2;
  padding: 0.38em 0.5em;
}
.rv-status-row .vehicle-status-rv--rounded {
  border-radius: 0.36em;
}
.rv-status-row .vehicle-status-rv__label {
  display: flex;
  column-gap: 0.3rem;
  align-items: center;
}
.rv-status-row .vehicle-location-rv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.43em;
  font-size: 1.2rem !important;
  line-height: 1;
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  padding: 0.4em 0.7em;
  column-gap: 0.5em;
}
.rv-status-row .vehicle-location-rv--rounded {
  border-radius: 0.36em;
}
.rv-status-row .vehicle-location-rv__label {
  display: flex;
  column-gap: 0.3rem;
  align-items: center;
}
.rv-status-row .vehicle-location-rv:only-child {
  margin-left: auto;
}
.rv-status-row .vehicle-location-rv .vehicle-location-rv-icon {
  display: grid;
  grid-template-areas: "icon";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.rv-status-row .vehicle-location-rv .vehicle-location-rv-icon__image {
  grid-area: icon;
}
.rv-status-row .vehicle-location-rv .vehicle-location-rv-icon::after {
  content: "";
  display: block;
  background-color: #ffffff;
  mix-blend-mode: screen;
  grid-area: icon;
  width: 100%;
  height: 100%;
}
.rv-status-row .vehicle-location-rv .vehicle-location-rv-icon__image {
  width: 1.15em;
}

/*
* DO-2394: there's not really an elegant way to handle this since any number of TPIs or custom code could be impacting the width of certain elements of the page.
* This will at least assure the page is not wider than the viewport.
*/
@media (max-width: 991px) {
  html,
  body {
    width: auto !important;
    overflow-x: hidden !important;
  }
}
.vehicle-details {
  /* &__custom-block,
  &__location {
    @include vdp-mixins.vdp-card-styling;
  } */
}
.vehicle-details__card {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-details__card--rounded {
  border-radius: 0.36em;
}
.vehicle-details__card:not(:last-of-type) {
  margin-bottom: 1.43em;
}
@media (max-width: 991px) {
  .vehicle-details__title-pricing {
    box-shadow: none;
  }
}
.vehicle-details__title {
  padding: 0.86em 1.43em 1.07em;
}
@media (min-width: 992px) {
  .vehicle-details__title {
    padding: 1.86em 1.43em 1.07em;
  }
}
.vehicle-details__title--rv {
  padding-bottom: 0.55em;
}
.vehicle-details__quick-info {
  border-top: 1px solid #dcdce2;
  padding: 0.94em 1.43em;
}
.vehicle-details__quick-info .quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1.4em;
}
.vehicle-details__quick-info .quick-info__entry {
  display: grid;
  grid-template-areas: "icon label";
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 1fr;
  align-items: center;
  column-gap: 0.15em;
}
.vehicle-details__quick-info .quick-info__entry::after {
  content: "";
  display: block;
  background-color: #707070;
  mix-blend-mode: screen;
  grid-area: icon;
  width: 100%;
  height: 100%;
}
.vehicle-details__quick-info .quick-info__icon {
  grid-area: icon;
  width: 1.25em;
}
.vehicle-details__quick-info .quick-info__label {
  font-size: 0.75em;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  grid-area: label;
}
.vehicle-details__pricing {
  padding: 1.43em 1.43em 1.86em;
  border-top: 2px solid #f4f5f7;
}
.vehicle-details__pricing--rv {
  border-top: 1px solid #dcdce2;
}
.vehicle-details__custom-block, .vehicle-details__location {
  padding: 1.86em 1.43em 2.29em;
}

.custom-block__heading,
.dealer-location__heading {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}
.custom-block__contents,
.dealer-location__contents {
  font-size: 1.14em;
}
.custom-block__contents__recreational-vehicles,
.dealer-location__contents__recreational-vehicles {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-block__maps-link__recreational-vehicles,
.dealer-location__maps-link__recreational-vehicles {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-block__maps-link__address,
.dealer-location__maps-link__address {
  color: #137AC0;
}

.signals-banner-vdp do-personalized-content:not([content=loaded]) {
  display: block;
  background-image: url("https://cdn.dlron.us/static/industry-automotive/backgrounds/skeleton-background-image.jpeg");
  width: 100%;
  height: 100%;
}
.signals-banner-vdp do-personalized-content[content=loaded] {
  display: block;
  width: 100%;
  height: 100px;
}
.signals-banner-vdp do-personalized-content[content=none] {
  display: none;
}
.signals-banner-vdp.signals-banner-8-1 do-personalized-content:not([content=loaded]) {
  display: block;
  background-image: url("https://cdn.dlron.us/static/industry-automotive/backgrounds/skeleton-background-image.jpeg");
  width: 100%;
  height: 100%;
  height: auto;
  aspect-ratio: 8/1;
}
.signals-banner-vdp.signals-banner-8-1 do-personalized-content[content=loaded] {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8/1;
}
.signals-banner-vdp.signals-banner-8-1 do-personalized-content[content=none] {
  display: none;
}

.specialTags {
  display: block;
  font-size: 18px;
  border: none;
  z-index: 2;
}
.specialTags--bottom {
  position: absolute;
  top: 0;
  padding: 4px 0;
  text-align: center;
  width: 30px;
  height: 38px;
  clip-path: path("M 0 0 h 30 v 38 l -15 -8 l -15 8 z");
}
.specialTags--right {
  padding: 4px 6px;
  width: 40px;
  height: 32px;
  clip-path: path("M 0 0 h 40 l -9 16 l 9 16 h -40 z");
}
.specialTags .fa-long-arrow-down {
  margin-left: 3px;
}

.e-price-modal .modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.multi-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.multi-tabs li {
  flex: 1;
}
.multi-tabs li:visited, .multi-tabs li:hover, .multi-tabs li:active, .multi-tabs li:focus, .multi-tabs li:active:hover, .multi-tabs li button:visited, .multi-tabs li button:hover, .multi-tabs li button:active, .multi-tabs li button:focus, .multi-tabs li button:active:hover {
  outline: none;
}
.multi-tabs li button {
  border-radius: 0;
  border-width: 2px;
  border-style: solid;
  border-color: #eaecf0;
  width: 100%;
  height: 40px;
  font-size: 12px;
  padding: 8px 6px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.17;
  letter-spacing: 2.4px;
  outline: #eaecf0;
  background-color: #ffffff;
  color: #5c5c5c;
}
.multi-tabs li button:hover {
  background-color: #f2f3f6;
  color: #333;
}
.multi-tabs li.active button {
  background-color: #dcdce2;
  border-color: #dcdce2;
  outline: #dcdce2;
  color: #333;
}
.multi-tabs li:first-of-type button {
  border-top-left-radius: 21px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 21px;
  border-right: 0;
}
.multi-tabs li:last-of-type button {
  border-top-left-radius: 0;
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.multi-tabs li.onlyTab button {
  border-radius: 21px;
  border-left: 2px;
  border-left-style: solid;
  border-radius: 21px;
  border-left: 2px;
  border-left-style: solid;
}

/* Temporary - remove when SRP redesign toggle is removed */
.vehiclePricingStack .tab-pane[id^=finance-] .vehiclePricingDetails .priceBlock, .vehiclePricingStack .tab-pane[id^=lease-] .vehiclePricingDetails .priceBlock {
  padding-top: 14px;
}
.vehiclePricingStack .tab-pane[id^=finance-] .vehiclePricingHighlights, .vehiclePricingStack .tab-pane[id^=lease-] .vehiclePricingHighlights {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.vehiclePricingStack ul.priceBlock.priceBlockResponsiveDesktop {
  margin-bottom: 0;
}
.vehiclePricingStack .vehiclePricingDetails .priceBlock {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.vehiclePricingStack .vehiclePricingHighlight {
  text-align: center;
}
.vehiclePricingStack .vehiclePricingHighlight:first-of-type {
  text-align: left;
}
.vehiclePricingStack .vehiclePricingHighlight:last-of-type {
  text-align: right;
}
.vehiclePricingStack .vehiclePricingHighlightAmount {
  display: block;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}
.vehiclePricingStack .dealerDiscount .vehiclePricingHighlightAmount {
  font-weight: bold;
}
.vehiclePricingStack .vehiclePricingHighlightLabel {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.33;
}
.vehiclePricingStack .tab-pane[id^=buy-] .vehiclePricingHighlightLabel {
  text-transform: uppercase;
}
.vehiclePricingStack .singlePrice {
  justify-content: center;
}
.vehiclePricingStack .singlePrice .vehiclePricingHighlight {
  text-align: center;
}
.vehiclePricingStack .singlePrice .vehiclePricingHighlightLabel {
  display: block;
}
.vehiclePricingStack .singlePrice .vehiclePricingHighlightAmount {
  display: block;
}
.vehiclePricingStack .vehiclePricingMoreLess {
  display: flex;
  align-items: center;
}
.vehiclePricingStack .vehiclePricingMoreLess::before, .vehiclePricingStack .vehiclePricingMoreLess::after {
  content: "";
  display: block;
  border-top: 2px solid #f4f5f7;
  flex: 1 0 auto;
}
.vehiclePricingStack .vehiclePricingMoreLessButton {
  padding: 0.57em 0.71em;
  border: none;
  background: none;
}
.vehiclePricingStack .vehiclePricingMoreLessButton[aria-expanded=true] .vehiclePricingMoreLessButtonIcon {
  transform: rotate(180deg);
}
.vehiclePricingStack .vehiclePricingMoreLessButtonLabel {
  font-size: 0.93em;
}
.vehiclePricingStack .vehiclePricingMoreLessButtonIcon {
  font-size: 1.07em;
}
.vehiclePricingStack .priceBlockItem {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 5px;
}
.vehiclePricingStack .priceBlockItem > div {
  flex: 1;
  text-align: center;
}
.vehiclePricingStack .priceBlockItem a {
  margin-top: 5px;
}
.vehiclePricingStack .priceBlockItem.priceBlockItemImage--left-align {
  justify-content: left;
}
.vehiclePricingStack .priceBlockItem.priceBlockItemImage--right-align {
  justify-content: right;
}
.vehiclePricingStack .priceBlockItem.priceBlockItemImage--center-align {
  justify-content: center;
}
.vehiclePricingStack .priceBlockItemPrice,
.vehiclePricingStack .priceBlockItemRebate {
  font-size: 13px;
  line-height: 1.54;
}
.vehiclePricingStack .priceBlockItemPrice:first-of-type,
.vehiclePricingStack .priceBlockItemRebate:first-of-type {
  margin-top: 0;
}
.vehiclePricingStack .priceBlockItemPrice:not(:first-of-type),
.vehiclePricingStack .priceBlockItemRebate:not(:first-of-type) {
  margin-top: 0.8rem;
}
.vehiclePricingStack .priceBlockItemPriceButton {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  padding-right: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  column-gap: 0.2rem;
}
.vehiclePricingStack .priceBlockItemPriceButton .fa-question-circle {
  display: none;
}
.vehiclePricingStack .priceBlockItemPriceButton::after {
  content: "";
  background-color: #a5a5a5;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  z-index: 1;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("https://cdn.dlron.us/static/industry-automotive/icons/icon_info.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: url("https://cdn.dlron.us/static/industry-automotive/icons/icon_info.svg");
}
.vehiclePricingStack .priceBlockItemPriceButtonIcon {
  display: flex;
  align-items: center;
}
.vehiclePricingStack .priceBlockItemPriceButtonIconImage {
  width: 1.6rem;
  display: none;
}
.vehiclePricingStack .priceBlocItemPriceValue {
  font-weight: 900;
}
.vehiclePricingStack .priceBlockItemRebates > ul {
  flex: 1;
}
.vehiclePricingStack .priceBlockItemRebate .popover-title,
.vehiclePricingStack .priceBlockItemRebate .popover-content {
  text-align: left;
}
.vehiclePricingStack .priceBlockItemRebate span {
  font-size: 13px;
  line-height: 1.54;
}
.vehiclePricingStack .priceBlockItemRebateLabel,
.vehiclePricingStack .rebatesLabel {
  padding-right: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.vehiclePricingStack .priceBlockItemRebateLabel .fa-question-circle,
.vehiclePricingStack .rebatesLabel .fa-question-circle {
  display: none;
}
.vehiclePricingStack .priceBlockItemRebateLabel::after,
.vehiclePricingStack .rebatesLabel::after {
  content: "";
  background-color: #a5a5a5;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  z-index: 1;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("https://cdn.dlron.us/static/industry-automotive/icons/icon_info.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: url("https://cdn.dlron.us/static/industry-automotive/icons/icon_info.svg");
}
.vehiclePricingStack .priceBlockItemRebateValue,
.vehiclePricingStack .priceBlockItemRebate span.pull-right {
  font-weight: 900;
}
.vehiclePricingStack .priceBlockItemRebateButton {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  display: flex;
  align-items: center;
  column-gap: 0.3rem;
}
.vehiclePricingStack .priceBlockItemRebateButtonIcon {
  display: flex;
  align-items: center;
}
.vehiclePricingStack .priceBlockItemRebateButtonIconImage {
  width: 1.6rem;
  display: none;
}
.vehiclePricingStack .priceBlockItemDivider div, .vehiclePricingStack .priceBlockItemDivider hr {
  width: 100%;
  border-top: 2px solid #f4f5f7;
}
.vehiclePricingStack .vehiclePricingDisclaimers .vehiclePricingDisclaimers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.54;
}
.vehiclePricingStack .vehiclePricingDisclaimers .vehiclePricingDisclaimers .defaultDisclaimerText {
  color: #707070;
}
.vehiclePricingStack .vehiclePricingModalDisclaimerToggle .modalDisclaimerToggleLabel {
  display: inline-block;
  margin-right: 2px;
}
.vehiclePricingStack .vehiclePricingModalDisclaimerToggle i {
  font-size: 15px;
}
@media (max-width: 991px) {
  .vehiclePricingStack .btn-lg {
    font-size: 18px;
  }
}

.priceStakDisclaimerModal .modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
.priceStakDisclaimerModal .modal-header,
.priceStakDisclaimerModal .modal-content {
  padding: 5px;
}

.priceStakText--bold {
  font-weight: 700;
}
.priceStakText--italic {
  font-style: italic;
}
.priceStakText--underline {
  text-decoration: underline;
}
.priceStakText--strikethrough {
  text-decoration: line-through;
}

.vdp .vehiclePricingStack .tab-pane[id^=buy-] .vehiclePricingHighlights .priceBlockItemDivider {
  display: none;
}
.vdp .vehiclePricingStack .priceBlock:first-of-type:not(:first-child) {
  padding-top: 20px;
}
.vdp .vehiclePricingStack [id^=finance-] .vehiclePricingHighlights,
.vdp .vehiclePricingStack [id^=lease-] .vehiclePricingHighlights {
  padding-bottom: 17px;
}
.vdp .vehiclePricingStack .vehiclePricingHighlightLabel {
  font-size: 18px;
  line-height: 1.11;
}
.vdp .vehiclePricingStack .vehiclePricingDisclaimers .vehiclePricingDisclaimers {
  padding: 30px 0 0;
}
.vdp .vehiclePricingStack .priceBlockItemDivider {
  margin-left: -20px;
  margin-right: -20px;
}
.vdp .vehicle-details .vehiclePricingStack {
  margin: auto;
}
.vdp .vehicle-details .vehiclePricingStack .vehiclePricingHighlightAmount {
  padding-bottom: 6px;
  line-height: 1;
}
.vdp .vehicle-details .vehiclePricingStack .priceBlocItemPriceValue,
.vdp .vehicle-details .vehiclePricingStack .priceBlockItemRebateValue,
.vdp .vehicle-details .vehiclePricingStack .priceBlockItemRebate span.pull-right {
  font-size: 14px;
  line-height: 1.43;
}
.vdp .vehicle-details .vehiclePricingStack .priceBlockItemDivider {
  margin-top: 14px;
}
.vdp .multi-tabs {
  margin-bottom: 20px;
}

/* The DOM for this phone input comes from a 3rd party, so we cannot add more BEM classes. Override the default styling */
.share-form__group--phone label[for=smslead_phone] {
  width: unset;
}
.share-form__group--phone .control-label {
  display: block;
  text-align: left;
  color: #5c5c5c;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 5px;
  line-height: 1;
}
.share-form__group--phone .form-control {
  width: 100%;
  border-radius: 5px;
  min-height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: normal;
  border: 1px solid #e7e9ed;
  box-shadow: none;
}
.share-form__group--phone .form-control:focus {
  border: 1px solid #9b9b9b;
  box-shadow: none;
}
.share-form__group--phone .form-control::placeholder {
  color: #9b9b9b;
}
.share-form__group--phone .iti {
  /* Flag dropdown trigger  */
  /* Flag dropdown menu  */
}
.share-form__group--phone .iti__selected-flag {
  height: 40px;
}
.share-form__group--phone .iti__arrow {
  border: none;
}
.share-form__group--phone .iti__arrow::before {
  content: "\f107";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 16px;
  line-height: 1;
  transform: translateY(-7px);
  color: #a5a5a5;
}
.share-form__group--phone .iti__country-list {
  border: none;
  border-radius: 5px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
  scrollbar-width: thin;
}
.share-form__group--phone .iti__country-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.share-form__group--phone .iti__country-list::-webkit-scrollbar-track {
  background: #ebecf0;
}
.share-form__group--phone .iti__country-list::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  border-radius: 10px;
}
.share-form__group--phone .iti__country {
  padding: 8px 10px;
  font-size: 16px;
  color: #5c5c5c;
}
.share-form__group--phone .iti__divider {
  display: none;
}
.share-form__group--phone .iti__highlight {
  /* Hover over country */
  background-color: #f4f5f7;
}
.share-form__group--phone .iti__active {
  /* Selected country */
  background-color: #dedfe0;
  font-weight: 700;
}

/* For the checkboxes and disclaimers that are only rendered on certain OEMs. The DOM for these are generated in other partials, so we cannot add more classes. Override the default styling. */
.share-form .share-form__group--oem-checkbox .checkbox {
  padding: 0;
  float: none;
}
.share-form .share-form__group--oem-checkbox input[type=checkbox] {
  display: none;
}
.share-form .share-form__group--oem-checkbox input[type=checkbox]:checked + label::before {
  font-family: "FontAwesome";
  font-size: 14px;
  content: "\f00c";
  color: #ffffff;
  background-color: var(--cta-background-color);
  font-weight: normal;
  border-color: var(--cta-background-color);
}
.share-form .share-form__group--oem-checkbox input[type=checkbox]:disabled + label::before {
  cursor: not-allowed;
}
.share-form .share-form__group--oem-checkbox label {
  margin: 0px;
  color: #5c5c5c;
  display: flex;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.25;
}
.share-form .share-form__group--oem-checkbox label:hover::before {
  cursor: pointer;
}
.share-form .share-form__group--oem-checkbox label::before {
  border-width: 1px;
  border-style: solid;
  border-color: #dcdce2;
  border-radius: 6px;
  background-color: #ffffff;
  content: "";
  width: 20px;
  height: 20px;
  padding: 2px;
  flex: 0 0 auto;
  margin-right: 13px;
  line-height: 1;
}
.share-form .share-form__group--oem-checkbox label small {
  color: #5c5c5c !important;
  font-size: 100%;
}

.share-form {
  /* Override Bootstrap */
  /* Selector increases specificty to override Bootstrap */
}
.share-form .form-group {
  margin: 0;
}
.share-form .form-group .control-label {
  margin: 0;
}
.share-form .form-group .col-lg-4,
.share-form .form-group .col-lg-8 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.share-form__group--text, .share-form__group--text-area, .share-form__group--email {
  padding-top: 20px;
}
.share-form__group--checkbox {
  padding-top: 10px;
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) input[type=checkbox] {
  display: none;
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) input[type=checkbox]:checked + .checkbox::before {
  font-family: "FontAwesome";
  font-size: 14px;
  content: "\f00c";
  color: #ffffff;
  background-color: var(--cta-background-color);
  font-weight: normal;
  border-color: var(--cta-background-color);
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) input[type=checkbox]:disabled + .checkbox::before {
  cursor: not-allowed;
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) .checkbox {
  margin: 0px;
  color: #5c5c5c;
  display: flex;
  padding-left: 0;
  line-height: 1;
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) .checkbox:hover::before {
  cursor: pointer;
}
.share-form__group--checkbox:not(.share-form__group--oem-checkbox) .checkbox::before {
  border-width: 1px;
  border-style: solid;
  border-color: #dcdce2;
  border-radius: 6px;
  background-color: #ffffff;
  content: "";
  width: 20px;
  height: 20px;
  padding: 2px;
  flex: 0 0 auto;
  margin-right: 13px;
}
.share-form .share-form__label {
  display: block;
  text-align: left;
  color: #5c5c5c;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 5px;
  line-height: 1;
}
.share-form .share-form__input {
  width: 100%;
  border-radius: 5px;
  min-height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: normal;
  border: 1px solid #e7e9ed;
  box-shadow: none;
}
.share-form .share-form__input:focus {
  border: 1px solid #9b9b9b;
  box-shadow: none;
}
.share-form .share-form__input::placeholder {
  color: #9b9b9b;
}
.share-form .share-form__checkbox-label {
  font-weight: 400;
  padding-top: 0;
  min-height: auto;
}
.share-form .share-form__checkbox-label:hover {
  cursor: pointer;
}
.share-form .share-form__checkbox-label-text {
  line-height: 1.25;
}
.share-form__expand-panel {
  display: none;
}
.share-form__footer {
  padding-top: 20px;
}
.share-form .share-form__submit {
  border-radius: 5px;
  min-height: 50px;
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.share-form__disclaimer, .share-form__required {
  font-size: 12px;
  color: #5c5c5c;
  text-align: left;
  margin-top: 10px;
  line-height: initial;
}
.share-form--email .share-form__group:first-of-type {
  padding-top: 0;
}
.share-form--email .share-form__group--text-area {
  padding-bottom: 20px;
  border-bottom: 1px solid #dedfe0;
}
.share-form--email .share-form__group--text-area .share-form__input {
  min-height: 80px;
}
.share-form .visitorDisclaimer {
  font-size: 12px;
  color: #5c5c5c;
  text-align: left;
  margin-top: 10px;
  line-height: initial;
  margin: 0;
}
@media (min-width: 500px) {
  .share-form #shareVehicleLeadForm #shareVehicleTextLink {
    border: none;
    padding-top: 0;
  }
}
@media (min-width: 500px) {
  .share-form #shareVehicleLeadForm {
    padding-left: 30px;
    border-left: solid 1px #dedfe0;
  }
}

.share-vehicle {
  /* !important to override inline styles likely coming form Bootstrap or jQuery */
  padding-right: 0px !important;
  z-index: 100000;
  /* Selector increases specificty to override Bootstrap */
  /* Selector increases specificty to override Bootstrap */
  /* Selector increases specificty to override Bootstrap */
  /* Selector increases specificty to override Bootstrap */
}
.share-vehicle__dialog {
  width: 100%;
  min-width: 320px;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
.share-vehicle .share-vehicle__content {
  padding-top: 42px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}
@media (min-width: 500px) {
  .share-vehicle .share-vehicle__content {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.share-vehicle .share-vehicle__close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  z-index: 10;
  opacity: 1;
  font-size: initial;
  width: calc(16px + 20px * 2);
  height: calc(16px + 20px * 2);
}
.share-vehicle__close-icon {
  font-size: 21px;
  color: #9b9b9b;
}
.share-vehicle__header {
  border: none;
  padding: 0;
}
.share-vehicle__title {
  color: #333333;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  text-transform: none;
  line-height: 1.45;
}
.share-vehicle__body {
  padding: 0;
}
.share-vehicle .share-vehicle__copy-link-btn {
  width: 100%;
  border: solid 1px #122532;
  background: #ffffff;
  color: #122532;
  font-size: 16px;
  line-height: 1.25;
  text-transform: none;
  border-radius: 5px;
  min-height: 50px;
}
.share-vehicle .share-vehicle__copy-link-btn.share-vehicle__button--copied {
  background: #5c5c5c;
  border: solid 1px #122532;
  color: #ffffff;
}
.share-vehicle__print-btn {
  width: 100%;
  border: solid 1px #122532;
  background: #ffffff;
  color: #122532;
  font-size: 16px;
  line-height: 1.25;
  text-transform: none;
  border-radius: 5px;
  min-height: 50px;
}
.share-vehicle__panels {
  margin: 0;
}
.share-vehicle .share-panel {
  /* Selector increases specificty to override Bootstrap */
  /* Selector increases specificty to override Bootstrap */
}
.share-vehicle .share-panel.panel {
  margin: 0;
  border: 0;
}
.share-vehicle .share-panel__heading {
  padding: 0;
}
.share-vehicle .share-panel__toggle {
  display: none;
}
.share-vehicle .share-panel__toggle.collapsed .panel-label__icon {
  transform: rotate(180deg);
}
.share-vehicle .share-panel__content.collapse {
  display: block;
}
.share-vehicle .share-panel .share-panel__body.panel-body {
  border: none;
  background: none;
  padding: 0;
}
.share-vehicle .panel-label {
  color: #333333;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  text-transform: none;
  line-height: 1.45;
}
.share-vehicle .panel-label--toggle {
  display: grid;
  grid-template-columns: 1fr auto;
}
.share-vehicle .panel-label__icon {
  font-weight: 700;
}
.share-vehicle--0-forms .share-vehicle__body {
  padding-top: 30px;
}
.share-vehicle--0-forms .share-vehicle__dialog, .share-vehicle--1-forms .share-vehicle__dialog {
  max-width: 682px;
}
.share-vehicle--0-forms .share-vehicle__content, .share-vehicle--1-forms .share-vehicle__content {
  padding-bottom: 40px;
}
@media (min-width: 500px) {
  .share-vehicle--0-forms .share-vehicle__content, .share-vehicle--1-forms .share-vehicle__content {
    padding-bottom: 50px;
  }
}
@media (min-width: 500px) {
  .share-vehicle--1-forms .share-vehicle__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
  }
  .share-vehicle--1-forms .share-vehicle__body--single-panel {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.share-vehicle--1-forms .share-vehicle__actions {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 500px) {
  .share-vehicle--1-forms .share-vehicle__actions {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 30px;
  }
}
.share-vehicle--1-forms .share-vehicle__actions div:not(:first-child) {
  margin-top: 20px;
}
.share-vehicle--1-forms .share-vehicle__panels {
  padding-top: 28px;
  border-top: 1px solid #dedfe0;
}
@media (min-width: 500px) {
  .share-vehicle--1-forms .share-vehicle__panels {
    padding-top: 0;
    padding-left: 30px;
    border-top: none;
    border-left: 1px solid #dedfe0;
  }
  .share-vehicle--1-forms .share-vehicle__panels--single-panel {
    padding-left: 0;
    border-left: unset;
  }
}
.share-vehicle--1-forms .share-panel__content {
  padding-top: 10px;
}
.share-vehicle.share-vehicle--2-forms .share-vehicle__dialog {
  max-width: 720px;
}
.share-vehicle.share-vehicle--2-forms .share-vehicle__content {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-vehicle__content {
    padding-bottom: 30px;
  }
}
.share-vehicle.share-vehicle--2-forms .share-vehicle__actions {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  column-gap: 20px;
  max-width: max-content;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-vehicle__actions {
    padding: 20px 0 10px;
  }
}
.share-vehicle.share-vehicle--2-forms .share-vehicle__copy-link-btn {
  min-height: 32px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.share-vehicle.share-vehicle--2-forms .share-vehicle__print-btn {
  min-height: 32px;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-vehicle__panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 20px;
    border-top: 1px solid #dedfe0;
  }
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-panel--text-me {
    padding-right: 50px;
  }
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-panel--email {
    padding-left: 50px;
    border-left: 1px solid #dedfe0;
  }
}
.share-vehicle.share-vehicle--2-forms .share-panel__toggle {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #dedfe0;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-panel__toggle {
    display: none;
  }
}
.share-vehicle.share-vehicle--2-forms .share-panel__content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.share-vehicle.share-vehicle--2-forms .share-panel__content.collapse:not(.in) {
  display: none;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .share-panel__content {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .share-vehicle.share-vehicle--2-forms .share-panel__content.collapse:not(.in) {
    display: block;
  }
  .share-vehicle.share-vehicle--2-forms .share-panel__content.collapse, .share-vehicle.share-vehicle--2-forms .share-panel__content.collapsing {
    height: auto !important;
  }
}
.share-vehicle.share-vehicle--2-forms .share-panel:last-of-type .share-panel__content {
  padding-bottom: 0;
}
.share-vehicle.share-vehicle--2-forms .panel-label--static {
  display: none;
}
@media (min-width: 500px) {
  .share-vehicle.share-vehicle--2-forms .panel-label--static {
    display: block;
  }
}

.hide-text-me-panel {
  display: none;
}

.vehicle-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-info__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.29em 1.43em 1.43em;
  column-gap: 1.43em;
}
@media (min-width: 992px) {
  .vehicle-info__title {
    padding: 2.29em 2.29em 1.43em;
  }
}
.vehicle-info__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-info--rounded {
  border-radius: 0.36em;
}
.vehicle-info .vehicle-identifiers {
  display: flex;
  align-items: center;
  background-color: #f4f5f7;
  padding: 0.71em 1.43em;
  min-height: 4.29em;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 5px 15px;
}
@media (min-width: 992px) {
  .vehicle-info .vehicle-identifiers {
    padding: 0.71em 2.29em;
  }
}
.vehicle-info .vehicle-identifiers__label {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}
.vehicle-info .vehicle-identifiers__value {
  font-size: 16px;
  font-weight: 700;
}

.info {
  padding: 1.43em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .info {
    padding: 1.43em 2.29em 2.29em;
  }
}
.info__list {
  display: grid;
  gap: 30px;
  list-style: none;
  padding-inline-start: 0;
}
@media (min-width: 400px) {
  .info__list {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
  }
  .info__list--1-item, .info__list--2-item {
    grid-template-rows: repeat(1, auto);
  }
  .info__list--3-item, .info__list--4-item {
    grid-template-rows: repeat(2, auto);
  }
  .info__list--5-item, .info__list--6-item {
    grid-template-rows: repeat(3, auto);
  }
  .info__list--7-item, .info__list--8-item {
    grid-template-rows: repeat(4, auto);
  }
  .info__list--9-item, .info__list--10-item {
    grid-template-rows: repeat(5, auto);
  }
  .info__list--11-item, .info__list--12-item {
    grid-template-rows: repeat(6, auto);
  }
}
.info__item {
  display: flex;
}
.info__details {
  display: flex;
  flex-direction: column;
}
.info__value {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.info__label {
  text-transform: uppercase;
}
.info__icon {
  width: 32px;
  flex-basis: auto;
  margin-right: 7px;
}
.info__icon + .info__value {
  margin-top: 8px;
}
.info__color-icon {
  border: 1px solid #a5a5a5;
  border-radius: 5px;
  display: block;
  margin: 4px 10px 0 4px;
  width: 32px;
  height: 32px;
}
.info .condition-icon,
.info .mileage-icon {
  color: #C5C5C5;
  padding-left: 2px;
}
.info .condition-icon {
  font-size: 30px;
  padding-top: 2px;
}
.info .mileage-icon {
  font-size: 24px;
  padding-top: 4px;
}

.model-review {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.14em;
  row-gap: 0.14em;
  align-items: center;
  margin: 0;
}
.model-review li {
  padding: 0;
}
.model-review li:first-of-type {
  display: flex;
  column-gap: 0.71em;
}
.model-review li:nth-of-type(2) {
  color: #5c5c5c;
}
.model-review .fa {
  color: #F0B23E;
  font-size: 1.21em;
}

.vehicle-floorplan {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-floorplan__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.29em 1.43em 1.43em;
  column-gap: 1.43em;
}
@media (min-width: 992px) {
  .vehicle-floorplan__title {
    padding: 2.29em 2.29em 1.43em;
  }
}
.vehicle-floorplan__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-floorplan__image {
  padding: 1.43em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .vehicle-floorplan__image {
    padding: 1.43em 2.29em 2.29em;
  }
}
.vehicle-floorplan__image img {
  max-width: 100%;
}
.vehicle-floorplan--rounded {
  border-radius: 0.36em;
}
.vehicle-floorplan .anchor-offset {
  scroll-margin-top: 200px; /* offset for direct floorplan link from SRP */
}

.vehicle-highlights {
  display: block;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-highlights__disclaimer {
  padding: 0;
}
.vehicle-highlights__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-highlights__list {
  display: grid;
  gap: 20px;
  margin-bottom: 2.14em;
}
@media (min-width: 400px) {
  .vehicle-highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vehicle-highlights__list.collapsed {
  position: relative;
  max-height: 20rem;
  overflow: hidden;
}
.vehicle-highlights__list.collapsed::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
  bottom: 0;
  left: 0;
}
.vehicle-highlights__list.collapsed .vehicle-highlights__item:nth-child(n+9) {
  display: none;
}
.vehicle-highlights__item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.vehicle-highlights__icon {
  width: 32px;
  height: auto;
  padding: 4px;
  border: 1px solid #a5a5a5;
  border-radius: 5px;
  display: block;
  flex: 0 1 auto;
}
.vehicle-highlights__label {
  font-size: 16px;
  font-weight: 700;
}
.vehicle-highlights__more-less-button {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  text-decoration: underline;
  font-size: 16px;
}
.vehicle-highlights__more-less-button.hide-button {
  display: none;
}
.vehicle-highlights--rounded {
  border-radius: 0.36em;
}
.vehicle-highlights__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.29em 1.43em 1.43em;
  column-gap: 1.43em;
}
@media (min-width: 992px) {
  .vehicle-highlights__title {
    padding: 2.29em 2.29em 1.43em;
  }
}
.vehicle-highlights__contents {
  padding: 1.43em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .vehicle-highlights__contents {
    padding: 1.43em 2.29em 2.29em;
  }
}

.highlights-disclaimer {
  column-gap: 1.43em;
  display: flex;
  align-items: center;
  background-color: #f4f5f7;
  padding: 0.71em 1.43em;
  min-height: 4.29em;
  width: 100%;
  max-width: none;
}
@media (min-width: 992px) {
  .highlights-disclaimer {
    padding: 0.71em 2.29em;
  }
}
.highlights-disclaimer .view-window-sticker .icon-button {
  color: #333333;
  text-align: left;
  display: flex;
  height: 35px;
  align-items: center;
  font-size: 14px;
  padding: 0;
  box-shadow: none;
}
.highlights-disclaimer .view-window-sticker .icon-button__icon, .highlights-disclaimer .view-window-sticker .icon-button__label {
  display: inline-block;
}
.highlights-disclaimer .view-window-sticker .icon-button__icon {
  font-size: 2.77em;
  line-height: 0.85em;
  /* Make the icon itself line up with its content box - otherwise it doesn't line up with the label */
}
.highlights-disclaimer .view-window-sticker .icon-button__icon::before {
  position: relative;
  top: 0.05em;
}
.highlights-disclaimer .view-window-sticker .icon-button__label {
  text-transform: uppercase;
  padding-left: 0.29em;
  line-height: 0.8em;
  padding-left: 0.454em;
}
.highlights-disclaimer .view-window-sticker .icon-button__label-line {
  display: block;
}
.highlights-disclaimer .view-window-sticker .icon-button__label-line--view {
  font-size: 0.6em;
}
.highlights-disclaimer .view-window-sticker .icon-button__label-line--window {
  font-size: 0.7em;
  font-weight: bold;
}
.highlights-disclaimer .view-window-sticker .icon-button__label-line--sticker {
  font-size: 0.8em;
  font-weight: bold;
}
.highlights-disclaimer .view-window-sticker {
  margin: 0;
}
.highlights-disclaimer__text {
  line-height: 20px;
}

.display-days-on-lot {
  text-transform: capitalize;
  font-size: 13px;
}

.vehicle-overview {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-overview__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.29em 1.43em 1.43em;
  column-gap: 1.43em;
}
@media (min-width: 992px) {
  .vehicle-overview__title {
    padding: 2.29em 2.29em 1.43em;
  }
}
.vehicle-overview__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-overview--rounded {
  border-radius: 0.36em;
}

.vehicle-identifiers {
  display: flex;
  align-items: center;
  background-color: #f4f5f7;
  padding: 0.71em 1.43em;
  min-height: 4.29em;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 5px 15px;
}
@media (min-width: 992px) {
  .vehicle-identifiers {
    padding: 0.71em 2.29em;
  }
}
.vehicle-identifiers__label {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}
.vehicle-identifiers__value {
  font-size: 16px;
  font-weight: 700;
}

.overview-specs {
  padding: 1.43em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .overview-specs {
    padding: 1.43em 2.29em 2.29em;
  }
}
.overview-specs__list {
  display: grid;
  gap: 30px;
  list-style: none;
  padding-inline-start: 0;
}
@media (min-width: 400px) {
  .overview-specs__list {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
  }
  .overview-specs__list--1-item, .overview-specs__list--2-item {
    grid-template-rows: repeat(1, auto);
  }
  .overview-specs__list--3-item, .overview-specs__list--4-item {
    grid-template-rows: repeat(2, auto);
  }
  .overview-specs__list--5-item, .overview-specs__list--6-item {
    grid-template-rows: repeat(3, auto);
  }
  .overview-specs__list--7-item, .overview-specs__list--8-item {
    grid-template-rows: repeat(4, auto);
  }
  .overview-specs__list--9-item, .overview-specs__list--10-item {
    grid-template-rows: repeat(5, auto);
  }
  .overview-specs__list--11-item, .overview-specs__list--12-item {
    grid-template-rows: repeat(6, auto);
  }
}
.overview-specs__item {
  display: flex;
  column-gap: 11px;
}
.overview-specs__details {
  display: flex;
  flex-direction: column;
}
.overview-specs__value {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.overview-specs__label {
  text-transform: uppercase;
}
.overview-specs__icon {
  width: 32px;
  height: 32px;
  flex-basis: auto;
  display: grid;
  grid-template-areas: "icon";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.overview-specs__icon-image {
  grid-area: icon;
}
.overview-specs__icon::after {
  content: "";
  display: block;
  background-color: #707070;
  grid-area: icon;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: contain;
  mask-image: var(--img-url);
}
.overview-specs__color-icon {
  border: 1px solid #a5a5a5;
  border-radius: 5px;
  display: block;
  margin: 4px 10px 0 4px;
  width: 32px;
  height: 32px;
}
.overview-specs .condition-icon,
.overview-specs .mileage-icon {
  color: #C5C5C5;
  padding-left: 2px;
}
.overview-specs .condition-icon {
  font-size: 30px;
  padding-top: 2px;
}
.overview-specs .mileage-icon {
  font-size: 24px;
  padding-top: 4px;
}

.vehicle-keyfeatures {
  display: block;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-keyfeatures__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-keyfeatures--rounded {
  border-radius: 0.36em;
}
.vehicle-keyfeatures__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.29em 1.43em 1.43em;
  column-gap: 1.43em;
}
@media (min-width: 992px) {
  .vehicle-keyfeatures__title {
    padding: 2.29em 2.29em 1.43em;
  }
}
.vehicle-keyfeatures__contents {
  padding: 1.43em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .vehicle-keyfeatures__contents {
    padding: 1.43em 2.29em 2.29em;
  }
}
.vehicle-keyfeatures__list {
  display: grid;
  gap: 20px;
  margin-bottom: 2.14em;
}
@media (min-width: 400px) {
  .vehicle-keyfeatures__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vehicle-keyfeatures__list .keyfeature__item {
  display: flex;
}
.vehicle-keyfeatures__list .keyfeature__details {
  display: flex;
  flex-direction: column;
}
.vehicle-keyfeatures__list .keyfeature__value {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.vehicle-keyfeatures__list .keyfeature__label {
  text-transform: uppercase;
}
.vehicle-keyfeatures__list .keyfeature-icon {
  display: grid;
  grid-template-areas: "icon";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 32px;
  flex-basis: auto;
  margin-right: 7px;
}
.vehicle-keyfeatures__list .keyfeature-icon__image {
  grid-area: icon;
}
.vehicle-keyfeatures__list .keyfeature-icon::after {
  content: "";
  display: block;
  background-color: #707070;
  grid-area: icon;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: contain;
  mask-image: var(--img-url);
}

.dealer-comments {
  padding: 2.29em 1.43em;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.dealer-comments--rounded {
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .dealer-comments {
    padding: 2.29em;
  }
}
.dealer-comments__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
  padding-bottom: 20px;
}
.dealer-comments__text {
  font-size: 16px;
  margin-bottom: 1.43em;
}
.dealer-comments__more-less-button {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  text-decoration: underline;
  font-size: 16px;
}
.dealer-comments__more-less-button.hide-button {
  display: none;
}
.dealer-comments .truncate-comments {
  position: relative;
  max-height: 15rem;
  overflow: hidden;
}
.dealer-comments .truncate-comments::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
  bottom: 0;
  left: 0;
}

.feature-highlights {
  padding: 2.29em 1.43em;
  padding-top: 0px;
  border: none;
  margin: 0;
  width: 100%;
  height: 400px;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.feature-highlights.expanded {
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  padding: 0;
}
.feature-highlights--rounded {
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .feature-highlights {
    padding: 2.29em;
    padding-top: 0px;
  }
}

body:has(.feature-highlights.expanded) {
  overflow: hidden;
}

.benefits-highlights {
  padding: 2.29em 1.43em;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.benefits-highlights__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
  padding-bottom: 10px;
}
.benefits-highlights--rounded {
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .benefits-highlights {
    padding: 2.29em;
  }
}
.benefits-highlights .feature-image__button {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
}
.benefits-highlights .feature-image__benefit {
  border: 1px solid #a5a5a5;
  padding: 3px;
  border-radius: 5px;
}
.benefits-highlights .feature-image__reports {
  display: inline-block;
}
.benefits-highlights .no-border {
  border: none;
}
.benefits-highlights .lexus-cetified-disclaimer-link {
  text-decoration: underline;
}
.benefits-highlights__manu-highlights {
  display: contents;
}
.benefits-highlights__eligible-benefits {
  display: contents;
}
.benefits-highlights__icons {
  display: flex;
  flex-wrap: wrap;
}

.vehicle-package {
  height: 100%;
}
.vehicle-package__truncate-button {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  text-decoration: underline;
  font-size: 16px;
}
.vehicle-package__truncate-button.hide-button {
  display: none;
}

.vehicle-package {
  padding: 2.29em 1.43em;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.vehicle-package--rounded {
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .vehicle-package {
    padding: 2.29em;
  }
}
.vehicle-package__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  column-gap: 20px;
}
.vehicle-package__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.vehicle-package__total-price {
  font-size: 2rem;
  margin: 0;
}
.vehicle-package__text {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  font-size: 16px;
}
.vehicle-package__text--truncated {
  position: relative;
  max-height: 20.7rem;
  overflow: hidden;
}
.vehicle-package__text--truncated::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
  bottom: 0;
  left: 0;
}
.vehicle-package .package-info {
  display: grid;
  grid-template-columns: 1fr 8rem;
  grid-template-areas: "name         price" "description  price";
  column-gap: 2rem;
}
.vehicle-package .package-info__name {
  grid-area: name;
}
.vehicle-package .package-info__description {
  grid-area: description;
}
.vehicle-package .package-info__price {
  grid-area: price;
}
.vehicle-package .package-info__name {
  font-size: 16px;
  margin: 0;
  line-height: 1.42;
}
.vehicle-package .package-info__price {
  align-self: start;
  justify-self: end;
  margin: 0;
}

.all-features {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.all-features--rounded {
  border-radius: 0.36em;
}
.all-features__heading {
  padding: 3.2rem 2rem 2rem;
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
@media (min-width: 992px) {
  .all-features__heading {
    padding: 3.2rem 3.2rem 2rem;
  }
}
.all-features__tab-content {
  padding: 1.36em 1.43em 2.29em;
}
@media (min-width: 992px) {
  .all-features__tab-content {
    padding: 1.36em 2.29em 2.29em;
  }
}
.all-features__truncate-button {
  font-size: 16px;
  text-decoration: underline;
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .all-features__truncate-button {
    display: none;
  }
}
.all-features .feature-tabs {
  display: flex;
  list-style: none;
  padding-top: 0;
  padding-left: 1.43em;
  padding-right: 1.43em;
  /* account for scrollbar */
  padding-bottom: 5px;
  margin: 0;
  column-gap: 0.57em;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-width: thin;
  /* Styling for Firefox scrollbars */
}
.all-features .feature-tabs::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.all-features .feature-tabs::-webkit-scrollbar-track {
  background: #ebecf0;
}
.all-features .feature-tabs::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  border-radius: 10px;
}
.all-features .feature-tabs:not(.scrollbar-visible) {
  scrollbar-width: none;
}
.all-features .feature-tabs:not(.scrollbar-visible)::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .all-features .feature-tabs {
    padding-left: 2.29em;
    padding-right: 2.29em;
  }
}
@supports (-moz-appearance: none) {
  .all-features .feature-tabs {
    padding-bottom: 8px;
  }
}
.all-features .feature-tabs.scrollbar-visible {
  padding-bottom: 0;
}
.all-features .feature-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 2.36em;
  border: 1px solid #dcdce2;
  border-radius: 1.18em;
  color: #5c5c5c;
  padding: 0.21em 1.43em;
}
.all-features .feature-tabs__link, .all-features .feature-tabs__link:hover, .all-features .feature-tabs__link:active, .all-features .feature-tabs__link:focus {
  text-decoration: none;
}
.all-features .feature-tabs__link--active {
  border: 2px solid var(--cta-background-color);
  color: var(--cta-background-color);
  padding: 0.14em 1.36em;
}
.all-features .feature-tabs__link--active::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cta-background-color);
  border-radius: 1.18em;
  opacity: 0.05;
}
.all-features .feature-tabs__label {
  font-size: 0.86em;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .all-features .feature-tab-content--truncate-mobile {
    position: relative;
    max-height: 15rem;
    overflow: hidden;
  }
  .all-features .feature-tab-content--truncate-mobile::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
    bottom: 0;
    left: 0;
  }
}
.all-features .feature-tab {
  font-size: 16px;
  /* The mocks called for feature items to be in a multi-column layout. However, feature items can contain any HTML. & > ul:first-child should hopefully account for the vast majority of cases where the features text is a single list, and anything outside of that should be a basic 1-column list to prevent formatting issues */
}
.all-features .feature-tab > ul:first-child {
  padding-inline-start: 2rem;
  margin: 0;
  column-gap: 4rem;
}
@media (min-width: 992px) {
  .all-features .feature-tab > ul:first-child {
    column-count: 2;
  }
}
@media (min-width: 1440px) {
  .all-features .feature-tab > ul:first-child {
    column-count: 3;
  }
}
@media (min-width: 1700px) {
  .all-features .feature-tab > ul:first-child {
    column-count: 4;
  }
}
.all-features .feature-tab li {
  padding-bottom: 8px;
  line-height: 1.3;
  break-inside: avoid;
}

.warranty {
  padding: 2.29em 1.43em;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.warranty--rounded {
  border-radius: 0.36em;
}
@media (min-width: 992px) {
  .warranty {
    padding: 2.29em;
  }
}
.warranty__heading {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #333333;
}
.warranty__content {
  font-size: 16px;
  padding: 1.43em 0 0 0;
  margin-bottom: 20px;
}
.warranty__content--truncated {
  position: relative;
  max-height: 15rem;
  overflow: hidden;
  width: 100%;
}
.warranty__content--truncated::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
  bottom: 0;
  left: 0;
}
.warranty__truncate-button {
  font-size: 16px;
  text-decoration: underline;
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
}
.warranty__CarBravo-benefits ul li::marker {
  content: "✔";
}

.bottom-block {
  display: flex;
  flex-direction: column;
  row-gap: 2.86em;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .bottom-block {
    margin-top: 2.86em;
  }
}
.bottom-block__row {
  column-gap: 2.64em;
}
@media (max-width: 1200px) {
  .bottom-block__row {
    display: flex;
    flex-direction: column;
    row-gap: 2.86em;
  }
}
@media (min-width: 1200px) {
  .bottom-block__row {
    display: flex;
  }
}
.bottom-block__row--features {
  display: block;
}
@media (min-width: 1200px) {
  .bottom-block__item {
    flex: 1 1 50%;
  }
}
.bottom-block .benefits-highlights .modelE-Brochure {
  display: flex;
  gap: 20px;
}

.vehicle-info,
.vehicle-highlights,
.vehicle-keyfeatures,
.dealer-comments,
.benefits-highlights {
  height: 100%;
}

.collapsible-panel {
  border-top: 2px solid #ebecf0;
}
@media (max-width: 991px) {
  .collapsible-panel:last-of-type {
    border-bottom: 2px solid #ebecf0;
  }
}
.collapsible-panel__collapse-toggle, .collapsible-panel__collapse-toggle-mobile {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
}
.collapsible-panel__title-wrapper {
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.collapsible-panel__title-text {
  font-size: 16px;
  font-weight: 700;
}
.collapsible-panel__title-icon {
  line-height: normal;
  font-weight: 700;
}
.collapsed .collapsible-panel__title-icon {
  color: #888;
}
.collapsible-panel__content {
  padding: 0 20px;
}
.collapsible-panel__body {
  /* Flex helps panel to calculate content height properly so it animates smoothly */
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  height: auto;
  transition: height 0.4s, padding 0.4s;
  overflow: hidden;
  box-sizing: content-box;
}
.collapsible-panel:not(.collapsed) .collapsible-panel__title-icon {
  transform: rotate(180deg);
}
.collapsible-panel.collapsed .collapsible-panel__body {
  padding-bottom: 0;
}

.more-info-modal {
  padding-right: 0 !important;
}
.more-info-modal__container {
  position: relative;
  top: 50%;
  transform: translateY(-50%) !important;
  max-width: fit-content;
  margin: auto;
  width: auto;
}
@media (max-width: 991px) {
  .more-info-modal__container {
    width: 520px;
  }
}
@media (max-width: 550px) {
  .more-info-modal__container {
    padding: 15px;
  }
}
.more-info-modal__dialog {
  display: flex;
  justify-content: center;
  align-items: center;
}
.more-info-modal__content {
  box-shadow: 16px 16px 20px #333333;
  max-height: 93vh;
  display: grid;
  grid-template-areas: "header" "body" "footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .more-info-modal__content {
    max-width: clamp(28rem, 53vw, 101.7rem);
  }
}
.more-info-modal__content--rounded {
  border-radius: 1rem;
}

.more-info-header {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.8rem;
  padding: clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.4rem, 11.6vw, 5rem);
}
@media (min-width: 992px) {
  .more-info-header {
    padding: clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.1rem, 6.5vw, 5.5rem) 2.8rem;
  }
}
.more-info-header__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: normal;
}
.more-info-header__close, .more-info-header__close-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.more-info-header__close {
  border: none;
  background: transparent;
  padding: 0;
  text-transform: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-info-header__close-icon {
  font-size: 4rem;
  line-height: 0.8;
}

.more-info-body {
  padding: 0 clamp(2.1rem, 6.5vw, 5.5rem);
  grid-area: body;
  overflow-y: hidden;
}
.more-info-body__text {
  font-size: 1.6rem;
  overflow-y: auto;
  height: 100%;
  padding: 0 clamp(1.1rem, 2.5vw, 7.3rem) 5.5vh 0;
  scrollbar-width: thin;
}
.more-info-body__text::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.more-info-body__text::-webkit-scrollbar-track {
  background: #ebecf0;
}
.more-info-body__text::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  border-radius: 10px;
}

.more-info-footer {
  grid-area: footer;
  background-color: #f4f5f7;
  padding: clamp(1.8rem, 5.5vw, 2.4rem) clamp(2.1rem, 6.5vw, 5.5rem);
  /* Wonky selector to override site template */
}
.more-info-footer--rounded {
  border-radius: 0 0 1rem 1rem;
}
@media (min-width: 992px) {
  .more-info-footer {
    display: flex;
    justify-content: flex-end;
  }
}
.more-info-footer .more-info-footer__close {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 2rem !important;
  line-height: 1;
}
@media (min-width: 992px) {
  .more-info-footer .more-info-footer__close {
    width: auto;
  }
}

.hero-carousel {
  position: relative;
  cursor: auto !important;
}
.hero-carousel__items {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hero-carousel__items::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991px) {
  .hero-carousel__items:hover {
    cursor: grab;
  }
  .hero-carousel__items:hover:active {
    cursor: ew-resize;
  }
}
.hero-carousel__item {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  min-height: 10px;
}
.hero-carousel__item::before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #222;
  background-clip: content-box;
  border: solid;
  border-color: transparent;
  border-width: 2px 0;
  transform: translate(0px, 0px);
}
.hero-carousel__item:not(.square), .hero-carousel__item:not(.square)::before {
  border-radius: 21px;
}
@media (max-width: 991px) {
  .hero-carousel__item:not(.square), .hero-carousel__item:not(.square)::before {
    border-radius: 21px 21px 0 0;
  }
}
.hero-carousel__image {
  max-width: 100%;
  object-fit: contain;
  z-index: 1;
}
.hero-carousel__image--dimmed {
  filter: brightness(50%);
}
.hero-carousel__controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}
.hero-carousel__controls--hover {
  position: absolute;
  height: 100%;
  width: 25%;
  pointer-events: auto;
}
.hero-carousel__controls--hover:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .hero-carousel__controls--hover {
    width: 15%;
  }
  .hero-carousel__controls--hover {
    opacity: 1;
  }
}
.hero-carousel__controls--previous {
  left: 0;
}
.hero-carousel__controls--previous.vertical {
  left: unset !important;
  top: 0 !important;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.hero-carousel__controls--next {
  right: 0;
}
.hero-carousel__controls--next.vertical {
  right: unset !important;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.hero-carousel__view--more {
  position: absolute;
  top: calc(50% - 25px);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 211px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-carousel__control {
  position: absolute;
  width: 40px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  top: calc(50% - 35px);
}
.hero-carousel__control.vertical {
  width: 70px !important;
  height: 40px !important;
  top: unset !important;
}
.hero-carousel__control--previous-btn {
  border-radius: 0 14px 14px 0;
  left: 0;
}
.hero-carousel__control--previous-btn.vertical {
  border-radius: 0 0 14px 14px !important;
  left: unset !important;
}
.hero-carousel__control--next-btn {
  border-radius: 14px 0 0 14px;
  right: 0;
}
.hero-carousel__control--next-btn.vertical {
  border-radius: 14px 14px 0 0 !important;
  bottom: 0 !important;
  right: unset !important;
}
.hero-carousel__control:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.missingImgOverlay {
  position: absolute;
  transition: 0.5s ease;
  opacity: 1;
  text-align: center;
  padding: 0 10px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 280px;
  height: 80%;
  display: grid;
  grid-template-rows: 1fr [title] 47% [subtitle] 1fr;
  align-items: center;
  justify-content: center;
  color: #333333;
}
.missingImgOverlay__title, .missingImgOverlay__subtitle {
  margin: 0;
  text-transform: none;
  font-weight: bold;
}
.missingImgOverlay__title {
  font-size: 28px;
  grid-row-start: title;
  line-height: 1.1;
}
@media (max-width: 639px) {
  .missingImgOverlay__title {
    font-size: 33px;
  }
}
.missingImgOverlay__subtitle {
  font-size: 15px;
  grid-row-start: subtitle;
}
@media (max-width: 639px) {
  .missingImgOverlay__subtitle {
    font-size: 22px;
  }
}

.hero-carousel__image-counter {
  position: absolute;
  min-width: 90px;
  height: 40px;
  padding: 13px 10px;
  right: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 0.93;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 21px;
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  .hero-carousel__image-counter {
    min-width: 61px;
    height: 27px;
    padding: 6px 10px;
    right: 20px;
    bottom: 20px;
    font-size: 10px;
    line-height: 1.4;
  }
}
.hero-carousel__image-counter .image-counter__slash {
  display: inline-block;
  padding: 0 2px;
}

.vdp .hero-carousel__image-link {
  display: flex;
  justify-items: center;
  z-index: 0;
}
.vdp .hero-carousel .missingImgOverlay {
  transform: translate(0%, -100%);
  height: 100%;
  max-width: 100%;
}
.vdp .hero-carousel .missingImgOverlay__title {
  max-width: 280px;
  line-height: 1.1;
}

.evn-video-player-modal {
  width: 100%;
  height: 100%;
  outline: none !important;
  overflow: hidden auto;
  z-index: 1043;
  -webkit-backface-visibility: hidden;
}
.evn-video-player-modal #evn-video-player-container {
  width: 100%;
  height: 100%;
  outline: none !important;
  overflow: hidden auto;
  -webkit-backface-visibility: hidden;
}
.evn-video-player-modal #evn-video-player-container .evnVideoPlayer {
  max-width: 900px;
  width: 99vw;
  max-height: 500px;
  height: 100% !important;
  width: 100% !important;
}
.evn-video-player-modal-container {
  text-align: center;
  width: 100%;
  height: 100%;
  margin: auto;
  pointer-events: none;
}
.evn-video-player-modal-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.evn-video-player-modal-content {
  pointer-events: auto;
  line-height: 0;
  max-width: 900px;
  width: 99vw;
  cursor: auto;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  background-color: black;
}
.evn-video-player-modal-scaler {
  width: 100%;
  max-width: 99vw;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.evn-video-player-modal__close-btn {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px !important;
  width: 100%;
  top: -40px;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  font-size: 28px;
  font-style: normal;
  font-family: Arial, Baskerville, monospace;
  text-decoration: none;
  height: 44px;
  line-height: 44px;
  position: absolute;
}
.evn-video-player-modal__body {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  padding: 0;
}

#testDriveModal .testdriveForm .form-group-disclaimers {
  padding-left: 30px;
}
#testDriveModal .testdriveForm .general-disclaimer {
  margin-bottom: 0;
}
#testDriveModal .testdriveForm .general-disclaimer .help-block {
  margin-bottom: 0;
}
#testDriveModal .testdriveForm .optOutInput, #testDriveModal .testdriveForm .general-disclaimer {
  padding-top: 0;
  margin-bottom: 10px;
}

.ask-ai-section {
  padding: 1.43em 1.43em 1.86em;
}
.ask-ai-section__content {
  padding: 14px;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ask-ai-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5em;
  font-weight: bold;
}
.ask-ai-section__question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ask-ai-section__question {
  padding: 6px 14px;
  background-color: gray;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.ask-ai-section__question:hover {
  background-color: darkgray;
}
.ask-ai-section__input-container {
  display: flex;
  flex-wrap: nowrap;
}
.ask-ai-section__input {
  flex-grow: 1;
  border: 1px solid #e1e1e1;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: #e1e1e1;
  padding: 8px 10px;
  font-size: 0.9em;
}
.ask-ai-section__input:focus {
  outline: none;
}
.ask-ai-section__submit-button {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgb(75, 75, 75);
  border-radius: 0 4px 4px 0;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* TODO: remove if border color classes are added to site templates */
.border-cta {
  border-color: var(--cta-background-color);
}

.border-main {
  border-color: var(--main-color);
}

.contentWrapper {
  background-color: #fff;
}

/* Two column scrolling, only on desktop */
@media (min-width: 992px) {
  html[data-two-column-scrolling-enabled=True] {
    scrollbar-width: none;
    /* Styling for Firefox scrollbars */
  }
  html[data-two-column-scrolling-enabled=True] body::-webkit-scrollbar {
    display: none;
  }
  html[data-two-column-scrolling-enabled=True] .vdp {
    padding-bottom: 20px;
  }
  html[data-two-column-scrolling-enabled=True] .breadcrumb {
    padding-bottom: 30px;
  }
  html[data-two-column-scrolling-enabled=True] .lead-actions {
    padding-right: calc(21px - 3px);
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column {
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 10px;
    padding-right: 0;
    scrollbar-width: thin;
    scrollbar-width: thin;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column::-webkit-scrollbar-track {
    background: #ebecf0;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column::-webkit-scrollbar-thumb {
    background-color: #a5a5a5;
    border-radius: 10px;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column:not(.scrollbar-visible) {
    scrollbar-width: none;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column:not(.scrollbar-visible)::-webkit-scrollbar {
    display: none;
  }
  html[data-two-column-scrolling-enabled=True] .vdp__right-column:not(.scrollbar-visible) {
    padding-right: 10px;
  }
  @supports (-moz-appearance: none) {
    html[data-two-column-scrolling-enabled=True] .vdp__right-column:not(.scrollbar-visible) {
      padding-right: 0;
    }
  }
}
.vdp {
  display: grid;
  justify-content: center;
  grid-template-rows: auto;
  grid-template-areas: "topactions" "vehicleimages" "pricestak" "bottom";
  grid-template-columns: 100%;
}
@media (min-width: 992px) {
  .vdp {
    grid-template-areas: "topactions pricestak" "vehicleimages pricestak" "bottom pricestak";
    grid-template-columns: minmax(auto, 70%) minmax(30%, 485px);
    padding: 30px 20px 10px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: visible;
  }
}
.vdp .top-actions {
  grid-area: topactions;
}
.vdp .vehicle-images,
.vdp .vehicle-images--mod {
  grid-area: vehicleimages;
}
.vdp #vehicle-details {
  grid-area: pricestak;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .vdp #vehicle-details {
    padding-left: 20px;
    min-width: 360px;
    position: sticky;
    align-self: flex-start;
  }
}
@media (min-width: 1080px) {
  .vdp #vehicle-details {
    min-width: 360px;
  }
}
@media (min-width: 1366px) {
  .vdp #vehicle-details {
    min-width: 442px;
  }
}
@media (min-width: 1920px) {
  .vdp #vehicle-details {
    min-width: 557px;
  }
}
@media (min-width: 992px) {
  .vdp #vehicle-details.vdp__right-column--mod {
    max-width: 340px;
  }
}
@media (min-width: 1081px) {
  .vdp #vehicle-details.vdp__right-column--mod {
    max-width: 442px;
  }
}
@media (min-width: 1367px) {
  .vdp #vehicle-details.vdp__right-column--mod {
    max-width: 557px;
  }
}
@media (max-width: 991px) {
  .vdp #vehicle-details {
    max-width: 519px;
  }
}
.vdp .vdp__bottom-block {
  grid-area: bottom;
}
@media (max-width: 991px) {
  .vdp .vdp__bottom-block {
    max-width: 519px;
  }
}
.vdp .top-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  height: 50px;
}
@media (max-width: 991px) {
  .vdp .top-actions {
    padding: 15px 20px 15px 0;
    justify-content: space-between;
    height: auto;
  }
}
@media (max-width: 640px) {
  .vdp .top-actions {
    justify-content: center;
    position: relative;
    padding: 15px 20px 10px;
  }
}
@media (min-width: 992px) {
  .vdp .top-actions--mod {
    max-width: 656px;
  }
}
@media (min-width: 1081px) {
  .vdp .top-actions--mod {
    max-width: 835px;
  }
}
@media (min-width: 1367px) {
  .vdp .top-actions--mod {
    max-width: 1198px;
  }
}
.vdp .top-actions .breadcrumb {
  font-size: 13px;
  line-height: 1.54;
}
@media (max-width: 991px) {
  .vdp .top-actions .breadcrumb {
    display: none;
  }
}
.vdp .top-actions .back-button {
  font-size: 17px;
  height: 34px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 10;
}
@media (min-width: 992px) {
  .vdp .top-actions .back-button {
    display: none;
  }
}
@media (max-width: 640px) {
  .vdp .top-actions .back-button {
    position: absolute;
    left: 0;
  }
}
.vdp .top-actions .lead-actions {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}
.vdp .top-actions .lead-actions .send-to-mobile {
  border-color: transparent;
  padding-right: 0px;
}
@media (max-width: 991px) {
  .vdp .top-actions .lead-actions .send-to-mobile {
    display: none;
  }
}
.vdp .top-actions .lead-actions #confirm-availability {
  z-index: 10;
}
.vdp .top-actions .lead-actions .icon-button {
  width: 100px;
  z-index: 10;
}
.vdp .top-actions .lead-actions .icon-button__label {
  font-size: 0.8em;
  line-height: 0.9em;
}
.vdp .top-actions .lead-actions .icon-button__label-line--mobile {
  font-weight: bold;
}
.vdp .top-actions .lead-action {
  height: 35px;
  padding: 10px 14px 9px 9px;
  font-weight: bold !important;
  font-size: 13px;
  text-transform: none;
  line-height: 0.92;
  border-radius: 5px;
  border-width: 2px;
  white-space: nowrap;
}
.vdp .top-actions .lead-action#send-to-mobile {
  border-color: transparent;
}
@media (max-width: 991px) {
  .vdp .top-actions .lead-action#send-to-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .vdp__grid {
    padding-top: 14px;
  }
}
@media (max-width: 1199px) and (min-width: 991px) {
  .vdp__grid {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .vdp__grid {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .vehicle-images,
  .vehicle-images--mod {
    margin-bottom: 31px;
  }
}

.vdp__bottom-block {
  width: 100%;
}
@media (min-width: 992px) {
  .vdp__bottom-block {
    display: flex;
    flex-direction: column;
  }
  .vdp__bottom-block #cBlock6 {
    order: 1;
  }
}
@media (max-width: 991px) {
  .vdp__bottom-block {
    display: block;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .vdp__bottom-block--mod {
    max-width: 656px;
  }
}
@media (min-width: 1081px) {
  .vdp__bottom-block--mod {
    max-width: 835px;
  }
}
@media (min-width: 1367px) {
  .vdp__bottom-block--mod {
    max-width: 1198px;
  }
}

.vehiclePricingStack .priceBlockItemRebateValue {
  font-weight: 900;
}

.vdp__mazda-cpo {
  margin-bottom: 31px;
  padding: 25px 20px 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(176, 189, 206, 0.3);
}

@media (min-width: 992px) {
  .vehicle-icons-panel-content {
    padding: 0 20px;
  }
}
.vehicle-icons-panel-content:not(:first-child) {
  border-top: 2px solid #f4f5f7;
}

.vehicle-icons-header {
  font-size: 16px;
  font-weight: bold;
  color: #5c5c5c;
  padding: 16px 0 10px 0;
}

.eligible-benefits {
  display: inline-flex;
  flex-wrap: wrap;
}

.manufacturer-highlights {
  display: inline-flex;
  flex-wrap: wrap;
}

#awards-and-accolades {
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
}
#awards-and-accolades #awards-and-accolades-title {
  font-size: 20px;
}
#awards-and-accolades #awards-and-accolades-subtitle {
  font-size: 13.8;
  fill: #266ecd;
}

@media (min-width: 992px) {
  .vdp__bottom-block .vehicle-icons-panel-content {
    display: none;
  }
}

.sitewide-footer-content__disclaimer {
  max-width: 1920px;
  padding: 0 1.43em;
  margin: 0 auto;
}

.accessibilityDisclaimer.container {
  max-width: 1920px;
  width: 100%;
}

/* Override Bootstrap modal styling */
.modal-header {
  border: none;
}

/* prevent bootstrap nonsense from breaking our vehicle dropdowns */
.dropdown-backdrop {
  display: none !important;
}

.general-disclaimer {
  padding-left: 0;
}

/* Conditional Banners */
do-banner[target-area=SrpConditionalBlock],
do-banner[target-area=VdpConditionalBlock] {
  display: block;
  width: 100%;
}

do-banner[target-area=SrpConditionalBlock]:not([content=loaded]),
do-banner[target-area=VdpConditionalBlock]:not([content=loaded]) {
  aspect-ratio: 8/1;
  background-image: url("https://cdn.dlron.us/static/industry-automotive/backgrounds/skeleton-background-image.jpeg");
}

/*# sourceMappingURL=vehicleDetailsPageHoisin.css.map */
