@charset "UTF-8";
/* === 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-20 {
  font-size: 20px !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;
  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;
}

.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: relative;
}
.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;
}

.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_spec {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  align-items: center;
}
.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:hover {
  border-color: #FFECC2;
  box-shadow: 0 3px 15px rgba(0,0,0,0.07);
}
.car_card_style .car_card_style_img {
  margin: 20px auto;
}
.car_card_style_has_badge .car_card_style_img {
  max-width: 75%;
  margin: -20px 0 0 auto;
}
.car_card_style:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid #f3f4f8;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.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_card_style.active:after {
  opacity: 1;
  visibility: visible;
}

.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: 15px 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;
}
.open_car_modal_content.show {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  width: 100%; /*add*/
  margin-bottom: 20px; /*add*/
}
@media (max-width: 991px) {
  .open_car_modal_content {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 15px;
    overflow-y: auto;
  }
}

.close_car_modal {
  display: inline-flex;
  position: absolute;
  top: 30px;
  right: 30px;
  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: inline-block;
  overflow: hidden;
  padding: 5px;
}
.tab_style1_item {
  background-color: transparent;
  border: none;
  font-size: 14px;
  width: 120px;
  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;
}

@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;
}

.cust_step .label > a {
    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('../../img/icons/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;
  }
}


.link-btn {
background: transparent !important;
border: none !important;
color: #308dff !important;
text-decoration: underline !important;
margin-top: 0 !important;
}
body.gb .vehicle-type-nav a {
font-size: 14px;
}
.full_container.hs_banner {
display: none;
}
.full_container.hs_white .hs_container {
max-width: 100%;
}
.full_container.hs_white .hs_container .hs_outer_container {
padding: 0;
margin: 0;
}
.hs_text_container h2.mb-50 {
margin-bottom: 50px;
}
.hs_text_container .pricing-box-heading h3 {
margin-block-start: 1em;
margin-block-end: 1em;
}

.dtb-main .pricing-container .c1 div[class*=pricing-box-car-1],
.dtb-main .pricing-container .c1 div[class*=pricing-box-car-3] {
background: rgba(0, 0, 0, 0)
}
.pricing-container.table-revamp {
overflow-x: auto;
position: relative
}
.pricing-container.table-revamp::-webkit-scrollbar {
width: 5px;
height: 6px
}
.pricing-container.table-revamp::-webkit-scrollbar-thumb {
background: #bfbfbf
}
.pricing-container.table-revamp::-webkit-scrollbar-thumb:hover {
background: #555
}
.pricing-container.table-revamp::-webkit-scrollbar-track {
background: #e6e6e6
}
.pricing-container.table-revamp .pricing-heading,
.pricing-container.table-revamp .c1 {
justify-content: flex-start;
border: none;
gap: 0px;
font-size: 16px;
font-weight: 400;
line-height: 22px
}
@media (max-width: 991px) {
.pricing-container.table-revamp .pricing-heading,
.pricing-container.table-revamp .c1 {
font-size: 14px
}
}
.pricing-container.table-revamp .pricing-heading b,
.pricing-container.table-revamp .c1 b {
font-weight: 400
}
.pricing-container.table-revamp .pricing-heading figure,
.pricing-container.table-revamp .c1 figure {
background-color: #fff;
height: 100%
}
.pricing-container.table-revamp .pricing-heading figure img,
.pricing-container.table-revamp .c1 figure img {
max-width: 100%;
margin: 0 0 30px 0
}
.pricing-container.table-revamp .pricing-heading>div,
.pricing-container.table-revamp .c1>div {
border-bottom: 1px solid #ddd
}
.pricing-container.table-revamp .pricing-heading>div figcaption,
.pricing-container.table-revamp .c1>div figcaption {
padding: 15px;
font-size: 16px
}
.pricing-container.table-revamp .pricing-heading>div:nth-child(even),
.pricing-container.table-revamp .c1>div:nth-child(even) {
background-color: #fff;
height: 100%
}
.pricing-container.table-revamp .pricing-heading>div:nth-child(even) figcaption,
.pricing-container.table-revamp .c1>div:nth-child(even) figcaption {
background-color: #eee
}
.pricing-container.table-revamp .c1>div {
padding: 15px 5px !important;
background-color: #fff
}
@media (max-width: 991px) {
.pricing-container.table-revamp .c1>div {
padding: 8px 5px !important
}
}
.pricing-container.table-revamp .pricing-box-empty {
background-color: #fff
}
.pricing-container.table-revamp .c1 .pricing-box-heading:nth-child(1) {
box-shadow: 3px 0 6px -2px rgba(149, 149, 149, .4)
}
.pricing-container.table-revamp .pricing-box-empty,
.pricing-container.table-revamp .c1 .pricing-box-heading:nth-child(1) {
position: -webkit-sticky;
position: sticky;
left: 0;
z-index: 4;
text-align: left !important;
font-weight: 700;
padding-left: 20px !important;
padding-right: 20px !important
}
.pricing-container.table-revamp .pricing-box-empty b,
.pricing-container.table-revamp .c1 .pricing-box-heading:nth-child(1) b {
font-weight: 700
}
@media (max-width: 991px) {
.pricing-container.table-revamp .pricing-box-empty,
.pricing-container.table-revamp .c1 .pricing-box-heading:nth-child(1) {
padding-left: 10px !important;
padding-right: 10px !important
}
}
.pricing-container.table-revamp .pricing-heading figure.coming-soon::before {
display: none
}
.table-revamp {
grid-template-rows: auto;
display: grid
}
.table-revamp .pricing-heading,
.table-revamp .c1 {
display: grid
}
.pco-rental-table .table-revamp .pricing-heading,
.pco-rental-table .table-revamp .c1 {
display: flex;
flex-wrap: nowrap;
flex: 1 1 auto
}
.pco-rental-table .pricing-box-heading,
.pco-rental-table .pricing-box-car-1-value,
.pco-rental-table .pricing-box-car-1 {
width: 170px !important
}
@media (min-width: 768px) {
.pco-rental-table .pricing-box-heading,
.pco-rental-table .pricing-box-car-1-value,
.pco-rental-table .pricing-box-car-1 {
width: 50% !important
}
}
.pad-setting {
padding: 0 10px;
width: 100%
}

