/* === FLEX CONTAINERS === */
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-center {
  justify-content: center !important;
  align-items: center !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

/* Default */
.justify-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

/* Small (≥576px) */
@media (min-width: 576px) {
  .justify-sm-start {
    justify-content: flex-start !important;
  }

  .justify-sm-center {
    justify-content: center !important;
  }

  .justify-sm-end {
    justify-content: flex-end !important;
  }

  .justify-sm-between {
    justify-content: space-between !important;
  }

  .justify-sm-around {
    justify-content: space-around !important;
  }
}

/* Medium (≥768px) */
@media (min-width: 768px) {
  .justify-md-start {
    justify-content: flex-start !important;
  }

  .justify-md-center {
    justify-content: center !important;
  }

  .justify-md-end {
    justify-content: flex-end !important;
  }

  .justify-md-between {
    justify-content: space-between !important;
  }

  .justify-md-around {
    justify-content: space-around !important;
  }
}

/* Large (≥992px) */
@media (min-width: 992px) {
  .justify-lg-start {
    justify-content: flex-start !important;
  }

  .justify-lg-center {
    justify-content: center !important;
  }

  .justify-lg-end {
    justify-content: flex-end !important;
  }

  .justify-lg-between {
    justify-content: space-between !important;
  }

  .justify-lg-around {
    justify-content: space-around !important;
  }
}

/* Extra Large (≥1200px) */
@media (min-width: 1200px) {
  .justify-xl-start {
    justify-content: flex-start !important;
  }

  .justify-xl-center {
    justify-content: center !important;
  }

  .justify-xl-end {
    justify-content: flex-end !important;
  }

  .justify-xl-between {
    justify-content: space-between !important;
  }

  .justify-xl-around {
    justify-content: space-around !important;
  }
}

/* Extra Extra Large (≥1400px) */
@media (min-width: 1400px) {
  .justify-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-xxl-center {
    justify-content: center !important;
  }

  .justify-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-xxl-between {
    justify-content: space-between !important;
  }

  .justify-xxl-around {
    justify-content: space-around !important;
  }
}

.align-start {
  align-items: flex-start !important;
}

.align-center {
  align-items: center !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-stretch {
  align-items: stretch !important;
}

/* === TEXT ALIGN === */
.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

@media (min-width: 576px) {
  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-end {
    text-align: right !important;
  }
}

@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .text-md-end {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-end {
    text-align: right !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .text-xl-end {
    text-align: right !important;
  }
}

/* === GAP UTILITIES === */
.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

@media (max-width: 767px) {
  .gap-4 {
    gap: 10px !important;
  }
}

.gap-5 {
  gap: 2rem !important;
}

@media (max-width: 767px) {
  .sm-gap-0 {
    gap: 0;
  }
}

/* === RESPONSIVE FLEX DIRECTION === */
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }
}

/* ----------------------- Flex End -----------------------*/
/* Basic Grid Container */
.grid {
  display: grid;
}

/* Column Count Classes */
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr) !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

