@charset "UTF-8";
.post-type-archive-carstock .site-main {
  min-height: 100vh;
}

.carstock-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  -moz-box-align: center;
  align-items: center;
}
.carstock-header .title-box {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  width: 100%;
  background-color: rgb(238, 242, 246);
  padding: 1rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .carstock-header .title-box {
    -moz-box-pack: center;
    justify-content: center;
    padding: 5.5rem 1.5rem;
  }
}
.carstock-header .title-box h1 {
  font: 2.1876rem/1.3 "Moneta", sans-serif;
  text-align: left;
  margin: 0rem;
}
@media screen and (min-width: 768px) {
  .carstock-header .title-box h1 {
    font: 3.5rem/1.1 "Moneta", sans-serif;
  }
}
.carstock-header .search-box {
  display: none;
  margin-top: -2.5rem;
  border-radius: 99px;
  box-shadow: rgba(16, 24, 40, 0.1) 0px 1px 3px, rgba(16, 24, 40, 0.06) 0px 1px 2px;
}
@media screen and (min-width: 992px) {
  .carstock-header .search-box {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    width: 572px;
    padding: 1rem 1.5rem;
  }
}
.carstock-header .search-box .search-input {
  background-color: rgb(255, 255, 255);
  font: 1.375rem/1.6 "Roboto", sans-serif;
  border: medium;
  cursor: text;
  white-space: nowrap;
  text-decoration: none;
  appearance: none;
  margin-left: 1.125rem;
  width: 100%;
  padding: 0rem;
}

.carstock-content {
  display: flex;
  flex-direction: column;
  margin: 0rem auto;
  padding: 1rem;
  max-width: 1424px;
}
.carstock-content .grid-layout {
  display: grid;
  gap: 0.5rem 1rem;
}
@media screen and (min-width: 480px) {
  .carstock-content .grid-layout {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .carstock-content .grid-layout {
    gap: 1rem;
  }
}
.carstock-content nav {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .carstock-content nav {
    margin-inline: auto;
  }
}
.carstock-content nav .page-numbers {
  background-color: #eef2f6;
  padding: 0.75rem;
  display: inline-block;
  height: 2.5rem;
  min-width: 2.5rem;
  line-height: 1;
  border-radius: 10rem;
  color: rgb(51, 72, 98);
  margin: 0 !important;
}
.carstock-content nav .page-numbers:hover, .carstock-content nav .page-numbers:focus-visible, .carstock-content nav .page-numbers.active {
  background-color: #aec1d4;
}
.carstock-content nav .prev,
.carstock-content nav .next {
  min-width: 7rem;
  width: min-content;
}

.carstock-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 5.5rem;
  position: relative;
}

.load-more {
  display: flex;
  flex-direction: row;
  -moz-box-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0rem;
}
.load-more .button {
  display: inline-flex;
  width: 100%;
  padding: 1rem 2rem;
  -moz-box-pack: center;
  justify-content: center;
  text-align: center;
  -moz-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 26, 59);
  border-radius: 6px;
  border: 1px solid rgb(0, 26, 59);
  cursor: pointer;
  transition: 300ms ease-out;
}
@media screen and (min-width: 768px) {
  .load-more .button {
    width: auto;
  }
}
.load-more .button:focus, .load-more .button:active, .load-more .button:hover {
  outline: none;
  background-color: rgb(3, 46, 102);
  border: 1px solid rgb(3, 46, 102);
}
.load-more .button > span {
  max-width: 86%;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .load-more .button > span {
    width: auto;
    max-width: 100%;
  }
}
.load-more .load-more-button {
  background-color: rgb(238, 242, 246);
  border: 1px solid rgb(238, 242, 246);
  color: rgb(0, 26, 59);
}
.load-more .load-more-button:focus, .load-more .load-more-button:active, .load-more .load-more-button:hover {
  background-color: rgb(227, 232, 239);
  border: 1px solid rgb(227, 232, 239);
}

.carstock-filter {
  display: grid;
  place-items: center;
  -moz-box-align: center;
  row-gap: 24px;
  margin: 1.5rem 0rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .carstock-filter {
    grid-template-columns: 1fr auto 1fr;
    margin: 0 0 3rem;
  }
}
.carstock-filter::after {
  content: " ";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  height: 52px;
  position: absolute;
  bottom: 0px;
  right: -1px;
  width: 51px;
}
@media screen and (min-width: 992px) {
  .carstock-filter::after {
    background: none;
    width: 0px;
  }
}
.carstock-filter .filter-mobile {
  width: 100%;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .carstock-filter .filter-mobile {
    display: none;
  }
}
.carstock-filter .align-left {
  display: none;
}
@media screen and (min-width: 992px) {
  .carstock-filter .align-left {
    display: grid;
    width: 100%;
    justify-items: start;
  }
}
.carstock-filter .align-right {
  display: none;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .carstock-filter .align-right {
    display: grid;
    width: 100%;
    justify-items: end;
  }
}
.carstock-filter .button {
  background-color: rgb(255, 255, 255);
  font: 1rem/1.6 "Roboto", sans-serif;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.75rem 0.9375rem;
  appearance: none;
  position: relative;
}
.carstock-filter .button.filter-button-mobile {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(238, 242, 246);
  color: rgb(0, 26, 59);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .carstock-filter .button.filter-button-mobile {
    width: 60%;
  }
}
.carstock-filter .button.filter-button-mobile div {
  width: 18px;
  height: 18px;
  margin-right: 0.625rem;
}
.carstock-filter .button.filter-button-mobile div svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.carstock-filter .button.filter-button-mobile .filter-notice {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 0.625rem;
  background-color: rgb(255, 210, 218);
  border-radius: 50%;
  opacity: 0;
  font-size: 0.6875rem;
  position: absolute;
  top: -8px;
  right: -7px;
}
.carstock-filter .button.filter-button {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(0, 26, 59);
  color: rgb(255, 255, 255);
  transition: background-color 200 ease-in-out;
  background-color: rgb(0, 26, 59);
}
.carstock-filter .button.filter-button div {
  width: 18px;
  height: 18px;
  margin-right: 0.625rem;
}
.carstock-filter .button.filter-button div > svg > path:last-child {
  fill: #fff;
}
.carstock-filter .button.filter-button:hover, .carstock-filter .button.filter-button:active, .carstock-filter .button.filter-button:focus {
  border: 1px solid rgb(0, 26, 59);
  color: rgb(0, 26, 59);
  background-color: rgb(0, 226, 176);
}
.carstock-filter .button.filter-button:hover > div > svg > path:last-child, .carstock-filter .button.filter-button:active > div > svg > path:last-child, .carstock-filter .button.filter-button:focus > div > svg > path:last-child {
  fill: rgb(0, 26, 59);
}
.carstock-filter .button.categories-button {
  display: inline-block;
  border: medium;
  color: rgb(0, 26, 59);
  transition: 300ms ease-out;
  margin-left: 0.25rem;
}
.carstock-filter .button.categories-button.active, .carstock-filter .button.categories-button:hover, .carstock-filter .button.categories-button:active, .carstock-filter .button.categories-button:focus {
  background-color: rgb(238, 242, 246);
}
.carstock-filter .button.drop-down {
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(205, 213, 223);
  border-radius: 6px;
  color: rgb(0, 26, 59);
  min-width: 120px;
  width: auto;
  z-index: 1;
  transition: border 0.25s ease-in-out;
}
.carstock-filter .button.drop-down .caret {
  width: 24px;
  height: 24px;
  margin-left: 0.25rem;
  transform: rotate(0deg);
  transition: 300ms ease-out;
}
.carstock-filter .button.drop-down:hover {
  border: 1px solid rgb(0, 26, 59);
}
.carstock-filter .button.drop-down:hover > div > svg {
  fill: rgb(0, 226, 176);
}
.carstock-filter .button.drop-down.open {
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(0, 26, 59);
  border-radius: 6px 6px 0px 0px;
  color: rgb(0, 26, 59);
  min-width: 120px;
  width: 250px;
  z-index: 1;
  transition: border 0.25s ease-in-out;
}
.carstock-filter .button.sort-button {
  display: inline-block;
  border: medium;
  border-radius: 0px;
  color: rgb(0, 26, 59);
  text-align: left;
  width: 100%;
}
.carstock-filter .button.sort-button:hover {
  background-color: rgb(238, 242, 246);
}
.carstock-filter .filter-notice {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 0.625rem;
  background-color: rgb(255, 210, 218);
  border-radius: 50%;
  opacity: 1;
  font-size: 0.6875rem;
  position: absolute;
  top: -8px;
  right: -7px;
}
.carstock-filter .categories-filter {
  display: flex;
  margin: 0rem;
  padding: 0 0 1rem 0;
  overflow: scroll;
  width: 100%;
  list-style: none;
  scrollbar-width: thin;
}
@media screen and (min-width: 600px) {
  .carstock-filter .categories-filter {
    -moz-box-pack: center;
    justify-content: center;
    padding: 0rem;
    scrollbar-width: none;
  }
}
.carstock-filter .list {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  list-style: none;
  z-index: 1;
  width: 250px;
  background-color: rgb(255, 255, 255);
  top: 50px;
  right: 0px;
  padding: 0rem 0rem 0.25rem;
  margin: 0rem;
  border-bottom: 1px solid rgb(205, 213, 223);
  border-left: 1px solid rgb(205, 213, 223);
  border-right: 1px solid rgb(205, 213, 223);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: opacity 0.5s 2s;
}
.carstock-filter .list.open {
  opacity: 1;
  display: block;
  visibility: visible;
  border-bottom: 1px solid rgb(0, 26, 59);
  border-left: 1px solid rgb(0, 26, 59);
  border-right: 1px solid rgb(0, 26, 59);
}