.main-container {
max-width: 1240px;
margin: 0 auto;
padding: 0 10px
}
@media screen and (max-width: 1400px) {
.main-container {
max-width: 1190px
}
}
@media screen and (max-width: 1200px) {
.main-container {
max-width: 1000px
}
}
@media screen and (max-width: 992px) {
.main-container {
max-width: 800px
}
}
@media screen and (max-width: 768px) {
.main-container {
max-width: 600px
}
}
@media screen and (max-width: 576px) {
.main-container {
max-width: 100%
}
}
.column,
.row {
box-sizing: border-box
}
.wrap {
flex-wrap: wrap
}
.starched {
align-items: stretch
}
.row:after,
.row:before {
content: "";
display: table;
display: none
}
.row {
display: flex;
flex-wrap: wrap
}
.column {
padding: 0 15px;
box-sizing: border-box;
position: relative
}
.column-1,
.column-10,
.column-11,
.column-12,
.column-2,
.column-3,
.column-4,
.column-5,
.column-6,
.column-7,
.column-8,
.column-9 {
width: auto;
float: none
}
.column+.column {
margin-left: 0
}
.row {
margin-right: -15px;
margin-left: -15px
}
.column {
padding: 0 15px
}
@media only screen and (min-width: 768px) {
.column {
position: relative;
float: left;
margin-bottom: 0
}
.row {
margin-bottom: 10px
}
.row .row:last-child {
margin-bottom: 0
}
.column-1 {
width: 8.33%
}
.column-2 {
width: 16.66%
}
.column-3 {
width: 25%
}
.column-4 {
width: 33.33%
}
.column-5 {
width: 41.66%
}
.column-6 {
width: 50%
}
.column-7 {
width: 58.33%
}
.column-8 {
width: 66.66%
}
.column-9 {
width: 75%
}
.column-10 {
width: 83.33%
}
.column-11 {
width: 91.66%
}
.column-12 {
width: 100%
}
}
body.gb {
font-family: "Open Sans", sans-serif;
font-size: 18px;
font-weight: 400;
line-height: 1.4;
color: #45484a
}
img {
display: block;
max-width: 100%
}
.heading {
line-height: 1.2;
font-weight: 700;
color: #000;
margin: 0
}
.heading.h1 {
font-size: 48px
}
.heading.h2 {
font-size: 40px
}
.heading.h3 {
font-size: 32px
}
.heading.h4 {
font-size: 18px;
line-height: 1.4
}
.heading.h4-4 {
font-size: 26px;
line-height: 1.4
}
.heading.h5 {
font-size: 16px;
line-height: 1.4
}
.heading.have-strip {
position: relative
}
.heading.have-strip::after {
width: 100px;
height: 4px;
background-color: #fc0;
content: "";
position: absolute;
bottom: -10px;
left: 0
}
.d-fx {
display: flex
}
.mb-50 {
margin-bottom: 50px
}
.mb-30 {
margin-bottom: 30px
}
.mb-20 {
margin-bottom: 20px
}
.mb-10 {
margin-bottom: 10px
}
address {
display: block;
margin: 0 0 10px
}
.list-group-bullets li {
list-style: disc;
margin-bottom: 8px
}
.flex-colum {
flex-direction: column
}
.justify-center {
justify-content: center
}
.h-btn,
.h-btn:visited {
border: 2px solid #000;
background-color: #fff;
box-shadow: none;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 16px 24px;
font-size: 18px;
margin-top: 20px;
border-radius: 50px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
color: #000;
transition: all .3s;
font-weight: 700;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s
}
.h-btn.d-fx,
.h-btn:visited.d-fx {
display: flex
}
.h-btn:hover,
.h-btn:focus,
.h-btn:visited:hover,
.h-btn:visited:focus {
border: 2px solid #45484a;
color: #45484a
}
.h-btn.btn-solid,
.h-btn:visited.btn-solid {
background-color: #000;
color: #fff
}
.h-btn.btn-solid:hover,
.h-btn.btn-solid:focus,
.h-btn:visited.btn-solid:hover,
.h-btn:visited.btn-solid:focus {
border: 2px solid #45484a;
background-color: #45484a;
color: #fff
}
.common-pad {
padding: 90px 0
}
.common-margin-b {
margin-bottom: 90px
}
.rent-ev-block {
border-radius: 32px;
padding: 48px 48px 24px;
max-width: 572px;
background-color: #fff;
color: #45484a;
box-shadow: rgba(0, 0, 0, .24) 0 4px 8px 0
}
.rent-ev-block .heading {
color: #45484a
}
.vehicle-type-nav {
gap: 70px;
background: #fff;
border-bottom: 1px solid #d9d9d9
}
.vehicle-type-nav.d-flex {
display: flex
}
.vehicle-type-nav.justify-content-center {
justify-content: center
}
.vehicle-type-nav a {
color: #000 !important;
padding: 30px 0;
border-bottom: 3px solid #fff
}
.vehicle-type-nav a.active,
.vehicle-type-nav a:hover {
border-bottom: 3px solid #fc0
}

