@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
table {
  border-collapse: collapse;
  width: 100%; }

td {
  vertical-align: top; }

/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
  display: block; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*-------- COLORS --------

*/
/***** END RESET *****/
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table; }

.cf:after {
  clear: both; }

.cf {
  *zoom: 1; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*---These are Variables. They are being used in place of the hex color easily changes site colors but updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
.red-btn {
  background: #932A34;
  text-align: center;
  color: #fff;
  margin: 3px;
  border: solid 2px #932A34;
  padding: 14px 24px;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  transition: .3s ease; }

.red-btn:hover {
  background: #000;
  color: #fff;
  cursor: pointer; }

.wrap {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box; }

.pad {
  padding: clamp(25px, 6%, 60px); }

/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box; }

body {
  font-family: "Saira Condensed", sans-serif; }

h1, h2, h3, h4, h5 {
  font-family: "Saira Condensed", sans-serif; }

a {
  text-decoration: none !important; }

/*--- HEADER STYLES ---------------------*/
header {
  width: 100%;
  background: #fff; }

.top-wrapper {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee; }

.top-header {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0; }

.left-top {
  max-width: 360px;
  width: 100%; }
  .left-top img {
    width: 100%;
    display: block; }

.right-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-family: "Saira Condensed", sans-serif; }
  .right-top a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 10px;
    padding: 0 10px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap; }
    .right-top a i {
      -webkit-text-stroke: 1px #932A34;
      color: transparent;
      font-size: 18px;
      font-size: 25px;
      margin-right: 10px; }
    .right-top a p {
      font-size: 19px;
      color: #000;
      letter-spacing: -.5px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 20px; }
      .right-top a p span {
        font-size: 14px;
        color: #333;
        font-weight: 400;
        text-transform: none;
        display: block; }
  .right-top a:hover p {
    color: #932A34;
    transition: .3s ease; }

header {
  width: 100%;
  border-bottom: solid 1px #eee; }

.header-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.head-left {
  width: calc(100% - 300px); }

.head-right {
  width: 300px;
  align-content: center; }

/*-------Search-----------*/
.search-wrapper {
  width: 100%;
  display: flex;
  align-content: center;
  flex-wrap: wrap; }

.search-wrapper .search-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }

.search-wrapper input {
  width: calc(100% - 40px);
  background: #fff;
  border: solid 1px #eee;
  padding: 12px;
  box-sizing: border-box; }