.skeleton-loader {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(239, 241, 244);
  border-radius: 10px;
  /*  */
}
.skeleton-loader div::before {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  inset: 0px;
  z-index: 10;
}
.skeleton-loader div::after {
  content: "";
  position: absolute;
  background: rgb(222, 226, 230);
  inset: 0px;
  animation: 1500ms linear 0s infinite normal none running animation-151xhna;
  z-index: 11;
}
.skeleton-loader .skeleton-image {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.skeleton-loader .skeleton-title {
  height: 25px;
  width: 40%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  margin-left: 0.625rem;
}
.skeleton-loader .skeleton-description {
  height: 15px;
  width: 60%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 0.375rem;
  margin-left: 0.625rem;
}
.skeleton-loader .skeleton-info {
  height: 15px;
  width: 80%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 0.375rem;
  margin-bottom: 1.25rem;
  margin-left: 0.625rem;
}
.skeleton-loader .skeleton-price {
  height: 30px;
  width: 30%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  margin-left: 0.625rem;
}

.filter-background, .modal-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 1080;
  background-color: rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transform-origin: right top 0px;
  opacity: 1;
  transition: opacity 0.32s ease-in;
}

.filter-pane {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 1100;
  transform: translateX(0%);
  transition: transform 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .filter-pane {
    width: 400px;
  }
}
.filter-pane .filter-bar {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: fixed;
  overflow-y: scroll;
  top: 0px;
  right: 0px;
  z-index: 109;
  transform: translateX(0%);
  transition: transform 0.3s ease-in;
}
.filter-pane .top-bar {
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(205, 213, 223);
}
@media screen and (min-width: 768px) {
  .filter-pane .top-bar {
    -moz-box-pack: end;
    justify-content: flex-end;
  }
  .filter-pane .top-bar a {
    display: none;
  }
}
.filter-pane .logo {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}
.filter-pane .logo > img {
  width: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (min-width: 768px) {
  .filter-pane .logo > img {
    width: 191px;
  }
}
.filter-pane .close {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(205, 213, 223);
  border-radius: 50%;
  cursor: pointer;
}
.filter-pane .close svg {
  margin: 0.1875rem;
}
.filter-pane .search {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  border: 1px solid rgb(205, 213, 223);
  margin: 1.5rem 1rem 0rem;
  padding: 0.75rem 1rem;
}
@media screen and (min-width: 992px) {
  .filter-pane .search {
    display: none;
  }
}
.filter-pane .search .search-input {
  background-color: rgb(255, 255, 255);
  font: 1.375rem/1.6 "Roboto", sans-serif;
  border: medium;
  cursor: text;
  white-space: nowrap;
  text-decoration: none;
  appearance: none;
  margin-left: 1.125rem;
  width: 100%;
  padding: 0rem;
}
.filter-pane .mobile-sort {
  width: 100%;
  padding: 0rem 1rem;
}
@media screen and (min-width: 992px) {
  .filter-pane .mobile-sort {
    display: none;
  }
}
.filter-pane .mobile-sort .heading {
  font: 1.5rem/1.45 "Roboto", sans-serif;
  margin: 1.5rem 0rem;
  padding: 0;
}
.filter-pane .mobile-sort .sort-list {
  list-style: none;
  padding: 0rem;
  margin: 0rem;
}
.filter-pane .mobile-sort .sort-list li {
  margin: 0.375rem 0rem;
  display: flex;
  -moz-box-align: center;
  align-items: center;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .filter-pane input[type=checkbox], .filter-pane input[type=radio] {
    appearance: none;
    border: 1px solid rgba(0, 26, 59, 0.1);
    height: 18px;
    width: 18px;
    margin: 0rem;
    cursor: pointer;
  }
  .filter-pane input[type=radio] {
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
  }
  .filter-pane input[type=checkbox] {
    border-radius: 4px;
  }
  .filter-pane input[type=checkbox] + label, .filter-pane input[type=radio] + label {
    font: 1rem/1.6 "Roboto", sans-serif;
    cursor: pointer;
  }
  .filter-pane input[type=checkbox]:hover:not(:checked):not(:disabled), .filter-pane input[type=radio]:hover:not(:checked):not(:disabled) {
    border: 1px solid rgb(0, 26, 59);
  }
  .filter-pane input[type=radio]::after {
    content: "";
    display: block;
    left: 3px;
    top: 3px;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: 300ms ease-out;
  }
  .filter-pane input[type=radio]:checked::after {
    background-color: rgb(0, 26, 59);
  }
  .filter-pane input[type=checkbox]:checked {
    background-color: rgb(0, 26, 59);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m18.71 7.21a1 1 0 0 0 -1.42 0l-7.45 7.46-3.13-3.14a1 1 0 1 0 -1.42 1.47l3.84 3.84a1 1 0 0 0 1.42 0l8.16-8.16a1 1 0 0 0 0-1.47z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: cover;
    border: 1px solid rgb(0, 26, 59);
  }
}
.filter-pane .heading {
  font: 500 1.375rem/1.6 "Roboto", sans-serif;
  padding-left: 1rem;
  margin: 1.5rem 0rem;
}
.filter-pane .filter-container {
  padding: 0.3125rem 1rem;
}
.filter-pane .filter-container .filter-title {
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(238, 242, 246);
  color: rgb(0, 26, 59);
  font: 500 1rem/1.6 "Roboto", sans-serif;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  border-width: medium medium 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor transparent;
  border-image: none;
  transition: 300ms ease-out;
}
.filter-pane .filter-container .filter-title:hover {
  background-color: rgb(226, 230, 236);
}
.filter-pane .filter-container .filter-title.open {
  border-radius: 6px 6px 0px 0px;
  border-width: medium medium 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgb(205, 213, 223);
  border-image: none;
}
.filter-pane .filter-container .filter-title.open .arrow {
  transform: rotate(180deg);
}
.filter-pane .filter-container .filter-title .arrow {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  transform: rotate(0deg);
  transition: transform 300ms ease-out;
}
.filter-pane .filter-container .filter-body {
  display: none;
}
.filter-pane .filter-container .filter-body.open {
  display: block;
}
.filter-pane .filter-container .filter-settings {
  background-color: rgb(238, 242, 246);
  border-top: 1px solid rgb(205, 213, 223);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 1rem;
  display: block;
}
.filter-pane .filter-container .filter-settings .filter-item {
  display: inline-block;
  border-radius: 6px;
  background-color: rgb(0, 26, 59);
  padding: 0.25rem 0.9375rem;
  color: rgb(255, 255, 255);
  margin: 0.0625rem 0.625rem 0.125rem 0rem;
}
.filter-pane .filter-container .list {
  margin: 0rem;
  list-style: none;
  background-color: rgb(238, 242, 246);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 1rem;
  width: 100%;
  transform-origin: center top 0px;
  transition: 300ms ease-out;
}
.filter-pane .filter-container .list .item {
  margin: 0.125rem 0rem;
}
.filter-pane .filter-container .list .item .label {
  display: flex;
  -moz-box-pack: start;
  justify-content: flex-start;
  -moz-box-align: center;
  align-items: center;
  cursor: pointer;
}
.filter-pane .filter-container .list .item .label .input {
  margin-right: 0.5rem !important;
  flex-shrink: 0;
}
.filter-pane .filter-container .list .item .count {
  opacity: 0.5;
  font: 0.875rem/1.6 "Roboto", sans-serif;
}
.filter-pane .filter-container .range {
  display: block;
  padding: 1rem;
  background-color: rgb(238, 242, 246);
}
.filter-pane .filter-controls {
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid rgb(205, 213, 223);
  position: sticky;
  bottom: 0px;
  z-index: 10;
}
.filter-pane .filter-controls > * {
  margin-right: 0.3125rem;
}
.filter-pane .button {
  display: inline-flex;
  width: 100%;
  padding: 1rem 2rem;
  -moz-box-pack: center;
  justify-content: center;
  text-align: center;
  -moz-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 26, 59);
  border-radius: 6px;
  border: 1px solid rgb(0, 26, 59);
  cursor: pointer;
  transition: 300ms ease-out;
}
.filter-pane .button > span {
  max-width: 86%;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .filter-pane .button > span {
    width: auto;
    max-width: 100%;
  }
}
.filter-pane .button > svg {
  margin-left: 0.75rem;
}
.filter-pane .button > svg > path {
  transition: 300ms ease-out;
  fill: rgb(0, 26, 59);
}
.filter-pane .button:focus > svg > path, .filter-pane .button:active > svg > path, .filter-pane .button:hover > svg > path {
  fill: rgb(21, 183, 137);
}
.filter-pane .button.main {
  display: inline-flex;
  width: 100%;
  padding: 1rem 2rem;
  -moz-box-pack: center;
  justify-content: center;
  text-align: center;
  -moz-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 26, 59);
  border-radius: 6px;
  border: 1px solid rgb(0, 26, 59);
  cursor: pointer;
  transition: 300ms ease-out;
}
.filter-pane .button.main > svg > path {
  fill: rgb(255, 255, 255);
}
.filter-pane .button.main:focus > svg > path, .filter-pane .button.main:active > svg > path, .filter-pane .button.main:hover > svg > path {
  fill: rgb(21, 183, 137);
}
@media screen and (min-width: 768px) {
  .filter-pane .button.main {
    width: auto;
  }
}
.filter-pane .button.secondary {
  background-color: rgb(238, 242, 246);
  border: 1px solid rgb(238, 242, 246);
  color: rgb(0, 26, 59);
}
@media screen and (min-width: 768px) {
  .filter-pane .button.secondary {
    width: auto;
  }
}
.filter-pane .campaign-filter-container {
  padding: 0rem 1rem 1rem;
}
.filter-pane .campaign-filter-container .campaign-card {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(205, 213, 223);
  border-radius: 6px;
  padding: 1rem;
  cursor: pointer;
  transition: 300ms ease-out;
}
.filter-pane .campaign-filter-container .badge {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: rgb(255, 210, 218);
  border-radius: 6px;
  margin-right: 1rem;
}
.filter-pane .campaign-filter-container .badge img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  display: block;
}
.filter-pane .campaign-filter-container .campaign-text {
  flex: 1 1 0%;
  max-width: 200px;
}
.filter-pane .campaign-filter-container .campaign-title {
  font: 500 1rem/1.6 "Roboto", sans-serif;
  margin-bottom: 0.25rem;
  color: rgb(0, 26, 59);
}
.filter-pane .campaign-filter-container .campaign-description {
  font: 0.875rem/1.6 "Roboto", sans-serif;
  color: rgb(75, 85, 101);
}
.filter-pane .campaign-filter-container .styled-div {
  margin-left: auto;
}
.filter-pane .campaign-filter-container .styled-div .select {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  border: 1px solid rgb(205, 213, 223);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}
.filter-pane .campaign-filter-container .styled-div .select.selected {
  border: 1px solid transparent;
  background-color: rgb(0, 26, 59);
}
.filter-pane .campaign-filter-container .styled-div .select svg {
  margin: 0.1875rem;
  width: 18px;
  height: 18px;
}