.max-container {
max-width: 80%;
margin: auto;
position: relative
}
.pad-set {
flex-direction: row;
padding: 84px 8px 84px 136px
}
.emotion-cache-no-speedy-y3xkxl {
position: absolute;
background: #f5f5f5;
border-radius: 8px;
top: 0px;
bottom: 0px;
display: block;
width: 100%;
z-index: 0
}
@media (min-width: 1024px) {
.emotion-cache-no-speedy-y3xkxl {
right: auto;
max-width: 83%;
max-height: 100%;
height: 100%
}
}
.content-wrapper {
padding-top: 32px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 30px
}
.content-wrapper img {
max-width: 100%
}
.text-white {
color: #fff
}
.bg-light {
background: #ededed;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px
}
.m-auto {
margin: auto !important
}
.new-ev-drivers .row {
align-items: center
}
.new-ev-drivers .pad-set {
padding: 84px
}
.new-ev-drivers .h2 {
color: #45484a
}
.new-ev-drivers .h-btn {
padding: 11px 25px
}
.slick-track:after,
.slick-track:before {
display: table;
content: "";
display: none
}
.slick-track {
display: flex;
padding: 20px 0;
align-items: stretch;
flex-wrap: wrap;
height: auto
}
.slick-slider {
margin: 0 -10px
}
.slick-slide {
margin-right: 10px;
margin-left: 10px
}
.browser-fleet .column {
margin-bottom: 20px
}
.browser-fleet .car-card {
padding: 20px;
border-radius: 8px;
border-color: #d9d9d9;
box-shadow: rgba(0, 0, 0, .1) 0 4px 8px 0;
height: 100%;
display: flex !important;
flex-direction: column;
justify-content: space-between;
flex: 1;
gap: 20px
}
.browser-fleet .car-card .h5 {
margin-bottom: 15px
}
.browser-fleet .car-card p {
margin: 0 0 10px;
font-size: 16px
}
.browser-fleet .car-card .h-btn {
margin: 0 0 15px;
padding: 10px
}
.browser-fleet .car-card .content-wrap {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
gap: 20px
}
.pricing-container.table-revamp .c1 .pricing-box-heading:nth-child(1),
.pricing-container.table-revamp .pricing-box-empty {
background-color: #fff
}
.terms-title {
cursor: pointer
}
.terms-description {
display: none
}
.terms-description p {
font-size: 16px
}
.terms-description ul li {
font-size: 14px
}
.black-strip-wrap {
background-color: #000;
padding: 50px 0
}
.black-strip-wrap .main-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #fff;
gap: 20px
}
.black-strip-wrap .main-container p {
margin: 0;
text-align: center
}
.black-strip-wrap .main-container .h-btn {
margin-top: 0;
border: 2px solid #fff;
padding: 12px 25px
}
.steps-container .step-wrap {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 20px;
text-align: center
}
.available-location .heading.h5 {
color: #45484a
}
.available-location address {
line-height: 1.8;
font-size: 14px
}
.available-location p,
.available-location .time-box {
margin: 0 0 10px;
font-size: 14px;
color: #45484a
}
.available-location .column {
padding: 0 30px 0 10px
}
.accordion-container {
padding: 25px 0;
border-bottom: 1px solid rgba(0, 0, 0, .12)
}
.accordion-container .course-accordion {
padding: 0;
cursor: pointer;
width: 100%;
border: none;
display: flex;
justify-content: space-between;
align-items: center
}
.accordion-container .course-accordion h3 {
font-size: 16px;
line-height: 24px;
font-weight: 500;
margin-bottom: 0;
padding: 15px 0
}
.accordion-container .course-panel p {
text-align: left !important
}
.accordion-container .course-accordion:after {
content: "";
width: 15px;
height: 25px;
margin-left: 8px;
background-image: url(../../img/icons/arrow-down-acc.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center
}
.accordion-container .course-accordion.active:after {
background-image: url(../../img/icons/arrow-up-acc.svg)
}
.accordion-container p,
.accordion-container ul {
margin: 0;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 1.6
}
.accordion-container ul {
margin: 25px 0 0px;
padding: 0 0 0 18px
}
.accordion-container ul li {
list-style-type: disc;
margin-bottom: 10px;
font-size: 18px;
font-style: normal;
line-height: 1.6
}
.accordion-container div.course-panel {
display: none;
transition: max-height .1s ease-out;
width: 100%;
font-size: 15px;
line-height: 1.6em;
letter-spacing: .4px;
font-weight: 400;
font-style: normal;
padding: 0;
margin-top: 20px
}
.accordion-container .course-accordion.active {
background-color: rgba(0, 0, 0, 0)
}
.pad-setting {
padding: 40px;
background-color: #fc0;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px
}
.table-rental {
border: 1px solid #ddd;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px
}
.table-rental .pricing-box-empty {
display: flex;
align-items: end;
background: #323232 !important;
color: #fff
}
.table-rental .pricing-box-empty h3 {
font-weight: 700;
font-size: 25px
}
.table-rental.pricing-container.table-revamp .c1>div {
background-color: #fff;
border-right: 1px solid #ddd;
text-align: center;
font-size: 16px;
font-weight: 600
}
.table-rental.pricing-container.table-revamp .c1>div b {
font-size: 16px;
font-weight: 600
}
.table-rental.pricing-container.table-revamp .c1:nth-child(odd)>div {
background-color: #f5f5f5 !important
}
.table-rental.pricing-container.table-revamp .pricing-heading figure {
padding: 10px;
border-right: 1px solid #ddd
}
.table-rental.pricing-container.table-revamp .pricing-heading figure img {
margin-bottom: 0 !important;
height: 75px;
width: auto;
margin: auto !important
}
.table-rental.pricing-container.table-revamp .pricing-heading figure figcaption {
padding: 10px;
background-color: rgba(0, 0, 0, 0) !important;
font-size: 18px;
font-weight: 600
}
.table-rental.pricing-container.table-revamp .pricing-box-car-1 {
background: #fff
}
.table-rental.pricing-container.table-revamp .pricing-box-car-1 .pricing-heading figure img {
margin-bottom: 0 !important
}
.terms-box {
padding: 25px 0;
border-bottom: 1px solid rgba(0, 0, 0, .12);
border-top: 1px solid rgba(0, 0, 0, .12)
}
.terms-box .terms-title {
position: relative;
display: flex;
align-items: center;
justify-content: space-between
}
.terms-box .terms-title:after {
content: "";
width: 15px;
height: 25px;
margin-left: 8px;
background-image: url(../../img/icons/arrow-down-acc.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center
}
.terms-box .terms-title.active:after {
background-image: url('../../img/icons/arrow-up-acc.svg')
}
@media screen and (max-width: 992px) {
body {
font-size: 14px;
padding-top: 0px !important;
}
.heading.h2 {
font-size: 30px
}
.heading.h3 {
font-size: 22px
}
.h-btn,
.h-btn:visited {
font-size: 14px
}
.new-ev-drivers .pad-set {
padding: 34px
}
.pad-setting {
padding: 20px;
background-color: #fc0
}
.vehicle-type-nav {
display: none !important
}
}
@media screen and (max-width: 768px) {
.rent-ev-block {
border-radius: 30px;
padding: 24px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
margin-top: 20px
}
.have-bg {
background-image: none !important;
padding: 0
}
.heading {
text-align: center
}
.heading.have-strip {
position: relative
}
.heading.have-strip::after {
width: 100px;
height: 4px;
background-color: #fc0;
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translate(-50%, 0);
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0)
}
.terms-box .heading.have-strip::after {
left: 0%;
transform: translate(0%, 0);
-webkit-transform: translate(0%, 0);
-moz-transform: translate(0%, 0);
-ms-transform: translate(0%, 0);
-o-transform: translate(0%, 0)
}
.column {
width: 100%
}
.content-wrapper {
text-align: center;
align-items: center
}
.common-margin-b {
margin-bottom: 40px
}
.common-pad {
padding: 40px 0
}
.row {
gap: 20px
}
.pad-setting {
padding: 0px;
background-color: #fff
}
.available-location * {
text-align: center
}
}
@media screen and (min-width: 768px) {
.hidden-dskp {
display: none
}
}
@media(min-width:767px) {
.car-card .content-wrap>div:nth-child(2) {
min-height: 260px;
}
}
@media(min-width:991px) {
.car-card .content-wrap>div:nth-child(2) {
min-height: 220px;
}
}
.car-card .content-wrap>div:nth-child(2) p {
font-size: 16px !important;
}

.locationList_scroll {
  max-height: 500px; /* approx. height for 4 records, adjust as needed */
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #000 transparent; /* Firefox fallback */
}

/* Chrome, Safari, Edge (WebKit) */
.locationList_scroll::-webkit-scrollbar {
  width: 8px;
}

.locationList_scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 8px;
}

