/* COMMERCIAL PAGE
*****************************************/
/* Inventory ***************************/
.commercial-inv .inventory-header {
    display: none;
}
.bg-gray .palette-bg2.inventory {
    background-color: #f9fafb!important;
}

/* FAQS ***************************/
.faq-main-wrapper {
        background-color: #000000;
        padding: 80px 20px;
        color: #ffffff;
        text-align: center;
    }

    .faq-section-title {
        font-size: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .faq-accent-line {
        width: 100px;
        height: 4px;
        background-color: #d32f2f;
        margin: 0 auto 60px;
    }

    .faq-questions-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-accordion-item {
        background-color: #1a1a1a;
        border-radius: 8px;
        border: 1px solid #333;
        overflow: hidden;
    }

    .faq-question-header {
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
    }

    .faq-answer-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        padding: 0 25px;
        text-align: left;
        color: #b0b0b0;
        line-height: 1.6;
    }

    .faq-accordion-item.active .faq-answer-content {
        max-height: 200px; /* Adjust based on content */
        padding-bottom: 20px;
    }

    .chevron-icon {
        color: #d32f2f;
        font-size: 18px;
        transition: transform 0.3s;
    }

    .faq-accordion-item.active .chevron-icon {
        transform: rotate(180deg);
    }

/* testimonial ***************************/
.reviews-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 20px;
}

.google-reviews {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  max-width: 320px;
  font-family: inherit;
}