.no-results-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}
.no-results-container .no-results-box {
  margin: calc(20% - 1.5rem) 0rem calc(20% - 5.5rem);
  display: flex;
  flex-direction: column;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .no-results-container .no-results-box {
    margin: calc(10% - 1.5rem) 0rem calc(10% - 5.5rem);
  }
}
@media screen and (min-width: 992px) {
  .no-results-container .no-results-box {
    margin: calc(12% - 3.125rem) 0rem calc(12% - 5.5rem);
  }
}
.no-results-container .no-results-box .icon {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(238, 242, 246);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
}
.no-results-container .no-results-box > h2 {
  text-align: center;
  font: 500 1rem/1.6 "Roboto", sans-serif;
  margin: 0rem 0rem 0.5rem;
}
.no-results-container .no-results-box p {
  text-align: center;
  margin: 0rem 0.75rem;
  color: rgb(75, 85, 101);
}
@media screen and (min-width: 768px) {
  .no-results-container .no-results-box p {
    margin: 0rem 10%;
  }
}
@media screen and (min-width: 992px) {
  .no-results-container .no-results-box p {
    margin: 0rem 10%;
  }
}

@keyframes animation-151xhna {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.tax-carstock_category {
  --darkblue: hsl(214, 100%, 12%);
  --darkblue-hover: hsl(214, 100%, 24%);
  --green: hsl(167, 100%, 44%);
  --pink: hsl(349, 100%, 91);
  --grey: hsl(210, 31%, 95%);
}
.tax-carstock_category .carstock-header .title-box {
  padding: 2.5rem 1.5rem;
}
.tax-carstock_category .carstock-header .search-box {
  margin-top: -1.5rem;
}
.tax-carstock_category .carstock-content nav {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .tax-carstock_category .carstock-content nav {
    margin-inline: auto;
  }
}
.tax-carstock_category .carstock-content nav .page-numbers {
  background-color: #eef2f6;
  padding: 0.75rem;
  display: inline-block;
  height: 2.5rem;
  min-width: 2.5rem;
  line-height: 1;
  border-radius: 10rem;
  color: rgb(51, 72, 98);
  margin: 0 !important;
}
.tax-carstock_category .carstock-content nav .page-numbers:hover, .tax-carstock_category .carstock-content nav .page-numbers:focus-visible, .tax-carstock_category .carstock-content nav .page-numbers.active {
  background-color: #aec1d4;
}
.tax-carstock_category .carstock-content nav .prev,
.tax-carstock_category .carstock-content nav .next {
  min-width: 7rem;
  width: min-content;
}
.tax-carstock_category .featured-car-model {
  position: relative;
  isolation: isolate;
  z-index: 0;
  display: grid;
  min-height: 35vh;
  align-items: end;
  padding: 3rem 1rem;
  background-color: var(--darkblue);
  background-image: var(--bgimage);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.tax-carstock_category .featured-car-model::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.tax-carstock_category .featured-car-model .body {
  display: grid;
  gap: 1rem;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
}
.tax-carstock_category .featured-car-model .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 1em 1.5em;
  border: 2px solid var(--darkblue);
  border-radius: 8px;
  background-color: var(--darkblue);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.tax-carstock_category .featured-car-model .btn:hover {
  background-color: var(--darkblue-hover);
}
.tax-carstock_category .related-cars {
  display: grid;
  gap: 2rem;
  padding: 3rem 1rem;
}
.tax-carstock_category .car-models,
.tax-carstock_category .brands {
  display: grid;
  gap: 1rem;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}
.tax-carstock_category .car-models h2,
.tax-carstock_category .brands h2 {
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
.tax-carstock_category .car-models .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 1rem;
}
.tax-carstock_category .brands .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.tax-carstock_category .car-model,
.tax-carstock_category .brand {
  overflow: hidden;
  /* padding: 1rem; */
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  line-height: 1;
}
.tax-carstock_category .car-model img,
.tax-carstock_category .brand img {
  width: 100%;
  height: auto;
}
.tax-carstock_category .car-model a {
  color: inherit;
}
.tax-carstock_category .brand a {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding: 1rem;
  color: inherit;
}
.tax-carstock_category .item-image {
  aspect-ratio: 5/3;
}
.tax-carstock_category .item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.tax-carstock_category .item-body {
  padding: 1rem;
}
.tax-carstock_category .item-title,
.tax-carstock_category .brand-name {
  font-size: 1rem;
  line-height: 1.1;
}
.tax-carstock_category .carstock-links {
  display: grid;
  gap: 1rem;
  padding: 3rem 1rem;
}
.tax-carstock_category .carstock-links-header {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
.tax-carstock_category .carstock-links h2 {
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
.tax-carstock_category .carstock-links .link-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin-block: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
.tax-carstock_category .carstock-links .list-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--grey);
  border-radius: 8px;
  background-color: #fff;
  color: inherit;
}

.car-item {
  --darkblue: rgb(0, 26, 59);
  --brandblue: rgb(3, 46, 102);
  --green: rgb(21, 183, 137);
  --pink: rgb(255, 210, 218);
  --gray: rgb(75, 85, 101);
  --lightgray: rgb(238, 242, 246);
  --lightgray2: rgb(227, 232, 239);
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  align-content: start;
  position: relative;
  border: 1px solid var(--lightgray2);
  border-radius: 6px;
  overflow: hidden;
  color: var(--darkblue);
  text-decoration-line: none;
  text-decoration-color: transparent;
  transition: border-color 250ms ease-in-out;
  cursor: pointer;
}
@media (max-width: 480px) {
  .car-item {
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 0.5rem;
    padding: 0.5rem 0.5rem 0;
  }
}
.car-item a {
  display: block;
  color: inherit;
  text-decoration-line: none;
  text-decoration-color: transparent;
  transition: text-decoration-color 250ms ease-in-out;
}
.car-item:hover {
  border-color: var(--gray);
}
.car-item:hover a {
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}
.car-item .car-image {
  position: relative;
  aspect-ratio: 3/2;
  background-color: #bdbfbf;
  display: flex;
}
@media (max-width: 480px) {
  .car-item .car-image {
    grid-column: 1;
    grid-row: 1;
  }
}
.car-item .car-image picture {
  width: 100%;
}
.car-item .car-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-item .car-image .car-location {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  position: absolute;
  z-index: 1;
  bottom: 6px;
  left: 6px;
  color: var(--gray);
  background-color: var(--lightgray);
  border: 1px solid var(--lightgray2);
  border-radius: 100vmin;
  padding: 2px 6px;
  font-size: 0.8rem;
}
@media (min-width: 480px) {
  .car-item .car-image .car-location {
    top: 0.5rem;
    right: 0.5rem;
    bottom: auto;
    left: auto;
    gap: 0.25rem;
    padding: 0.25em 0.5em;
    font-size: 0.9rem;
  }
}
.car-item .car-image .car-location svg {
  display: block;
  width: 16px;
  height: 16px;
}
.car-item .car-image .car-campaigns {
  display: none;
}
@media (min-width: 480px) {
  .car-item .car-image .car-campaigns {
    position: absolute;
    z-index: 1;
    bottom: 0.5rem;
    left: 0.5rem;
    display: flex;
    gap: 0.25rem;
  }
}
.car-item .car-image .car-campaigns .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 6px;
  background-color: rgb(255, 210, 218);
  line-height: 1;
}
.car-item .car-image .car-campaigns .badge img {
  display: block;
  width: 24px;
  height: 24px;
}
.car-item .car-header {
  display: grid;
  gap: 0.5rem;
  align-items: start;
  align-content: space-between;
  min-height: 90px;
}
@media (max-width: 480px) {
  .car-item .car-header {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 480px) {
  .car-item .car-header {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 1040px) {
  .car-item .car-header {
    min-height: 110px;
  }
}
.car-item .car-header hgroup {
  display: grid;
  gap: 0.25rem;
  align-content: start;
}
.car-item .car-title {
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 600;
  text-overflow: ellipsis;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}
.car-item .car-description,
.car-item .car-location {
  max-height: 2.34rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--gray);
  text-overflow: ellipsis;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}
.car-item .car-info {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  max-height: 1.1rem;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  hyphens: auto;
  word-wrap: break-word;
}
.car-item .car-info li {
  display: inline-block;
}
.car-item .car-info li + li::before {
  content: "·";
  display: inline-block;
  margin-inline: 0.25rem;
}
.car-item .car-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  justify-items: start;
  border-top: 1px solid var(--lightgray);
  padding: 0.25rem 0;
}
@media (max-width: 480px) {
  .car-item .car-prices {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
@media (min-width: 480px) {
  .car-item .car-prices {
    padding: 0.5rem 1rem;
  }
}
.car-item .car-prices .price {
  position: relative;
  isolation: isolate;
  z-index: 0;
  line-height: 1.2;
}
.car-item .car-prices .price .unit {
  font-size: 0.7rem;
}
.car-item .car-prices .price .tiny-text {
  font-size: 0.7rem;
  color: var(--gray);
}
.car-item .car-prices .sale .value,
.car-item .car-prices .sale .unit {
  font-weight: 500;
}
.car-item .car-prices .sale.onsale::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(0% - 1px);
  left: -4px;
  z-index: -1;
  width: 90%;
  height: 20px;
  background-color: rgb(255, 210, 218);
  clip-path: polygon(0 15%, 98% 0, 100% 85%, 2% 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding: 100px;
}

.single-carstock .site-main {
  --darkblue: rgb(0, 26, 59);
  --brandblue: rgb(3, 46, 102);
  --green: rgb(21, 183, 137);
  --pink: rgb(255, 210, 218);
  --gray: rgb(75, 85, 101);
  --lightgray: rgb(238, 242, 246);
  --lightgray2: rgb(227, 232, 239);
}
.back-arrow {
  display: flex;
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem;
}
.back-arrow a {
  display: flex;
  align-items: center;
  color: inherit;
}

.carstock-single {
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "image" "info" "highlights" "carcontent";
  gap: 1rem;
  color: var(--darkblue);
}
@media (min-width: 992px) {
  .carstock-single {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "image image info" "highlights highlights info" "carcontent carcontent info";
  }
}
.carstock-single .back-arrow {
  display: none;
}
@media (min-width: 992px) {
  .carstock-single .back-arrow {
    display: inline-flex;
    width: fit-content;
    -moz-box-align: center;
    align-items: center;
    margin: 2rem 0rem;
    color: rgb(0, 26, 59);
    text-decoration: underline;
    transition: 300ms ease-out;
  }
}
.carstock-single .main-swiper {
  border-radius: 8px;
}
.carstock-single .thumb-swiper {
  border-radius: 8px;
}
.carstock-single .thumb-swiper .swiper-slide {
  cursor: pointer;
}
.carstock-single .carousel {
  isolation: isolate;
  min-width: 100%;
  grid-area: image;
}
.carstock-single .carousel .main-swiper {
  position: relative;
}
.carstock-single .carousel .main-swiper .swiper-slide {
  aspect-ratio: 1170/780;
}
.carstock-single .carousel .main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carstock-single .carousel .thumb-swiper .swiper-slide {
  width: 100px;
  height: 80px;
}
.carstock-single .carousel .thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) grayscale(90%);
}
.carstock-single .carousel .thumb-swiper .swiper-slide:hover img, .carstock-single .carousel .thumb-swiper .swiper-slide:focus img {
  filter: sepia(0%) grayscale(0%);
}
.carstock-single .carousel .thumb-swiper .swiper-slide-thumb-active img {
  filter: sepia(0%) grayscale(0%);
}
.carstock-single .open-btn,
.carstock-single .btn-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  aspect-ratio: 1;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 0.35rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.carstock-single .open-btn svg,
.carstock-single .btn-compare svg {
  display: block;
  width: 24px;
}
.carstock-single .open-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
.carstock-single .btn-compare {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transition: background-color 200ms ease-in-out;
}
.carstock-single .btn-compare:hover, .carstock-single .btn-compare:focus {
  color: #fff;
}
.carstock-single .btn-compare[data-state=add]:hover, .carstock-single .btn-compare[data-state=add]:focus {
  background-color: rgb(21, 183, 137);
}
.carstock-single .btn-compare[data-state=remove] {
  background-color: rgb(21, 102, 183);
}
.carstock-single .btn-compare[data-state=remove]:hover, .carstock-single .btn-compare[data-state=remove]:focus {
  background-color: rgb(183, 21, 51);
}
.carstock-single .car-head {
  grid-area: info;
}
.carstock-single .car-head .wrap {
  display: grid;
  gap: 0.5rem;
  grid-auto-flow: row;
  grid-auto-rows: auto;
  align-items: start;
  align-content: start;
  padding: 1rem 1rem;
  background-color: #eee;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .carstock-single .car-head .wrap {
    position: sticky;
    top: 120px;
  }
}
@media (min-width: 992px) {
  .carstock-single .car-head .wrap {
    padding: 1rem 2rem;
  }
}
.carstock-single .car-head .title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .carstock-single .car-head .title {
    font-size: 2.2rem;
  }
}
.carstock-single .car-head .sub-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray);
}
@media (min-width: 992px) {
  .carstock-single .car-head .sub-title {
    font-size: 1.5rem;
  }
}
.carstock-single .car-head .status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: var(--darkblue);
  padding: 5px 12px 4px;
  border-radius: 0.25rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.carstock-single .car-head .price {
  margin-top: 0.5rem;
}
.carstock-single .car-head .price .label {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray);
}
.carstock-single .car-head .price .current {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: fit-content;
}
.carstock-single .car-head .price .current .value,
.carstock-single .car-head .price .current .currancy {
  font-size: 2rem;
  font-family: "Moneta", sans-serif;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 992px) {
  .carstock-single .car-head .price .current .value,
  .carstock-single .car-head .price .current .currancy {
    font-size: 3rem;
  }
}
.carstock-single .car-head .price .previus {
  margin-top: 0.25rem;
}
.carstock-single .car-head .price .previus .value,
.carstock-single .car-head .price .previus .currancy {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.carstock-single .car-head .price.offer .current::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  background-color: var(--pink);
  clip-path: polygon(0 15%, 98% 0, 100% 85%, 2% 100%);
}
@media (min-width: 992px) {
  .carstock-single .car-head .price.offer .current::after {
    transform: scale(1.2);
  }
}
.carstock-single .car-head .finace {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.carstock-single .car-head .loan {
  grid-column: span 2;
}
.carstock-single .car-head .loan,
.carstock-single .car-head .private-lease,
.carstock-single .car-head .business-lease {
  margin-top: 0.5rem;
}
.carstock-single .car-head .loan .current,
.carstock-single .car-head .private-lease .current,
.carstock-single .car-head .business-lease .current {
  font-size: 0.8rem;
  line-height: 2;
}
.carstock-single .car-head .loan a,
.carstock-single .car-head .private-lease a,
.carstock-single .car-head .business-lease a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
}
.carstock-single .car-head .loan .label,
.carstock-single .car-head .private-lease .label,
.carstock-single .car-head .business-lease .label {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.carstock-single .car-head .loan .value,
.carstock-single .car-head .loan .currancy,
.carstock-single .car-head .private-lease .value,
.carstock-single .car-head .private-lease .currancy,
.carstock-single .car-head .business-lease .value,
.carstock-single .car-head .business-lease .currancy {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  font-weight: 500;
}
.carstock-single .car-head .cta {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carstock-single .car-head .cta .btn-cta {
  --bg: var(--lightgray);
  --border: var(--darkblue);
  --text: var(--darkblue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1em;
  background-color: var(--bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}
@media (min-width: 992px) {
  .carstock-single .car-head .cta .btn-cta {
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .carstock-single .car-head .cta .btn-cta {
    padding: 1em 2em;
  }
}
@media (min-width: 992px) {
  .carstock-single .car-head .cta .btn-cta {
    font-size: 1rem;
  }
}
.carstock-single .car-head .cta .btn-cta.green {
  --bg: var(--green);
  --border: var(--green);
  --text: #fff;
}
.carstock-single .car-head .cta .btn-cta.blue {
  --bg: var(--darkblue);
  --border: var(--darkblue);
  --text: #fff;
}
.carstock-single .highlights {
  grid-area: highlights;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.carstock-single .highlights .highlight {
  display: flex;
  flex-basis: content;
  align-items: center;
  justify-content: center;
}
.carstock-single .highlights .highlight-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.carstock-single .highlights .highlight-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.carstock-single .car-content {
  grid-area: carcontent;
  grid-template-areas: "car-information" "car-description" "car-equipment" "car-data" "car-documents";
  display: grid;
  gap: 1.5rem;
}
.carstock-single .car-description {
  grid-area: car-description;
}
.carstock-single .car-description-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.carstock-single .car-description-body > * {
  margin-bottom: 1rem;
}
.carstock-single .car-description-body > *:last-child {
  margin-bottom: 0;
}
.carstock-single .car-description-body > ul,
.carstock-single .car-description-body > ol {
  margin-left: 1.5rem;
}
.carstock-single .car-description-body li {
  margin-bottom: 0.5rem;
  max-width: 70ch;
  text-wrap: pretty;
}
.carstock-single .car-information {
  grid-area: car-information;
}
.carstock-single .car-information-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.carstock-single .car-information-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .carstock-single .car-information-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }
}
.carstock-single .car-information-list .list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem;
  border-bottom: 1px dotted var(--gray);
}
.carstock-single .car-information-list .label {
  display: flex;
  align-items: center;
}
.carstock-single .car-information-list .label [data-tippy-content] {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 100vmin;
  margin-left: 1rem;
}
.carstock-single .car-information-list .label [data-tippy-content] svg {
  display: block;
  width: 16px;
  height: auto;
  line-height: 1;
}
.carstock-single .car-information-list .value {
  text-align: right;
}
.carstock-single .car-equipment {
  grid-area: car-equipment;
  position: relative;
  display: grid;
  max-height: 300px;
  overflow: hidden;
  transition: max-height 1000ms ease-in-out;
}
.carstock-single .car-equipment.show {
  max-height: 100%;
  padding-bottom: 4rem;
}
.carstock-single .car-equipment-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.carstock-single .car-equipment-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .carstock-single .car-equipment-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }
}
.carstock-single .car-equipment-list .list-item {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px dotted var(--gray);
}
.carstock-single .car-equipment-list .label {
  display: flex;
}
.carstock-single .car-equipment-list .value {
  text-align: right;
}
.carstock-single .car-equipment .toggle-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 1rem;
}
.carstock-single .car-equipment .toggle-equipment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  background-color: var(--lightgray);
  border: 2px solid var(--darkblue);
  border-radius: 8px;
  cursor: pointer;
}
.carstock-single .car-equipment .toggle-equipment:hover {
  background-color: var(--lightgray2);
}
.carstock-single .car-equipment .toggle-equipment .more,
.carstock-single .car-equipment .toggle-equipment .less {
  display: none;
}
.carstock-single .car-equipment .toggle-equipment[aria-expanded=false] .more {
  display: block;
}
.carstock-single .car-equipment .toggle-equipment[aria-expanded=true] .less {
  display: block;
}
.carstock-single .car-data {
  grid-area: car-data;
}
.carstock-single .car-data-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.carstock-single .car-data .car-data-list + .list-sub-title {
  margin-top: 0.75rem;
}
.carstock-single .car-data-list-group {
  margin-bottom: 1rem;
}
.carstock-single .car-data-list-group .toggle-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--lightgray2);
  border-radius: 4px;
  background-color: var(--lightgray);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}