.locationList_scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f4c400, #000);
  border-radius: 10px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.25);
  transition: background 0.3s, box-shadow 0.3s;
}

.locationList_scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #000, #000);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4);
}

@supports (-moz-appearance: none) {
  .locationList_scroll {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f0f0f0;
  }
}

.hs_outer_container {
text-align: left;
}
.hs_text_container h1,
.hs_text_container h2 {
font-size: 20px;
margin: 0 0 10px;
}
.hs_banner {
min-height: auto;
}

.max-width-set {
            gap: 20px;
            position: sticky;
            top: 120px;
            z-index: 104
        }

        @media screen and (max-width: 1199px) {
            .max-width-set {
                overflow: auto
            }

            .vehicle-type-nav.d-flex {
                width: 1200px
            }

            .vehicle-type-nav.d-flex a {
                padding: 10px 20px
            }
        }

        @media screen and (max-width: 992px) {
            .vehicle-type-nav.d-flex {
                display: flex !important
            }
        }

        @media screen and (max-width: 767px) {
            .max-width-set {
                top: 81px
            }
        }

        .vehicle-type-nav a {
            padding: 15px 0
        }

        .car-card .content-wrap>div:nth-child(2) p {
            font-size: 16px !important;
        }

        .car-card .content-wrap>div:nth-child(2) p {
            font-size: 14px !important;
        }

        .car-card .content-wrap>div:nth-child(2) p a {
            font-size: 16px !important;
            text-decoration: underline;
        }

        .heading.h4 {
            font-size: 20px;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .heading.h4 a {
            color: #000;
        }

        @media(min-width:767px) {
            .car-card .content-wrap>div:nth-child(2) {
                min-height: 302px;
            }
        }

        @media(min-width:991px) {
            .car-card .content-wrap>div:nth-child(2) {
                min-height: 230px;
            }
        }

        @media(max-width:767px) {
            .browser-fleet .car-card .content-wrap {
                gap: 0
            }
        }



/* Selected start/end dates */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
  background-color: #FFCC00 !important;
  color: #000;
  font-weight: bold;
}