.google-reviews:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.reviews-score {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.reviews-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-stars {
  color: #fbbc04;
  font-size: 14px;
}

.reviews-count {
  font-size: 13px;
  color: #555555;
  font-weight: 500;
}

.reviews-cta {
  font-size: 12px;
  color: #1a0dab;
  font-weight: 600;
}

.google-reviews:hover .reviews-cta {
  text-decoration: underline;
}

.badge-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-image-wrapper img {
  max-height: 235px;
  width: auto;
  object-fit: contain;
}


.testimonials-outer-wrapper {
        background-color: #ffffff;
        padding: 80px 20px;
        text-align: center;
    }

    .section-headline-title {
        text-transform: uppercase;
    }

    .headline-accent-underline {
    width: 200px;
    border: none;
    border-top: 4px solid #d32f2f;
    margin: 0 auto 20px;
    }

    .testimonials-grid-layout {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .individual-review-card {
        background-color: #f9f9f9;
        padding: 40px 30px;
        border-radius: 8px;
        text-align: left;
        flex: 1;
        min-width: 300px;
        border: 1px solid #eeeeee;
    }

    .quote-mark-icon {
        color: #d32f2f; /* Updated to red */
        font-size: 30px;
        margin-bottom: 20px;
        display: block;
    }

    .review-body-text {
        font-size: 16px;
        font-style: italic;
        color: #444444;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .review-divider-line {
        border: none;
        border-top: 1px solid #dddddd;
        margin-bottom: 20px;
    }

    .reviewer-company-name {
        font-weight: 800;
        font-size: 16px;
        text-transform: uppercase;
        color: #121212;
        margin-bottom: 5px;
    }

    .reviewer-status-text {
        font-size: 14px;
        color: #777777;
    }
/* process ***************************/
.vehicle-path-container-main {
        padding: 80px 20px;
        color: #ffffff;
        text-align: center;
    }
    .path-heading-text-block {
        text-transform: uppercase;
    }

    .path-custom-divider-line {
        width: 200px;
        border: none;
        border-top: 4px solid #d32f2f;
        margin: 0 auto 60px;
    }

    .steps-collection-grid-layout {
        display: flex;
        justify-content: center;
        align-items: stretch; /* Cards will stretch to match height of the tallest one */
        margin: 0 auto;
        row-gap: 10px;
        column-gap: 0;
        flex-wrap: wrap;
    }

    .individual-process-step-card {
        background-color: #1e1e1e;
        padding: 50px 40px;
        border-radius: 12px;
        text-align: left;
        position: relative;
        /* Forced fixed width so they stay equal */
        flex: 0 0 350px; 
        z-index: 2;
    }

    .path-connector-line {
        display: none;
        height: 4px;
        background-color: #d32f2f;
        flex-grow: 1;
        align-self: center; /* Keeps the line vertically centered between cards */
        z-index: 1;
    }

    @media (min-width: 1400px) {
        .path-connector-line {
            display: block;
        }
    }

    .icon-visual-display-box {
        font-size: 40px;
        color: #d32f2f;
        margin-bottom: 25px;
    }

    .step-number-digit-indicator {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 64px;
        font-weight: 800;
        color: #2a2a2a;
    }

    .process-step-title-header {
        margin: 0 0 15px 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    .process-step-description-content {
        color: #b0b0b0;
        font-size: 16px;
        line-height: 26px;
    }

/* fleet ***************************/
.amc-fleet__wrapper {
  padding: 80px 20px;
  text-align: center;
  font-family: sans-serif;
}

.amc-fleet__title { font-size: 32px; margin-bottom: 10px; }

.amc-fleet__divider {
  width: 200px;
  border: none;
  border-top: 4px solid #d32f2f;
  margin: 0 auto 20px;
}

.amc-fleet__subtitle { color: #666; margin-bottom: 50px; }

.amc-fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto 40px;
}

.amc-fleet-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, outline 0.3s ease, box-shadow 0.3s ease;
}

.amc-fleet-card i {
  color: #d32f2f;
  font-size: 32px;
  margin-bottom: 20px;
}

.amc-fleet-card h3 { font-size: 14px; font-weight: 700; margin: 0 0 10px 0; }
.amc-fleet-card p { font-size: 13px; color: #666; margin: 0; }

.amc-fleet-card:hover {
  transform: scale(1.05);
  outline: 1px solid #d32f2f;
  outline-offset: -1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.amc-fleet-card:hover h3 { color: #d32f2f; }

.amc-fleet__btn {
  display: inline-block;
  background-color: #d32f2f;
  color: #ffffff;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
transition-duration: .3s;
}
.amc-fleet__btn:hover,
.amc-fleet__btn:active,
.amc-fleet__btn:focus {
    background-color: #8a110e;
    border-color: #8a110e;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991.98px) {
  .amc-fleet__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .amc-fleet__grid { grid-template-columns: 1fr; }
}

.amc-financing__wrapper {
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.amc-financing__heading {  }

.amc-financing__hr {
  width: 200px;
  border: none;
  border-top: 4px solid #d32f2f;
  margin: 0 auto 40px;
}

.amc-financing__subtext { font-size: 24px; color: #cccccc; margin-bottom: 50px; }

.amc-financing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  text-align: left;
}

.amc-financing__sub-heading { font-size: 20px; margin-bottom: 20px; color: #ffffff; }

.amc-financing__card {
  background-color: #1a1a1a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #333;
transition-duration: .3s;
}
.amc-financing__card:hover {
  border: 1px solid #d32f2f;
}

.amc-financing__card h4 { font-size: 16px; margin: 0 0 5px 0; }
.amc-financing__card p { font-size: 14px; color: #999; margin: 0; }

.amc-financing__benefits {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #333;
}

.amc-financing__list { list-style: none; padding: 0; margin-bottom: 30px; }
.amc-financing__list li { margin-bottom: 15px; display: flex; align-items: center; }
.amc-financing__list i { 
    color: #b61612;
    margin-right: 15px;
  
}

.amc-financing__cta {
  display: inline-block;
    background-color: #b61612;
    color: #ffffff;
    border-color: #b61612;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
transition-duration: .3s;
}
.amc-financing__cta:hover,
.amc-financing__cta:active,
.amc-financing__cta:focus {
    background-color: #8a110e;
    border-color: #8a110e;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
  .amc-financing__grid { grid-template-columns: 1fr; }
}

.amc-industries__wrapper {
  padding: 80px 20px;
  text-align: center;
}

.amc-industries__title {
}

.amc-industries__divider {
  width: 200px;
  border: none;
  border-top: 4px solid #d32f2f;
  margin: 0 auto 20px;
}

.amc-industries__subtitle {
  font-size: 24px;
  color: #666;
  margin-bottom: 50px;
}

.amc-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.amc-industry-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, outline 0.3s ease, box-shadow 0.3s ease;
}

.amc-industry-card i {
  color: #d32f2f;
  font-size: 32px;
  margin-bottom: 15px;
}

.amc-industry-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #333;
  transition: color 0.3s ease;
}

.amc-industry-card:hover {
  transform: scale(1.05);
  outline: 1px solid #d32f2f;
  outline-offset: -1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.amc-industry-card:hover h3 {
  color: #d32f2f;
}

@media (max-width: 991.98px) {
  .amc-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .amc-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.upfitting-container {
  background-color: #000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.upfitting-title {
}

.upfitting-divider {
  width: 60px;
  border: 0;
  border-top: 3px solid #f9a825;
  margin: 0 auto 20px;
}

.upfitting-subtitle {
  font-size: 24px;
  color: #cccccc;
  margin-bottom: 50px;
}

.upfitting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.upfitting-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid #333;
transition-duration: .3s;
}
.upfitting-card:hover {
  border: 1px solid #d32f2f;
}

.upfitting-card i {
  color: #d32f2f;
  font-size: 24px;
  background: #2a2a2a;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: inline-block;
}

.upfitting-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.upfitting-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

/* Bootstrap lg breakpoint (992px) - 2 columns */
@media (max-width: 991.98px) {
  .upfitting-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Bootstrap md breakpoint (768px) - 1 column */
@media (max-width: 767.98px) {
  .upfitting-grid { grid-template-columns: 1fr; }
}

.amc-features-wrapper {
  padding: 80px 20px;
  text-align: center;
}

.amc-features__title {
}

.amc-features__divider {
  width: 60px;
  border: none;
  border-top: 3px solid #f9a825;
  margin: 15px auto 50px;
}

.amc-features__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.amc-card {
  flex: 1;
  max-width: 300px;
}

.amc-card__icon-wrap {
  width: 70px;
  height: 70px;
  background-color: #d32f2f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.amc-card__title {
    font-size: 18px;
  font-weight8 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.amc-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.amc-features__footer {
  max-width: 700px;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: 15px;
}

@media (max-width: 768px) {
  .amc-features__grid {
    flex-direction: column;
    align-items: center;
  }
}

.v-grid-container {
        display: flex;
       flex-direction: column;
        gap: 30px;
        padding: 40px;
        justify-content: center;
    }

    .v-card-item {
        background: #ffffff;
        border-bottom: 5px solid #d32f2f;
        border-radius: 8px;
        padding: 40px;
        width: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .v-card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .v-header-block {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .v-icon-frame {
        background-color: #d32f2f;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #ffffff;
    }

    .v-title-text {
        margin: 0;
        font-size: 22px;
        color: #333;
        font-weight: 800;
        text-transform: uppercase;
    }

    .v-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .v-list-item {
        padding: 10px 0;
        color: #666;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
    }

    .v-list-item i {
        color: #d32f2f;
        margin-right: 12px;
    }

    .v-cta-button {
        display: inline-block;
        color: #d32f2f;
        font-weight: 700;
        text-decoration: none;
        padding: 10px 0;
        transition: color 0.2s;
    }

    .v-cta-button:hover {
        color: #b71c1c;
        text-decoration: underline;
    }

@media(min-width: 768px) {
.v-grid-container {
       flex-direction: row;
    }
}

/* Hero */
.hero-commercial .container {
    background-color: transparent!important;
}
.hero-commercial {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    background-position: center;
}

/* buttons */
.cv-button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

@media (min-width: 768px) {
  .cv-button-wrapper {
    flex-direction: row;
  }
}

.cv-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: sans-serif;
  text-align: center;
  border: 2px solid;
  outline: none;
}

.cv-btn:active {
  transform: scale(0.98);
}

.cv-btn--primary {
  background-color: #b61612;
  color: #ffffff;
  border-color: #b61612;
}

.cv-btn--primary:hover, .cv-btn--primary:focus {
  background-color: #8a110e;
  border-color: #8a110e;
  color: #ffffff;
  text-decoration: none;

}

.cv-btn--secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cv-btn--secondary:hover, .cv-btn--secondary:focus {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  text-decoration: none;
}

.cv-btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cv-btn--outline:hover, .cv-btn--outline:focus {
  background-color: #ffffff;
  color: #b61612;
  border-color: #ffffff;
  text-decoration: none;
}

.cv-btn:focus {
  box-shadow: 0 0 0 3px rgba(182, 22, 18, 0.4);
}

/* HERO SECTION
*****************************************/
.hero-content-abs {
   position: absolute;
    bottom: 10%;
    left: 0;
    color: #fff;
    width: 100%;
}
.hero-content-abs h1 {
    text-align: left;
    text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content-abs .subheading {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subheading {
    font-size: 16px;
    text-transform: uppercase;
}
.hero-content-abs {
    display: none;
}

.hero-content-sm {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

@media(min-width: 768px) {
.hero-content-sm {
    display: none;
}

.hero-content-abs {
    display: block;
}

.hero-content-inner {
        flex-direction: row;
        justify-content: space-evenly;
       align-items: flex-end;
}
.subheading {
    font-size: 24px;
}
}

/* Button ****/
.hero-bttn {
  display: inline-block;
    max-width: max-content;
    height: max-content;
  background-color: #e10600; /* strong red */
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.hero-bttn:hover {
  background-color: #b80500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  text-decoration: none;
  color: #fff;
}
.hero-bttn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* TYPOGRAPHY
*****************************************/
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* HOMEPAGE - CARDS
*****************************************/
.body-style-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.body-style-card {
  flex: 1 1 calc((100% - 1rem) / 2);
  text-align: center;
  text-decoration: none;
  color: #333;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.body-style-card__image {
  width: 100%;
  height: auto;
  display: block;
}

.body-style-card__label {
  display: block;
  padding: 0.75rem;
  font-weight: 600;
}

.body-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .body-style-card {
    flex: 1 1 calc((100% - 2rem) / 3);
  }
}

@media (min-width: 992px) {
  .body-style-card {
    flex: 1 1 calc((100% - 4rem) / 5);
  }
}


/* VDP
*****************************************/
.pageid-ivd .element-heading-vdpquickcontactform {
    display: none;
}

.pageid-ivd .carguru img {
    max-height: 32px!important;
}

.btn.btn-link {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    display: flex;
    justify-content: center;
   margin-top: 10px;
   margin-bottom: 10px;
}

h5.feature-category {
    font-size: 18px!important;
}

/* INVENTORY
*****************************************/
.carguru {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

div.pull-left:has(.current-criteria-heading) {
    width: -webkit-fill-available;
}

.inv-badges {
    z-index: 3!important;
}

.inventory-photo-column .fa-2x {
    font-size: 24px!important;
}

.inventory-list-container .flex-item .inventory-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.inventory-list-container .flex-item .inventory-panel > .row:last-of-type {
 margin-top: auto;
 margin-bottom: 10px;
}



/* General 
*****************************************/
html {
  scroll-behavior: smooth;
}
body.main-body {
    background-color: #fff;
}
.page-content .container, .page-content .container-fluid {
    background-color: #fff;
}
.bg-gray,
.bg-gray .container {
    background-color: #f9fafb;
}
.bg-black,
.bg-black .container {
    background-color: #000;
}
.bg-red,
.bg-red .container {
    background-color: #d32f2f!important;
}
.bg-black .vehicle-panel-label.accent-color1 {
    color:#b0b0b0 !important;
}

/* INVENTORY GRID - christine
*****************************************/
div#row-b1840f7c60164477a17f0d8ff4ab162b .inventory-details {
    padding-bottom: 10px;
    border-bottom: 1px solid #c4c4c4;
}

.inventory-list-row .inventory-list-container .flex-item .inventory-panel {  
    background: #e3e3e3;
    padding: 0;
}

.inventory-list-row .inventory-photo-column {
    padding: 0;
}

.inventory-list-row .palette-bg1.inventory-photo-column {
    background-color: transparent;
}

.inventory-list-row .palette-bg1.inventory-price-container {
    background-color: #e3e3e3;
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    align-items: center;
    padding: 0;
    gap: 8px;
}

.inventory-list-row .element-type-inventorylistmoreinfo .btn-default {
    display: flex;
    border-radius: 0 !important;
    border: none;
    justify-content: center;
    min-height: 38px;
    align-items: center;
    margin-bottom: 0.5rem;
    background: #000;
    color: #fff;
}

.inventory-list-row .element-type-inventorylistmoreinfo .btn-default:hover, .element-type-inventorylistmoreinfo .btn-default:focus {
    background: #fff;
    color: #000;
    /* border: 2px solid #000; */
}

.inventory-list-row .element-type-inventorylistmenuoptions .inventory-menu-options-wrapper .btn-group {
    padding: 0;
    display: flex;
    width: 100%;
}

.inventory-list-row .inventory-menu-options-wrapper .btn-group > .btn {
    width: 100%;
    padding: 8px 16px;
    height: 38px;
    margin-bottom: 0.5rem;
    border: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
}

.inventory-list-row .inventory-menu-options-wrapper .btn-group > .btn:hover, .inventory-menu-options-wrapper .btn-group > .btn:focus {
    background: #313131;
    color: #fff;
}

.inventory-list-row .inventory-menu-options-wrapper .btn-group.open .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    padding: 0;
    margin: 0;
}

.inventory-list-row .inventory-menu-options-wrapper .dropdown-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 0;
    border-radius: 0;
}

.inventory-list-row .inventory-menu-options-wrapper .dropdown-menu li:hover {
    background: #ffffff;
    border-radius: 0;
}

.inventory-list-row .inventory-menu-options-wrapper .dropdown-menu li a {
    color: #fff;
    display: flex;
    width: 100%;
    background: #000;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-bottom: 1px solid #fff;
    height: 40px;
}

.inventory-list-row .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background-color: #ffffff;
    /* border: 2px solid #000; */
    color: #000;
}

.inventory-list-row label[for^="addCompare"] {
    font-weight: 400;
}

.inventory-list-row label[for^="like"] {
    padding-left: 0.8rem;
}

/* review - making heart not fill
.inventory-list-row label[for^="like"] span {
    font-weight: 300;
} */

.inventory-list-row .pricenote:empty {
  display: none;
}



/* NAVBAR FIX - REVIEW TO DELETE
*****************************************/
.navbar-header,
.navbar-collapse {
    max-width: 100%;
margin: 0px !important;
}

.navbar-fixed-top .navbar-right {
    margin-right: 0;
}

@media (min-width: 768px) {
    .navbar-right {
        margin-right: 0px;
    }
.navbar-default .navbar-collapse {
    padding: 0px;
}
}

/* INVENTORY LIST
*****************************************/
.inventory-header .pull-left:first-of-type {
    margin-top: 4px;
}

/* INVENTORY LIST - SEARCH OPTIONS
*****************************************/
.element-type-inventorylist .btn-group-vertical > .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 4px!important;
}

.inventory-list-row .col-sm-3 b {
    font-size: 1em;
}

.element-type-inventorylist .btn-group-vertical > .btn {
    font-size: 12px;
}
@media (min-width: 768px) {
    .sidebar-search-sticky {
        top: 30px;
    }
}

@media (min-width: 1400px) {
    .element-type-inventorylist .btn-group-vertical > .btn {
        font-size: 14px;
    }
}

@media(max-width: 767.98px) {
.inventory-list-row .sidebar-search-sticky button.navbar-toggle.pull-left,
span.search-options,
.search-options .btn {
    width: 100%;
}
.inventory-list-row .search-options .btn {
    font-size: 18px;
}

.inventory-list-row .sidebar-search-sticky {
    margin-bottom: 15px;
}
}

@media (min-width: 1400px) {
    .inventory-list-row .col-sm-3 b {
        font-size: 1.2em;
    }
}




/* HERO SECTION
*****************************************/
.form-inline .form-control {
    height: 100%;
}
.searchform label {
    display: none;
}

/* FOOTER
*****************************************/
.footer-layout-container {
    background-color: #000;
    color: #fff;
    border-bottom: 1px solid #414141;
}

div .footer-container {
    border: none;
    background-color: #000;
}

.footer-layout-container a {
    color: #fff;
}

/* page bottom */
.page-bottom {
    background-color: #000000!important;
}
.page-bottom .container {
    background-color: #000;
    color: #fff
}
.page-bottom .container a,
.page-bottom .container span,
.page-bottom .container li {
    color: #fff!important;
    font-size: 14px;
}

/* NAVBAR
*****************************************/
.navbar-right-menu-icon .fa {
    font-size: 24px;
}

.navbar-right-menu-icon {
    display: block;
    height: 40px;
    width: 40px;
    font-size: 5px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.navbar-toggle {
    height: 40px;
}


@media (min-width: 768px) {
.navbar-right-menu-icon {
    display: none;
}
.nav.navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
        flex-wrap: wrap;
}
}

/* BANNER
*****************************************/
.custom-banner {
  background: #000;
  padding: 20px;
  color: white;
  text-align: center;
}

.banner-left img {
  width: 100%;
  height: auto;
}

.banner-right {
  display: none;
}

.banner-right p {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.banner-right i {
  margin-right: 8px;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.years-badge {
  max-width: 200px;          /* mobile default */
  height: auto;
  margin-left: 12px;
  padding-left: 12px;
}

@media (min-width: 576px) {
  .years-badge {
    max-width: 350px;
  }
}

@media (min-width: 768px) {
  .custom-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .banner-left img {
    width: 400px;
  }

  .banner-right {
    display: block;
    text-align: right;
  }
  .years-badge {
    max-width: 350px;
  border-left: 1px solid #828282;
  }
}
/* FORM
*****************************************/
.request-form {
    max-width: 800px;
    background-color: #fff;
    margin-inline: auto;
    padding: 30px;
    box-shadow: 0 8px 20px -4px rgba(211, 47, 47, 0.6);
    overflow: visible
}
.form-submit button[type="submit"] {
    background-color: #b61612;
    color: #ffffff;
    border-color: #b61612;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition-duration: .3s;
}
.form-submit button[type="submit"]:hover,
.form-submit button[type="submit"]:active,
.form-submit button[type="submit"]:focus {
    background-color: #8a110e;
    border-color: #8a110e;
    color: #ffffff;
    text-decoration: none;
}

/* SLIDESHOW
*****************************************/
.carousel-control .fa {
    font-size: 18px;
    line-height: 1.8;
}
@media (min-width: 768px) {
.carousel-control .fa {
    font-size: 28px;
}
}


/* CONTAINER

@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 100%;
    }
}*****************************************/


/* MENU 3/19/2026
*****************************************/

.navbar-default {
    background-color: #000000;
}

.navbar .container {
    background-color: #000000;
    border-color: #000000;
    padding: 0;
}

.navbar-default {
    position: relative;
    border-color: #000000;
}

.navbar-default a.menu-heading, .navbar-default > li {
    background-color: #000000 !important;
}

.navbar-default .navbar-nav > li > a {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #ffffff;
}

.navbar-default > li:hover, .navbar-default > li:active, .navbar-default > li:focus, .navbar-default a.menu-heading:hover, .navbar-default a.menu-heading:active, .navbar-default a.menu-heading:focus {
    background-color: #2b2b2b !important;
}

.navbar-default > li.active > a.menu-heading[title="Home"],
.navbar-default > li.menu-selected > a.menu-heading[title="Home"] {
  background-color: transparent !important;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #ffffff;
}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    color: #ffffff;
}

.navbar-default .navbar-nav > li > a[title="Credit Application"] {
    background-color: #b61612 !important;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .navbar-default .navbar-collapse {
        padding: 10px 30px;
    }
}

@media (min-width: 768px) {
    .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
        margin-left: 3rem;
        position: relative;
    }

  .navbar-brand > img {
    position: absolute;
    top: 0;
    left: 0;
   
    margin: -6px 0 !important;
    max-height: 120px !important;
    width: auto !important;
    height: auto !important;
  }
}



/* menu 5/15/26
*********************/
.navbar-default .navbar-brand {
    display: block;
    color: #949494;
}
@media (min-width: 768px) {
.navbar-default .navbar-brand {
    display: none;
}
}