@media (min-width: 992px) {
  .carstock-single .car-data-list-group .toggle-button {
    padding: 0.5rem 1rem;
  }
}
.carstock-single .car-data-list-group .toggle-button svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  transition: transform 200ms ease-in-out;
  color: var(--gray);
}
.carstock-single .car-data-list-group .toggle-button[aria-expanded=false] svg {
  transform: rotate(-90deg);
}
.carstock-single .car-data-list-group .toggle-button[aria-expanded=true] {
  border-radius: 4px 4px 0 0;
}
.carstock-single .car-data-list-group .toggle-button[aria-expanded=true] svg {
  transform: rotate(360deg);
}
.carstock-single .car-data-list-group .list-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}
.carstock-single .car-data-list-group .toggle-wrapper {
  display: none;
  padding: 0.5rem;
  border: 1px solid var(--lightgray2);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}
@media (min-width: 992px) {
  .carstock-single .car-data-list-group .toggle-wrapper {
    padding: 1rem;
  }
}
.carstock-single .car-data-list-group .toggle-wrapper.open {
  display: block;
}
.carstock-single .car-data-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.carstock-single .car-data-list .list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-bottom: 1px dotted var(--gray);
}
.carstock-single .car-data-list .label {
  display: flex;
  align-items: start;
}
@media (min-width: 992px) {
  .carstock-single .car-data-list .label {
    align-items: center;
  }
}
.carstock-single .car-data-list .label [data-tippy-content] {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 100vmin;
  margin-left: 1rem;
}
.carstock-single .car-data-list .label [data-tippy-content] svg {
  display: block;
  width: 16px;
  height: auto;
  line-height: 1;
}
.carstock-single .car-data-list .value {
  text-align: right;
}
.carstock-single .car-documents {
  grid-area: car-documents;
}
.carstock-single .car-documents-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.carstock-single .car-documents-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}
@media (min-width: 992px) {
  .carstock-single .car-documents-list {
    grid-template-columns: 1fr 1fr;
  }
}
.carstock-single .car-documents-list a {
  color: inherit;
}
.carstock-single .car-documents .card {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #cdd5df;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s ease-out;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}
.carstock-single .car-documents .card .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #ffd2da;
  border-radius: 6px;
}
.carstock-single .car-documents .card .badge svg {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: cover;
}
.carstock-single .car-documents .card .sub-title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.carstock-single .car-documents .card .cta {
  font-size: 0.875rem;
  color: #4b5565;
}