/* Days inside the selected range */
.flatpickr-day.inRange {
  background-color: rgba(255, 204, 0, 0.3) !important;
  color: #000;
}

/* Optional hover effect */
.flatpickr-day:hover {
  background: #ddefff;
  color: #003366;
}

/* Weekend styling (optional) */
.flatpickr-day.weekend {
  background-color: #f8f9fa;
  color: #999;
}

/* Remove the default box-shadow on selected start/end range days */
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.error-message {
  color: red;
  font-size: 12px;
  display: block;
}

/* Only apply red border or effect to checkboxes with is-invalid */
input[type="checkbox"].is-invalid {
  outline: 2px solid #dc3545; /* Bootstrap red */
  outline-offset: 2px;
  border-radius: 2px;
}

.checkbox-wrapper .is-invalid + .checkbox-text {
  color: #dc3545;
}

.intl-tel-input {
  position: relative;
}

.intl-tel-input .form-control.is-invalid {
  border-color: #dc3545;
}

.intl-tel-input + .error-message {
  margin-top: 8px;
  position: absolute;
  left: 0;
}

#pickup-time, #dropoff-time {
  cursor: pointer;
}

#time-input-wrapper input[type="time"] {
  display: block !important;
}

#time-input-wrapper .form-group {
  margin-bottom: 0px !important;
}