/* === Responsive Grid Columns === */
@media (min-width: 576px) {
  .grid-sm-cols-1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .grid-sm-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-sm-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .grid-sm-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .grid-md-cols-1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .grid-md-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-md-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .grid-md-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 992px) {
  .grid-lg-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-lg-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .grid-lg-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .grid-lg-cols-5 {
    grid-template-columns: repeat(5, 1fr) !important;
  }

  .grid-lg-cols-6 {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

/* ------------------ Grid end ------------------ */
/* ------------------ Spacing --------------------*/
/* === PADDING === */
/* All */
.p-0px {
  padding: 0px !important;
}

.p-5px {
  padding: 5px !important;
}

.p-10px {
  padding: 10px !important;
}

.p-15px {
  padding: 15px !important;
}

.p-20px {
  padding: 15px !important;
}

.p-30px {
  padding: 15px !important;
}

.p-40px {
  padding: 40px !important;
}

/* Horizontal / Vertical */
.px-0px {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-5px {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.px-10px {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.px-15px {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.py-0px {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.py-5px {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.py-10px {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-15px {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* Individual Sides */
.pt-0px {
  padding-top: 0px !important;
}

.pt-5px {
  padding-top: 5px !important;
}

.pt-10px {
  padding-top: 10px !important;
}

.pt-15px {
  padding-top: 15px !important;
}

.pt-30px {
  padding-top: 30px !important;
}

.pb-0px {
  padding-bottom: 0px !important;
}

.pb-5px {
  padding-bottom: 5px !important;
}

.pb-10px {
  padding-bottom: 10px !important;
}

.pb-15px {
  padding-bottom: 15px !important;
}

.ps-0px {
  padding-left: 0px !important;
}

.ps-5px {
  padding-left: 5px !important;
}

.ps-10px {
  padding-left: 10px !important;
}

.ps-15px {
  padding-left: 15px !important;
}

.pe-0px {
  padding-right: 0px !important;
}

.pe-5px {
  padding-right: 5px !important;
}

.pe-10px {
  padding-right: 10px !important;
}

.pe-15px {
  padding-right: 15px !important;
}

/* === MARGIN === */
/* Base Margins - Top/Bottom */
.mt-0px {
  margin-top: 0px !important;
}

.mt-5px {
  margin-top: 5px !important;
}

.mt-10px {
  margin-top: 10px !important;
}

.mt-15px {
  margin-top: 15px !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mt-25px {
  margin-top: 25px !important;
}

.mt-30px {
  margin-top: 30px !important;
}

.mt-40px {
  margin-top: 40px !important;
}

.mt-50px {
  margin-top: 50px !important;
}

.mb-0px {
  margin-bottom: 0px !important;
}

.mb-5px {
  margin-bottom: 5px !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.mb-15px {
  margin-bottom: 15px !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.mb-25px {
  margin-bottom: 25px !important;
}

.mb-30px {
  margin-bottom: 30px !important;
}

@media (min-width: 576px) {
  .mt-sm-5px {
    margin-top: 5px !important;
  }

  .mt-sm-10px {
    margin-top: 10px !important;
  }

  .mt-sm-15px {
    margin-top: 15px !important;
  }

  .mt-sm-20px {
    margin-top: 20px !important;
  }

  .mt-sm-25px {
    margin-top: 25px !important;
  }

  .mt-sm-30px {
    margin-top: 30px !important;
  }

  .mb-sm-5px {
    margin-bottom: 5px !important;
  }

  .mb-sm-10px {
    margin-bottom: 10px !important;
  }

  .mb-sm-15px {
    margin-bottom: 15px !important;
  }

  .mb-sm-20px {
    margin-bottom: 20px !important;
  }

  .mb-sm-25px {
    margin-bottom: 25px !important;
  }

  .mb-sm-30px {
    margin-bottom: 30px !important;
  }
}

@media (min-width: 768px) {
  .mt-md-5px {
    margin-top: 5px !important;
  }

  .mt-md-10px {
    margin-top: 10px !important;
  }

  .mt-md-15px {
    margin-top: 15px !important;
  }

  .mt-md-20px {
    margin-top: 20px !important;
  }

  .mt-md-25px {
    margin-top: 25px !important;
  }

  .mt-md-30px {
    margin-top: 30px !important;
  }

  .mb-md-5px {
    margin-bottom: 5px !important;
  }

  .mb-md-10px {
    margin-bottom: 10px !important;
  }

  .mb-md-15px {
    margin-bottom: 15px !important;
  }

  .mb-md-20px {
    margin-bottom: 20px !important;
  }

  .mb-md-25px {
    margin-bottom: 25px !important;
  }

  .mb-md-30px {
    margin-bottom: 30px !important;
  }

  .mt-md-50px {
    margin-top: 50px !important;
  }

  .p-md-40px {
    padding: 40px !important;
  }
}

@media (min-width: 992px) {
  .mt-lg-5px {
    margin-top: 5px !important;
  }

  .mt-lg-10px {
    margin-top: 10px !important;
  }

  .mt-lg-15px {
    margin-top: 15px !important;
  }

  .mt-lg-20px {
    margin-top: 20px !important;
  }

  .mt-lg-25px {
    margin-top: 25px !important;
  }

  .mt-lg-30px {
    margin-top: 30px !important;
  }

  .mb-lg-5px {
    margin-bottom: 5px !important;
  }

  .mb-lg-10px {
    margin-bottom: 10px !important;
  }

  .mb-lg-15px {
    margin-bottom: 15px !important;
  }

  .mb-lg-20px {
    margin-bottom: 20px !important;
  }

  .mb-lg-25px {
    margin-bottom: 25px !important;
  }

  .mb-lg-30px {
    margin-bottom: 30px !important;
  }

  .ms-lg-5px {
    margin-left: 5px !important;
  }

  .ms-lg-10px {
    margin-left: 10px !important;
  }

  .ms-lg-15px {
    margin-left: 15px !important;
  }

  .ms-lg-20px {
    margin-left: 20px !important;
  }

  .ms-lg-25px {
    margin-left: 25px !important;
  }

  .ms-lg-30px {
    margin-left: 30px !important;
  }

  .me-lg-5px {
    margin-right: 5px !important;
  }

  .me-lg-10px {
    margin-right: 10px !important;
  }

  .me-lg-15px {
    margin-right: 15px !important;
  }

  .me-lg-20px {
    margin-right: 20px !important;
  }

  .me-lg-25px {
    margin-right: 25px !important;
  }

  .me-lg-30px {
    margin-right: 30px !important;
  }
}

@media (min-width: 1200px) {
  .mt-xl-5px {
    margin-top: 5px !important;
  }

  .mt-xl-10px {
    margin-top: 10px !important;
  }

  .mt-xl-15px {
    margin-top: 15px !important;
  }

  .mt-xl-20px {
    margin-top: 20px !important;
  }

  .mt-xl-25px {
    margin-top: 25px !important;
  }

  .mt-xl-30px {
    margin-top: 30px !important;
  }

  .mb-xl-5px {
    margin-bottom: 5px !important;
  }

  .mb-xl-10px {
    margin-bottom: 10px !important;
  }

  .mb-xl-15px {
    margin-bottom: 15px !important;
  }

  .mb-xl-20px {
    margin-bottom: 20px !important;
  }

  .mb-xl-25px {
    margin-bottom: 25px !important;
  }

  .mb-xl-30px {
    margin-bottom: 30px !important;
  }

  .ms-xl-5px {
    margin-left: 5px !important;
  }

  .ms-xl-10px {
    margin-left: 10px !important;
  }

  .ms-xl-15px {
    margin-left: 15px !important;
  }

  .ms-xl-20px {
    margin-left: 20px !important;
  }

  .ms-xl-25px {
    margin-left: 25px !important;
  }

  .ms-xl-30px {
    margin-left: 30px !important;
  }

  .me-xl-5px {
    margin-right: 5px !important;
  }

  .me-xl-10px {
    margin-right: 10px !important;
  }

  .me-xl-15px {
    margin-right: 15px !important;
  }

  .me-xl-20px {
    margin-right: 20px !important;
  }

  .me-xl-25px {
    margin-right: 25px !important;
  }

  .me-xl-30px {
    margin-right: 30px !important;
  }
}

/* ---------------------- Spacing End ---------------------- */
/* ----- Width ----- */
/* Default */
.w-100 {
  width: 100% !important;
}

@media (max-width: 575px) {
  .w-sm-100 {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .w-md-100 {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .w-lg-100 {
    width: 100% !important;
  }
}

.position-relative {
  position: relative;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-18 {
  font-size: 18px !important;
}

@media (max-width: 991px) {
  .fs-38 {
    font-size: 28px !important;
  }

  .fs-26 {
    font-size: 22px !important;
  }

  .fs-22 {
    font-size: 18px !important;
  }

  .fs-18 {
    font-size: 16px !important;
  }
}

@media (max-width: 767px) {
  .fs-38 {
    font-size: 24px !important;
  }

  .fs-26 {
    font-size: 20px !important;
  }

  .fs-22 {
    font-size: 16px !important;
  }

  .fs-18 {
    font-size: 15px !important;
  }
}

@media (max-width: 575px) {
  .fs-38 {
    font-size: 22px !important;
  }

  .fs-26 {
    font-size: 18px !important;
  }

  .fs-22 {
    font-size: 15px !important;
  }

  .fs-18 {
    font-size: 14px !important;
  }
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-10 {
  font-size: 10px;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.bg-light-yellow {
  background-color: #FFFAF0 !important;
}

.bg-light {
  background: #F3F4F8 !important;
}

.bg-white {
  background-color: #fff;
}

.border-bottom-yellow {
  border-bottom: 1px solid #ffcc00;
}

.border-light-yellow {
  border: 1px solid #FFFAF0;
}


.border-2px {
  border-width: 2px;
}

.bg-light2 {
  background-color: #F3F4F8 !important;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.text-end {
  text-align: right;
}

.text-dark {
  color: #222;
}

.d-none {
  display: none !important;
}

@media (max-width: 991px) {
  .d-lg-none {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .d-md-none {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .d-sm-none {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .d-sm-a-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-md-a-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-a-none {
    display: none !important;
  }
}

.text-link {
  text-decoration: underline;
}

.text-black {
  color: #000;
}

.text_cross {
  position: relative;
}

.text_cross:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.line-heading {
  position: relative;
  padding-bottom: 10px;
}

.line-heading:after {
  content: "";
  width: 100%;
  max-width: 120px;
  background-color: #FFCC00;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-more-info {
  display: inline-block;
  color: #355AD8;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-more-info:hover,
.btn-more-info:active,
.btn-more-info:focus {
  color: #000;
}

.btn-outline {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(34, 34, 34, 0.4);
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:visited {
  color: #000;
}

.btn-outline img {
  transition: all 0.3s ease;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus {
  background-color: #000 !important;
  border-color: #000;
  color: #fff;
}

.btn-outline:hover img,
.btn-outline:active img,
.btn-outline:focus img {
  filter: invert(1);
}

.btn-outline-md {
  padding: 10px 18px;
  font-size: 18px;
}

.btn-outline-md:hover,
.btn-outline-md:active,
.btn-outline-md:focus {
  background-color: #FFCC00;
  border-color: #FFCC00;
  color: #000;
}

.btn-outline-md:hover img,
.btn-outline-md:active img,
.btn-outline-md:focus img {
  filter: inherit;
}

@media (max-width: 767px) {
  .btn-outline-md {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.btn-yellow {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFCC00;
  color: #000;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-yellow:visited {
  color: #000;
}

.btn-yellow img {
  transition: all 0.3s ease;
}

.btn-yellow:hover,
.btn-yellow:active,
.btn-yellow:focus {
  background-color: #000;
  color: #fff;
}

.btn-yellow:hover img,
.btn-yellow:active img,
.btn-yellow:focus img {
  filter: invert(1);
}

.btn-black {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-black:visited {
  color: #fff;
}

.btn-black:hover,
.btn-black:active,
.btn-black:focus {
  background-color: #ffcc00;
  color: #000;
}

@media (max-width: 991px) {
  .btn-yellow {
    padding: 7px 16px;
    font-size: 14px;
  }
}

.border-none {
  border: none !important;
}

.card-grid {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  min-height: 100%;
}

.card-grid_title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
  vertical-align: middle;
  padding-bottom: 5px;
}

.badge-tag {
  display: inline-block;
  background-color: #FFFAF0;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 12px;
  border: 1px solid #FFCC00;
  font-weight: bold;
  position: absolute;
  z-index: 1;
}

.badge-info {
  display: inline-flex;
  gap: 5px;
  background-color: #fff;
  padding: 13px 15px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid #E6E7EB;
  font-weight: bold;
  position: relative;
  height: 46px;
}

.badge-info a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E6E7EB;
  border-radius: 50%;
}

.hide {
  display: none !important;
}

.card-grid.car_card_style>div>div:first-child {
  position: relative;
}

.card-grid_image_section {
  position: relative;
  margin-top: 45px;
}

.card-grid.car_card_style .car_price_content {
  position: absolute;
  bottom: 0;
}

.car_price_content {
  background-color: var(--highlight-color);
  padding: 12px;
  border-radius: var(--border-radius);
  font-size: 0.95em;
  margin-bottom: 10px;
  padding: 10px;
}

.car_price_content .fs-14.d-flex.gap-2 {
  flex-direction: column;
}

.car_spec {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  align-items: center;
}

.car_spec span sup {
  font-size: 50%;
  top: -10px;
}

.car_spec_wrap {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 15px;
  padding: 20px 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .car_spec_wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.car_card_style {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.car_card_style .car_card_style_img {
  margin: 20px auto;
}

.card-grid.car_card_style .car_card_style_img {
  padding-bottom: 70px;
}

.car_card_style_has_badge .car_card_style_img {
  max-width: 75%;
  margin: 0 auto;
}

.car_card_style.active {
  border-color: #FFCC00;
  background-color: #FFFAF0;
}

.car_card_style.active .bg-light2 {
  background-color: #fff !important;
}

.car_card_style.active .badge-tag {
  background-color: #FFCC00;
}

.car_card_style.active .btn-outline {
  background-color: #000;
  color: #fff;
}

.car_rental_opt {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car_rental_opt_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 575px) {
  .car_rental_opt {
    width: 100px;
    height: 50px;
  }

  .car_rental_opt img {
    max-width: 50px;
  }
}

.uber_btn,
.bolt_btn {
  display: inline-block;
  background-color: #A4A4A4;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px 20px;
}

.uber_btn .selected,
.bolt_btn .selected {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #FFCC00;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-7px, -7px);
  opacity: 0;
  visibility: hidden;
}

.uber_btn .selected img,
.bolt_btn .selected img {
  max-width: 12px;
}

.uber_btn.active .selected,
.bolt_btn.active .selected {
  opacity: 1;
  visibility: visible;
}

.uber_btn.active,
.uber_btn:hover,
.uber_btn:focus {
  background-color: #000;
}

.bolt_btn.active,
.bolt_btn:hover,
.bolt_btn:focus {
  background-color: #34D186;
}

/* ----- Car Modal ----- */
.car_modal_wrap {
  display: grid;
  grid-template-columns: 1fr 60%;
  border: 20px solid #f3f4f8;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .car_modal_wrap {
    grid-template-columns: 1fr;
    height: 100%;
    overflow-y: auto;
  }
}

.car_modal_left {
  background-color: #fff;
  padding: 40px 30px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.car_modal_right {
  background-color: #FFFAF0;
  padding: 40px 30px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

@media (max-width: 575px) {
  .car_modal_right {
    padding: 30px 20px;
  }
}

.open_car_modal_content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.car_modal_quickview:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid #f3f4f8;
  position: absolute;
  top: 0;
  left: 13%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.car_modal_quickview.show:after {
  opacity: 1;
  visibility: visible;
}

.open_car_modal_content.show {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  width: 100%;
  /*add*/
  min-width: 1220px;
  padding-top: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
  /*add*/
  position: relative;
  z-index: 99;
}

.open_car_modal_content.car_modal_ec {
  margin-left: calc(-100% - 30px);
}

.open_car_modal_content.car_modal_er {
  margin-left: calc(-200% - 60px);
}

.car_modal_quickview.open_car_modal_content.car_modal_ec:after {
  left: 0;
  margin: auto;
}

.car_modal_quickview.open_car_modal_content.car_modal_er:after {
  left: inherit;
  right: 13%;
}

@media (max-width: 1399px) {
  .open_car_modal_content.show {
    min-width: 1170px;
  }
}

@media (max-width: 1199px) {
  .open_car_modal_content.show {
    min-width: 980px;
  }
}

@media (max-width: 991px) {
  .open_car_modal_content {
    overflow-y: auto;
  }

  .open_car_modal_content {
    margin-left: 0 !important;
  }

  .open_car_modal_content.show {
    min-width: 100%;
  }

  .car_modal_quickview:after {
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
  }
}

.close_car_modal {
  display: inline-flex;
  position: absolute;
  top: 50px;
  right: 35px;
  cursor: pointer;
}

/* ----- Custom Tab ----- */
.cust_tabs-content {
  display: none;
}

.cust_tabs-content.active {
  display: block;
}

.tab_style1 {
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #FFECC2;
  display: flex;
  overflow: hidden;
  padding: 5px;
  width: fit-content;
  gap: 5px;
}

.tab_style1_item {
  background-color: transparent;
  border: none;
  font-size: 14px;
  width: fit-content;
  height: 40px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tab_style1_item:hover,
.tab_style1_item.active {
  background-color: #ffcc00;
}

@media (max-width: 575px) {
  .tab_style1_item {
    width: inherit;
    height: inherit;
    padding: 3px 12px;
    font-size: 12px;
  }
}

/* ----- Store Locator ----- */
.sl_wrap {
  border-radius: 20px;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 15px;
  background: #F3F4F8;
  padding: 15px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .sl_wrap {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
}

.sl_sidebar {
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}

.sl_searchBar {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(34, 34, 34, 0.25);
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  margin-bottom: 15px;
}

.sl_searchBar img {
  width: 16px;
  margin-right: 10px;
}

.sl_searchBar input,
.sl_searchBar input:focus {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.locationList_scroll {
  overflow-y: scroll;
}

@media (max-width: 767px) {
  .locationList_scroll {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .locationList_scroll {
    min-height: 275px;
  }
}

.locationList_item {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 10px;
  background-color: #F3F4F8;
  border: 1px solid transparent;
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.locationList_item:first-child {
  margin-top: 0;
}

.locationList_item_add {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

@media (min-width: 768px) {
  .locationList_item_add {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .locationList_item {
    grid-template-columns: 1fr;
  }
}

.locationList_item h5 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .locationList_item h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.locationList_item p {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 14px;
}

.locationList_item span.sl_map_select {
  padding: 3px 5px;
  border: 1px solid #222;
  border-radius: 30px;
  font-size: 12px;
  min-width: 65px;
  text-align: center;
}

.locationList_item:hover {
  background-color: #FFCC00;
}

.locationList_item.active {
  background-color: #FEFBEA;
  border: 1px solid #FFCC00;
}

.locationList_item.active span.sl_map_select {
  border: 1px solid #222;
  background-color: #000;
  color: #fff;
}

@media (max-width: 767px) {
  .map_container {
    display: none;
    margin: 0 -14px;
  }
}

/* ----- Form Input ----- */
.form-label {
  font-weight: 600;
  font-size: 16px;
}

.form-input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(34, 34, 34, 0.25);
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 16px;
  display: flex;
}

.form-input::placeholder {
  color: #999;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .form-input {
    font-size: 14px;
    min-height: 40px;
  }
}

/* ----- Pickup ----- */
.pickup_wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #F3F4F8;
  display: grid;
  grid-template-columns: 45% 1fr;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .pickup_wrap {
    grid-template-columns: 1fr;
  }
}

.pickup_deal {
  background-size: cover;
  background-position: center;
  background-color: #FFFAE6;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 575px) {
  .pickup_deal {
    padding: 25px;
  }
}

.pickup_form {
  padding: 30px;
}

@media (max-width: 575px) {
  .pickup_form {
    padding: 20px 25px;
  }
}

.pickup_form_sec {
  margin-top: 50px;
}

/* ----- Step ----- */
.cust_step-navigation {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #eee;
  margin: auto;
  overflow: hidden;
  margin-top: 30px;
}

.cust_step {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  position: relative;
}

.cust_step .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cust_step .icon.black-bg img {
  filter: invert(1);
}

.yellow-bg {
  background-color: #FFD700;
  color: #000;
}

.black-bg {
  background-color: #000;
  color: #fff;
}

.gray-border {
  border: 2px solid #ccc;
  color: #888;
}

.cust_step .label {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.active-step .label {
  color: #000;
}

.current-step {
  background-color: #fffce9;
  border-bottom: 3px solid #FFD700;
}

.cust_step:not(.current-step):not(.active-step) .label {
  color: #888;
}

@media (max-width: 767px) {
  .cust_step {
    padding: 10px 25px;
  }

  .cust_step:not(.current-step) {
    display: none;
  }
}

/* ----- Confirm page ----- */
.card_style {
  background-color: #f8f9fb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.label-star {
  color: #c31515;
}

.card-p-8 {
  padding: 1rem 1rem;
}

.card-p-6 {
  padding: 1.5rem;
}

.summary-box {
  padding-left: 15px;
}

.summary-car-image {
  border-radius: 0.375rem;
  width: 9rem;
  height: auto;
  object-fit: cover;
  padding: 10px 20px;
  border: 1px solid #e6e6e6;
}

.summary-header {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  position: relative;
}

.summary-section {
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
}

.summary-section-title {
  font-size: 16px !important;
  color: #000;
}

.summary-section-content {
  margin-bottom: 0;
}

.total-row {
  color: #11182c;
  margin-bottom: 10px;
  font-size: 16px;
  align-items: flex-end;
}

.edit-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: underline;
}

.edit-link:hover {
  color: #3b82f6;
}

.summary-column p {
  margin-top: 0;
}

.rate-item {
  font-size: 16px;
}

.rate-item .value {
  font-weight: 500;
}

.rate-hint {
  font-size: 14px !important;
  margin-top: -0.25rem !important;
}

.total-section {
  padding: 12px 0;
}

.total-hint {
  font-size: 0.75rem;
  color: #000;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.inclusion-box {
  padding: 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.inclusion-title {
  color: #1f2937;
  margin-bottom: 15px;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.13);
}

.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
}

.inclusion-list img {
  margin-top: 5px;
}

.inclusion-box>div:not(:first-child) {
  margin-top: 1.5rem;
}

.rental-rate-details {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

/* Mileage Estimator Styles */
.mileage-title {
  font-size: 1.125rem !important;
  color: #11182c;
}

.mileage-cost {
  font-size: 1.125rem;
  color: #11182c;
}

.mileage-description {
  font-size: 0.875rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.mileage-slider-wrapper {
  position: relative;
}

#slider-tooltip {
  position: absolute;
  top: -30px;
  background: #000;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  transform: translateX(0);
  /* transition: left 0.1s ease; */
  pointer-events: none;
}

.mileage-range-labels {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #000000 0%, #000000 var(--progress, 0%), #e5e7eb var(--progress, 0%), #e5e7eb 100%);
  border-radius: 3px;
  outline: none;
  padding: 0;
  margin: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #facc15;
  border: 3px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -2px;
}

input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 50%;
  cursor: pointer;
}

/* Payment Details Section */
.payment-card-wrapper {
  position: relative;
}

.payment-card-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1.25rem;
  width: 1.25rem;
  color: #9ca3af;
}

.form-input-with-icon {
  padding-left: 2.5rem;
}

.form-input-with-button {
  padding-right: 7.5rem;
}

.autofill-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d1fae5;
  color: #065f46;
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}

.payment-authorization-text {
  color: #000;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Book Now Button */
.book-now-button {
  background-color: #facc15;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: background-color 300ms;
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 170px;
}

.book-now-button:hover {
  background-color: #000;
  color: #fff;
}

.book-now-button .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

.payment-summery-sec hr {
  border-color: rgba(34, 34, 34, 0.13);
}

@media (min-width: 1024px) {
  .payment-summery-sec {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .content-column {
    grid-column: span 3/span 3;
  }

  .summary-column {
    grid-column: span 2/span 2;
  }

  .thankyou-content .content-column,
  .thankyou-content .summary-column {
    grid-column: inherit;
  }
}

@media (max-width: 1023px) {
  .payment-summery-sec.res_column_reserve {
    display: flex;
    flex-direction: column-reverse;
  }

  .summary-section {
    padding: 10px 0;
  }

  .summary-box {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .payment-summery-sec .fs-22 {
    font-size: 22px !important;
  }
}

@media (max-width: 767px) {
  .payment-summery-sec .fs-22 {
    font-size: 22px !important;
  }
}

@media (max-width: 575px) {
  .payment-summery-sec .fs-22 {
    font-size: 22px !important;
  }
}

/* --- Success Banner --- */
.thank_you_wrap {
  max-width: 991px;
  margin: auto;
  padding-top: 30px;
}

.success-banner {
  background-color: #f0faf5;
  border-radius: 0.75rem;
  padding: 20px;
  margin: 0 auto 30px auto;
}

.success-banner h1 {
  color: #000000;
  font-size: 1.7rem !important;
  font-weight: 500;
  margin: 0 0 1.25rem 0;
  line-height: 1.4;
  border-bottom: 1px solid #22222221;
  padding-bottom: 15px;
}

.success-banner h1 .congrats-text {
  color: #1e7b4c;
}

.success-banner h2 {
  font-size: 1.2rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
}

.success-banner p {
  color: #555555;
  font-size: 0.9rem;
  margin: 1rem 0 1.1rem 0;
}

.app-buttons a img {
  height: 40px;
  object-fit: contain;
}

.summary_js-btn {
  width: 25px;
  height: 25px;
  display: inline-block;
  background-color: rgba(34, 34, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  z-index: 9;
}

.summary_js-btn img {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.summary_js-btn.active img {
  transform: rotate(0);
}

@media (min-width: 992px) {
  .summary_js-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .summary-car-image {
    margin-right: 40px;
    width: 8rem;
  }

  .sum_cont_show {
    display: none !important;
  }

  .sum_cont_show.hide {
    display: inherit !important;
  }
}

@media (max-width: 767px) {
  .success-banner h1 {
    font-size: 1.4rem !important;
  }
}

/* ----- Feature Card ----- */
.feature-card {
  width: 15%;
  padding: 20px;
  border-radius: 12px;
  background: #f3f4f8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card .feature-title {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif !important;
  margin-bottom: 10px;
}

.feature-card .feature-description {
  overflow: hidden;
  color: rgba(34, 34, 34, .8);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.list-check {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  width: calc(33.33% - 20px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(34, 34, 34, .8);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 13px;
  padding-right: 20px;
}

.list-check li::before {
  content: url(https://www.hertzpageo.com/img/partners/pco-rental/tick.svg);
  width: 20px;
}

/* Price Rent */
.price_rent {
  background-color: #FFFAE6;
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid #FFECC2;
}

.rental_booking_card {
  background-position: center right;
  background-size: contain;
  padding: 40px 50px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.rental_booking_card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #FEF5E0 40.74%, rgba(252, 252, 252, 0) 67.53%);
}

@media (max-width: 1199px) {
  .feature-card {
    width: calc(33.33% - 15px);
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .list-check li {
    width: calc(50% - 10px);
  }

  .rental_booking_card .fs-38 {
    font-size: 38px !important;
  }

  .rental_booking_card {
    background-size: cover;
    padding: 30px;
  }

  .rental_booking_card:before {
    background: linear-gradient(90deg, rgba(254, 245, 224, 0.75) 100.74%, rgba(252, 252, 252, 0) 67.53%);
  }
}

@media (max-width: 575px) {
  .feature-card {
    width: calc(50% - 10px);
  }

  .feature-title {
    margin-bottom: 5px !important;
  }

  .list-check li {
    width: 100%;
  }
}

/* ----- Header ----- */
header.cust_site-header {
  background-color: #fff;
  border-bottom: 4px solid #FFCC00;
}

.cust_site-header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-cust-link {
  display: flex;
  gap: 40px;
}

.login-text {
  font-size: 14px;
}

.nav-cust-link a,
.login-text {
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cust-link a:hover,
.nav-cust-link a.active,
.login-text:hover,
.login-text.active {
  color: #ffcc00;
}

/* Hamburger Button */
.cust_hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cust_hamburger span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  width: 100%;
  transition: all 0.3s ease;
}

/* Responsive Nav */
@media (max-width: 991px) {
  .nav-cust-link {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    height: 100%;
    z-index: 99999;
  }

  .nav-cust-link.show {
    display: flex !important;
  }

  .nav-cust-link a:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .cust_hamburger {
    display: flex;
    position: absolute;
    right: 10px;
    top: 25px;
  }

  .auth {
    margin-right: 50px;
  }
}

a.btn-outline.open_car_modal {
  background-color: #fc0;
}

a.btn-outline.btn-outline-md.initiate-booking {
    background-color: #fc0 !important;
}