.finace-action {
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .finace-action {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem 2rem;
  }
}
.finace-action-title {
  grid-column: 1/-1;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.finace-action-options {
  grid-column: 1/-1;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .finace-action-options {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 1rem 2rem;
  }
}
.finace-action .finace-options {
  grid-column: 1/-1;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
}
@media (min-width: 992px) {
  .finace-action .finace-options {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 1rem 2rem;
  }
}
.finace-action .buttons {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
}
@media (min-width: 600px) {
  .finace-action .buttons {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .finace-action .buttons {
    display: grid;
    gap: 0.75rem;
    grid-row: span 2;
  }
}
.finace-action .price-info-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid rgb(205, 213, 223);
  padding: 1rem;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  transition: 300ms ease-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .finace-action .price-info-card {
    grid-template-columns: 75px 1fr;
  }
}
.finace-action .price-info-card.active {
  background-color: rgba(21, 183, 137, 0.1);
  border: 1px solid rgb(0, 26, 59);
}
.finace-action .price-info-card.active .btn-icon {
  background-color: rgba(21, 183, 137, 0.3);
}
.finace-action .price-info-card .btn-icon {
  display: none;
}
@media (min-width: 992px) {
  .finace-action .price-info-card .btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    background-color: var(--lightgray);
    padding: 0.25rem;
    border-radius: 6px;
  }
}
.finace-action .price-info-card .btn-icon img {
  width: 90%;
}
.finace-action .price-info-card .btn-icon svg {
  width: 35px;
  height: 35px;
}
.finace-action .price-info-card .btn-details {
  display: grid;
  align-items: center;
}
@media (min-width: 992px) {
  .finace-action .price-info-card .btn-details {
    align-content: start;
    text-align: left;
  }
}
.finace-action .price-info-card .btn-details .name {
  font-weight: 500;
  line-height: 1.2;
}
.finace-action .price-info-card .btn-details .details {
  font-size: 0.8125rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .finace-action .price-info-card .btn-details .details {
    display: none;
  }
}
.finace-action .price-info-card:hover {
  border: 1px solid rgb(0, 26, 59);
}
.finace-action .price-info-card:hover .config-button {
  border-bottom: 1px solid rgb(21, 183, 137);
  color: rgb(21, 183, 137);
}
@media (min-width: 992px) {
  .finace-action .finace-calculator {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.finace-action .finace-calculator .down-payment,
.finace-action .finace-calculator .duration,
.finace-action .finace-calculator .residual {
  --slider-height: 10px;
  --slider-bg: rgba(0, 26, 59, 0.1);
  --slider-connect-bg: rgb(0, 26, 59);
  --slider-handle-width: 40px;
  --slider-handle-height: 40px;
  --slider-handle-ring-color: rgb(0, 26, 59, 0.1);
}
.finace-action .finace-calculator .slider-horizontal {
  margin-top: 30px;
  margin-bottom: 30px;
}
.finace-action .finace-calculator .slider-touch-area {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M3,8H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm18,8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z"></path></svg>');
  padding: 10px;
  transform: rotate(90deg);
}
.finace-action .finace-calculator .data-table {
  margin-bottom: 1rem;
}
.finace-action .finace-calculator .table-header, .finace-action .finace-calculator .table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.1em 1em;
}
.finace-action .finace-calculator .table-data {
  padding: 0.4em 0;
}
.finace-action .finace-calculator .table-header {
  border-bottom: 1px solid rgb(205, 213, 223);
  padding: 0.5em 1em;
}
.finace-action .finace-calculator .data-table {
  border: 1px solid rgb(205, 213, 223);
}
.finace-action .finace-calculator strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  .finace-action .finace-information {
    grid-column: 2/span 2;
    display: grid;
    gap: 1rem;
  }
}
.finace-action .finace-information .legal {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: start;
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.3;
}
@media (min-width: 480px) {
  .finace-action .finace-information .legal {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
  }
}
.finace-action .finace-information .legal .icon {
  color: rgb(157, 0, 0);
}
.finace-action .finace-information .legal .icon svg {
  display: block;
  height: 3rem;
  width: 3rem;
  fill: rgb(157, 0, 0);
}
.finace-action .leasing-promos {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .finace-action .leasing-promos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .finace-action .leasing-promos .leasing-header {
    grid-column: span 2;
  }
}
.finace-action .leasing-promos .leasing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.5rem;
  padding: 1rem;
  align-content: start;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.finace-action .leasing-promos .leasing-card .image {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.finace-action .leasing-promos .leasing-card .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.finace-action .leasing-promos .leasing-card .content {
  display: grid;
  align-content: start;
}
.finace-action .leasing-promos .leasing-card .content .description {
  font-size: 0.9rem;
}
.finace-action .leasing-promos .leasing-card .content p, .finace-action .leasing-promos .leasing-card .content ul {
  margin-bottom: 0.125rem;
}
.finace-action .leasing-promos .leasing-card .content ul {
  margin-left: 1.25rem;
}
.finace-action .leasing-promos .leasing-card .content a {
  text-decoration: underline;
}
.finace-action .leasing-promos .leasing-card .promo-details {
  margin-top: 1rem;
}
.finace-action .leasing-promos .leasing-card .promo-details dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.125rem 0;
  font-size: 0.8rem;
}
.finace-action .leasing-promos .leasing-card .promo-details dt, .finace-action .leasing-promos .leasing-card .promo-details dd {
  border-bottom: 1px dotted #ccc;
}
.finace-action .leasing-promos .leasing-card .promo-details dt {
  font-weight: 500;
}
.finace-action .leasing-promos .leasing-card .lease-cost {
  margin-top: 0.5rem;
}
.finace-action .leasing-promos .leasing-card .lease-cost span {
  font-weight: 500;
}