#time-input-wrapper{
  display: contents;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, 
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], 
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  min-height: 50px;
  border: 1px solid rgba(34, 34, 34, 0.25);
  border-radius: 10px;
}

.intl-tel-input .selected-flag {
  padding: 0 0 0 4px !important;
}

.card-form {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  background: white;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15);
  max-width: 400px;
}

.card-form label {
  font-size: 14px;
  color: #6b7c93;
  margin-bottom: 4px;
  display: block;
}

.card-form input {
  font-size: 16px;
  padding: 12px;
  width: 100%;
  border: 1px solid #ccd0d2;
  border-radius: 4px;
  margin-bottom: 16px;
  box-sizing: border-box;
  color: #32325d;
  background: #fefefe;
}

.card-form input::placeholder {
  color: #a0aec0;
}

.card-form input:disabled {
  background-color: #f9f9f9;
  cursor: not-allowed;
}

.card-row {
  display: flex;
  gap: 10px;
}

.card-row > div {
  flex: 1;
}

.card-input-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border 0.2s ease;
}

.card-input-box.StripeElement--focus {
  border-color: #6772e5;
  box-shadow: 0 0 0 1px #6772e5;
}

.no-result .pickup_wrap {
  grid-template-columns: 100%;
}

.custom-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8d7da;
    color: #721c24;
    padding: 5px 20px;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
}

.available-vehicle-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8d7da;
    color: #721c24;
    padding: 5px 20px;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
    margin-bottom: 15px;
}

.alert-icon {
    font-size: 20px;
    margin-right: 10px;
}

.alert-text {
    flex: 1;
}