.search-wrapper button {
  border: solid 1px #eee;
  transition: .3s ease;
  width: 40px !important;
  justify-content: center;
  display: flex;
  background: #fff;
  align-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  font-size: 14px;
  color: #932A34; }
  .search-wrapper button i {
    color: #932A34;
    font-size: 18px; }

.search-wrapper button:hover {
  background: #932A34;
  cursor: pointer; }
  .search-wrapper button:hover i {
    color: #fff; }

/*--------Hero---------*/
.cycle-slideshow {
  width: 100%;
  height: 800px;
  position: relative;
  background-color: #000; }

.cycle-slideshow img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  background-color: #000; }

.slide-caption {
  position: absolute;
  bottom: 32%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  max-width: 1200px;
  color: #fff; }
  .slide-caption h1 {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(30px, 6vw, 80px);
    line-height: 1.1;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase; }
  .slide-caption p {
    color: #FFF;
    text-align: center;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase; }
  .slide-caption a {
    margin: 20px auto 0 auto;
    display: block;
    width: 200px; }

.qls h2 {
  color: #000;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 15px 0;
  text-align: center; }

.qls-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px; }
  .qls-row a {
    width: calc(25% - 15px);
    display: block;
    position: relative;
    border-radius: 10px;
    background-color: #000;
    height: 440px;
    transition: .3s ease-in-out; }
    .qls-row a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px; }
    .qls-row a .ql-text {
      position: absolute;
      bottom: 15px;
      left: 15px; }
      .qls-row a .ql-text h3 {
        color: #fff;
        font-family: "Saira Condensed", sans-serif;
        font-weight: 600;
        font-size: 20px;
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
        text-transform: uppercase; }
        .qls-row a .ql-text h3 span {
          font-size: 16px;
          font-weight: 400;
          text-transform: unset; }
  .qls-row a:hover {
    transform: translateY(-10px);
    transition: .3s ease; }

.info-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  width: 100%; }

.left-info {
  width: calc(50% - 40px); }
  .left-info img {
    width: 100%;
    height: 800px;
    object-fit: cover; }
  .left-info h2 {
    color: #000;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(24px, 4vw, 55px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    padding: 40px 0 20px 0; }
  .left-info p {
    font-size: 16px;
    line-height: 22px;
    color: #333; }
  .left-info a {
    margin: 20px 0; }

.right-info {
  width: calc(50% - 40px); }

.black-box {
  width: 100%;
  margin: 15px 0;
  padding: 35px;
  background: linear-gradient(to bottom, #111, #333);
  color: #fff; }
  .black-box .heading-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .black-box .heading-row h2 {
      font-size: 30px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff;
      line-height: 45px; }
      .black-box .heading-row h2 span {
        font-size: 16px;
        font-weight: 400; }
    .black-box .heading-row i {
      -webkit-text-stroke: 1px #932A34;
      color: transparent;
      font-size: 18px;
      font-size: 70px; }
    .black-box .heading-row hr {
      background: #932A34;
      margin: 20px 0 0 !important;
      height: 5px;
      width: 80px;
      border: none; }
  .black-box p {
    font-size: 16px;
    line-height: 22px;
    color: #333;
    font-family: "Saira Condensed", sans-serif;
    color: #fff;
    margin: 20px 0; }
  .black-box a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    margin-top: 15px; }
    .black-box a i {
      font-size: 18px;
      color: #fff;
      padding: 10px 12px;
      background: #932A34;
      margin-left: 20px; }
  .black-box a:hover i {
    transform: translateX(10px);
    transition: .3s ease-in-out; }

.faq-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  width: 100%; }

.faq-left {
  width: calc(50% - 40px); }
  .faq-left img {
    width: 100%;
    height: 800px;
    object-fit: cover; }

.faq-right {
  width: calc(50% - 40px); }
  .faq-right h2 {
    color: #000;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(24px, 4vw, 55px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    padding: 40px 0 20px 0; }

.faq-acc {
  padding-top: 40px; }

.accordion {
  color: #fff;
  margin: 5px;
  cursor: pointer;
  padding: 30px 25px;
  font-size: 16px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  transition: .3s ease;
  justify-content: space-between;
  background: linear-gradient(to bottom, #343434, #151515);
  font-family: "Saira Condensed", sans-serif; }

.accordion:hover {
  transform: translateY(-5px); }

.active {
  background: #111 !important; }

.active {
  border: solid 2px #932A34; }

.panel {
  padding: 0px 10px;
  background-color: #111;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  margin: 5px;
  transition: max-height 0.2s ease-out; }
  .panel a {
    color: #fff; }
  .panel a:hover {
    text-decoration: underline !important; }

.panel p {
  padding: 25px 10px; }

.cont-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 40px; }

.cont-left {
  width: 50%;
  border: solid 1px #fff; }

.cont-right {
  width: 50%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column; }

.map-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }
  .map-bottom a {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    border-right: solid 1px #ccc;
    padding: 5px 30px;
    margin: 10px 0; }
    .map-bottom a span {
      font-size: 14px;
      color: #000;
      font-weight: 400;
      text-transform: unset; }

/*---------Pages----------*/
.page-top {
  width: 100%;
  background: url("/siteart/hero.jpg");
  background-repeat: no-repeat;
  background-color: #000;
  background-position: center center;
  color: #fff;
  text-align: center;
  padding: 90px 20px; }
  .page-top h1 {
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(25px, 2.5vw, 50px);
    font-weight: 700;
    text-transform: uppercase; }
  .page-top p {
    color: #FFF;
    text-align: center;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: uppercase; }

/*--------FORM STYLES--------------------*/
.flexform {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  text-align: left;
  padding: 40px;
  background: radial-gradient(circle, #555, #000);
  color: #fff; }
  .flexform h2 {
    color: #FFF;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(18px, 3vw, 35px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase; }
    .flexform h2 span {
      font-size: 16px;
      font-weight: 400; }
  .flexform hr {
    margin: 20px 0;
    width: 80px;
    height: 5px;
    background: #932A34;
    border: none; }

#formpage {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  text-align: left;
  color: #fff; }
  #formpage label {
    margin: 5px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 0 2px 0; }
  #formpage input, #formpage select {
    padding: 14px;
    border: solid 1px #fff;
    color: #fff !important;
    font-size: 14px;
    background: transparent; }
  #formpage input[type="text"], #formpage input[type="email"], #formpage input[type="date"], #formpage select, #formpage input[type="phone"] {
    width: 100%;
    box-sizing: border-box; }
  #formpage textarea {
    font-family: 'Arial', sans-serif;
    border: solid 1px #fff;
    box-sizing: border-box;
    color: #fff;
    background: transparent;
    width: 100%;
    height: 100px;
    padding: 14px;
    color: #fff !important;
    font-size: 14px; }
  #formpage textarea:focus {
    border: 1px solid #fff;
    border-radius: 2px; }
  #formpage label::placeholder, #formpage select::placeholder, #formpage .textarea::placeholder {
    color: #fff; }

.flex-form {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }

.form-whole {
  width: calc(100% - 10px);
  display: block;
  vertical-align: middle;
  margin: 5px; }

.form-half {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-third {
  width: calc(33.33% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

#formpage .submit-button, #submit-btn button {
  display: inline-block;
  padding: 14px;
  background: #932A34;
  display: block;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: none;
  font-size: 14px;
  text-transform: uppercase; }

#formpage input.submit-button:hover, #submit-btn button:hover {
  transition: ease-out .3s;
  cursor: pointer;
  color: #fff; }

.submit-button, #submit-btn {
  padding: 10px 0px 10px 0px;
  position: relative;
  width: 100%;
  text-align: center; }

.captcha-button {
  display: inline-block; }

#formpage input.submit-button {
  color: #fff !important; }

.include-captcha {
  display: none; }

.CaptchaWhatsThisPanel a {
  color: #fff !important; }

.CaptchaPanel {
  text-align: left !important; }

/*-------- FOOTER STYLES ----------------*/
footer {
  width: 100%;
  color: #fff;
  background-image: url("/siteart/footer-background.jpg");
  background-size: cover;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat; }

.footer {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  padding: 5% 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.footer-left {
  width: 67%;
  padding-right: 30px; }

.foot-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }
  .foot-row .foot-col {
    width: 33%;
    padding: 10px; }
    .foot-row .foot-col p {
      font-size: 22px;
      color: #fff;
      text-transform: uppercase;
      font-family: "Saira Condensed", sans-serif; }
    .foot-row .foot-col hr {
      width: 60px;
      height: 5px;
      background: #932A34;
      border: None;
      margin: 20px 0; }
    .foot-row .foot-col ul {
      margin: 0;
      padding: 0; }
      .foot-row .foot-col ul li {
        list-style: none; }
        .foot-row .foot-col ul li a {
          font-size: 16px;
          line-height: 22px;
          color: #333;
          color: #fff;
          line-height: 30px; }
        .foot-row .foot-col ul li a:hover {
          text-decoration: underline;
          color: #999; }

.footer-right {
  width: 33%;
  margin-top: -140px; }
  .footer-right img {
    width: 100%; }

.copy {
  margin-top: 120px;
  padding: 10px 0;
  border-top: solid 1px #ccc; }
  .copy p {
    font-size: 14px;
    color: #ccc; }

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .check-availability-link,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .email-seller-link,
.body-wrapper > div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper > div:not(.detail-wrapper) button.page-nav {
  background: #932A34 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .view-listing-details-link,
.body-wrapper > div:not(.detail-wrapper) .contact-options a,
.body-wrapper > div:not(.detail-wrapper) .fin-calc-mobile > a,
.body-wrapper > div:not(.detail-wrapper) button.g-recaptcha.button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .apply-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .nuf-button,
.body-wrapper > div:not(.detail-wrapper) .list-error-container .info button,
.body-wrapper > div:not(.detail-wrapper) .mobile-done-button-container .mobile-done-button,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.des-buy-now,
.body-wrapper > div:not(.detail-wrapper) button.selected-facet.ts-button,
.body-wrapper > div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn {
  background: #932A34 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .view-listing-details-link:hover,
.body-wrapper > div:not(.detail-wrapper) .contact-options a:hover,
.body-wrapper > div:not(.detail-wrapper) .fin-calc-mobile > a:hover,
.body-wrapper > div:not(.detail-wrapper) button.g-recaptcha.button:hover,
.body-wrapper > div:not(.detail-wrapper) .email-seller-link:hover,
.body-wrapper > div:not(.detail-wrapper) .mc-nav-controls .mc-icon-navarrow span,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now:hover,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.des-buy-now:hover,
.body-wrapper > div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn:hover {
  background: #000 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .back-button,
.body-wrapper > div:not(.detail-wrapper) .parts-listing-container .mobile-parts-detail-container .dealer-phone-container a {
  color: #000 !important;
  border: 1px solid #000 !important; }

.body-wrapper > div:not(.detail-wrapper) .list-title .list-title-text,
.body-wrapper > div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-title-text span,
.body-wrapper > div:not(.detail-wrapper) .title-media-buttons-heading h1 {
  color: #000 !important;
  line-height: 28px !important; }

.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .fin-calc,
.body-wrapper > div:not(.detail-wrapper) .list-listing-mobile .listing-dealer-info .spec-value,
.body-wrapper > div:not(.detail-wrapper) .fin-calc,
.body-wrapper > div:not(.detail-wrapper) .fin-calc p,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-error .info,
.body-wrapper > div:not(.detail-wrapper) .parts-bottom-section .parts-list-view .parts-list-content .error-message,
.body-wrapper > div:not(.detail-wrapper) .info,
.body-wrapper > div:not(.detail-wrapper) .list-title .list-listings-count,
.body-wrapper > div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count,
.body-wrapper > div:not(.detail-wrapper) .list-top-section .listing-option-bar .list-listings-count,
.body-wrapper > div:not(.detail-wrapper) span.part-list-price.bold,
.body-wrapper > div:not(.detail-wrapper) .dealer-company-header,
.body-wrapper > div:not(.detail-wrapper) .dealer-info h3,
.body-wrapper > div:not(.detail-wrapper) .listing-description-text,
.body-wrapper > div:not(.detail-wrapper) .paging-container .list-page-number,
.body-wrapper > div:not(.detail-wrapper) .paging-container .page-number,
.body-wrapper > div:not(.detail-wrapper) .listing-main-stats .price,
.body-wrapper > div:not(.detail-wrapper) .list-container-flexrow .price-container .price,
.body-wrapper > div:not(.detail-wrapper) h2.listing-portion-title,
.body-wrapper > div:not(.detail-wrapper) .list-listing-mobile .price-container .price,
.body-wrapper > div:not(.detail-wrapper) .compare-listings-container .compare-container .comp-header-img .comp-title-close-cont .compare-title,
.body-wrapper > div:not(.detail-wrapper) .compare-listings-container .compare-container .compare-price,
.body-wrapper > div:not(.detail-wrapper) .rent-title,
.body-wrapper > div:not(.detail-wrapper) .rent-title-details,
.body-wrapper > div:not(.detail-wrapper) span.list-title-text,
.body-wrapper > div:not(.detail-wrapper) a.search-results-link,
.body-wrapper > div:not(.detail-wrapper) h3.listing-portion-title {
  color: #000 !important; }

.body-wrapper > div:not(.detail-wrapper) .mobile-option-bar .mobile-option-bar-filter,
.body-wrapper > div:not(.detail-wrapper) span.listing-prices__retail-price,
.body-wrapper > div:not(.detail-wrapper) span.parts-listings-count {
  color: #000 !important; }

/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1430px) {
  .map-bottom a {
    padding: 5px 15px; } }
@media only screen and (max-width: 1400px) {
  .qls-row a {
    height: 380px; }

  .right-info, .faq-right {
    width: calc(50% - 10px);
    margin-top: -10px; }

  .left-info, .faq-left {
    width: calc(50% - 10px); }

  .info-row, .faq-row {
    gap: 10px; }

  .left-info img {
    height: 760px; }

  .faq-left img {
    height: 700px; } }
@media only screen and (max-width: 1250px) {
  .pad {
    padding: clamp(25px, 8%, 60px) 15px; } }
@media only screen and (max-width: 1200px) {
  .qls-row a {
    width: calc(50% - 15px);
    height: 340px; }

  .map-bottom a {
    font-size: 18px; } }
@media only screen and (max-width: 1100px) {
  .right-top a p {
    display: none; }

  .cycle-slideshow {
    height: 600px; }

  .cycle-slideshow img {
    height: 600px; }

  .info-row, .faq-row {
    flex-direction: column; }

  .faq-left, .left-info, .faq-right, .right-info {
    width: 100%;
    margin-top: 20px; }

  .left-info img, .faq-left img {
    height: 330px; }

  .cont-row {
    flex-direction: column; }

  .cont-left, .cont-right {
    width: 100%;
    margin-top: 20px; }

  .map-bottom {
    justify-content: space-around; }

  .map-bottom a {
    flex: 1; }

  .footer-right {
    margin-top: -80px; } }
@media only screen and (max-width: 1000px) {
  .head-right {
    display: none; } }
@media only screen and (max-width: 900px) {
  .qls-row a {
    width: calc(50% - 15px);
    height: 300px; }

  .footer-right {
    display: none; }

  .footer-left {
    width: 100%;
    padding: 0; } }
@media only screen and (max-width: 800px) {
  .header-wrapper {
    padding: 0;
    width: 100%; }

  .head-left {
    width: 100%;
    padding: 0; }

  .faq-left, .left-info, .faq-right, .right-info {
    margin-top: 10px; } }
@media only screen and (max-width: 700px) {
  .cycle-slideshow {
    height: 500px; }

  .cycle-slideshow img {
    height: 500px; }

  .black-box .heading-row h2 {
    font-size: 25px;
    line-height: 35px; }

  .black-box .heading-row i {
    font-size: 50px; }

  .black-box p {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0; }

  .black-box a {
    font-size: 16px; } }
@media only screen and (max-width: 600px) {
  .right-top {
    display: none; }

  .left-top {
    display: block;
    margin: 10px auto; }

  .qls-row a {
    width: calc(100% - 15px);
    height: 260px; }

  .foot-row {
    flex-direction: column;
    padding: 0 15px; }

  .foot-row .foot-col {
    width: 100%;
    padding: 10px 0; }

  .map-bottom {
    flex-direction: column;
    gap: 10px; }
    .map-bottom a {
      width: 100%;
      border-right: none;
      border-bottom: solid 1px #ccc;
      padding: 10px 0; }

  .black-box {
    padding: 25px; } }
@media only screen and (max-width: 500px) {
  .copy {
    margin-top: 60px; }

  .flex-form {
    padding: 25px; }

  .accordion {
    padding: 20px;
    font-size: 16px; } }
@media only screen and (max-width: 430px) {
  .qls-row a {
    height: 200px; } }