.payment-modal-box {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  z-index: 105;
}

.payment-modal {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(205, 213, 223);
  z-index: 1100;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
}
@media screen and (min-width: 480px) {
  .payment-modal {
    height: auto;
    width: calc(100vw - 40px);
    max-width: 700px;
    border-radius: 6px;
  }
}
.payment-modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 25px;
  height: 25px;
  z-index: 101;
  cursor: pointer;
  border: 1px solid rgb(205, 213, 223);
  padding: 0.125rem;
  border-radius: 50%;
  transition: border-color 300ms ease-out;
}
.payment-modal .modal-content {
  margin: auto;
}
@media screen and (min-width: 480px) {
  .payment-modal .modal-content {
    width: 100%;
    max-width: 700px;
  }
}
.payment-modal .modal-content > h4 {
  margin: auto;
  margin-bottom: 0rem;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font: 500 1rem/1.6 "Roboto", sans-serif;
  border-bottom: 1px solid rgb(205, 213, 223);
}
.payment-modal .modal-content .description {
  margin: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(205, 213, 223);
}
.payment-modal .modal-content .down-payment, .payment-modal .modal-content .duration, .payment-modal .modal-content .residual {
  padding: 0rem 1rem;
}
.payment-modal .modal-content .down-payment > label, .payment-modal .modal-content .duration > label, .payment-modal .modal-content .residual > label {
  margin: 1rem 0rem 0rem;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
  font: 1rem/1.6 "Roboto", sans-serif;
  color: rgb(0, 26, 59);
}
.payment-modal .modal-content .price-info {
  padding: 0.75rem 1.5rem;
  padding-top: 1.5rem;
}
.payment-modal .modal-content .price-info > h4 {
  font: 500 1rem/1.6 "Roboto", sans-serif;
  margin-bottom: 0.3125rem;
}
.payment-modal .modal-content .price-info > p {
  font: 0.75rem/1.4 "Roboto", sans-serif;
  color: rgb(128, 140, 157);
}