.alert-close {
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #721c24;
    cursor: pointer;
    margin-left: 15px;
}

.alert-close:hover{
  background-color: #f8d7da;
}

.custom-alert {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* DISABLED DATES - Holiday */
.custom-disabled-date {
    background-color: #fff0f0 !important;  /* softer red */
    color: #d32f2f !important;             /* strong red */
    pointer-events: none;
    opacity: 0.8;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

/* DISABLED WEEKDAYS */
.custom-disabled-weekday {
    background-color: #eef6fb !important;  /* soft blue-gray */
    color: #1e88e5 !important;             /* calm blue */
    pointer-events: none;
    opacity: 0.8;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

/* AVAILABLE DATES - Highlighted */
.custom-available-date {
    background-color: #f1fdf4 !important;  /* soft mint green */
    color: #2e7d32 !important;             /* deep green */
    border: 2px solid #81c784;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.35);
    transition: all 0.3s ease;
}

/* Hover effect for available dates */
.custom-available-date:hover {
    background-color: #d0f2da !important;
    transform: scale(1.05);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.highlight-blink {
    position: relative;
    background: linear-gradient(145deg, #e3f9e5, #c9f0d2);
    border: 2px solid #34c759;
    color: #14532d;
    border-radius: 50%;
    animation: pulseGlow 1.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
    transition: transform 0.3s;
    z-index: 2;
}

.custom-available-date.pulsing {
  animation: pulse-once 1.2s ease-out 1;
  border-radius: 50%;
}

.flatpickr-day {
    position: relative;
    margin: 2px;
    box-sizing: border-box;
}

.flatpickr-day.flatpickr-disabled[title] {
    pointer-events: auto !important;
    cursor: not-allowed;
}

.rate-item.d-flex.justify-between > span:first-child {
  max-width: 280px;
}

.hour-line {
  white-space: nowrap;
}

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  background-color: #eee;
  border-color: #ddd;
  cursor:pointer;
}

.inclusion-list {
  margin-bottom: 20px;
}

.inclusion-list li {
  line-height: 26px;
}

.pickup_form .form-input{
  height: 50px !important
}

.opening-hours .day-row {
  display: flex;
  margin-bottom: 6px;
}
.opening-hours .day {
  font-weight: bold;
}
.opening-hours .time-list {
  display: flex;
  flex-direction: column;
}
.opening-hours .time-slot {
  margin-left: 10px;
}
.opening-hours .closed {
  color: #999;
}

/***** extras page css start *****/
.main-content h3 {
  text-align: center;
  margin-bottom: 0px;
  font-weight: bold;
}

.bg-setting {
  padding: 15px;
  border-radius: 10px;
  background-color: #F3F4F8;
}

/* covarage-card layout */
.covarage-card {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 15px;

}

.covarage-card:last-child {
  margin-bottom: 0;
}

.covarage-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.covarage-card-header h3 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  text-align: left;
}

.covarage-card-header h3 span {
  color: #222;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px
}

.covarage-card-header h3 span.currency-name {
  font-size: 20px;
  margin-right: 2px;
}

.options .status,
.covarage-card-header .status {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  white-space: nowrap;
}

.covarage-card p {
  color: #000;
  margin-top: 0;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.80);
  line-height: 1.5;

}

.covarage-card-header .price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.coverage-right-site {
  padding: 20px;
}

.coverage-right-site .covarage-card {
  padding: 0;
}

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

/* Range slider */
.range-container input:focus,
.range-container input {
  outline: none;
  border-color: #b8b8b8;
  -webkit-box-shadow: none
}

.range-container {
  position: relative;
  margin-top: 40px;
}

.range-popup {
  position: absolute;
  top: -30px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  transform: translateX(0);
  white-space: nowrap;
  pointer-events: none;
}

.km-range {
  width: 100%;
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-top: 5px;
}

/* Options styling */
.option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s, border 0.3s;
  padding-left: 55px;
  position: relative;
}

.option:last-child {
  margin-bottom: 0;
}

.option input[type="radio"] {
  display: none;
}

.option-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.option .main-text {
  font-weight: bold;
  font-size: 20px;
  color: #222;
  display: block;
  margin-bottom: 4px;
}

.option .sub-text {
  font-size: 14px;
  color: rgba(34, 34, 34, 0.80);
  margin-top: 2px;
}

.option.selected {
  background: #FC0;
  border-color: #FFDA88;
}

.price-tag {
  font-size: 25px;
  font-weight: bold;

}

.price-tag span {
  font-size: 16px;
  font-weight: 600;

}

.price-tag span.currency-name {
  font-size: 20px;
  margin-left: 2px;
}

.check-box-circle {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(85, 85, 85, 0.467);
  border-radius: 50%;
  position: relative;
  margin-left: auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 25px;
}

.check-box-circle img {
  display: none;
}

.selected .check-box-circle img {
  display: block;
}

.selected .check-box-circle {
  background: #000;
  border: 2px solid #000;
}

.number-right-box {
  min-width: 150px;
  text-align: right;
}

.bg-transparent {
  background-color: transparent !important;
}

.mb-10 {
  margin-bottom: 10px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
      display: none;
  }

  .main-content {
      padding: 0 10px;
  }

  .covarage-card-header h3 {
      font-size: 16px;
  }

  .option-text {

      flex-direction: column;
      gap: 30px;
  }

  .number-right-box {
      min-width: 100%
  }
}

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