.facility {
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-content: start;
}
@media (min-width: 992px) {
  .facility {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.facility-title {
  grid-column: 1/-1;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.facility-details {
  display: grid;
  align-items: start;
  align-content: start;
  grid-auto-flow: row;
  grid-auto-rows: min-content;
  gap: 2rem;
}
.facility-contact {
  display: grid;
  gap: 0.5rem;
}
.facility-address {
  font-style: normal;
}
.facility-address .name {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
.facility-find-us, .facility-phone, .facility-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.facility-find-us a, .facility-phone a, .facility-link a {
  color: inherit;
  text-decoration: underline;
}
.facility-find-us svg, .facility-phone svg, .facility-link svg {
  display: block;
  width: 16px;
}
.facility-open-hours-title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
.facility-open-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.facility-open-hours-list .list-item {
  display: grid;
  grid-template-columns: 1fr auto;
}
.facility-contacts {
  display: grid;
  align-content: start;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .facility-contacts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .facility-contacts {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }
}
.facility-contacts-title {
  grid-column: 1/-1;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
.facility-contacts .agent {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  border: 1px solid var(--lightgray2);
  border-radius: 0.5rem;
  padding: 1rem;
}
.facility-contacts .agent-image {
  aspect-ratio: 1;
  width: 4rem;
  background-color: var(--lightgray);
  border: 1px solid var(--lightgray2);
  border-radius: 100vmin;
  overflow: hidden;
}
.facility-contacts .agent-image img {
  width: 100%;
  height: auto;
}
.facility-contacts .agent-name {
  font-size: 1rem;
  font-weight: 500;
}
.facility-contacts .agent-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.facility-contacts .agent-contact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  margin-top: 0.5rem;
}
.facility-contacts .agent-contact a {
  display: block;
  color: inherit;
  text-decoration: underline;
}
.facility .message {
  grid-column: 1/-1;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: var(--lightgray);
  border-radius: 8px;
}
.facility .message .form-contact {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  padding: 2rem 1rem;
}

.extra-content {
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem 1rem 3rem;
  display: grid;
  gap: 2rem;
}
.extra-content-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}
.extra-content .new-car .featured-car-model {
  border-radius: 8px;
  overflow: hidden;
}
.extra-content .new-car .featured-car-model a {
  display: grid;
  color: white;
  line-height: 1;
  position: relative;
  isolation: isolate;
  z-index: 0;
}
.extra-content .new-car .featured-car-model .image {
  aspect-ratio: 4/2;
  z-index: 0;
}
@media (min-width: 992px) {
  .extra-content .new-car .featured-car-model .image {
    aspect-ratio: 6/2;
  }
}
.extra-content .new-car .featured-car-model .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-content .new-car .featured-car-model h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  right: 1rem;
}
@media (min-width: 992px) {
  .extra-content .new-car .featured-car-model h3 {
    font-size: 1.6rem;
  }
}
.extra-content .in-stock {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}
.extra-content .in-stock h3 {
  font-family: Roboto;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
}
.extra-content .in-stock-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .extra-content .in-stock-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .extra-content .in-stock-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.extra-content .links {
  display: grid;
  gap: 1rem;
}
.extra-content .links-title {
  font-family: Roboto;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
}
.extra-content .links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.extra-content .links-list a {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid #eee;
  border-radius: 8px;
  color: inherit;
  font-weight: 500;
}
.extra-content .links-list a:hover, .extra-content .links-list a:focus {
  background-color: #eee;
  border-color: #ccc;
}
.extra-content .campaigns {
  display: grid;
  gap: 1rem;
}
.extra-content .campaigns-title {
  font-family: Roboto;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
}
.extra-content .campaigns-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .extra-content .campaigns-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .extra-content .campaigns-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.extra-content .campaigns-list .card a {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(205, 213, 223);
  border-radius: 6px;
  padding: 1rem;
  transition: 300ms ease-out;
  cursor: pointer;
}
.extra-content .campaigns-list .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  background-color: rgb(255, 210, 218);
  border-radius: 6px;
}
.extra-content .campaigns-list .card-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.extra-content .campaigns-list .card-body {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: 0;
}
.extra-content .campaigns-list a {
  color: inherit;
}
.big-slideshow-open {
  overflow: hidden;
}

.big-slideshow {
  position: fixed;
  inset: 0;
  z-index: 9999;
  isolation: isolate;
  display: none;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.85);
}
.big-slideshow.open {
  display: grid;
}
.big-slideshow .close-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 2.5rem;
  padding: 0.25rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .big-slideshow .close-btn {
    top: 2rem;
    right: 2rem;
  }
}
.big-slideshow .close-btn svg {
  display: block;
  width: 28px;
  height: 28px;
}
.big-slideshow .swiper {
  aspect-ratio: 1170/780;
  max-width: 98%;
  max-height: 98%;
}
@media (min-width: 992px) {
  .big-slideshow .swiper {
    max-width: 1170px;
  }
}
.big-slideshow .swiper-slide img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .big-slideshow .swiper .swiper-button-prev,
  .big-slideshow .swiper .swiper-button-next {
    display: none;
  }
}