#slider-tooltip {
  transition: left 0.25s ease-in-out;
}

.flatpickr-disabled {
  opacity: 0.45 !important;
  pointer-events: none !important;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: #000 !important;
}

.custom-disabled-between-min,
.custom-disabled-after-max {
  background-color: #f0f0f0;
}

.inclusion-box {
  margin:  20px 0;
     
}
.inclusion-title {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
  position: relative;
  cursor: pointer;
}
.inclusion-title:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background:  url('../../img/icons/ufo_arrow.svg') no-repeat right center;
  transform-origin: center;
  transform: rotate(90deg);
  z-index: 0;
  transition: .3s;
}

.active .inclusion-title:before {
  transform: rotate(270deg);
}

.accr-body {
  display: none;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(34, 34, 34, 0.13);
}

/***** extras page css end *****/

@media only screen and (min-width: 1200px) {
  body {
    padding-top: 0px !important;
  }
}

#Desktop_canvas {
  width: 100% !important;
  height: 100% !important;
}

/******* Only For mobile devices *****/
@media (max-width: 768px) {

    /* STEP NAVIGATION WRAPPER */
    .cust_step-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fffce9;
        padding: 10px 8px;
        border-radius: 25px;
        border: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
    }

    /* INDIVIDUAL STEP */
    .cust_step {
        text-align: center;
        min-width: 0;
        padding: 0 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ICON CIRCLE */
    .cust_step .icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 6px;
        overflow: hidden;
        border: 1px solid #dcdcdc;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        transition: 0.25s ease;
        box-sizing: border-box;
    }

    /* ACTIVE STEP ICON */
    .cust_step.current-step .icon {
        transform: scale(1.05);
        box-shadow: 0 0 6px rgba(255,193,7,0.3);
    }

    /* ICON IMAGE */
    .cust_step img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    /* STEP LABEL */
    .cust_step .label {
        font-size: 11px;
        font-weight: 600;
        color: #000;
        line-height: 1.25;
        margin-top: 2px;
        margin-bottom: 0;
        text-align: center;
        display: block;
        white-space: normal;
        word-wrap: break-word;
    }

    .cust_step .label a,
    .cust_step .label {
        letter-spacing: 0.2px;
    }

    /* REMOVE DESKTOP HIGHLIGHT ON MOBILE */
    .current-step {
        border-bottom: none !important;
    }

    .cust_step .label a, .cust_step .label {
      letter-spacing: 0;
      font-size: 14px;
      padding: 0;
    }

    /* SECOND NAVIGATION PADDING */
    .d-flex.flex-wrap.justify-center.justify-md-end.align-center.gap-3 {
      margin-bottom: 15px;;
    }

    /* HIDE ARROW ICON */
    .d-md-a-none {
        display: none !important;
    }
}

@media (max-width: 575px) {
  .payment-summery-sec .fs-22 {
    font-size: 18px !important;
    line-height: 1.5;
  }
}
/******* Only For mobile devices *****/
.full_container.hs_white .hs_container .hs_outer_container {
    min-height: calc(100vh - 185px);
}