.carstock-single .swiper img,
.big-slideshow .swiper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.carstock-single .swiper .swiper-slide,
.big-slideshow .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carstock-single .swiper + .swiper,
.big-slideshow .swiper + .swiper {
  margin-top: 0.625rem;
}
.carstock-single .swiper .swiper-button-prev, .carstock-single .swiper .swiper-button-next,
.big-slideshow .swiper .swiper-button-prev,
.big-slideshow .swiper .swiper-button-next {
  --swiper-navigation-size: 24px;
  transition: 0.35s ease-in-out;
  opacity: 1;
  padding: 0.75rem;
  color: rgb(0, 26, 59);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
}
.carstock-single .swiper .swiper-pagination-bullet,
.big-slideshow .swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: var(--lightgray);
}
.carstock-single .swiper .swiper-pagination-bullet-active,
.big-slideshow .swiper .swiper-pagination-bullet-active {
  background-color: var(--green);
}

.compare-cars {
  display: none;
}
.compare-cars.show {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  position: relative;
  width: 96%;
  max-width: 1228px;
  margin-inline: auto;
  padding: 1rem;
  background-color: white;
}
.wrapper h2 {
  font-size: 2rem;
}
.wrapper .close-compare-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}
.wrapper .close-compare-modal svg {
  display: block;
  width: 24px;
  height: 24px;
}

.main-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: repeat(7, auto);
  padding: 2rem 0;
}

.grid-labels,
.grid-values {
  grid-row: 1/-1;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0.25rem 0.5rem;
  min-height: 560px;
}

.grid-labels {
  grid-column: 1;
  grid-template-columns: 1fr;
}
.grid-labels div {
  border-bottom: 1px dotted #ddd;
}
.grid-labels div:first-of-type, .grid-labels div:last-of-type {
  border-bottom: 0px;
}

.grid-values {
  grid-column: 2;
  grid-auto-flow: column;
  grid-auto-columns: 230px;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-padding: 1rem;
  scroll-snap-type: x proximity;
  scroll-snap-stop: always;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .grid-values {
    grid-auto-columns: 300px;
  }
}
.grid-values ::-webkit-scrollbar {
  width: 5px;
}

.car {
  grid-row: 1/-1;
  display: grid;
  grid-template-rows: subgrid;
  background-color: #fefefe;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  min-height: 560px;
}
.car h2 {
  font-size: 1.2rem;
}
.car .image {
  position: relative;
  aspect-ratio: 4/3;
}
.car img {
  display: block;
  max-width: 100%;
  height: auto;
}
.car > div {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.car > div ::-webkit-scrollbar {
  width: 2px;
}
.car .remove-car {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 4px;
  background-color: rgba(255, 0, 0, 0.25);
  border: 0px solid #ddd;
  border-radius: 8px;
  color: red;
  cursor: pointer;
}
.car .remove-car svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: red;
}
.car .remove-car:hover {
  background-color: rgb(255, 0, 0);
}
.car .remove-car:hover svg {
  fill: white;
}

/*# sourceMappingURL=new-carstock.css.map */
