@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Noto+Kufi+Arabic:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Noto+Kufi+Arabic:wght@700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap');


@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}


* {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --white-100: #f5f5f5;
  --white-200: #f6f6f6;
  --gray: #555555;
  --cd-blue: #595DA9;
  --cd-orange: #FF7938;
  --offers-waiting: #1084a4b3;
  --cd-skyblue: #cfebbf;
  --cd-hueblue: #005490;
}



body .wrapper {
  overflow-x: clip;
}

p {
  font-family: 'ABeeZee', sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;

}

a {
  color: var(--dark-grey);
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-grey);

  line-height: 1.5;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 46px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

ul {

  list-style: none;
  padding: 0;
  margin: 0;
}


/*LayOut CSS*/
#brand-model-label {
  background-color: rgb(230, 230, 230);
  color: rgb(107, 107, 107);
  box-shadow: none;
  border: medium;
  text-transform: capitalize !important;
  font-family: "Poppins", serif;
  font-weight: 400;
  padding: 6px 27px;
  border-radius: 12px;
  text-align: center;
  margin: 4px;
  max-width: 100%;
  max-width: 100%;
  min-width: 120px;
  /* Set a minimum width for the button */
  width: 150px;
}

#brand-model-label span {
  text-transform: capitalize;
}

/* Highlight label when checkbox is checked */
#brand-model-label.active {
  background-color: orange !important;
  color: white;
  border-radius: 4px;
  padding: 4px 8px;
  transition: 0.3s ease;
}

.visual-checked {
  background-color: rgb(255, 242, 235);
  color: rgb(255, 76, 0);
  font-weight: bold;
}

#make_model_dropdown .accordion-body,
#more_filter_dropdown.accordion-body {
  padding: 2px;
}

.btn-total-cars-dropdown {
  background-color: rgb(205, 205, 205);
}

#models-count {
  display: inline-block !important;
  visibility: visible !important;
}

#models-count:empty {
  display: none;
}


[class^="filter-num-brand-"] {
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 5px;
  margin-left: 5px;
}

html[dir="rtl"] .accordion-button::after {
  margin-right: auto;
  margin-left: 2px;
  left: 2px;
}

.exterior_color.form-check {
  border: 1px solid rgb(253, 195, 167);
  padding: 12px;
  border-radius: 8px;
}

.test_color.active label span.small {
  color: #ff4c00;
  font-weight: bold;
}

.city-label-btn {
  display: inline-block;
  width: 100%;
  padding: 7px 12px;
  background-color: rgb(230, 230, 230);
  color: rgb(107, 107, 107);


  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  font-size: 13px;
  border-radius: 12px;
  transition: background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
  font-weight: 600;
  margin: 3px;
}

input.btn-check:checked+label.city-label-btn {

  background-color: #ffedda;
  color: rgb(255, 76, 0);
  font-weight: bold;
}

.form-check.active label.city-label-btn {
  background-color: #ffedda;
  color: rgb(255, 76, 0);
  font-weight: bold;

}

.btn-transmission-label,
.btn-cyl-label,
.btn-fuel-label {
  display: inline-block;
  width: 100%;
  padding: 7px 12px;
  background-color: rgb(230, 230, 230);
  color: rgb(107, 107, 107);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin: 3px;
}

input[type="checkbox"]:checked+.btn-transmission-label {
  background-color: #ffedda;
  color: rgb(255, 76, 0);
  font-weight: bold;
}

input[type="checkbox"]:checked+label.btn-cyl-label,
input[type="checkbox"]:checked+label.btn-fuel-label {
  background-color: #ffedda;
  color: rgb(255, 76, 0);
  font-weight: bold;
  border-color: rgb(255, 76, 0);
}

/* Make selected transmission orange */
input.btn-check.test_transmission:checked+label.transmission-label-btn {
  background-color: #fd7e14;
  color: #fff;
  border-color: #fd7e14;
}



.btn-apply-orange {
  background-color: rgb(255, 121, 56);
  border: 1px solid rgb(255, 121, 56);
  box-shadow: none;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 5px 20px;
  font-weight: 700;
}

.btn-apply-orange:hover {
  color: white;
}

.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.offer {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 20px;

  padding: 0px 12px 5px 28px;


  background-repeat: repeat;
  color: white;
  background-repeat: no-repeat;
  background-position: 4px 9px;

  position: absolute;
  top: 14px;
  left: 20px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  gap: 0.5rem;
  background-color: #00A5FF;
  font-family: 'Poppins';
}


html[dir="rtl"] .offer {
  left: auto !important;
  right: 15px !important;
}


.offers-card {
  border: 1px solid var(--cd-orange);

  border-radius: 12px;
}

.offers-card img {
  border-radius:
    8px;
  object-fit: contain;
  border:
    1px solid rgb(227, 227, 227);
  width: 72%;
}

.offers-badge-orange {
  background-color: rgb(255, 108, 20);
  padding: 0px 9px;
  border-radius: .25rem;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 29px;
}

.offers-badge-orange img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


.offers-badge-blue {
  background-color: var(--cd-blue);
  padding:
    9px;
}


.offers-btn {
  background-color: transparent;
  font-size: .75em;

  font-weight: 700;
  line-height: 1;
  color: var(--cd-blue);
  text-align: center;

  border-radius:
    .25rem;
  padding: 9px;
  border: 2px solid var(--cd-blue);

}

.discountTagDetails li i {
  margin-right: 6px;
  vertical-align: middle;
}

.discountTagDetails li span {
  flex:
    1 1;
  color: #7e859b;
}

.discountTagDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:
    12px;
}

/* Add this to your CSS file */
.filter-dropdown-btn {
  transition: all 0.3s ease;
}

.filter-dropdown-btn.filter-active {
  background-color: #FF8C00 !important;
  /* Orange color */
  color: white !important;
  border-color: #FF8C00 !important;
}

.form-check input[type="checkbox"]:checked+#brand-model-label {
  background-color: rgb(255, 242, 235);
  color: rgb(255, 76, 0);
  font-weight: bold;

}

/* Optional: Reset to default background when checkbox is unchecked */
.form-check input[type="checkbox"]:not(:checked)+#brand-model-label {
  background-color: rgb(230, 230, 230);
  color: rgb(107, 107, 107);
}

.filter-num {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #212529;
}

.c-brand img {
  max-width: 51px;
  max-height: 51px;
  margin: 4px;
}

/* For when the dropdown is in active state */
.filter-dropdown-btn.filter-active .filter-num {
  background-color: white;
  color: #FF8C00;
}

/* Add this to your CSS file */
.filter-dropdown-btn.filter-active {
  background-color: #FF8C00;
  /* Orange color */
  color: white;
  border-color: #FF8C00;
}

.brand-make-label .form-check {
  padding-left: 0px !important;
}

/* Style for brand accordion buttons with selected models */
.accordion-button.has-selected-models {
  color: #FF8C00;
  /* Orange text color */
}

.accordion-button .filter-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 10px;
  background-color: #FF8C00;
  color: white;
  font-size: 12px;
  font-weight: 500;
}

/* Filter numbers on the main dropdown button */
.filter-dropdown-btn .filter-num,
#mobile-active-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 10px;
  background-color: white;
  color: #FF8C00;
  font-size: 12px;
  font-weight: 500;
}

/* When dropdown is not active (default state) */
.filter-dropdown-btn:not(.filter-active) .filter-num {
  background-color: white;
  color: #FF8C00;

}

.model.all-brands {
  border:
    1px solid #ff9019;
  padding:
    10px;

}

.trans.all {
  border:
    1px solid #ff9019;
  padding:
    10px;
}

.s-brand img {
  width: 22px;
}

.active-orange {
  background-color: #FF8C00 !important;
  color: white !important;
  border-color: #FF8C00 !important;
}


.model .badge {
  color: white !important;
  background-color: var(--cd-orange) !important;
}

.brand-body-accordion {
  padding: 9px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #f9f9f9 !important;
}

.accordion-button:focus {
  border-color:
    #ec690a9c !important;

  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0) !important;
}

.results-badges {

  align-items: center;
  background-color: rgb(229, 241, 255);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  padding: 8px 12px;
  height: 32px;
  font-size: 14px;
  line-height: 23px;
  color: rgb(0, 117, 255);
  text-transform: uppercase;
  font-family: "Gilroy", serif;
  font-weight: 700;
  letter-spacing: 0.9px;
  font-weight: 700;

}

.remove-tag {
  font-size: 13px;
}

#clear_tags {
  color: var(--cd-orange);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;

}


.login-modal-form div {
  display: grid;
}

.login-modal-form .flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.login-modal-form .flex button {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-color: transparent;
  border-radius: 0.375rem;
  margin-left: 1rem;
  background-color: #1f2937;
}

.login-modal-form input {
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 10px;
  background: white;
}

.login-modal-form input.button {
  padding: 0px;
  margin-top: 30px;
}

.relative {
  position: relative;
}

.flagDiv {
  position: absolute;
  top: 15px;
  font-size: 13px;
  display: none;
  font-weight: 600;
  left: 5px;
}


/*Skeleton Styles*/

.loading-skeleton h1,
.loading-skeleton h2,
.loading-skeleton h3,
.loading-skeleton h4,
.loading-skeleton h5,
.loading-skeleton h6,
.loading-skeleton p,
.loading-skeleton li,
.loading-skeleton .btn,
.loading-skeleton label,
.loading-skeleton .form-control,
.loading-skeleton ul li,
.loading-skeleton .navbar-light .navbar-nav .nav-link {
  color: transparent;
  background-color: #eee;
  border-color: #eee;
  border-radius: 10px;
  line-height: 0.9;
}

.loading-skeleton .card {
  border: none;
}

.loading-skeleton .card .card-body {
  padding: 1.25rem 0px 0px 0px;
  text-align: left;
}

html[dir="rtl"] .loading-skeleton .card .card-body {
  text-align: right;
}

.loading-skeleton .card-img,
.card-img-top {
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.loading-skeleton h1::placeholder,
.loading-skeleton h2::placeholder,
.loading-skeleton h3::placeholder,
.loading-skeleton h4::placeholder,
.loading-skeleton h5::placeholder,
.loading-skeleton h6::placeholder,
.loading-skeleton p::placeholder,
.loading-skeleton li::placeholder,
.loading-skeleton .btn::placeholder,
.loading-skeleton label::placeholder,
.loading-skeleton .form-control::placeholder {
  color: transparent;
}

.loading-skeleton .card-body {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  padding-bottom: 1rem !important;
}

@keyframes loading-skeleton {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.loading-skeleton {
  pointer-events: none;
  animation: loading-skeleton 1s infinite alternate;
}

.loading-skeleton img {
  filter: grayscale(100) contrast(0%) brightness(1.8);
}

.w-30 {
  width: 30%;
}

/*End Skeleton Styles*/

.more-desktop-dropdown #desk-more-menu {
  border-top: 2px solid var(--cd-orange);
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 30px 60px 0px #24272C1A;

  position: absolute;
  left: 0px;
  top: 138%;
  width: 195px;
  background: #fff;
}

.more-desktop-dropdown #desk-more-menu li>a {
  color: var(--cd-blue);
  /* Sets link color */
}

.more-desktop-dropdown #desk-more-menu li>a:hover {
  color: var(--cd-orange) !important;

}




#moreDropdown .icon i {
  font-size: 12px;
}

#header .navbar .dropdown-menu.profile,
#header .navbar .dropdown-menu.login {
  min-width: 20rem;
  padding-top: 0;
}

#header .navbar .dropdown-menu.login .dropdown-item.head:active {
  color: var(--dark-grey);
}

#header .navbar .dropdown-menu.login .dropdown-item:not(.head),
#header .navbar .dropdown-menu.login .dropdown-item:not(.head) .icon .bi {
  color: #a6a6a6;
}

#header .navbar .dropdown-menu.login .dropdown-item:not(.head):hover,
#header .navbar .dropdown-menu.login .dropdown-item:not(.head):active,
#header .navbar .dropdown-menu.login .dropdown-item:not(.head):focus {
  background-color: transparent;
  color: #a6a6a6;
}

#header .navbar-nav .dropdown-menu .dropdown-item {
  font-weight: 600;
}

#header .right-nav span .bi {
  font-size: 20px;
  color: var(--purple);
}

#header .right-nav .favorite .bi {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

#header .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #e7e8f3;
  color: var(--dark-grey);
}

#header .navbar-nav .dropdown-menu .dropdown-item:active {
  background-color: var(--purple);
  color: var(--white);
}

#header .navbar .dropdown-menu .dropdown-item.head {
  display: flex;
  align-items: start;
  padding: 15px;
  background-color: #fdd6bc;
  margin-bottom: 20px;
}

#header .navbar .dropdown-menu.profile .dropdown-item,
#header .navbar .dropdown-menu.login .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .dropdown-item.head .nav-link.login {
  width: 100%;
  text-align: center;
  background: var(--purple);
  color: #fff;
}

#header .dropdown-item.head .register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

#header .navbar .dropdown-menu.profile .dropdown-item.logout,
#header .navbar .dropdown-menu.login .dropdown-item.logout {
  padding: 15px 1rem;
  margin-top: 20px;
  border-top: 1px solid #ededed;
}

#header .navbar .dropdown-menu.profile .dropdown-item .icon .bi {
  font-size: 20px;
  color: var(--purple);
}

#header .navbar .dropdown-menu.login .dropdown-item .icon .bi {
  font-size: 20px;
  color: var(--gray);
}

#header .dropdown .dropdown-toggle:hover {
  color: var(--purple);
}

#header .navbar-light .navbar-toggler {
  border: none;
}

#header .navbar-light .navbar-toggler:focus {
  box-shadow: none;
}

#header .navbar-light .navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
  font-size: 36px;
  color: var(--purple);
}




.bi-heart-fill {

  color: var(--cd-orange)
}

.input-group-text {
  background-color: var(--white);
  border: none;
}

.form-control {
  border: none;
  border-radius: 4px;
  padding: 10px 5px;
}

.input-group {
  border: 1px solid #ededed;
  border-radius: 4px;
  margin-bottom: 16px;
}

input {
  margin-left: 0 !important;
}

input::placeholder {
  font-weight: normal;
  /*text-transform: capitalize;*/
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  padding: 15px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid var(--sky);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  margin-top: -10px;
}

input[type="range"]::-moz-range-thumb {
  border: 2px solid var(--sky);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type="range"]::-ms-thumb {
  border: 1px solid var(--sky);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--sky);
  border-radius: 1.3px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--green);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--sky);
  border-radius: 1.3px;
}

input[type="range"]:focus::-moz-range-track {
  background: var(--green);
}

.toggle-password {
  font-size: 20px;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 11px;
  top: 8px;
}

html[dir="rtl"] .toggle-password {

  right: auto;
  left: 11px;
}


.input-group-text {
  background-color: #F8F8F8;
}









.vehicle-features {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  /* Adjusted for a more balanced look */
  background-image: url('../assets/images/background.png');
  background-position: left bottom;
  background-size: contain;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  /* Prevents tiling */
  padding: 20px;
  /* Adds spacing inside the container */
}

.vf-icons {
  background: #eee;
  padding: 4px;
  border-radius: 7px;
  height: 29px;
  width: 26px;
  align-content: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.vf-btn {
  border: 2px solid var(--cd-orange);
  background-color: white;
  color: var(--cd-orange);
  border-radius: 8px;
  padding: 11px 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.vf-modal {
  box-shadow: 0px 20px 50px 0px #2e2e2e0d;
  border-radius: 12px;
}



#header {
  background: #F5F5F5;
}

#header .nav-item .nav-link {
  color: var(--cd-blue);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

#header .nav-link.lang {
  color: var(--cd-orange);
}

#header .nav-link.lang:hover {
  color: var(--cd-blue);
}

.logo-brand {
  width: 200px;
}

.logo-brand img {
  width: 90%;
}

#header .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background-color: var(--cd-orange);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
  border-radius: 55px;
}

#header .nav-item .nav-link:hover::after,
#header .nav-item .nav-link.active::after {
  width: 18%;
  left: 50%;
}

#header .nav-item .nav-link:hover,
#header .nav-item .nav-link.active {
  color: var(--cd-orange) !important;
}




.header-btn-login,
.header-btn-signup {
  border-radius: 50px;
  padding: 10px 39px;
  color: var(--cd-blue);
  font-size: 18px;
  line-height: 28px;
  color: white;
}

.header-btn-login {
  border: 1px solid #006AB8;
  background: white;
  color: #006AB8;
}


.header-btn-signup,
.contact-btn {
  background: linear-gradient(276.98deg, #00A5FF 9.86%, #006AB8 89.09%);
}

/*End Header Section*/
/*Footer Section*/
.footer {
  background-color: var(--cd-blue);
}

.footer p,
.footer a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--white);
}

/*End Footer*/

/*FAQ*/
#faq-banner {
  background-color: var(--white-100);
}

#faq-banner .container {
  background: #FF793838;
  border-radius: 14px;
}

#faq-banner h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 79.23px;
  color: var(--cd-orange);
  font-style: italic;
}

.faq-row .card-img-top {
  width: 100px;
  /* or whatever size you want */
  height: 120px;
  object-fit: contain;
  /* or cover, depending on image type */
}

.faq-row .card {
  border-radius: 12px;
}



.faq-row .card:hover {
  box-shadow: 0px 16px 32px 0px #0000000D;
  border: 1px solid var(--cd-orange);
  background: linear-gradient(90deg, #fff, #f4f4f4);
  border-radius: 18px;
}

.faq-row .card:hover h5 {
  color: var(--cd-orange);
}

.accordion-button:not(.collapsed) {
  color: var(--cd-orange);
}

.faq-detail-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-us h2 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 44px;
  color: var(--cd-orange);
}


/*About*/
#about {

  border-bottom-left-radius: 100% 900px;
  border-bottom-right-radius: 100% 900px;
  width: 160%;
  overflow: hidden;

  position: relative;
  left: -30%;
  color: white;
  background: linear-gradient(135deg, #ff6347 0%, #ff7f50 50%, #ffa500 100%);
  padding: 80px 0;

  color: white;
}

html[dir="rtl"] #about {
  right: -30%;
  left: auto;
}

#about .logo-pattern img {
  opacity: 0.4;
  width: 18%;
}

.premium-brand {
  border: 1px solid red;

  border: 1px solid var(--Border, #E1E1E1);
  border-radius: 16px;
  height: 180px;
  padding: 0 40px 0 39px;
  position: relative;
}

.premium-brand:hover {
  border: 1px solid var(--cd-blue);
  transition: all 0.3s ease;
}



.premium-brand:hover .about-brand-img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.premium-brand h6 {
  font-size: 18px;
  font-weight: 600;
}

.premium-brand h6:hover {
  color: var(--cd-orange);
  font-weight: 700;
}

#features h3 {
  font-weight: 700;
}

.values-inner h3 {
  font-weight: 700;
}

.value-cards h5 {
  font-weight: 600;
}

.mission-cards {
  padding: 32px;
  border: 1px solid #ffd3c2;
  margin: 5px;
  margin-bottom: 5px;
  border-radius: 22px;
  background: #ffeadb;

}

html[dir="rtl"] .mission-cards p {
  font-size: 16px;
}

.orange-shadow {

  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 20px;
  background: red;

}

.mission-cards img {
  width: 26%;
}



.mission-cards h5 {
  font-weight: 600;
}



.about-brand-img {
  width: 110px;
  height: 100px;
  object-fit: contain;

  padding: 16px;

}

.car-here {
  position: relative;
}

.count-style::before {
  content: "";
  position: absolute;
  border: 1px solid #8c8989;
  height: 100px;
  right: 48%;
}

.car-here img {
  border-radius: 18px;

}

.car-here h3,
.car-here span {
  color: white;
}

#about-us-detail .count-style {
  position: absolute;
  bottom: 0;
  left: 20px;
  background-color: #5d5d5d3b;
  display: flex;
  gap: 80px;
  padding: 30px 40px;
  border-radius: 20px;
  border: 3px solid #5f6668;
  bottom: 20px;
  backdrop-filter: blur(5px);
}

html[dir="rtl"] #about-us-detail .count-style {
  left: auto;
  /* Override left with auto for RTL */
  right: 20px;
  /* Align to the right */
  direction: rtl;
  /* Switch direction for RTL */
}

.about-content h6,
.orange-title {
  color: var(--cd-orange);
}

.chosse-cards p {
  font-size: 15px;
  line-height: 21px;
}

.about-content h3,
#cardelo-outlet-headings .main-heading,
#outlet-faq .main-heading,
#outlet-brands-carousel .main-heading {
  position: relative;
  font-weight: 700;
  font-size: 44px;
  line-height: 55px;
  font-family: 'ABeeZee', sans-serif;
  font-style: italic;
  text-transform: capitalize;


}

html[dir="rtl"] .about-content h3,
html[dir="rtl"] #cardelo-outlet-headings .main-heading {
  font-size: 38px;
}

.about-content h3 span {
  position: relative;
  color: #000;
  z-index: 1111;
}

h3 span::before {
  position: absolute;
  width: 100%;
  height: 30px;
  background-image: url(../assets/images/text-line.png);
  content: "";
  background-repeat: no-repeat;
  bottom: -20px;
  background-size: 100%;
  z-index: -1;
  animation: textline 8s infinite;
}

.about-content p {
  line-height: 31px;
}

.about-content .list-style {
  list-style-type: square;
  padding-left: 1.2rem;
}

.about-content .list-style li {
  color: black;
  font-size: 16px;
}

.about-content .list-style li::marker {
  color: var(--cd-orange);
  font-size: 1.5em;

}

.value-cards {
  border: 2px solid #f1f1f1;
  ;
  background-color: #f1f1f1;
  padding: 18px;
  border-radius: 19px;


}

.a-contact {


  /* Apply background gradient */
  background: linear-gradient(rgb(231, 93, 10), rgba(255, 102, 7, 0.77)), url('../assets/images/testimonial-bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.a-contact h3 {
  font-weight: 800;
}

html[dir="rtl"] .a-contact h3 {
  font-size: 31px;
}

/* Black Button Styles */
.btn-black {
  background-color: black;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;

  border-radius: 14px;
  font-weight: 700;
}

.btn-black:hover {
  background-color: #333;
  /* Darker shade of black on hover */
  color: white;
}

/*Reservation*/
.reservation-wrapper .purchase-info {
  border: 1px solid white;
  padding: 30px;
  border-radius: 22px;
  position: relative;
  background-color: white;
  margin-top: 34px;
  box-shadow: 0px 20px 50px 0px #0000000D;
}

#reservation .purchase-info .nav-tabs .nav-link {

  width: 100px;
  padding: 11px;
  display: block;
  background-color: #f0f3f5;
  height: 50px;
  font-weight: 500;
  border-radius: 10px !important;
  border: 1px solid #a6a6a6;
  color: black;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid #a6a6a6 !important;
}

.reservation-wrapper .purchase-info #myTab {
  border: 0px;
  margin-top: -58px;
}

#reservation .purchase-info .nav-tabs .nav-link.active {
  border: 3px solid rgb(255, 95, 0) !important;
  color: rgb(255, 95, 0);

  outline: none;

}

#reservation .purchase-info form.buyer-info .form-control {
  color: rgb(166, 166, 166);
  padding: 12px;

}

#reservation .purchase-info form.buyer-info select {
  border: 1px solid #a6a6a6;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 10px;
  color: var(--sky);
  font-weight: 600;
}

.add-your-info {
  color: var(--cd-orange);
  text-transform: uppercase;
  text-align: center !important;
}

.btn-verify {
  color: var(--cd-blue);
  font-weight: 700;
}

#reservation .purchase-info form.buyer-info input {

  margin: 5px;
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  ;

}

#reservation .purchase-info form.buyer-info label {
  font-family: 'Poppins', sans-serif;
  color: #000;
  text-transform: uppercase;
}

.btn-continue {
  border: 2px solid var(--cd-orange);
  background: white;
  color: var(--cd-orange);
  font-size: 18px;
  padding: 6px 27px;
  border-radius: 12px;
  font-weight: bold;
}

.btn-continue:hover {
  background-color: var(--cd-orange);
  color: white;
  transition: 0.3s ease-in-out;
}

.reservation-wrapper {
  background: #f0eded;
}



.reservation-wrapper .payment-details .card {
  background-color: rgb(255, 248, 246);
  border-radius: 30px;
  padding: 40px;
}

.reservation-wrapper .payment-details .card .head img {
  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 18px;
}

.reservation-wrapper .payment-details .vehicle-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dedede;
}

.reservation-wrapper .payment-details .vehicle-info .title {
  font-weight: 700;
}

.notification-toggle .bg-primary {
  background-color: var(--cd-orange) !important;
  top: 2px !important;
  right: -9px !important;
  left: auto !important;
  font-size: 10px;
  color: white;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  padding-top: 2px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
}

.notification-toggle i.bi-bell,
.notification-toggle.nav-link {
  color: var(--cd-orange) !important;
}

.notification-toggle.nav-link {
  padding: .5rem;
  font-size: 17px;
}

.notification-toggle.dropdown-toggle::after {
  content: unset !important;
}



html[dir="rtl"] .notification-toggle .bg-primary {
  background-color: var(--cd-orange) !important;
  right: auto !important;
  left: 4px !important;
  font-size: 10px !important;
  top: 8px !important;
}

html[dir="ltr"] .notification-toggle .bg-primary {
  background-color: var(--cd-orange) !important;
  left: auto !important;
  right: -17px !important;
  font-size: 10px !important;
  top: 8px !important;
}

.notifications-list {
  width: 300px;
  padding: 0 !important;
  position: fixed !important;
  top: 100px !important;
  right: 0 !important;
  height: 100vh !important;
  overflow-y: auto !important;
  z-index: 1000 !important;
  /*    background-color: #f3f3f3 !important;*/
  box-shadow: -5px 0px 5px #595da94a !important;
}

html[dir="rtl"] .notifications-list {
  left: 0 !important;
  right: auto !important;
}

.notifications-list .notification {
  cursor: pointer;
  padding: 10px 20px;
  font-family: sans-serif !important;
  border-bottom: 1px solid #eee;
}

.notifications-list .notification .notification-title:hover {
  background-color: initial !important;
}

.notifications-list .notification.read .notification-title {
  color: #878787;
}

.notifications-list .notification:hover {
  background-color: #595da94a !important;
}

.notifications-list .notification .notification-title {
  font-weight: 700 !important;
  padding: 0 !important;
  font-size: 14px;
}

.notifications-list .notification .notification-desc {
  font-size: smaller;
  margin-bottom: 3px;
  text-align: start;
}

.notifications-list .notification .notification-time {
  margin-bottom: 0;
  font-size: 11px;
  text-align: end;

}

.popover-header {
  background-color: transparent;
  border-bottom: 0;
}

.popover-body {
  padding-top: 0.5rem;
}

.dropdown-menu[data-bs-popper] {
  right: 0;
  left: initial;
}

.sticky-top {
  z-index: 888;
}

#pushNotificationModal .modal-content {

  position: absolute;
  top: 0;
}

#header .right-nav span .bi {
  font-size: 20px;
  color: var(--purple);
}

.profile {
  background: #f0eded;
}

.profile-head {
  background: linear-gradient(135deg, #FFA500, #FFF8DC, #f5f5dc);
  background: linear-gradient(135deg, #FFA500, #FFF8DC);
  background: linear-gradient(135deg, #c7d2fe, #FFF8DC);
  background: linear-gradient(135deg, #fed1c7, #FFF8DC);

  height: 59px;
  border-radius: 12px 12px 0px 0px;
}

.profile-head-change {
  background: linear-gradient(135deg, #c7dcfe, #F4E4A5);
  height: 59px;
  border-radius: 12px 12px 0px 0px;
}

.profile-head-delete {
  background: linear-gradient(135deg, #ec3208, #FFF8DC);
  height: 59px;
  border-radius: 12px 12px 0px 0px;
}

.profile .sidebar .list-group-item.active {
  background-color: var(--cd-orange) !important;
  border-color: orange !important;
  color: white !important;
}

.profile .sidebar .list-group-item {
  background: #e6e6e6 !important;
  border-radius: 8px !important;
  border: none !important;
}

.profile .sidebar {
  background: #f5f5f5;
  padding: 20px;
  border-right: 1px solid #ddd;
}

#contact-info .form-control {
  border: none;
  border-radius: 7px;
  padding: 12px 19px;
  background: #f4f3f3;
}

#contact-info .form-group label {
  font-family: 'Poppins', sans-serif;
}

.number .verified {
  top: 0;
  bottom: 0;
  display: none;
  right: 0;
  border-radius: 0px;
  padding-top: 9px;
  background: var(--cd-orange);
  filter: drop-shadow(1px 1px #ccc);
  color: white;
  width: 30px;
  text-align: center;
  z-index: 999;
  position: absolute;
  right: 0;
}

.verified_email {
  top: 0;
  bottom: 0;
  display: none;
  right: 0;
  border-radius: 0px;
  padding-top: 9px;
  background: var(--cd-orange);
  filter: drop-shadow(1px 1px #ccc);
  color: white;
  width: 30px;
  text-align: center;
  z-index: 999;
  position: absolute;
  right: 0;
}

.btn-complete-profile {
  border: 2px solid var(--cd-blue);
  color: var(--cd-blue);
  padding: 8px 19px;
  font-weight: 700;
  text-transform: capitalize;
}

.btn-complete-profile:hover {
  background-color: var(--cd-blue);
  color: white;
}

#header .navbar .dropdown-menu.profile {
  background-color: white;
}


#my-profile .profile form .btn-save-profile,
.btn-save-pass {
  margin-left: auto;
  display: block;
  border: 2px solid #f86538;
  color: #f86538;
  padding: 8px 19px;
  font-weight: 700;
}

#my-profile .profile form .btn-save-profile:hover {
  background-color: #f86538;
  color: white !important;
}

#password .form-control {
  border: 1px solid rgb(224, 223, 223);
}

.welcome-title {

  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #130606;
}


.favourites .result-card .favorite {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.favourites .result-card .card-title {
  font-weight: 700;
  font-size: 20px;
}

.favourites .result-card .specifications {
  color: rgb(105, 98, 98);
  font-weight: 400;
}

#finance-banner {

  background: #FFF9F5;

  padding: 64px 0px;
}





#finance-form .finance-inner .title {
  color: var(--cd-blue);
}

#finance-form .finance-inner h4 {
  color: black;
  font-size: 55px;
  line-height: 59px;
}

#finance-form .btn-finance-request {
  padding: 10px 30px 15px;
  font-weight: 500;
  text-align: center;
  background: var(--cd-orange);
  color: var(--white);
  border: 1px solid var(--cd-orange);
  transition: .3s ease-in-out;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--cd-orange);

}

#finance-form .btn-finance-request:hover {
  color: var(--cd-orange);
  border: 2px solid var(--cd-orange);
  background-color: white;
}

#finance-form .powered-by #form-container {

  background-color: #f5faff;
  padding: 48px;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px;

}

#finance-form .powered-by #form-container .personal-info {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px;
  padding: 22px;
  background: white;
  border-radius: 22px;
}

#finance-form .powered-by #form-container .personal-info .finance-personal {
  border: 1px solid #DADBFF;
  border-radius: 19px;
  padding: 29px;
  margin: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px;
}

#finance-form .powered-by #form-container .personal-info .finance-personal .form-control {
  padding: 10px 20px;
  color: #1e266d;
  margin: 6px 0px 6px 0px;
  font-family: var(--body-font);

  background: #f5faff;
  border: 1px solid #eef1ff;
  border-radius: 5px;
}

#finance-cards-bottom .fi-card {
  background-color: white !important;
  padding: 48px !important;
  border-radius: 22px !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px !important;
}

#finance-form .powered-by #form-container .personal-info .finance-personal label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

#finance-form .powered-by #form-container .personal-info .finance-personal .finance-next-info-btn {
  margin: 0 auto;
  font-weight: 500;
  text-align: center;
  background: var(--cd-blue);
  color: var(--white);
  border: 1px solid var(--cd-blue);
  font-size: 16px;
  border-radius: 32px;
  font-weight: 700;
  padding: 10px 80px 15px;
  margin-top: 18px;
}


#finance-form .powered-by #form-container .financial-info {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px;
  padding: 22px;
  background: white;
  border-radius: 22px;
}

#otp,
#submit-otp,
#verify-message,
.baccount-details {
  display: none;
}

#finance-form .powered-by #form-container .financial-info {
  border: 1px solid #CBCDFF;
  border-radius: 19px;
  padding: 28px;
  margin: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 50px 0px;
}

#finance-form .powered-by #form-container .finance-inforamtion .form-control {
  padding: 10px 20px;
  color: #1e266d;
  margin: 6px 0px 6px 0px;
  font-family: var(--body-font);

  background: #f5faff;
  border: 1px solid #eef1ff;
  border-radius: 5px;
}


#finance-form .powered-by #form-container .finance-inforamtion label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}


.back-to-personal {

  font-weight: 500;
  background: white !important;
  color: var(--cd-blue);
  border: 0px !important;
  font-size: 16px;
  line-height: 19px;

  font-weight: 700;


}

.digit-group input {
  width: 50px;
  height: 60px;
  border-color: #138fb4;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  margin: 0 2px;
  margin-left: 2px;
  padding: 0 5px;
  background: #fff;
  border: 1px solid #138fb4;
  border-radius: 3px;
}




#confirmed-message .order-congratulations .congratulate-heading {
  color: var(--cd-orange);
  font-family: 'ABeeZee', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 36px;


}



#confirmed-message .order-congratulations .congratulate-order-detail {
  background-color: white;
  border-radius: 22px;

}

#confirmed-message .order-congratulations .congratulate-order-detail .title {
  font-weight: 600;
  font-size: 21px;

}

#confirmed-message .order-congratulations .congratulate-order-detail .order-number {
  font-size: 22px;
  font-weight: 600;
}

#confirmed-message .order-congratulations .order-btns {
  padding: 9px 34px;
  background-color: var(--cd-orange);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid var(--cd-orange);
}

#confirmed-message .order-congratulations .congratulate-image {
  border-radius: 22px;
  box-shadow: 0px 20px 50px 0px #0000000D;
}

#my-orders .orders .card {
  padding: 30px;
  border: 0;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
}

#my-orders .orders .order_info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-flow: row wrap;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

#my-orders .orders .order_head {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex: 1 0 auto;
  border: 1px solid #ededed;
  border-radius: 4px;
  padding-right: 20px;
}

#my-orders .orders .order_head .img {
  width: 150px;
}

#my-orders .orders .order_head {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex: 1 0 auto;
  border: 1px solid #ededed;
  border-radius: 4px;
  padding-right: 20px;
}

.orders_in-progress .welcome-title,
.track-order_wrapper .welcome-title,
#confirmed-message .welcome-title {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #130606;
}



.order-total-right {
  margin-left: 20px;
  /* space between title and price */
  white-space: nowrap;
  /* keep price in one line */
}

.order .my-order-card {

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  margin: 24px;

}

.order .my-order-card .total-price {
  background-color: var(--cd-blue);
  color: var(--white);
  line-height: 1;
  padding: 15px 20px;
  border-radius: 10px;
}

.order .my-order-card .details_title,
.order .my-order-card .date {
  color: gray;
}

.order .my-order-card .order-color {
  color: var(--cd-orange);
}

.order .my-order-card .show-details-order {
  background-color: var(--cd-orange);
  color: var(--white);
  line-height: 1;
  padding: 8px 13px;
  border-radius: 10px;
}

.order .my-order-card .img img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

html[dir="rtl"] .order .my-order-card .img img {
  margin-left: 26px;
}

.profile-image-container #profilePreview {

  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #eaeaea;
  background: #e3e3e3;
}

.profile-image-container .btn-change-profile-imge {

  border: 1px solid var(--cd-orange);
  color: var(--cd-orange);
  font-size: bp;
  font-size: 700;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 20px;
}

.profile-image-container .btn-change-profile-imge:hover {
  background-color: var(--cd-orange);
  color: white;
}

.my-order-card .under-process {
  background-color: var(--progress);
  border-radius: 10px;
}

.vehicle-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--white-200);


}

.disclosure {
  background: white;
  padding: 13px;
  border-radius: 9px;
}

/* order status color indicators */
.order_status.click-continue {
  color: #ffc107;
  /* Bootstrap warning */
}

.order_status.order-processing {
  color: #0d6efd;
  /* Bootstrap primary */
}

.order_status.order-completed {
  color: #198754;
  /* Bootstrap success */
}

.order_status.order_status.cancelled {
  background-color: #dc3545;
  color: white;
}

.order_status.order-refunded {
  color: #6c757d;
  /* Bootstrap secondary */
}

.order_status.under-process {
  background-color: rgb(244, 176, 16);
  color: white;
}

.order_status.order-class-2 {
  background-color: #009300;
  color: white;
}

.order_status.order-class-5 {
  background-color: #3494ce;
  color: white;
}

.order_status {
  padding: 8px 22px;
  border-radius: 10px;
}

#request-vehicle-info .request-info #request-info {
  padding: 30px;
  border: 1px solid #d4d4d4;
  border-radius: 20px;
}

#request-vehicle-info .request-info #request-info .form-control {

  border: 1px solid #ededed;
  margin: 5px;
  padding: 11px 15px;
  font-family: 'Poppins', sans-serif;
}

#request-vehicle-info .request-info #request-info .form-check input {
  min-width: 20px;
  min-height: 20px;
}

#request-vehicle-info .request-info #request-info .form-check label {
  font-size: 14px;
}

#request-vehicle-info .request-info #request-info .input-group.number {
  direction: initial;
}

#request-vehicle-info .request-info #request-info .input-group {
  border: 1px solid #ededed;
  border-radius: 4px;
  margin-bottom: 16px;
}

.flagDiv img {
  width: 30px;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#checkout .nav-tabs.primary .nav-item:last-child .nav-link {
  border-radius: 6px;
  background: var(--cd-orange);
  margin: 10px;
  padding: 6px 31px;
  color: white !important;
}

#checkout .card {
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

#checkout .card .nav-tabs .nav-link span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  border: 1px solid #FFB38F;
  background-color: #FFB38F;
  border-radius: 4px;
  font-size: 12px;
  line-height: 25px;
}

#checkout .card .nav-tabs .nav-link.active span,
#checkout .card .nav-tabs .nav-link.completed span {
  background-color: var(--cd-orange);
  border-color: var(--cd-orange);
}

#checkout .card .nav-tabs .nav-link {
  position: relative;
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  background: transparent;
  gap: 10px;
  padding: 30px 0 15px;
  border: none !important;
}

#checkout .card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--white-200);
}

.btn-sec.save-checkout,
.bank-form-submit.btn.btn-sec {
  background: #e9e9e9;
  color: black;
  padding: 11px 23px;
  border-radius: 22px;
  font-weight: 700;
}

#checkout .details-card .card {
  padding: 20px 10px;
  border-radius: 10px;
  border: 0;
  box-shadow: none;
  margin-bottom: 30px;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

#checkout .details-card .card h5 {
  font-size: 16px;
  font-weight: 700;
}

.details-card .card a.show-details {
  color: var(--cd-orange);
  padding: 5px 10px;
  background-color: #FFE5D8;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

fieldset.scheduler-border {
  border: 1px solid #ededed;
  padding: 0 1.4em 0em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
  border-radius: 4px;
  background-color: white;
  padding: 30px !important;
  border-radius: 12px;
  margin-top: 12px !important;
}

#myTab .nav-tabs .nav-link.active {
  border: none !important;
}


#checkout .checkout-process input[type="text"],
#checkout .checkout-process input[type="number"] {
  border: 1px solid #ededed;
  padding: 10px 15px;
  font-weight: 600;
}

#checkout .checkout-process label {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--dark-grey);
}

#checkout .checkout-process .addons label {
  background-color: rgb(255, 241, 231);

  color: rgb(255, 76, 0);

}

.offlineForm .accordion-item {
  background-color: transparent;
  border: 0px;
}

#checkout .checkout-process .addons .addons-orange-heading {
  color: rgb(255, 76, 0);
}

#checkout .map {
  width: 100%;
  height: 400px;
}





#checkout .checkout-process .form-group {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

#checkout .checkout-process input[type="text"],
#checkout .checkout-process input[type="number"] {
  border: 1px solid #ededed;
  padding: 10px 15px;
  font-weight: 600;
}

#checkout .checkout-process input[type="date"] {
  padding: 10px 15px;
}

#checkout .checkout-process input[type="date"],
#checkout .checkout-process input[type="tel"],
#reservation input[type="tel"] {
  font-weight: 600;
}

html[dir="rtl"] #checkout .checkout-process input[type="date"],
html[dir="rtl"] #checkout .checkout-process input[type="tel"] {
  text-align: left;
}

#checkout .checkout-process label[for="terms"] {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--dark-grey);
  background: #f0f0f0;
}


#checkout .checkout-process .recent-transactions {
  font-weight: bold;
}

#checkout .checkout-process .flag,
#reservation .flag,
.profile .flag,
#finance-form .flag {
  width: 30px;
}


.track-order_wrapper .upload-box,
#checkout .checkout-process .upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  border: 2px dashed var(--cd-orange);
  border-radius: 5px;
  margin-bottom: 20px;
}


.track-order_wrapper .upload-box label,
#checkout .checkout-process .upload-box label {
  text-align: center;
}

.track-order_wrapper .upload-box span.upload,
#checkout .checkout-process .upload-box span.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--sky);
  color: var(--sky);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}

.track-order_wrapper .upload-box .img,
#checkout .checkout-process .upload-box .img {
  max-width: 200px;
  position: relative;
}

.track-order_wrapper .upload-box .cross-btn,
#checkout .checkout-process .upload-box .img .cross-btn {
  background-color: var(--cd-blue);
  display: none;
  border-radius: 50%;
  padding: 7px;
  position: absolute;
  right: -10px;
  top: 10px;
  width: 25px;
  height: 25px;
  color: white;
  font-weight: 500;
  padding-left: 8px;
  padding-top: 0px;
  cursor: pointer;
  text-align: center;
}

html[dir="rtl"] .track-order_wrapper .upload-box .cross-btn,
#checkout .checkout-process .upload-box .img .cross-btn {
  left: -10px;
  right: auto;
}

.track-order_wrapper .upload-box .message.danger,
#checkout .checkout-process .upload-box .message.danger {
  color: #f76976;
  font-weight: 500;
}

.track-order_wrapper .upload-box .message.success,
#checkout .checkout-process .upload-box .message.success {
  color: var(--success);
  font-weight: 500;
}

#checkout select {
  border: 1px solid #ededed;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 600;
}

#checkout select:invalid {
  font-weight: normal;
}

#checkout .checkout-process .delivery select+p {
  color: var(--dark-grey);
  font-size: 18px;
  font-weight: 600;
}

#checkout .checkout-process .delivery select+p .value {
  color: var(--sky);
}

#checkout .modal select {
  border: 1px solid #ededed;
  border-radius: 4px;
}

#checkout .modal label {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex: 1 0 100%;
  gap: 20px;
  border: 2px solid var(--white-100);
  background-color: var(--white-100);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 5px;
  line-height: 16px;
  cursor: pointer;
}

#checkout .modal label .month {
  margin-bottom: 8px;
}

#checkout .checkout-process .add-on label {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border: 2px solid var(--white-100);
  background-color: var(--white-100);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  line-height: 16px;
  cursor: pointer;
}

#checkout .checkout-process .add-on label:last-of-type {
  margin-bottom: 0;
}

#checkout .checkout-process .btn-wrapper {
  display: flex;
  justify-content: end;
  gap: 20px;
}

#checkout .checkout-process .btn {
  font-size: 16px;
}

#checkout .checkout-process .btn-wrapper .btn-secondary {
  background: none;
  background-color: var(--white);
  color: var(--sky);
  padding: 10px 30px;
  border: 2px solid var(--sky);
}

#checkout form label.checked {
  border-color: var(--sky);
}

#checkout .modal form label.checked .icon .circle {
  display: none;
}

#checkout .modal form label.checked .icon .check {
  display: inline-block !important;
  color: var(--sky);
}

#checkout .checkout-process .accordion .accordion-button span {
  font-weight: 600;
  /*color: var(--dark-grey);*/
}

#checkout .checkout-process #checkout-tab-pane a.pay-by-bank {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ededed;
  border-radius: 4px;
  color: var(--dark-grey);
}

#checkout .payment-details .vehicle-info .title a {
  color: var(--cd-orange);
  font-size: 12px;
  margin-left: 5px;
  text-decoration: underline;
}

#checkout #personal-info .flex-50 {
  flex: 1 0 calc(50% - 1rem);
}



.track-order_wrapper .upload-box,
#checkout .checkout-process .upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  border: 2px dashed var(--cd-orange);
  border-radius: 5px;
  margin-bottom: 20px;
}


.track-order_wrapper .upload-box label,
#checkout .checkout-process .upload-box label {
  text-align: center;
}

.track-order_wrapper .upload-box span.upload,
#checkout .checkout-process .upload-box span.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--cd-orange);
  color: var(--cd-orange);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}

.track-order_wrapper .upload-box .img,
#checkout .checkout-process .upload-box .img {
  max-width: 200px;
  position: relative;
}

.track-order_wrapper .upload-box .cross-btn,
#checkout .checkout-process .upload-box .img .cross-btn {
  background-color: var(--cd-blue);
  display: none;
  border-radius: 50%;
  padding: 15px;
  position: absolute;
  right: -10px;
  top: 10px;
  width: 23px;
  height: 28px;
  color: white;
  font-weight: 500;
  padding-left: 8px;
  padding-top: 0px;
  cursor: pointer;
  text-align: center;
}

html[dir="rtl"] .track-order_wrapper .upload-box .cross-btn,
html[dir="rtl"] #checkout .checkout-process .upload-box .img .cross-btn {
  left: -10px;
  right: auto;
  padding: 2px;
}

.track-order_wrapper .upload-box .message.danger,
#checkout .checkout-process .upload-box .message.danger {
  color: #f76976;
  font-weight: 500;
}

.track-order_wrapper .upload-box .message.success,
#checkout .checkout-process .upload-box .message.success {
  color: var(--success);
  font-weight: 500;
}

.show-error {
  color: red;
  font-size: 13px;
}

.error-div {
  border-color: red !important;
  border: 1px solid red !important;
}

.continue-disclosiure-checkout,
.btn-checkout,
.checkout-my-order-btn {
  background: var(--cd-orange);
  color: white;
  padding: 11px 23px;
  border-radius: 22px;
  font-weight: 700;
}

.dot-indicator {
  margin: 5px;
  color: red;
  font-size: 15px;
}

label.required::after {
  content: " *";
  color: red;
}

.btn-sell-car-next,
.btn-sell-car-back,
.btn-success-sell,
.btn-sell-car-search,
.btn-sell-car-home,
.btn-sell-car-dashboard {
  color: var(--white);

  font-weight: 600;
  border-radius: 50px;
  padding: 9px 29px;
  font-size: 18px;
  border: none;
}

.btn-sell-car-search {
  background-color: var(--cd-blue);
}

.btn-sell-car-next:hover {
  color: white;
}

.btn-sell-car-next,
.btn-sell-car-home,
.btn-sell-car-dashboard {
  background: var(--cd-orange);
}

.btn-success-sell {
  background: linear-gradient(276.98deg, #00A5FF 9.86%, #006AB8 89.09%);
}

.btn-success-sell:hover,
.header-btn-signup:hover {
  color: white;
}

.btn-sell-car-back {
  background-color: rgb(238, 238, 238);
  color: #5b5b5b;
}

.payment-details .checkout-car-card {
  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 10px;
  border: 1px solid rgb(221, 221, 221);
  background-color: #F9F9F9;
}

.payment-details .checkout-car-card .checkout-vehicle-details {
  background: var(--cd-orange);
  margin-top: 12px;
  padding: 7px 22px;
  height: 33px;
  width: 27%;
  border-radius: 8px;
  color: white;
}

.btn-404-home,
.btn-404-contact,
.btn-404-dashboard {
  background: var(--cd-orange);
  color: white;

  border: 1px solid var(--cd-orange);
  border-radius: 21px;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 26px;
  line-height: 1.6em;
  min-width: 140px;
}

.btn-404-search {

  font-size: 16px;
  padding: 6px 26px;
  line-height: 1.6em;
  min-width: 140px;
  color: var(--cd-orange);
  background-color: white;
  font-weight: 700;
  border-radius: 21px;
  border: 1px solid var(--cd-orange);

}

.alert-404 {
  background-color: rgb(255, 228, 219);
  border-color: orangered;
  color: var(--dark-grey);
}


#sell-trade-cards .card-sell-trade .icon-circle {
  width: 80px;
  height: 80px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #f7941d;
}

#sell-trade-cards .card-sell-trade {
  border: none;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid #f7941d;
}




#sell-trade-cards .card-sell-trade p {
  font-size: 14px;
  line-height: 21px;
}



#finance-form form .form-control {
  height: 45px;

  border: 1px solid #dddddd;
  padding: 4px 14px;
}

#finance-form form label {
  margin-bottom: 12px;
  margin-top: 12px;
  font-weight: 700;
  color: var(--cd-blue);
}

#finance-form form .form-check label {
  cursor: pointer;
  text-align: left;
}

#finance-form form .card {
  padding: 50px;
  text-align: left;
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

.progress-tracker {
  display: flex;
  margin: 60px auto;
  padding: 0;
  list-style: none;
}

.progress-step {
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 24px;
}

.progress-step:last-child {
  flex-grow: 0;
}

.progress-step:last-child .progress-marker::after {
  display: none;
}


.progress-link {
  display: block;
  position: relative;
}

.progress-marker {
  display: block;
  position: relative;
}

.progress-marker::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
  border-radius: 50%;
  transition: background-color, border-color;
  transition-duration: 0.3s;
}

.progress-marker::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: 16px;
  right: -12px;
  width: 100%;
  height: 4px;
  transition: background-color 0.3s, background-position 0.3s;
}

.progress-text {
  display: block;
  padding: 8px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
}

.progress-step .progress-marker {
  color: #fff;
}

.progress-step .progress-marker::before {
  background-color: #b6b6b6;
}

.progress-step .progress-marker::after {
  background-color: #b6b6b6;
}

.progress-step .progress-text {
  color: #333;
}

.progress-step.is-active .progress-marker::before {
  background-color: var(--cd-orange) !important;
}

.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::before {
  background-color: var(--cd-orange) !important;
  ;
}

.progress-step.is-complete .progress-marker::after,
.progress-step.is-progress .progress-marker::after {
  background-color: #868686;
}

.progress-step.is-progress-10 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 10%, #b6b6b6 10%);
}

.progress-step.is-progress-20 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 20%, #b6b6b6 20%);
}

.progress-step.is-progress-30 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 30%, #b6b6b6 30%);
}

.progress-step.is-progress-40 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 40%, #b6b6b6 40%);
}

.progress-step.is-progress-50 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 50%, #b6b6b6 50%);
}

.progress-step.is-progress-60 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 60%, #b6b6b6 60%);
}

.progress-step.is-progress-70 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 70%, #b6b6b6 70%);
}

.progress-step.is-progress-80 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 80%, #b6b6b6 80%);
}

.progress-step.is-progress-90 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 90%, #b6b6b6 90%);
}

.progress-tracker--text .progress-step:last-child,
.progress-tracker--center .progress-step:last-child,
.progress-tracker--right .progress-step:last-child {
  flex-grow: 1;
}

.progress-tracker--center {
  text-align: center;
}

.progress-tracker--center .progress-marker::before,
.progress-tracker--center .progress-text--dotted::before {
  margin-left: auto;
  margin-right: auto;
}

.progress-tracker--center .progress-marker::after {
  right: -50%;
}

.progress-tracker--right {
  text-align: right;
}

.progress-tracker--right .progress-marker::before,
.progress-tracker--right .progress-text--dotted::before {
  margin-left: auto;
}

.progress-tracker--right .progress-marker::after {
  right: calc(-100% + 12px);
}

.progress-tracker--spaced .progress-marker::after {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

.progress-tracker--border {
  padding: 4px;
  border: 2px solid #333;
  border-radius: 32px;
}

.progress-tracker--theme-red .progress-step .progress-marker {
  color: #fff;
}

.progress-tracker--theme-red .progress-step .progress-marker::before {
  background-color: #666;
}

.progress-tracker--theme-red .progress-step .progress-marker::after {
  background-color: #666;
}

.progress-tracker--theme-red .progress-step .progress-text {
  color: #333;
}

.progress-tracker--theme-red .progress-step.is-active .progress-marker::before {
  background-color: #A62D24;
}

.progress-tracker--theme-red .progress-step.is-complete .progress-marker::before {
  background-color: #D93B30;
}

.progress-tracker--theme-red .progress-step.is-complete .progress-marker::after {
  background-color: #333;
}

.progress-tracker--theme-red .progress-step:hover .progress-marker::before {
  background-color: #DF7B74;
}

.progress-text--dotted::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px -2px;
  background-size: 12px 18px;
  background-image: repeating-radial-gradient(circle at center 6px, #b6b6b6, #b6b6b6 5px, rgba(182, 182, 182, 0.5) 5.5px, rgba(182, 182, 182, 0.01) 6px, transparent 100%);
}

.progress-text--dotted-1::before {
  height: 12px;
}

.progress-text--dotted-2::before {
  height: 30px;
}

.progress-text--dotted-3::before {
  height: 48px;
}

.progress-text--dotted-4::before {
  height: 66px;
}

.progress-text--dotted-5::before {
  height: 84px;
}

.progress-text--dotted-6::before {
  height: 102px;
}

.progress-text--dotted-7::before {
  height: 120px;
}

.progress-text--dotted-8::before {
  height: 138px;
}

.progress-text--dotted-9::before {
  height: 156px;
}

.progress-text--dotted-10::before {
  height: 174px;
}

.progress-text--dotted-11::before {
  height: 192px;
}

.progress-text--dotted-12::before {
  height: 210px;
}

.progress-tracker--text-top .progress-text {
  height: 100%;
}

.progress-tracker--text-top .progress-marker {
  top: -24px;
}

.progress-tracker--text-inline {
  overflow: hidden;
}

.progress-tracker--text-inline .progress-step,
.progress-tracker--text-inline .progress-marker {
  display: flex;
  align-items: center;
}

.progress-tracker--text-inline .progress-marker {
  flex-grow: 1;
}

.progress-tracker--text-inline .progress-marker::after {
  top: auto;
}

.progress-tracker--text-inline .progress-text {
  position: relative;
  z-index: 30;
  max-width: 70%;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}

.progress-tracker--text-inline .progress-marker .progress-text {
  display: inline-block;
}

.progress-tracker--text-inline .progress-title {
  margin: 0;
}

.progress-tracker--square .progress-marker::before {
  border-radius: 0;
}

.progress-tracker--square .progress-marker::after {
  top: auto;
  bottom: 0;
}

@media (max-width: 575px) {
  .progress-tracker-wrapper {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .progress-tracker-wrapper .progress-step {
    min-width: 50%;
    scroll-snap-align: start;
  }
}

.progress-tracker--vertical {
  flex-direction: column;
}

.progress-tracker--vertical .progress-step {
  display: flex;
  flex: 1 1 auto;
}

.progress-tracker--vertical.progress-tracker--right .progress-step {
  flex-direction: row-reverse;
}

.progress-tracker--vertical .progress-marker::after {
  right: auto;
  top: 12px;
  left: 16px;
  width: 4px;
  height: 100%;
}

.progress-tracker--vertical .progress-text {
  padding: 0 12px 24px 12px;
}

@keyframes scale-up {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.anim-ripple .progress-link::before,
.anim-ripple-large .progress-link::before,
.anim-ripple-splash .progress-link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
}

.anim-ripple .progress-link:not(:active)::before,
.anim-ripple-large .progress-link:not(:active)::before,
.anim-ripple-splash .progress-link:not(:active)::before {
  animation: scale-up 0.3s ease-out;
}

.anim-ripple .progress-link:focus::before,
.anim-ripple-large .progress-link:focus::before,
.anim-ripple-splash .progress-link:focus::before {
  visibility: visible;
}

.anim-ripple.progress-tracker--center .progress-link::before,
.anim-ripple.progress-tracker--center .progress-link::after,
.progress-tracker--center .anim-ripple .progress-link::before,
.progress-tracker--center .anim-ripple .progress-link::after,
.anim-ripple-large.progress-tracker--center .progress-link::before,
.anim-ripple-large.progress-tracker--center .progress-link::after,
.progress-tracker--center .anim-ripple-large .progress-link::before,
.progress-tracker--center .anim-ripple-large .progress-link::after,
.anim-ripple-splash.progress-tracker--center .progress-link::before,
.anim-ripple-splash.progress-tracker--center .progress-link::after,
.progress-tracker--center .anim-ripple-splash .progress-link::before,
.progress-tracker--center .anim-ripple-splash .progress-link::after,
.anim-ripple-double.progress-tracker--center .progress-link::before,
.anim-ripple-double.progress-tracker--center .progress-link::after,
.progress-tracker--center .anim-ripple-double .progress-link::before,
.progress-tracker--center .anim-ripple-double .progress-link::after {
  left: 50%;
}

.anim-ripple.progress-tracker--right .progress-link::before,
.anim-ripple.progress-tracker--right .progress-link::after,
.progress-tracker--right .anim-ripple .progress-link::before,
.progress-tracker--right .anim-ripple .progress-link::after,
.anim-ripple-large.progress-tracker--right .progress-link::before,
.anim-ripple-large.progress-tracker--right .progress-link::after,
.progress-tracker--right .anim-ripple-large .progress-link::before,
.progress-tracker--right .anim-ripple-large .progress-link::after,
.anim-ripple-splash.progress-tracker--right .progress-link::before,
.anim-ripple-splash.progress-tracker--right .progress-link::after,
.progress-tracker--right .anim-ripple-splash .progress-link::before,
.progress-tracker--right .anim-ripple-splash .progress-link::after,
.anim-ripple-double.progress-tracker--right .progress-link::before,
.anim-ripple-double.progress-tracker--right .progress-link::after,
.progress-tracker--right .anim-ripple-double .progress-link::before,
.progress-tracker--right .anim-ripple-double .progress-link::after {
  left: calc(100% - 12px);
}

.anim-ripple-splash .progress-link::before {
  width: 48px;
  height: 48px;
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
}

.anim-ripple-double .progress-link::before,
.anim-ripple-double .progress-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  background: none;
  border: 3px solid rgba(0, 0, 0, 0.3);
}

.anim-ripple-double .progress-link:not(:active)::before,
.anim-ripple-double .progress-link:not(:active)::after {
  animation: scale-up 0.3s ease-out 0s;
}

.anim-ripple-double .progress-link:not(:active)::after {
  animation-delay: 0.15s;
}

.anim-ripple-double .progress-link:focus::before,
.anim-ripple-double .progress-link:focus::after {
  visibility: visible;
}

.anim--large .progress-link::before,
.anim--large .progress-link::after {
  width: 48px;
  height: 48px;
}

.anim--path .progress-marker::after {
  background-image: linear-gradient(to right, #b6b6b6 50%, #868686 50%);
  background-size: 200% 100%;
  background-position: 0% 100%;
  transition: background-position 0.3s ease-out;
}

.progress-step.is-complete .anim--path .progress-marker::after {
  background-position: -100% 100%;
}

.anim--path .progress-step.is-complete .progress-marker::after {
  background-position: -100% 100%;
}

[dir=rtl] .progress-marker::after {
  right: auto;
  /* left: -12px; */
}

[dir=rtl] .progress-tracker--center .progress-marker::after {
  left: -50%;
}

.progress-step:first-of-type .progress-marker::before {
  background-image: url('../assets/img/icons/order.svg');
}

.progress-step:nth-of-type(2) .progress-marker::before {
  background-image: url('../assets/img/icons/file-text.svg');
}

.progress-step:nth-of-type(3) .progress-marker::before {
  background-image: url('../assets/img/icons/loader.svg');
}

.progress-step:nth-of-type(4) .progress-marker::before {
  background-image: url('../assets/img/icons/gift.svg');
}

.progress-step:nth-of-type(5) .progress-marker::before {
  background-image: url('../assets/img/icons/truck.svg');
}

.progress-step:nth-of-type(6) .progress-marker::before {
  background-image: url('../assets/img/icons/home-2.svg');
}

.progress-step.is-active .progress-marker::before {
  background-color: var(--cd-orange);
}

.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::before {
  background-color: var(--sky);
}

.progress-step.is-complete .progress-marker::after,
.progress-step.is-progress .progress-marker::after {
  background-color: var(--sky);
}

.progress-step .progress-link,
.progress-step .progress-desc {
  opacity: 0;
}

.progress-step.is-active .progress-link,
.progress-step.is-active .progress-desc,
.progress-step.is-complete .progress-link,
.progress-step.is-complete .progress-desc {
  display: inline-block;
  opacity: 1;
}

#track-order .payment-details {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background-color: rgb(0 0 0 / .5);
  height: 0;
}

#track-order .payment-details .card {
  position: fixed;
  right: -200vh;
  top: 0;
  bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 400px;
  left: 100%;
  transition: all 300ms ease-in-out;
}

.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::before {
  background-color: var(--cd-orange);
}

.progress-step.is-complete .progress-marker::after,
.progress-step.is-progress .progress-marker::after {
  background-color: var(--cd-orange);
}


.progress-step .progress-marker::before {
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  width: 40px;
  height: 40px;
}



.progress-step.is-complete .progress-title {
  color: var(--cd-orange);
}

.progress-step .progress-title {
  font-size: 16px;
  font-weight: 700;

}

#offers-request #phone {
  padding: 12px;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 3px;
  padding-top: 3px;
}


html[dir="rtl"] .form-check .form-check-input {
  float: right;
  margin-right: -1.5em;
}

/* html[dir="rtl"] .form-check {
  padding-right: 1.5em;
  padding-left: 0 !important;
} */


.special-check {
  padding: 10px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  cursor: pointer;
}

.special-check input,
.special-check label {
  color: black;
  pointer-events: none;
}

.special-check .form-check-input[type="checkbox"] {
  border-radius: .25em;
}

.page-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 999998
}

.page-loader:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background-color: #5c90d2;
  border-radius: 100%;
  content: "";
  z-index: 999999;
  animation: page-loader .9s infinite ease-in-out
}

.ie9 .page-loader:after {
  text-align: center;
  content: "Loading..";
  background-color: transparent
}

@keyframes page-loader {
  0% {
    transform: scale(0)
  }

  to {
    transform: scale(1);
    opacity: 0
  }
}

.pr-example-item {
  margin-bottom: 15px
}

.pr-example-item img {
  max-width: 100%;
}

.pr-example-item .pr-example-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cd-orange);

  position: relative
}

.pr-example-item .pr-example-image.pr-hide {
  display: none
}

.pr-example-item .pr-example-image.is-drop-over {
  border: 1px solid var(--link_color)
}

.pr-example-item .pr-example-image .pr-add-button {
  position: absolute;
  top: 5px;
  right: 5px
}

.pr-example-item .pr-example-image .pr-add-button rect,
.pr-example-item .pr-example-image .pr-add-button path {
  stroke: var(--link_color)
}

.pr-example-item .pr-uploaded-image {

  position: relative
}

.pr-example-item .pr-example-text {
  font-size: 10.88px
}

.pr-example-item .pr-upload-button {
  font-family: PrDefaultFont, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--link_color);
  cursor: pointer;
  font-size: 14px
}

.pr-example-item .pr-upload-button input {
  display: none
}

.pr-example-item .pr-upload-button:focus {
  border: 1px solid var(--link_color)
}

.pr-example-item .pr-file-uploader-percentage {
  width: 143px
}

.pr-example-item .pr-file-uploader-percentage>div {
  height: 4px;
  background-color: #109de7;
  transition: width 1s ease-out
}

.pr-example-item .pr-remove-image {
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #e31616;
  cursor: pointer;
  border: 0;
  padding: 0
}

.pr-example-item .pr-remove-image:focus {
  outline: 1px dashed var(--link_color) !important
}

.pr-example-item .pr-remove-image>svg {
  width: 19px;
  height: 19px;
  position: relative;
  left: 0;
  top: 2px
}

.pr-example-item .pr-remove-image>svg>path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px
}

@media only screen and (max-width: 727px) {
  .pr-example-item .pr-example-image {
    width: 120px;
    height: 75px
  }

  .pr-example-item .pr-example-image img {
    max-height: 65px;
    max-width: 110px
  }

  .pr-example-item .pr-uploaded-image {
    width: 120px;
    height: 75px
  }

  .pr-example-item .pr-uploaded-image>img {
    max-height: 109px;
    height: 75px;
    width: 120px
  }

  .pr-example-item .pr-file-uploader-percentage {
    width: 120px
  }
}

.pr-progress-div {
  position: absolute;
  bottom: -7px;
}



.list--payment-methods {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -8px 0;
  position: relative;
  width: calc(100% + 16px);
}


.checkout-process .accordion-item .accordion-button {
  background: #ff863e4f;
  border-radius: 10px;
}

.list--payment-methods {

  margin: 0 -8px 0;
  position: relative;
  width: calc(100% + 16px);
}

#accordion-cashier {
  width: 100% !important;
}

#add-cashier-payment-collapse {
  width: 100%;
  background-color: white;
}

#add-cashier-payment-collapse .border-info {

  border-color: var(--cd-orange) !important
}

#payment-form-1 .form-select,
#payment-form-1 .payment-field-all {
  font-size: 16px !important;
  background-color: #f9f9f9;
  padding: 14px !important;
  color: black !important;
}

#payment-form-1 label {
  font-weight: 600;
  font-size: 16px !important;
  color: #333 !important;
}

#payment-form-1 .form-control {
  border: 1px solid #ccc;
  padding: 14px !important;
  font-size: 16px !important;
  border-radius: 4px;
}

#my-orders .orders_in-progress .order_status.completed {
  background-color: rgb(45, 95, 188);
  border-radius: 10px;
  color: white;
}

#track-order .track-order_wrapper {
  padding: 20px 0;
  background-color: #ffeade;
}

#track-order .payment-details.show .card {
  right: 0;
  left: calc(100% - 400px);
  overflow-y: scroll;
  max-height: 100vh;
}

#track-order .payment-details .card {
  position: fixed;
  right: -200vh;
  top: 0;
  bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 400px;
  left: 100%;
  transition: all 300ms ease-in-out;
}

#track-order .payment-details .card {
  padding: 30px;
}











.progress-step.is-complete .progress-marker::after,
.progress-step.is-progress .progress-marker::after {
  background-color: var(--cd-orange) !important;
}

#track-order .progress-tracker {
  margin: 60px 0 auto;
  width: 100%;
}

#track-order .details-card .card {
  padding: 60px 30px;
}


#order-confirmed .confirm-order-card {
  max-width: 600px;
  margin: auto;
  margin-bottom: auto;
  padding: 50px 70px;
  margin-bottom: 30px;
  background-color: #f9f9f9f0;
  border: none;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#order-confirmed .confirm-order-card img {
  max-width: 40%;
  margin: auto;
  margin-bottom: auto;
}

.btn-order-save {
  background: var(--cd-orange);
  padding: 7px 18px;
  border-radius: 6px;
  color: white;
  font-weight: 700;
}

#cash-delivery-tab-pane #delivery .delivery h5 {
  font-weight: 700;
  color: var(--cd-orange);
  font-size: 20px;
  padding: 5px;
}

#cash-delivery-tab-pane #delivery .delivery li {
  background-color: #fff0e6;
  padding: 17px 19px;
  border-radius: 10px;
}


#cash-delivery-tab-pane #delivery .delivery {
  background: white;
  padding: 22px;
  border-radius: 12px;
}

#cash-delivery-tab-pane #delivery .delivery .warranty-card-km {
  background: #fdfaf0;
  padding: 16px;
  border-radius: 12px;
}

#car-care-tab-pane .addons {
  background-color: white;
  padding: 22px;
  margin: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.addons>label {
  /* Styles for each addon label */
  border: 1px solid #ececec;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  cursor: pointer;
  background: #f7f7f7;
  border-radius: 4px;
}

.alert-orange {
  color: var(--cd-orange);
  background-color: #ffddcf;
  border-color: #fee0b6;

}





#order-confirmed .contact-info {
  max-width: 600px;
  margin: auto;
  background: #ffebdf;

}

#order-confirmed .contact-info h5 {
  font-weight: 600;
}

#order-confirmed .contact-info p {
  font-size: 0.95rem;
}


.calc-result .car-reserved {
  font-size: 12px;
}



#sell-trade-home .car-img-sell-buy {
  max-width: 100%;
  height: auto;
}

#sell-trade-home .card-home-sell {
  border: 1px solid #EDEDED;
  padding: 30px 30px 30px 30px;
  border-radius: 16px;
}

#sell-trade-home .card-home-sell:hover {
  box-shadow: 0px 30px 60px 0px #0000001A;
}

#sell-trade-home .card-home-sell p {
  font-size: 14px;
  line-height: 18px;
}

#sell-trade-home .btn-orange {
  background-color: #ff6a00;
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  font-size: 18px;
  line-height: 22px;
  border-radius: 13px;
  text-align: center;
}

#sell-trade-home .btn-orange:hover {
  background-color: #e85e00;
  color: white;
}

#sell-trade-home .icon {
  font-size: 30px;
  color: #ff6a00;
  width: 14%
}

#sell-trade-home .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 28.2px;
  color: rgb(36, 39, 44);
  line-height: 33px;
}

#finance-banner .finance-qualified-heading {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 44px;
  color: var(--cd-orange);
}

/* Style for the checkbox wrapper */
.body_style.form-check {
  border: 2px solid transparent;
  padding: 8px;
  border: 1px solid rgb(253, 195, 167);
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  margin: 7px;
}

/* Highlight active items */
.body_style.form-check.active {
  border-color: rgb(255, 76, 0);
  font-weight: bold;
  color: rgb(255, 76, 0);
  font-weight: bold;
  background-color: rgb(255, 242, 235);
}

/* Style the image */
.body_style.form-check img {
  width: 50px;
  /* Adjust as needed */
  height: auto;
  object-fit: contain;
  margin-inline-end: 10px;
}

.gray-car-detail {
  background: #efeded;
  padding: 5px 12px;
  border-radius: 4px;
}


.slider-handle {

  background-image: none;
  background-color: var(--cd-orange);
  border: 1px solid var(--cd-orange);

}

.filter-dropdown-btn.filter-active {
  background-color: orange !important;
  color: white !important;
}

html[dir="rtl"] #finance-form form label {
  text-align: right !important;
  direction: rtl !important;

  display: block !important;

}

#news-breadcrumb .breadcrumb-item a,
#offer-banner .breadcrumb-item a {
  color: rgb(255, 113, 1);
  /* Orange for links */
  text-decoration: none;
}

#news-breadcrumb .breadcrumb-item.active {
  color: #6c757d;

}

.breadcrumb {
  --bs-breadcrumb-divider: '›';
  font-size: 1.05rem;
}

#news-breadcrumb .inner-breadcrumb {
  border-bottom: 1px solid #EDEDED;
}

#news-left .blog_title,
#news-left .blog_title_search {
  font-size: 40px;
  font-weight: 700;
}

html[dir="rtl"] #news-left .blog_title {
  font-size: 34px;
}

html[dir="rtl"] #news-left .blog_title_search {
  font-size: 26px;
}


html[dir="rtl"] #news-right .blog_categories_title {
  font-size: 26px;
}

#news-left .blog-meta-detail i {
  color: #B6B6B6;
  font-size: 18px;
  margin-left: 2px;
}

#news-left .blog-meta-detail span {
  font-size: 17px;
}



#news-left .blog-meta-detail .blog-categories a,
#news-left .blog-meta-detail .blog-author a {
  color: rgb(255, 113, 1);
  font-size: 17px;
}

#news-left .blog_thumbnail img {
  border-radius: 18px;
}




#news-left .cd-blog_content {
  color: #696665;
  font-size: 18px;
  line-height: 30px;
  border-bottom: 1px solid #efefef;
}


.cd-blog_share-block .blog_author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#post .cd-blog_share-block {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-left: auto;
  margin-right: auto;
  padding: 24px 12px;
  flex-wrap: wrap;
  row-gap: 32px;
}


#post .cd-blog_share-block .blog_author .blog_creator_name {
  font-size: 23px;
  font-weight: 600;
  color: var(--gray);
}

#post .cd-blog_share-block .blog_author .blog_creator_job {
  font-size: 16px;
  color: #777;
  /* optional */
}

#post .cd-blog_share-block .copy-link {
  display: flex;
  column-gap: 8px;
  align-items: center;

  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--cd-orange);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);

}

#post .cd-blog_share-block .copy-link span,
#post .cd-blog_share-block .copy-link i {
  color: var(--cd-orange);

  cursor: pointer;
  font-size: 16px;
}


.cd-blog_share-block .blog_share-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}


.cd-blog_share-block .cd-blog-share-icon {
  width: 40px;
  height: 40px;
  padding: 26px;
  border-radius: 50%;
  margin-bottom: 0px;
  border: 1px solid #EDEDED;
  background: transparent;
  color: #24272C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cd-blog_share-block .cd-blog-share-icon:hover {
  background-color: var(--cd-orange);
  border: 1px solid var(--cd-orange);
}

.cd-blog_share-block .cd-blog-share-icon i {
  font-size: 22px;
}

.cd-blog_share-block .cd-blog-share-icon:hover i {
  color: white;
  transition: color 0.3s ease;
}

#news-left .input-group-text {
  background-color: transparent;
}

#news-right .category-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

#news-left .category-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

#news-right .category-link {
  flex-grow: 1;
  color: #2c2c2c;
  transition: color 0.3s ease;
}

#news-right .category-link:hover {
  color: var(--cd-orange, #ff6600);
  /* or use your custom orange */
  text-decoration: none;
}

#news-right .category-count {
  font-size: 14px;
  color: #999;
}

#news-right .blog_categories_title {
  font-size: 32px;
  font-weight: 600;
}

#news-right .blog_title {
  font-size: 32px;
  font-weight: 600;
}

#news-right .category-widget li a,
#news-right .category-widget li span {

  font-size: 18px;
  font-weight: 500;
  line-height: 22.4px;
  color: #24272C;
  font-weight: 600;
  padding: 4px 0px;
  text-transform: capitalize;

}

#news-right .category-widget li:hover {
  border-bottom: 1px solid var(--cd-orange);
}

#news-right .category-widget li {
  border-bottom: 1px solid #EDEDED;
}

#news-right .category-widget li:hover a,
#news-right .category-widget li:hover span {
  color: var(--cd-orange);

}

#news-right #news-search .input-group {
  margin-bottom: 0;
  width: 100%;
  color: #24272C;
  background: #fff;
  border: 1px solid #EDEDED;
  padding: 3px;

  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;

}

#news-right .input-group {
  border-radius: 12px !important;
  padding: 5px;
}

#news-right .input-group:hover {
  border: 1px solid var(--cd-orange);
}

#news-right .input-group #basic-addon1 i:hover {
  color: var(--cd-orange);

}

#news-right .search-area-blog {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.02);
}

#r-pages-gray .page-item.active .page-link {
  background: #C4C4C4 !important;
  color: black !important;
  border-radius: 8px !important;
  border: 0px;
  padding: 7px 17px !important;
}

#r-pages-gray .page-link {
  color: black !important;

  border-radius: 8px !important;
  border: 1px !important;
  background-color: #EEEEEE !important;
  padding: 7px 17px !important;
}

#r-pages-gray .page-item:first-child .page-link,
#r-pages-gray .page-item:last-child .page-link {
  background-color: transparent !important;
  border-radius: 0px !important;
  border: 0px solid #ccc !important;

}

.search-result-main .results-pagination div.pag,
#favorite-cars .results-pagination div.pag,
#my-orders .results-pagination div.pag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  color: var(--purple);
  padding: 5px 15px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.search-result-main .results-pagination div.pag:hover,
#favorite-cars .results-pagination div.pag:hover,
#my-orders .results-pagination div.pag:hover {
  background-color: var(--cd-orange);

  color: white;

}

.active-orange-condition {
  background-color: red;
}

/*News*/
#news .intro {
  background-color: #FFF9F5;
  padding: 25px 0 6px;
  text-align: center;
}

#news .intro h2 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 44px;
  color: var(--cd-orange);
}

#news .intro .category {
  font-weight: bold;
  font-size: 18px;
  color: var(--cd-orange);
}

#news #news-search {
  max-width: 520px;
  margin: auto;
}

#news #news-search .input-group {
  background-color: #FFF;
  border-radius: 6px;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  padding: 5px;
}

#news #news-search .input-group-text {
  background-color: white;
}

#news #news-search .input-group:hover {
  border: 1px solid var(--cd-orange);
}

.blog-featured-image {
  border-radius: 14px;
}

#blog-post .post_head {
  position: relative;
  overflow: hidden;
  /* ensures image stays within rounded corners */
  border-radius: 12px;
  /* or whatever you use */
}

.blog-featured-image {
  transition: transform 0.4s ease, filter 0.4s ease;
  width: 100%;
  display: block;
  object-fit: cover;
}

#blog-post .post:hover .blog-featured-image {
  transform: scale(1.05);
  filter: brightness(0.7);
  /* adjust as needed */
}



#blog-post .post_head .post_date {
  padding: 6px 12px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16.8px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--cd-orange);
  color: #fff;
}

#blog-body .post_auther {
  font-size: 14px;
  font-weight: 700;
  line-height: 17.64px;
  color: #24272C;
  text-transform: capitalize;
}

#blog-body .post_category {
  color: var(--cd-orange);
  font-weight: bold;
  font-size: 14px;
  text-transform: capitalize;
}

#blog-body span,
.post_meta .separator {
  color: #c0bebe;
}

#blog-body .post_title h5:hover,
.post:hover h5 {
  color: var(--cd-orange);
  /* or any orange shade */
}

#news a.category {
  display: inline-block;
  font-size: 16px;
  padding: 5px 15px;
  color: #FF390B !important;
  background-color: #ffe2cc;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: capitalize;
}

#news a.category.active {
  background-color: var(--cd-orange) !important;
  color: white !important;
}

#blog-body .post_description,
.recent-posts .post_description {
  color: #696665;
  font-size: 15px;
  font-weight: 400;
}

#blog-body {
  padding: 14px;
}

#blog-post {
  border: 1px solid rgb(238, 238, 238);

  border-radius: 15px;
}

.blogs-news-title,
.blog-recent-post {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  color: var(--cd-orange);
}

#news .recent-posts_container .post:not(.main) .post_head img {
  width: 100%;
  height: 100%;
}

#news .recent-posts_container .post:not(.main) .post_head {
  flex: 1 0 50%;
  margin-bottom: 20px;
}

#news .recent-posts_container .post:not(.main) {
  display: flex;
  gap: 24px;
}


#news .recent-posts_container .post:not(.main) .post_head img {
  width: 100%;
  height: 100%;
}

#news .recent-posts_container .post .post_head img {
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

#news .post_head img {
  border-radius: 16px;
  width: 100%;
}

.blog_post_categories {
  color: var(--cd-orange);
  text-transform: capitalize;
  font-weight: bold;
}

.recent-posts .post_auther {
  color: black;
  font-weight: bold;
}

.recent-posts .post_date {
  color: #abaaaa;
  font-weight: 500;
}

.blog-divider {
  border: 1px solid #EDEDED;

}



[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
  content: "›";

  float: none;

  padding: 0 0.5rem;
  color: #6c757d;
}

[dir="rtl"] .breadcrumb {
  justify-content: flex-start;
}


#cms-banner {
  background-color: rgb(255, 222, 209);
  color: rgb(255, 76, 0);

}

#cms-banner h2 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 44px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

#cms-banner h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 113px;
  background-color: rgb(255, 76, 0);
  margin-left: 9px;
}

html[dir="rtl"] #cms-banner h2::after {
  right: 0;
}

.cms-inner .cms-card {
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
  background-color: white;
  border: 2px solid #ededed;
  max-width: 75%
}

.cms-inner .cms-card p {
  font-size: 18px;
  color: #4a3838;

}


/*Why Choose Cardealo*/

#why-chosse-cardealo {
  position: relative;
  background-color: var(--white-100);


  background-image: url(../assets/images/why-cardealo/banner-cars.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

html[dir="rtl"] #why-chosse-cardealo {
  background-image: url(../assets/images/why-cardealo/Banner-rtl.png);
}


#why-chosse-cardealo .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

#why-chosse-cardealo .title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
}

#why-chosse-cardealo .main-heading {
  font-family: "Poppins", Sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2em;
  color: #FDFDFD;
}

html[dir="rtl"] #why-chosse-cardealo .main-heading {
  font-size: 47px;
  line-height: 1.4em;
}

#why-chosse-cardealo .text {
  width: 80%;
  color: white;
  font-size: 18px;
  line-height: 1.5em;
}

html[dir="rtl"] #why-chosse-cardealo .text {
  margin-bottom: 30px;
}

#why-chosse-cardealo .hero-orange-button {
  background-color: #FF7101;
  font-size: 16px;
  font-weight: 700;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 14px 14px 14px 14px;
  padding: 12px 32px;
  line-height: 30px;
  font-family: Poppins;
  text-decoration: none;
}

#why-cardealo-feature {
  position: relative;
}



#why-cardealo-feature .cardealo-chosse-left .image-inner1 {
  max-width: 410px;
  border-radius: 24px;
  overflow: hidden;
}


#why-cardealo-feature .cardealo-chosse-left .image-inner2 {
  position: absolute;
  bottom: -21%;
  right: -20%;
}

html[dir="rtl"] #why-cardealo-feature .cardealo-chosse-left .image-inner2 {
  right: auto;

}

#why-cardealo-feature .cardealo-chosse-left .image-inner2 img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
}

html[dir="rtl"] #why-cardealo-feature .cardealo-chosse-left .image-inner2 img {
  transform: scaleX(-1);
}

#why-cardealo-feature .cardealo-chosse-left .image-wrap {
  position: relative;
  display: inline-block;
}

#why-cardealo-feature .cardealo-chosse-left .image-inner1 img {
  display: block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
}


#why-cardealo-feature .cardealo-chosse-left .icon-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  z-index: 2;
  top: 23.7%;
  right: 10%;
}

html[dir="rtl"] #why-cardealo-feature .cardealo-chosse-left .icon-list {
  left: 10%;
  right: auto;
}

.cardealo-chosse-left .cd-icon-list {

  display: flex;
  align-items: center;
  padding: 9.5px 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  color: #FF7101;
  font-weight: 600;
  font-size: 17px;

}

.cardealo-chosse-left .cd-icon-list:not(:last-child) {
  margin-bottom: 24px;
}

.cardealo-chosse-left .cd-icon-list i {
  font-size: 22px;

}

.cardealo-chosse-left {
  position: relative;
}


#why-cardealo-feature .cardealo-chosse-right h2,
#cardealo-buy-car h2 {

  font-family: 'ABeeZee', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 46px;
  color: #24272C;
  font-style: italic;
}

#why-cardealo-feature .cardealo-chosse-right p {
  font-size: 16px;
}

.cardealo-chosse-right {
  padding-left: 71px;
}

.cardealo-chosse-right .chosse-expertises-iconbox {
  padding: 30px 30px 30px 30px;
  border-style: none;
  border-radius: 16px;
}

@keyframes ani5 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
    /* move to the right */
  }

  100% {
    transform: translateX(0);
    /* back to start */
  }
}


.image-inner2 {
  animation: ani5 7s infinite linear;
}

.chosse-expertises-iconbox .image img {
  width: 70%;
}

.chosse-expertises-iconbox .image {
  width: 33%;
}

#why-cardealo-feature .cardealo-chosse-right .chosse-expertises-iconbox .content .description {

  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696665;

}

.cardealo-chosse-right .chosse-expertises-iconbox:hover {
  box-shadow: 0px 30px 60px 0px #0000001A;
}

#why-cardealo-feature .cardealo-chosse-right .chosse-expertises-iconbox .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22.68px;
  margin-bottom: 11px;
  color: rgb(59, 62, 66);
  font-weight: 700;
}

#cardealo-buy-car .container {
  /* background-color: rgb(255, 248, 246); */
  background-color: rgb(253, 244, 242);
  border-radius: 22px;
  box-shadow: 0px 30px 90px 0px #00000008;
}

#cardealo-buy-car .cd-chosse-buy-car .curved-background {
  background: linear-gradient(135deg, #ff5e2d 0%, #ee9468 100%);
  border-bottom-left-radius: 100% 30%;
  border-bottom-right-radius: 100% 30%;
  width: 100%;
  padding: 0.2rem 1rem;
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


#cardealo-buy-car .cd-chosse-buy-car .curved-background .card-digit {
  color: #fff1e5;
  padding: 22px;
  font-size: 19px;
}

.cd-chosse-buy-car .card-body .title {
  color: #343434;
  font-style: italic;
  font-weight: 600;
}

.cd-chosse-buy-car .card-body img {
  height: 300px;
}

.cd-chosse-buy-car .card-body .description {
  color: gray;
  font-size: 15px;
}




#cardealo-buy-car .cd-chosse-buy-car .card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
  color: white;
}

#cardealo-buy-car .cd-chosse-buy-car .number {
  background: #2c5aa0;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 20px;
}

#cardealo-buy-car .cd-chosse-buy-car {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ffd8d2;
}

#why-cardealo-testimonials .stars {
  display: flex;
  gap: 6px;
}

#why-cardealo-testimonials .square-bg {
  background-color: #00b67a;
  color: white;
  padding: 5px;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.testimonial-section {
  background-color: #f8f9fa;

}

#why-cardealo-testimonials .testimonial-card {
  background: rgba(255, 113, 1, 0.06);
  border-radius: 20px;
  padding: 30px;
  margin: 15px;
  min-height: 280px;
  height: 100%;
  border: none;
}

#why-cardealo-testimonials .stars {
  color: #00b67a;
  font-size: 18px;
  margin-bottom: 15px;
}

#why-cardealo-testimonials .testimonial-date {
  color: #8c8c8c;
  font-size: 14px;
  margin-bottom: 20px;
}

#why-cardealo-testimonials .testimonial-text {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

#why-cardealo-testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

#why-cardealo-testimonials .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

#why-cardealo-testimonials .client-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

#why-cardealo-testimonials .client-title {
  color: #8c8c8c;
  font-size: 14px;
}

#why-cardealo-testimonials .section-title {
  color: #333;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

#why-cardealo-testimonials .carousel-indicators {
  bottom: -50px;
}

#why-cardealo-testimonials .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  margin: 0 5px;
}

#why-cardealo-testimonials .carousel-indicators .active {
  background-color: #ff6b35;
}

#why-cardealo-testimonials .carousel-control-prev,
#why-cardealo-testimonials .carousel-control-next {
  display: none;
}

@media (max-width: 768px) {

  #about {
    border-bottom-left-radius: 58% 42px;
    border-bottom-right-radius: 58% 42px;
    width: 100%;
    left: 0%;
    padding: 56px 0px;
  }

  html[dir="rtl"] #about {
    right: 0%;
  }

  #why-chosse-cardealo .main-heading {
    font-size: 47px;
  }

  #why-cardealo-testimonials .testimonial-card {
    margin: 10px 0;
  }

  #why-cardealo-testimonials .section-title {
    font-size: 28px;
  }
}


#cardealo-offers {
  background: #FFF9F5;

}

#cardealo-offers .title {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 44px;
  color: var(--cd-orange);
}

#cardealo-offers-deals .cardealo-offer-card {
  border: 1px solid rgb(247, 245, 245);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.07);
}

#cardealo-offers-deals .cardealo-offer-card img {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 16px 16px 0 0;
  background: #e9e9e9;

}



#cardealo-offers-deals .card-info {
  padding: 16px;
}

#cardealo-offers-deals .cd-offer-type,
.outlet-cards .outlet-card-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 94, 0, 0.85);

  color: #fff;

  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  border-radius: 99px;
  padding: 5px 12px;

}

html[dir="rtl"] #cardealo-offers-deals .cd-offer-type {
  right: auto;
  left: 12px;
}

#cardealo-offers-deals .end_date,
.deal-main-heading .end_date,
.deal-main-heading .start_date {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 9px;
  display: block;
  color: var(--cd-orange);
  display: inline-block;
  background: #ffebe3;
  padding: 4px;
  padding: 3px 13px;
  border-radius: 7px;
}

.cd-offer-btn-area {
  border-top: 1px solid #EFEFEF;

}

.cd-outlet-btn-area {
  border-top: 1px solid #d9d6d6;

}

#cardealo-offers-deals .card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22.68px;
  color: #24272C;
}

#cardealo-offers-deals .card-text {
  font-size: 14px;
}

.cd-offer-btn-area,
.cd-outlet-btn-area {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;

}

#cardealo-offers-deals .btn-cd-link {

  color: white;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.64px;
  border: 2px solid var(--cd-orange);
  border-radius: 14px;
  padding: 9px 17px;
  background-color: var(--cd-orange);
}

#cardealo-offers-deals .btn-cd-link:hover {
  color: var(--cd-orange);
  background-color: white;
  border: 2px solid var(--cd-orange);
}

#cd-no-offers img {
  width: 22%;
}

#offer-banner {
  border-bottom: 1px solid #EDEDED;
}

#offer-banner .offer-share-btn {
  padding: 9px 18px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 50px;
  background-color: white;
  color: var(--bs-button-text-2);
  font-size: 14px;
  line-height: 22px;

}

#deal-deatails .deal-main-image {
  border: 1px solid rgb(234, 234, 234);
  border-radius: 12px !important;
}

#deal-deatails .deal-main-image img {

  height: 398px;
  object-fit: cover;
  border-radius: 12px;


}

#deal-deatails .deal-vehicle-inner {
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.07);
  padding: 32px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
}

#deal-deatails .deal-main-heading .title {
  font-size: 34px;
  line-height: 48px;
  color: rgb(33, 37, 41);
}

#deal-deatails .deal-vehicle-inner .item-feature-car {

  padding: 8px 14px;
  border: 1px solid rgb(235, 235, 235);
  background-color: #FF710157;
  border-radius: 4px;
  color: rgb(0, 0, 0);
  font-weight: 600;

}


#deal-deatails .offer-inner-description {
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
  padding: 32px 32px 12px 32px
}

#deal-deatails .offer-inner-description h3,
#deal-deatails .deal-vehicle-inner h3 {
  font-size: 21px;
  line-height: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

#deal-deatails .offer-inner-description p {
  font-size: 16px;
  color: #6d6d6d;
}

#deal-deatails .offer-inner-description ul>li,
ul.offer-info-list li {
  font-size: 17px;
  line-height: 31px;
  color: #6d6d6d;
}

#deal-deatails .offer-form {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  background-color: #fe3b0014;
  border: 1px solid #FFB091ED;
  padding: 12px;
  border-radius: 8px;

}

#deal-deatails .offer-form h4 {
  color: var(--cd-orange);
  font-style: italic;
  font-family: 'ABeeZee', sans-serif;
  font-weight: 600;
}

#deal-deatails .offer-form .badge-red {
  color: #D92D20;
  background: #FFD9D9;
  padding: 7px 16px;
  border-radius: 4px;
  border: 1px solid #FEF3F2;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

/* .countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.countdown-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 70px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-value {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 4px;
}

.countdown-label-text {
  font-size: 13px;
  color: #666;
} */

/* RTL support */
[dir="rtl"] .countdown-boxes {
  direction: rtl;
}

.offer-countdown .countdown-label {
  background-color: #ff7a03;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 5px;
  font-family: 'Poppins';
}

.event-time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffecce;
  border-radius: 8px;
  overflow: clip;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.offer-countdown {

  align-self: stretch;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 500;

}

#countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

#countdown>div {
  flex: 1;
  min-width: 70px;
  text-align: center;
  background-color: #fff;
  padding: 10px 5px;
  position: relative;
  background-color: #ffecce;
}

#countdown>div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #FFCBB2;
}


#countdown:dir(ltr)>div:not(:last-child)::after {
  right: 0;
}


#countdown:dir(rtl)>div:not(:last-child)::after {
  left: 0;
}

/* Numbers */
#countdown span.fw-bold {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}



/* Labels */
#countdown span:not(.fw-bold) {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: #555;
}



#countdown .countdown-label-text {
  font-size: 14px;
  color: var(--cd-orange);
  font-weight: 600;
}

#countdown .countdown-value {
  font-size: 16px;
  color: var(--cd-orange);
  font-weight: bold;
}


.offer-form-avail {
  background: #fae7e2;
  padding: 12px;
  padding-top: 12px;
  border-radius: 12px;
}

.offer-form-avail .offer-submit {
  width: 100%;
  background: var(--cd-orange);
  padding: 6px 22px;
  border: 1px solid var(--cd-orange);
  border-radius: 7px;
  color: white;
  font-size: 16px;
  font-weight: 700;
}

html[dir="rtl"] .offer-form-avail .form-select {
  background-position: left 0.75rem center;
}


/*Outlet Page*/
#outlet-cardealo-banner {
  position: relative;
  background-color: var(--white-100);
  background-image: url(../assets/images/outlet-cardealo/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  border-radius: 18px;
  color: white;
  z-index: 1;
}

html[dir="rtl"] #outlet-cardealo-banner {
  background-image: url(../assets/images/outlet-cardealo/banner-ar.png);
}

/* Overlay */
#outlet-cardealo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Change opacity/color as needed */
  z-index: 0;
}

/* Ensure inner content is above the overlay */
#outlet-cardealo-banner>* {
  position: relative;
  z-index: 1;
}

#outlet-cardealo-banner .main-heading {
  font-weight: 700;
  font-size: 64px;
  line-height: 79.23px;
  color: var(--cd-orange);
  font-style: italic;
  font-size: 43px;
  line-height: 46px;
}

#outlet-cardealo-banner .sub-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
}

#outlet-cardealo-banner .title {
  font-size: 18px;
  line-height: 28px;
}

#cardelo-outlet-headings .main-heading {
  color: var(--cd-orange);
}

#cardelo-outlet-headings p,
#outlet-steps .title {
  color: gray;
  font-size: 16px;
  line-height: 24px;
}

.outlet-cards {
  max-width: 380px;
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 3px 3px 9px rgba(164, 164, 186, 0.2);
  border: solid 1px #dddddd;
  padding: 10px;
}

.outlet-cards img {
  border-radius: 6px;
}

.outlet-cards .main-heading {
  color: #26232A;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

.outlet-cards .card-body {
  background: #f4f4f4;
  margin-top: 12px;
  border-radius: 12px;

}

.outlet-cards .inner-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #696665;
  margin-top: -9px;

}

.outlet-cards .inner-info img {
  width: 25%;
}

.outlet-cards .outlet-card-price {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 25.2px;
  color: rgb(255, 113, 1);
}

.outlet-explore-btn {
  background: var(--cd-orange);
  color: white;
  padding: 12px 32px;
  border: 1px solid var(--cd-orange);
  font-size: 16px;

  line-height: 17px;
  border-radius: 9px;
  font-weight: 600;

}

.outlet-explore-btn:hover {
  background-color: white;
  color: var(--cd-orange);
}

.outlet-cards .cd-outlet-btn {

  color: white;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.64px;
  border: 2px solid var(--cd-orange);
  border-radius: 8px;
  padding: 6px 17px;
  background-color: var(--cd-orange);
}

.outlet-cards .cd-outlet-btn:hover {
  background-color: white;
  color: var(--cd-orange);
  border: 1px solid var(--cd-orange);
}

#outlet-steps .main-heading {
  font-size: 47px;
  line-height: 54px;
  font-weight: 700;
  color: #212529;
}

.outlet-steps-card img {
  background: #ffd8ce;
  padding: 7px;
  border-radius: 50%;

}

.outlet-steps-card .step-title {
  font-size: 24px;
  font-weight: 700;
  color: #212529;



}



.outlet-steps-card .step-description {
  font-size: 14px;
  line-height: 18px;
  color: gray;
}

#outlet-steps .outlet-about-images img {
  border-radius: 13px;
  max-width: 48%;
}

.outlet-orange-badge {
  background: #ff6407;

  padding: 32px;
  border-radius: 13px;


}

.outlet-orange-badge h4 {
  color: white;
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;

}

html[dir="rtl"] .outlet-orange-badge h4 {
  font-size: 32px;
  line-height: 48px;
}

.outlet-badge-image img {

  border-radius: 13px;

}


#outlet-brands-carousel .brand-logo {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  /* Light gray, faded look */
  transition: filter 0.3s ease, opacity 0.3s ease;
}

#outlet-brands-carousel .brand-logo:hover {
  filter: grayscale(0%) opacity(1);
  /* Full color and full opacity on hover */
}

html[dir="rtl"] #desk-more-menu {
  text-align: right;
}


.color-swatch-wrapper {
  position: relative;
}

.swatch {
  width: 20px;
  height: 20px;

  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--cd-blue);
}

.swatch-popup {
  display: none;
  z-index: 99999;
  position: absolute;
  top: 30x;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
  min-width: 100px;
  background-color: rgb(255, 222, 205);
  padding: 2px 3px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);

}

.swatch-large {
  width: 100%;
  height: 50px;

  border: 1px solid rgba(251, 131, 81, 0.61);
  ;
  ;
  border-radius: 4px;
}

.swatch-label {
  font-size: 10px;
  font-weight: bold;
  color: rgb(255, 76, 0);
  ;
}


.color-swatch-wrapper:hover .swatch-popup {
  display: block;
}

.car-banner-condition,
.car-banner-detail-condition {

  font-weight: 700;

}

.car-banner-condition {
  font-size: 14px;
}

.car-banner-detail-condition {
  font-size: 17px;
}

.car-banner-detail-condition .condition_used,
.car-banner-condition .condition_used {
  color: var(--cd-orange);

}

.car-banner-detail-condition .condition_used.outlet,
.car-banner-condition .condition_used.outlet {
  color: var(--cd-blue);
}

.car-banner-detail-condition .condition_new,
.car-banner-condition .condition_new {
  color: #05b105;
}


.car-banner-detail-condition .condition_used,
.car-banner-condition .condition_used,
.car-banner-detail-condition .condition_used.outlet,
.car-banner-condition .condition_used.outlet,
.car-banner-detail-condition .condition_new,
.car-banner-condition .condition_new {
  background: #ededed;
  padding: 3px 10px;
  border-radius: 7px;
  border: 1px solid #dedede;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 16px;
}

#report-details .bg-orange {
  background: var(--cd-orange);
}

/*HomePage*/

/*HomeBanner*/
.home-banner-btn,
.book-btn,
.contact-btn {
  padding: 14px 52px;
  background-color: var(--cd-orange);
  color: var(--white);
  box-shadow: 0px 8px 24px 0px #0000001A;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  border-radius: 50px;
  border: none;


}

.reserved-btn {
  padding: 14px 24px;
  background-color: #e8e8e8;
  color: #2f2f2f;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  border-radius: 50px;
  border: none;
  cursor: not-allowed !important;
}

.reserved-btn-car,
.btn-prequalified {
  padding: 10px 24px;
  /* Adjust for height and width */
  background-color: #e8e8e8;
  color: #2f2f2f;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  border: none;
  border-radius: 50px;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 55px;
  /* Keeps consistent with other buttons */

  /* Optional: keeps consistent width with "Shop cars..." */
  margin-top: 22px;
}

.reserved-btn-car span {
  font-size: 12px !important;
}

.btn-prequalified span {
  font-size: 17px !important;
}

.btn-prequalified {
  color: white;
  background: #383C96;
  width: 30%;
}


.reserved-btn-calc {
  padding: 8px 16px;
  background-color: #e8e8e8;
  color: #2f2f2f;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  border-radius: 20px;
  border: none;
  cursor: not-allowed;
}


.book-btn,
.contact-btn {
  width: 100%;
  text-align: center;
}

#home-banner {
  background-image: url('../assets/images/car-1.png'), url('../assets/images/car-2.png');
  position: relative;
  background-color: #F5F5F5;
  background-position: left bottom, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 33% auto, 33% auto;
  padding: 80px 0px 150px 0px;
}

.home-content.row {
  padding-bottom: 42px;
}

.underline-word {
  text-decoration: underline;
  padding-top: 2px;
  text-decoration-style: solid;
}

.home-content h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 79.23px;
}

.home-content p {
  font-family: 'ABeeZee', sans-serif;
  font-size: 20px;
  line-height: 32px;
}

/*Tabs*/

#searchBodyTab .container,
#searchBrandTab .container {
  border-radius: 16px;
  box-shadow: 0 20px 20px #ffd1b0;
  background-color: white;
}

#searchBrandTab h5 {
  font-size: 16px;
}

#brands-tabs {
  background: linear-gradient(180deg, #FFCDB4, #ffe6d999);
}

.body-brand-tabs {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px 0 hsla(0, 0%, 53%, .2);
  bottom: -32px;
  min-height: 52px;
  margin-inline: auto;
  padding: 6px;
  position: relative;
  max-width: 345px;
  z-index: 1;
}

.body-search-btn,
.brand-search-btn {
  border-radius: 10px;
  color: var(--cd-blue);
  border: 1px solid transparent;
  font-family: 'ABeeZee', sans-serif;
  font-size: 18px;
  line-height: 22px;
  padding: 12px;
  text-align: center;
  z-index: 1;
  border: 1px solid transparent;


}

.body-search-btn.active,
.brand-search-btn.active {
  background-color: var(--cd-orange);
  color: var(--white);

}

.body-search-btn:not(.active),
.brand-search-btn:not(.active) {
  background: white;
  color: var(--cd-blue);
}

.search-body-cars {
  box-shadow: 0px 16px 32px 0px #0000000D;
  border-radius: 16px;
  padding: 16px;

}

.brand-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  box-shadow: 0px 16px 32px 0px #0000000D;
  border-radius: 16px;
  padding: 16px;
}

.brand-img:hover {
  cursor: pointer;
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 0.12);
  transition: all 200ms linear;

}

.body-cars .search-body-cars:hover {
  background: linear-gradient(90deg, #fff, #f4f4f4);
  border: 1px solid #ff7600;
}

.body-cars:hover h5 {
  color: var(--cd-blue);
}

.body-cars h5 {
  font-weight: 600;
}

#searchBodyTab h2,
#searchBrandTab h2 {
  font-size: 32px;
}

.brand-container {
  max-height: 525px;

  overflow-y: auto;

  scrollbar-width: thin;

  padding-right: 10px;

}


.brand-container::-webkit-scrollbar {
  width: 6px;
}

.brand-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/*Cardealo Steps*/
#cardelo-steps h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 53.2px;


}

#cardelo-steps p {
  color: #555;
}

.bold-underline {
  font-size: 50px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: currentcolor;
  text-decoration-line: underline;
  text-decoration-color: var(--cd-orange);
  position: relative;
}

.bold-underline::before {
  background: linear-gradient(270deg, hsla(0, 0%, 67%, .4), hsla(0, 0%, 91%, 0));
  content: "";
  flex: 1;
  height: 1px;
  margin-right: 24px;
}

.bold-underline::after {
  background: linear-gradient(270deg, hsla(0, 0%, 91%, 0), hsla(0, 0%, 67%, .4));
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 24px;
}

/*steps*/
#cardelo-steps {
  background: #efefef
}

.main-step {

  /*background: #f5f5f5;*/
  padding: 59px;
  border-radius: 18px;
  box-shadow: rgba(33, 33, 33, 0.15) 0px 4px 15px 0px;
}

.step-number {
  color: rgb(255, 76, 0);
  font-size: 42px;

  line-height: 56px;
  width: auto;
}

.step-title-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  flex-grow: 1;
  max-width: 338px;
}


/*.main-step.step-title {
   /* max-width: 240px;}*/


.step-image img {
  width: 114px;
  height: 113px;
  object-fit: contain;

}


.step-title-highlight {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;


  color: rgb(255, 76, 0);
}

.step-progress {
  width: 100px;

  flex-shrink: 0;
  position: relative;
}




.step-progress::before {
  content: " ";
  width: 2px;
  height: 100%;
  background-color: rgb(255, 76, 0);
  position: absolute;
  top: 0px;
  left: 50%;
}

.step-progress::after {
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(255, 76, 0);
  position: absolute;
  bottom: calc(50% - 4px);
  left: calc(50% - 4px);
}

.step:first-child .step-progress::before {
  height: 50%;
  top: unset;
  bottom: 0px;

}

.step:last-child .step-progress::before {
  height: 50%;

}

/*blog cards*/
.italicized-title {
  font-family: 'ABeeZee', sans-serif;
  font-size: 44px;
}



.hblogs-p {
  max-width: 340px;
  color: #696262;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
}

.blogs-card {
  border: 1px solid #E9E9E9;
  border-radius: 16px;
  position: relative;
  overflow: visible;


}

.blogs-card:hover {
  box-shadow: 0px 16px 32px 0px #00000033;
  border-radius: 16px;
}

.blogs-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blogs-card-body a {
  color: var(--cd-blue);
  text-decoration: none;
  font-family: poppins;
  font-size: 14px;
  line-height: 26px;
}

.blogs-card:hover .blogs-card-body a {
  color: var(--cd-orange);
}

.blogs-card-body h4 {
  font-size: 24px;

  line-height: 36px;
  color: #130606;
  font-family: 'ABeeZee', sans-serif;
}


/*Popular SEarch*/
.popular-models h3 {
  font-size: clamp(44px, 33px, 22px);
  line-height: 52.01px;
  text-align: center;
  color: #130606;
  font-family: 'ABeeZee', sans-serif;
}

.popular-models a {

  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  text-decoration: none;
  color: var(--cd-blue);
}

.popular-models {
  border-top: 3px solid #ccc;
}



/*Homepage Steps*/

/*RESULT PAGE START*/

#result-cards .swiper .swiper-pagination-bullet-active {
  background: white;
  width: 20px;
  border-radius: 5px;
}

#result-cards .swiper-pagination-bullet {
  background-color: #C8C8C8;
  transition: all 300ms ease-in-out;
  opacity: 0.9;
}

.result-card {
  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 20px;
  color: black !important;
}


.result-card:hover {
  box-shadow: 0px 20px 50px 0px #00000033;

}

#result-cards .result-card-header .swiper-slide {
  position: relative;

}


#result-cards .result-card-header .mySwiper .swiper-slide .favorite {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 10;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;


}

html[dir="rtl"] #result-cards .result-card-header .mySwiper .swiper-slide .favorite {
  right: auto;
  left: 15px;
}

#result-cards .result-card-header .mySwiper .swiper-slide .state.active {
  position: absolute;
  top: 14px;
  left: 20px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  gap: .5rem;
  background: #00A5FF;
  font-family: 'Poppins';

}

.estimated-loan {
  font-size: 10px;
  line-height: 20px;
  font-weight: 500;
}

#result-cards .result-card-header .swiper-slide .favorite i {
  font-size: 1.3rem;
  color: #000000;
}

#result-cards .result-card-header .swiper-slide .favorite i.bi-heart-fill {
  color: orange !important;
}




.result-card-header .swiper-slide img {
  border-radius: none;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;

}

/*RESULTS CARD INNER*/
#result-cards .card-description,
.year {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 14px;


}

#result-cards .card-description {
  color: #696262;
  font-weight: 400;
  background: #efeded;
  padding: 5px 12px;
  border-radius: 4px;
}

.vehicle-capacity {
  font-family: 'Poppins';

  font-size: 16px;
  color: #696262;
  font-weight: 400;
}

.month {
  font-size: 16px;
  font-weight: 700;
  color: #0B0B0B;
}

.month-plans-banner {
  font-size: 11px;
  font-weight: 700;
  color: #0B0B0B;
}

#result-cards .result-card-title {

  font-weight: 700;
  font-size: 20px;


}

.price {
  font-family: ABeeZee;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;

}

.vehicle-price {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;

}

#result-pagination .page-item {
  margin: 0 5px;
  font-size: 1.1rem;
  border-radius: 35px;
}

#result-pagination .pagination .active>.page-link {
  background: #C4C4C4;
  color: black;
  border-radius: 8px;
  border: 1px;
  padding: 7px 17px;

}


/*#result-pagination .pagination li.disabled {
  background-color: white !important;
  pointer-events: none;
  color: black;
}
*/
#result-pagination .page-link {
  color: black;
  border-radius: 8px;
  border: 1px;
  background-color: #EEEEEE;
  padding: 7px 17px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;



}

.page-dots {
  font-size: 22px;
}




#result-pagination .pagination li:first-child {
  /* border-radius: 5px 0 0 5px;*/
}

#result-pagination .pagination li:last-child {
  /*border-radius: 0 5px 5px 0;*/
}

/*CSS FOR THE SEARCH BOX*/
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #F8F8F8;
  border-radius: 12px;
  padding: 0 10px;
  background-color: #F8F8F8;
  ;
}

.search-box input {
  flex: 1;
  background-color: #F8F8F8;
  color: #8E8E8E;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
}

.filter-dropdown-btn {

  background: white;
  border: 2px solid white;
  border-radius: 12px;
  padding: 7px 22px;
  box-shadow: 0px 20px 50px 0px #0000000D;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;

}


.search-dropdown .filter-dropdown-btn[aria-expanded="true"] {
  border: 2px solid #d1d1d1;
}

/* Hide the default caret */
.dropdown-toggle::after {
  display: none !important;
}


.filter-badge {
  margin-right: 5px;
}

.search-bar {
  margin-bottom: 15px;
}

.car-count {
  margin: 15px 0;
}

.clear-all-btn {
  background-color: white !important;
  color: #8E8E8E;
  border: 0px;
}

div.filters-menu {
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 8px 30px 0px #0000004D;
  border-radius: 20px;

}

input[type="checkbox"] {
  border: 2px solid black;
}

input[type="checkbox"]:checked {
  background-color: #D3D3D3;
  border-color: black;
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}


input[type="checkbox"]:focus {
  outline: 2px solid black;
}


input[type="checkbox"]:hover {
  border-color: 2px solid black;
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

.filter-select {

  background: white;
  border: 1px solid #dee2e6;
  border-radius: 50rem;
  font-size: 0.875rem;
  padding: 0.35em 0.65em;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: #212529;
  cursor: pointer;
}

.filter-select {
  background-color: rgb(251, 228, 185);
}

.cross-sign {
  position: absolute;
  right: 6px;
  top: 6px;
}



.clear-all-text {
  color: #8E8E8E !important;
  font-size: 14px !important;


}

/* Style for the dropdown header */
.dropdown-header {
  font-size: 18px !important;
  font-weight: 600;
}

.filters-menu {
  max-height: none !important;

  position: absolute !important;
  inset: auto !important;
}


.filter-dropdowns {
  overflow: visible !important;
}


.filter-dropdown-btn {
  background-color: white;
  border: 0px;
}

.recomended-dropdown {
  background-color: white;
  border: 0px;
  color: var(--cd-blue);
  font-weight: 700;

}



.filter-nou,
.filter-sort-btn,
.filter-count-btn {
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 22px;
  padding: 8px 19px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  border: 1px solid rgb(212, 212, 212);
  color: rgb(54, 54, 54);
  margin: 0px 4px;
  transition: box-shadow 0.4s ease-out;
}

.filter-sort-btn,
.filter-count-btn {
  padding: 6px 12px;
  width: 50%;
}

.filter-nou:hover {
  box-shadow: 0 0 10px hsla(18, 89%, 55%, 0.6);
  border: 1px solid #ef5818;
}

.filter-nou.active {
  box-shadow: 0 0 10px hsla(18, 89%, 55%, 0.6);
  border: 1px solid #ef5818;
}


.mobile-tab-header {
  box-shadow: rgba(33, 33, 33, 0.1) 0px 4px 10px;
}

.mobile-tabs-btns {
  border-bottom: 2px solid #eeeded;
}

#mobileFilterTabs .nav-item .nav-link.active {
  background: rgb(255, 242, 235);

  border-radius: 0;
  border: 0;
  border-left: 5px solid var(--cd-orange);

}

#mobileFilterTabs .nav-item .nav-link {
  border: none;
  padding: 26px 30px;

}

.mobile-filter-tab-content {
  border-left: 1px solid #d6d6d6;
}


#mobileFilterTabs .nav-item a {
  font-size: 14px;
  line-height: 20px;
  font-family: "Poppins", serif;
  font-weight: 600 !important;
  color: rgb(54, 54, 54);
}

.msort.dropdown-item {
  font-size: 11px;
}


.make-body-btn {
  background-color: rgb(247, 247, 247);
  color: rgb(117, 115, 115);
  font-size: 16px;
  line-height: 28px;
  border-radius: 24px;
  padding: 8px 13px;
  border: none;

}

.make .form-check input {
  display: d-none;
}

.make {
  max-height: 300px;
  overflow-y: auto;
}

#mobileFilterTabs {
  border-bottom: 0px;
}

.bs-item {
  padding: 10px 10px;
  padding-left: 10px;
  border: 1px solid #ddd;
  border-top-color: rgb(221, 221, 221);
  border-right-color: rgb(221, 221, 221);
  border-bottom-color: rgb(221, 221, 221);
  border-left-color: rgb(221, 221, 221);
  border-radius: 3px;
  margin-bottom: 10px;
  cursor: pointer;
  padding-left: 10px !important;
}

.bs-img {
  width: 60px;
  height: 25px;
  object-fit: contain;
  margin-right: 16px;
}

/*Single Car Page*/
.vehicle-shadow {
  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 20px;

}

.vehicle-title {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #130606;
}

#about h1 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  line-height: 53px;
  color: #130606;
}

.vehicle-year,
#about .title,
.about-content h6,
.why-chosse-us h6,
#cardelo-outlet-headings h6 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;


}

#cardelo-outlet-headings h6 {
  color: var(--cd-blue);
}

.blue-heading {
  color: #595DA9;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Gilroy', sans-serif;
  line-height: 30px;
}

.car-img {
  /* border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;*/
  width: 100%;
  height: 100%;
}



.back-btn {
  color: var(--cd-blue);
}

/*Single Car Page*/
#vehicle-main .swiper-button-next,
#vehicle-main .swiper-button-prev,
#dent-map .swiper-button-next,
#dent-map .swiper-button-prev {
  width: 35px;
  height: 40px;
  background: #E4E4E4B2;
  border-radius: 12px;
  color: black;
  pointer-events: auto !important;
}

#payment-calculator .swiper-button-next,
#payment-calculator .swiper-button-prev {
  width: 35px;
  height: 40px;
  background: #c4c4c4b2;
  border-radius: 12px;
  color: black;
  display: flex;
}




#vehicle-main .swiper-button-next::after,
#vehicle-main .swiper-button-prev::after,
#dent-map .swiper-button-next::after,
#dent-map .swiper-button-prev::after,
#payment-calculator .swiper-button-next::after,
#payment-calculator .swiper-button-prev::after {
  font-size: 14px;
}

#car-thumbanils .swiper-button-next,
#car-thumbanils .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: var(--cd-orange);
  border-radius: 10px;
  color: white;
  display: flex;

}

#car-thumbanils .swiper-button-next::after,
#car-thumbanils .swiper-button-prev::after {
  font-size: 12px;
}

#car-thumbanils .swiper-button-next,
#car-thumbanils .swiper-button-prev,
#payment-calculator .swiper-button-next,
#payment-calculator .swiper-button-prev {
  position: absolute;
}

#car-thumbanils .swiper-button-next {
  right: -10px;
}

#car-thumbanils .swiper-button-prev {
  left: -19px;
}

#payment-calculator .swiper-button-prev {
  left: -7px;
}

#payment-calculator .swiper-button-next {
  right: -10px;
  z-index: 999;
}

.thumbnail-slider {
  width: 100%;
  height: 100px;
}

.thumbnail-slider .swiper-slide {
  width: 150px !important;
  cursor: pointer;
  height: 100%;

}

.swiper-button-prev.thumb-prev.swiper-button-disabled,
.swiper-button-next.thumb-next.swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: none;
}

.swiper-button-lock {
  display: flex !important;
}

#report-details .download-report {
  background: rgb(255, 69, 0);
  padding: 8px 15px;
  border-radius: 10px;
  color: white;
  margin: 2px;
}

#featuresModal .feature-model-description {
  font-weight: 700;

}


.main-slider .swiper-slide img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

}

.main-slider {
  height: 456px;
}


.thumbnail-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--cd-orange);
  border-radius: 9px;
}

.thumbnail-slider .swiper-slide img {
  border-radius: 9px;
  height: 100%;
  width: 100%;
}

.gray-box {
  background: #E2E2E2;
  border-radius: 12px;
}

.gray-box h3 {
  font-family: 'ABeeZee';
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: center;

}

.gray-box p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #696262;

}

.italic-title {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

}

/* Default color for all tabs */
.vehicle-nav-link,
.payment-nav-link {
  color: var(--cd-blue) !important;
  font-size: 18px !important;
  line-height: 32px;
  font-weight: 600 !important;
  transition: color 0.3s ease-in-out;
  position: relative;
}

/* Hover effect */
.vehicle-nav-link:hover,
.payment-nav-link:hover {
  color: var(--cd-orange) !important;
}

/* Active tab (selected tab remains orange) */
.vehicle-nav-link.active,
.payment-nav-link.active {
  color: var(--cd-orange) !important;
}

/* Underline effect for active tab */
.vehicle-nav-link.active::after,
.payment-nav-link.active::after {
  content: "";
  display: block;
  width: 24%;
  height: 3px;
  background-color: var(--cd-orange);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* General Typography */
#vehicle-overview h5,
#vehicle-detail h5,
#inspection-report h5 {
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  color: #130606;
  font-family: 'Poppins', sans-serif;
}

#report-details .modal-body {
  background-color: #f4f4f4;
}

#report-details .nav-tabs .nav-link {
  padding: 5px 10px;
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  background-color: #FFE1D2;
}

#report-details .nav-tabs .nav-link.active {
  background-color: var(--cd-blue);
  color: var(--white);
  border-bottom: 0;
  border: none;
}

#myTabContent .card {
  padding: 30px 30px !important;
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
  background-color: #F9F9F9;
  border: 1px solid #f5f5f5f5;
  border-radius: 15px;
}

.model.form-check.all {
  border: 2px solid orange;
  border-radius: 4px;
  padding: 10px;
}

.model.form-check.all.active {
  border: 2px solid orange;
  padding: 10px;
  background-color: #ffedda;
}

.form-check.test_color.active {
  border: 2px solid orange;
  padding: 10px;
  background-color: #ffedda;
}

.model #all-desktop,
#all-mobile {
  display: none;
}

#report-details .card-body .overview_nav {
  flex: 1 0 calc(50% - 1rem);
}

.hide.title {
  color: #000000;
  font-size: 15px;
}

.inpection-car-title {
  color: var(--cd-blue);
  font-size: 32px;
}

.inner-inspection-card {
  padding: 1rem;
  border: 1px solid #ededed;
  border-radius: 5px;
}

#vehicle-overview span,
#vehicle-detail span,
#inspection-report span {
  font-size: 21px;
  line-height: 32px;
  color: #130606;
  font-family: 'Poppins', sans-serif;
}

#vehicle-overview li,
#vehicle-detail li,
#inspection-report li {
  position: relative;
}

#vehicle-overview li::after,
#vehicle-detail li::after,
#inspection-report li::after {
  content: "";
  display: block;
  width: 89%;
  height: 1px;
  background-color: #E7E6E6;
  position: absolute;
  bottom: 0;
  left: 66%;
  transform: translateX(-64%);
}

#inspection-report li:last-child::after {
  content: none;
}

/*Inspection Report*/
#inspection-report h3,
#payment-calculator h3 {

  font-weight: 700;
  font-size: 44px;

  text-align: center;

}

.inpection-badge,
.inpection-badge-green {
  background-color: var(--cd-orange);
  /* Orange color */
  color: white !important;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  /* Slightly rounded corners */
  font-size: 16px;
}

.inpection-badge-green {
  background-color: #17BB31;
  ;
}

.inspection-details {

  font-weight: 700;
  font-size: 16px;
  line-height: 30px;

  color: #006AB8;

}

.car-map {
  position: relative;
  max-width: 450px;
  margin: auto;
}

.map img {
  width: 100%;
  height: auto;
}

.dent {
  position: absolute;
  background-color: #FF6F32;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.dent.active::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 2px;
  background-color: #ff5722;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

html[dir="rtl"] .dent.active::after {
  right: 100%;
  width: 397px;
  z-index: 2;
}

.dent[num="1"] {
  left: 12.5%;

  top: 44%;
}

html[dir="rtl"] .dent[num="1"] {
  z-index: 9999;
}

html[dir="rtl"] .dent[num="1"].active::after {
  width: 1px;
}

html[dir="rtl"] .dent.active::after {
  width: 2px;
  height: 131px;
  background-color: #ff5722;
  top: 88px;
  left: 55px;
}

.dent[num="2"] {
  top: 44%;
  left: 83%;
}

.dent[num="3"] {
  top: 83%;
  left: 49%;
}

.dent[num="4"] {
  top: 10%;
  right: 46%;
}

.dent[num="5"] {
  left: 25.5%;
  top: 46%;
}

.dent[num="6"] {
  top: 71%;
  left: 49%;
}

.dent[num="7"] {
  top: 22%;
  right: 45%;
}

.dent.active {
  transform: scale(1.2);
  background-color: darkred;
}

.dent-slider-caption {
  background: var(--cd-orange);
  color: white !important;

  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 12px;
}

.dent-slide-img {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border: 2px solid var(--cd-orange);
}

#monthly-payment h3 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 34px;


}

.gray-payment-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #696262;

}

.payment-price {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;

}

.gray-payment-heading {
  color: #6c757d;
  margin-bottom: 0;
}

.duration-value {
  font-weight: bold;
  color: #0077cc;
}

.tick.active {
  font-weight: bold;
  color: #0077cc !important;
}

.tick {
  cursor: pointer;
}

.duration-slider-container {
  width: 100%;
  padding: 10px 0;
}

.duration-slider-container .tick {
  font-size: 0.875rem;
  color: white;
  cursor: pointer;
}

.duration-slider-container .tick.active {
  font-weight: bold;
  color: #0077cc;
}

/* Slider fill style - removing border radius */
#sliderFill {
  border-radius: 0 !important;
  background-color: #0077cc !important;
}

/* Slider thumb styles */
.form-range::-webkit-slider-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

.form-range::-moz-range-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

.form-range::-ms-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

.duration-value {
  font-weight: bold;
  color: #0077cc;
}

.tick.active {
  font-weight: bold;
  color: #0077cc !important;
}

.tick {
  cursor: pointer;
}

.duration-slider-container {
  width: 100%;
  padding: 10px 0;
}

.duration-slider-container .tick {
  font-size: 0.875rem;
  color: white;
  cursor: pointer;
}

.duration-slider-container .tick.active {
  font-weight: bold;
  color: #0077cc;
}

/* Slider fill style - removing border radius */
#sliderFill {
  border-radius: 0 !important;
  background-color: #0077cc !important;
}

/* Slider thumb styles */
.form-range::-webkit-slider-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

.form-range::-moz-range-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

.form-range::-ms-thumb {
  background: #0077cc !important;
  border-color: #0077cc !important;
}

/*summary*/
.summary-card {
  background: var(--cd-blue);
  border-radius: 20px;
  color: white;
}

.summary-card h4,
.buy-cash h4 {

  font-weight: 600;
  font-size: 28px;
  line-height: 100%;


}

.summary-card span,
.buy-cash span {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;


}

.payment-result-box {
  border: 1px solid rgb(216, 216, 216);
  border-radius: 12px;
  box-shadow: 0px 20px 50px 0px #0000000D;

}

.btn-preapprove {
  background: #FF7938;
  color: white;
  text-align: center;
  padding: 12px 25px;
  white-space: nowrap;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  box-shadow: 0px 8px 24px 0px #0000001A;


}








.buy-cash {
  background: #595DA9;
  border-radius: 20px;
  box-shadow: 0px 20px 50px 0px #0000000D;

  color: white;
}

/* Custom dropdown wrapper */
#interestRateSelect {
  width: 50%;
  border: 0px !important;
  border-bottom: 1px solid rgb(230, 230, 230) !important;
  border-radius: 0px !important;
}




/*Bank Images*/

/* Hide default radio input */
.bank-option input {
  display: none;
}

/* Styling for the image container */
.bank-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: border 0.3s, box-shadow 0.3s;
}

/* Image styling */
.bank-option img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  transition: 0.3s;
}

/* Selected state: add border */
.bank-option input:checked+img {
  border: 2px solid var(--cd-blue);
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Checkmark icon (Bootstrap icon) */
.checkmark {
  display: none;
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 13px;
  color: var(--cd-blue);
  background-color: white;
  border-radius: 50%;
}

/* Show checkmark when selected */
.bank-option input:checked~.checkmark {
  display: block;
}


.payment-monthly-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.payment-monthly-col a {
  color: var(--cd-blue);
}

.dent[data-num="one"] {
  top: 10%;
  left: 36%;

}

.dent[data-num="two"] {
  top: 37%;
  left: 54%;
}

.dent[data-num="three"] {
  top: 61%;
  left: 27%;
}

#payment-calculator .summary-text {
  font-size: 17px !important;
  color: var(--cd-blue) !important;
  font-weight: 700 !important;
  margin-top: 22px !important;
}

#vehicle-top-menu.show {
  top: 0;
  z-index: 1030;
}

#vehicle-top-menu {
  background-color: var(--white);
  z-index: 999;
  width: 100%;
  top: -300px;
  filter: drop-shadow(0px 5px 10px rgb(0 0 0 / .1));
  transition: top 300ms ease-in-out;
}

#vehicle-top-menu a.active {
  color: var(--cd-orange);

}

#vehicle-top-menu a:hover {
  color: var(--cd-orange);

}

#vehicle-top-menu a {
  color: var(--cd-blue);
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
}

#vehicle-top-menu a:hover,
#vehicle-top-menu a:active {
  color: var(--cd-orange);

}

.vehicle-top-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--cd-orange);
}

#vehicle-top-menu h4 {
  font-size: 32px;
  font-weight: 700;
  color: var(--cd-blue);
}

#contact-finance h2 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 44px;
}

#contact-finance p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #696262;
  line-height: 23px;
  max-width: 523px;

}

.contact-boxes h5 {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
  color: #130606;


}

html[dir="rtl"] .contact-boxes h5 {
  font-size: 17px;
}


.contact {
  box-shadow: 0px 20px 50px 0px #0000000D;
  border-radius: 20px;
}

.section-title {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;


}

.section-subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  max-width: 400px;

}

.contact-input {
  background: #F8F8F8 !important;
  border: 1px solid #F8F8F8 !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  line-height: 30px !important;
  padding: 12px !important;
  color: #8E8E8E !important;


}

.contact-inpu::placeholder {

  color: #8E8E8E !important;
}

.form-select {
  background-color: #f8f9fa !important;
  padding: 0.75rem !important;
  border: 1px solid #F8F8F8 !important;
  border-radius: 12px !important;
  color: #6F6969 !important;
}

.offer-form .offer-form-avail .form-select {
  border-radius: 7px;
}

#finance-faq h4,
#finance-faq a {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 34px;


}

#finance-faq a {
  color: var(--cd-blue) !important;
}

.btn-pre-qualify {
  background-color: #ff7043;
  border: none;
  padding: 14px 33px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;

}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
}

.terms-link {
  color: #6610f2;
  text-decoration: underline;
}

.form-section {
  margin-bottom: 2.5rem;
}

.terms-link {
  color: var(--cd-blue);
  font-weight: 700;
}

/*CSS SINGLE V2*/
.main-slider-v2 img {
  border-radius: 22px;
}

.carPrice {
  font-family: "Poppins", serif;
  font-weight: 700 !important;
  font-size: 24px;
  color: rgb(255, 76, 0);
}

.side-col {
  border: 1px solid rgb(237, 237, 237);
  box-shadow: rgba(33, 33, 33, 0.15) 0px 4px 15px;
  border-radius: 12px;
}

.gst {
  font-family: "Poppins", serif;
  font-weight: 600 !important;
  font-size: 12px;
  color: rgb(255, 76, 0);
  line-height: 18.85px
}


.price-section {
  position: relative;
}

.current-price {
  color: #ff5722;
  font-size: 28px;
  font-weight: bold;
}

.gst-text {
  color: #ff5722;
  font-size: 14px;
  font-weight: normal;
}

.original-price {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
  margin-right: 8px;
}

.discount-badge {
  background-color: rgb(255, 255, 255);
  color: rgb(255, 76, 0);
  border-width: 1px 1px 1px 0px;
  border-style: solid solid solid none;
  border-color: rgb(255, 76, 0) rgb(255, 76, 0) rgb(255, 76, 0) currentcolor;
  border-image: none;
  padding: 2px 4px;
  border-radius: 4px;
  position: relative;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  height: 20px;
  transform-style: preserve-3d;
}

.discount-badge::after {
  content: " ";
  height: 16px;
  width: 16px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 76, 0);
  position: absolute;
  top: 1px;
  left: -5px;
  border-radius: 4px;
  transform: rotate(45deg) translateZ(-1px);
}

.share-icon {
  position: absolute;
  right: 0;
  top: 5px;
  color: #999;
}

.drive-from {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

.monthly-price {
  font-weight: bold;
}

.info-icon {
  color: #999;
  font-size: 14px;
  margin-left: 4px;
}

.certification-badge {
  background-color: #ff5722;
  color: white;
  border-radius: 7px;
  padding: 2px 7px;
  font-size: 10px;
  display: inline-block;
  margin-top: 10px;

}

.features-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;

}

.exclusives-badge {
  position: absolute;
  top: 307px;
  transform: translate(0px, -50%);
  padding: 4px;
  border-radius: 4px;
  background: rgb(0, 140, 149);
  font-size: 10px;
  line-height: 10px;
  letter-spacing: -0.338px;
  font-family: "Poppins", serif;
  font-weight: 400;
  color: rgb(255, 255, 255);
  display: flex;
  height: 16px;
  -moz-box-align: center;
  align-items: center;
}

.car-icons {
  background: rgb(255, 242, 235);
  border-radius: 4px;
}

.car-icons span {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.text-orange {
  color: #ff5722;
}

.cardealo-v2-read {
  position: absolute;
  position: absolute;
  top: 354px;
  left: 76%;
  font-size: 12px;
  background-color: white;
}

.v2-gray {
  background: rgb(247, 247, 247);
  border-radius: 8px;
}

.v2-gray h5 {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.feature-icon {
  color: #ff9800;
  margin-right: 8px;
}

.verified-icon {
  color: #ff9800;
  margin-right: 8px;
}


.car-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 15px 0;
}



.btn-schedule {
  font-size: 14px;
  line-height: 22px;
  padding: 8px 17px;
  background-color: rgb(255, 76, 0);
  border-radius: 12px;
  border: 1px solid rgb(255, 76, 0);
  color: rgb(255, 255, 255);

}

.btn-buy {
  font-size: 14px;
  line-height: 22px;
  border-radius: 12px;
  border: 1px solid rgb(255, 76, 0);
  color: rgb(255, 76, 0);
  background-color: white;
  padding: 2px 12px;

}

.btn-buy span {
  font-size: 12px;
  line-height: 15px;
}

.reserve-text {
  font-size: 12px;
  color: #666;
  text-align: center;
  display: block;
}


.car-id {
  color: #ff5722;
  font-size: 12px;

}

.condition-label {
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 22px;
  padding: 8px 19px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  border: 1px solid rgb(212, 212, 212);
  color: rgb(54, 54, 54);
  margin: 0px 4px;
  transition: box-shadow 0.4s ease-out;
}

.condition-label:hover {
  box-shadow: 0 0 10px hsla(18, 89%, 55%, 0.6);
  border: 1px solid #ef5818;
  color: rgb(255, 76, 0);
}

.check_new,
.check_used,
.check_outlet {
  background-color: rgb(255, 242, 235);
  color: rgb(255, 76, 0);
  box-shadow: 0 0 10px hsla(18, 89%, 55%, 0.6);
  border: 1px solid #ef5818;

}

@media screen and (max-width:1362px) {

  #why-chosse-cardealo .main-heading {
    font-size: 52px;
  }

  #features .mission-cards h5 {
    font-size: 18px;
  }

  #features .mission-cards p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {

  #features .mission-cards h5 {
    font-size: 18px;
  }

  #features .mission-cards p {
    font-size: 14px;
  }

  .order .my-order-card .total-price {
    padding: 11px 14px;
  }

  #header .nav-item .nav-link {
    font-size: 14px;
  }

  .header-btn-login,
  .header-btn-signup {
    padding: 7px 31px;
  }

  .home-content h1 {
    font-size: 50px;
    line-height: 59px;
  }

  .popular-models a {

    font-size: 18px;
    line-height: 22px;

  }

  .home-content p {
    font-size: 18px;
  }

  .blogs-card-body h4 {

    font-size: 18px;
    line-height: 25px;
  }

  .book-btn,
  .contact-btn {
    padding: 8px 20px;
  }

  .summary-card span {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  #about {
    border-bottom-left-radius: 58% 42px;
    border-bottom-right-radius: 58% 42px;
    width: 100%;
    left: 0%;
    padding: 56px 100px;
  }

  html[dir="rtl"] #about {
    right: 0%;
  }

  #deal-deatails .offer-inner-description ul>li,
  ul.offer-info-list li {
    font-size: 16px;
    line-height: 24px;
  }


  .chosse-expertises-iconbox .image img {
    width: 53%;
  }

  #why-cardealo-feature .cardealo-chosse-left .image-inner1 {
    max-width: 391px;

  }

  #why-cardealo-feature .cardealo-chosse-left .image-inner2 img {
    max-width: 79%;
  }

  .cardealo-chosse-right {
    padding-left: 0px;
    margin-top: 121px;
  }

  .cms-inner .cms-card {
    max-width: 100%;
  }

  #finance-form .finance-inner h4 {

    font-size: 31px;
    line-height: 48px;
  }

  #sell-trade h3 {
    font-size: 43px;
  }

  #why-chosse-us h3 {
    font-size: 38px;
  }

  #contact-finance h2 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .exterior_color.form-check {
    padding: 9px;
    margin: 6px;
  }

  #finance-form form label {
    font-size: 18px !important;
  }

  .sell-your-car-heading {
    font-size: 40px;
  }

  #header #mobileOffcanvas .offcanvas-header {
    background: #FFF;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
  }

  #header #mobileOffcanvas .navbar-nav-profile {
    border-bottom: 1px solid #E7E6E6;
    padding-top: 12px;
    padding-bottom: 20px;
  }

  #header #mobileOffcanvas .navbar-nav {
    padding-bottom: 20px;
    padding-top: 6px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E7E6E6;
  }

  /* Make all offcanvas nav links black */
  #header #mobileOffcanvas ul li a {
    font-weight: 600;
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 2px 20px 9px 0px;
    text-align: left;
    color: #3D3E40;
    font-size: 16px;
  }

  #header #mobileOffcanvas .mobile-canvas-order {
    background: linear-gradient(135deg, #f7ddd8, #FFFAE7);
    padding: 10px;
    border-radius: 8px;
    color: black;
  }

  #header #mobileOffcanvas .logout {
    background: linear-gradient(135deg, #cbe2f7, #FFFAE7);
    padding: 12px;
    border-radius: 8px;
    color: black;
    margin-top: 12px;

  }

  #header #mobileOffcanvas .logout:hover {
    background-color: #e9ecef;
    /* slightly darker on hover */
  }


  #header #mobileOffcanvas .nav-link.login {
    background: var(--cd-orange);
    color: white !important;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .btn-submenu {
    transition: transform 0.3s ease;
    display: inline-block;
    user-select: none;
    font-size: 14px;
  }

  .btn-submenu.rotated {
    transform: rotate(180deg);
  }

  /* Ensure submenu doesn't have conflicting transitions */

  html[dir="rtl"] #header #mobileOffcanvas .menu-item-has-children .sub-menu {
    border-right: 3px solid var(--cd-orange);
    border-left: 0px;
  }

  #header #mobileOffcanvas .menu-item-has-children .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    background-color: #fff1e5;
    border-left: 3px solid var(--cd-orange);
    overflow: hidden;
    padding: 12px;
    border-radius: 12px;
  }

  #header #mobileOffcanvas .information-menu-mobile p {
    color: #696665;
    font-size: 16px;
    font-weight: 600;
  }


  #header #mobileOffcanvas .information-menu-mobile .icon i {
    color: var(--cd-orange);
    background: #ffe6da;
    font-size: 1.2rem;
    padding: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Optional: Change link color on hover */
  #header #mobileOffcanvas .nav-link:hover {
    color: #555 !important;
    /* or any other color you prefer */
  }

  .profile .sidebar {
    padding: 10px;
  }

  .profile .sidebar .list-group-item {
    font-size: 12px;
  }

  .profile-image-container #profilePreview {
    width: 150px;
    height: 150px;
  }

  #year_slider_mobile,
  #year_slider_mobile+.slider,
  .slider.slider-horizontal {
    width: 100% !important;
    max-width: 100%;
  }

  .test_body.active {
    border: 1px solid #ff4c00;
    color: #ff4c00;
    font-weight: bold;
  }

  .test_body_input:checked+.test_body {
    border: 2px solid orange;
  }

  /* OR, with JS or Bootstrap utility */
  input.test_body_input:checked+div {
    border: 2px solid orange;
  }


  .test_body {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 16px;
  }

  .body_style img {
    width: 120px;
    height: 25px;
    object-fit: contain;
    margin-bottom: 12px;

  }

  .mobile-menu .nav-link {
    color: var(--cd-blue);
    font-weight: 500;
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-menu li {
    border-bottom: 1px solid #ddd;
    padding: 10px 25px;
  }

  .home-content h1 {
    font-size: 44px;
    line-height: 59px;
  }

  .hblogs-p {
    max-width: 100%;
  }

  .main-step {
    max-width: 100% !important;
  }

  .blogs-card-body h4 {
    font-size: 28px;
  }

  #vehicle-overview h5,
  #vehicle-overview span,
  #vehicle-detail h5,
  #vehicle-detail span {
    font-size: 14px;
    line-height: 30px;
  }

  .popular-models a {

    font-size: 18px;
    line-height: 22px;

  }

  .blogs-card-body h4 {

    font-size: 18px;
    line-height: 25px;
  }

  .contact-boxes h5 {

    font-size: 21px;
    line-height: 29px;
  }

  .summary-card span {
    font-size: 18px;
    line-height: 24px;
  }

  #header .navbar-light .navbar-toggler-icon {
    background-image: none !important;
    width: auto;
    height: auto;
    font-size: 36px;
    color: var(--cd-blue);

  }

  #header .navbar-toggler {
    border: 0px !important;
  }

  .footer-logo {
    width: 29%;
  }

  #result-cards .result-card-title {
    font-size: 18px;
  }

  .month {
    font-size: 14px;
  }

  .section-subtitle {
    max-width: 100%;
  }

}


@media (max-width: 767px) {
  html[dir="rtl"] .results-pagination h3 {
    font-size: 28px;
  }

  #sell-trade h3 {
    font-size: 33px;
  }

  #about {
    border-bottom-left-radius: 58% 42px;
    border-bottom-right-radius: 58% 42px;
    width: 100%;
    left: 0%;
    padding: 56px 0px;
  }

  html[dir="rtl"] #about {
    right: 0%;
  }

  html[dir="rtl"] #offer-banner .breadcrumb-item.active {
    font-size: 14px;
  }

  #offer-banner .offer-share-btn {
    padding: 6px 10px;
    font-size: 13px;
    line-height: 18px;
  }

  #deal-deatails .offer-inner-description ul>li,
  ul.offer-info-list li {
    font-size: 16px;
    line-height: 26px;
  }

  #outlet-cardealo-banner .main-heading {
    font-size: 36px;
    line-height: 41px;

  }

  #outlet-cardealo-banner .title {
    font-size: 16px;
    line-height: 22px;
  }

  #outlet-cardealo-banner::before {
    background: rgba(0, 0, 0, 0.54);
  }

  #outlet-steps .main-heading {
    font-size: 34px;
    line-height: 42px;
  }

  .outlet-orange-badge {
    margin: 5px;

    padding: 9px;

  }

  .outlet-orange-badge h4 {

    font-size: 26px;
    line-height: 40px;
  }



  #outlet-cards-display .outlet-cards {
    margin: 0 auto;
    max-width: 100%;
  }

  #outlet-faq .main-heading {
    font-size: 28px;
    line-height: 36px;
  }

  #outlet-brands-carousel .main-heading {
    font-size: 32px;
    line-height: 36px;
  }

  html[dir="rtl"] #outlet-faq .main-heading,
  html[dir="rtl"] #outlet-brands-carousel .main-heading {
    font-size: 28px;
    line-height: 32px;
  }

  html[dir="rtl"] .deal-main-heading .end_date,
  .deal-main-heading .start_date {
    font-size: 13px;
  }

  #deal-deatails .deal-main-image img {
    height: 271px;
  }

  html [dir="rtl"]#deal-deatails .offer-inner-description p {
    font-size: 13px;
  }

  #deal-deatails .offer-inner-description p {
    font-size: 14px;
  }

  #deal-deatails .deal-vehicle-inner,
  #deal-deatails .offer-inner-description {
    padding: 23px;
  }

  #deal-deatails .offer-inner-description h3,
  #deal-deatails .deal-vehicle-inner h3,
  #deal-deatails .offer-form h4 {
    font-size: 20px !important;
  }

  #deal-deatails .deal-vehicle-inner .item-feature-car {
    font-size: 11px;
    padding: 8px;
  }

  #deal-deatails .deal-main-heading .title {
    font-size: 29px;
  }

  #cd-no-offers img {
    width: 50%;
  }

  #cardealo-offers .title {
    font-size: 28px;
  }

  #cardealo-offers p {
    font-size: 14px;
  }

  #why-cardealo-feature .cardealo-chosse-left .icon-list {
    left: 10%;
    right: 10%;
  }

  .cardealo-chosse-left .cd-icon-list {
    padding: 4.5px 26px;
    font-size: 13px;
  }

  .cardealo-chosse-right {
    padding-left: 0px;
    margin-top: 122px;
  }

  .chosse-expertises-iconbox .image img {
    width: 40%;

  }

  #why-cardealo-feature .cardealo-chosse-right h2 {
    font-size: 32px;
  }

  #cardealo-buy-car h2 {
    font-size: 28px;
  }

  html[dir="rtl"] #cardealo-buy-car h2 {
    font-size: 21px;
    line-height: 33px;
  }

  #cardealo-buy-car .cd-chosse-buy-car .curved-background .card-digit {
    font-size: 16px;
  }

  .cd-chosse-buy-car .card-body img {
    height: 219px;
  }

  .cd-chosse-buy-car .card-body .title {
    font-size: 20px;
  }

  .cd-chosse-buy-car .card-body .description {
    font-size: 12px;
  }

  #why-cardealo-feature .cardealo-chosse-left .image-inner2 {
    right: -9%;
  }

  #why-chosse-cardealo {
    min-height: 32vh;
    background-position: top center;
    background-size: cover;

  }

  #why-chosse-cardealo::before {
    content: "";
    display: block;
    /* hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark semi-transparent overlay */
    z-index: 1;
  }

  #why-chosse-cardealo .main-heading {
    font-size: 29px !important;
  }

  #why-chosse-cardealo .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  #why-chosse-cardealo .title {

    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }

  #why-chosse-cardealo .text {
    font-size: 15px;
    line-height: 1.7em;
    width: 100%;
  }

  #why-chosse-cardealo .hero-orange-button {
    font-size: 13px;
    padding: 10px 19px;
  }














  #r-pages-gray .page-link {
    margin: 4px;
  }

  #cms-banner h2 {
    font-size: 30px;
    padding-bottom: 8px;
  }

  #cms-banner h2::after {
    width: 102px;
    height: 3px;
  }

  .cms-inner .cms-card {
    max-width: 100%;

  }

  .cms-inner .cms-card p {
    font-size: 14px;
  }

  html[dir="rtl"] #post .cd-blog_share-block .copy-link span {
    font-size: 14px;
  }

  #post .cd-blog_share-block .blog_author .blog_creator_name {
    font-size: 18px;
  }

  #news #news-search .input-group {
    padding: 1px;
  }

  #news .intro h2 {
    font-size: 32px;
  }

  #news a.category {
    font-size: 10px;
    padding: 4px 12px;
  }

  .blog-recent-post,
  .blogs-news-title {
    margin-top: 12px;
    font-size: 22px;
  }

  #news .recent-posts_container .post:not(.main) {
    display: block;
    gap: 24px;
  }

  #news-breadcrumb .breadcrumb-item a,
  #offer-banner .breadcrumb-item a {
    font-size: 14px;
    padding: 3px;
  }

  #news-breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    padding: 3px;
  }

  #news-left .blog-meta-detail .blog-categories a,
  #news-left .blog-meta-detail span {
    font-size: 13px;
  }

  #news-left .blog-meta-detail i {

    font-size: 19px;
    margin-left: 1px;
  }

  #news-left .cd-blog_content {

    font-size: 16px;
    line-height: 26px;
  }

  .cd-blog_share-block .cd-blog-share-icon {
    padding: 21px;
  }

  .cd-blog_share-block .cd-blog-share-icon i {
    font-size: 15px;
  }

  #news-right .blog_categories_title {
    font-size: 23px;
  }

  #post .cd-blog_share-block .copy-link {
    padding: 6px 12px;
  }

  #news-right .category-widget li span {
    font-size: 16px;
  }

  #news-right .category-widget li a {
    font-size: 16px;
    padding: 1px 0px;
  }

  .faq-row .card-img-top {
    width: 80px;
    height: 91px;

  }

  .contact-us h2 {

    font-size: 28px;

  }

  #faq-banner h2 {
    font-weight: 700;
    font-size: 41px;
    line-height: 52px;

    text-align: center;
  }

  #finance-form .finance-side-image {
    width: 100%;
  }

  #finance-powered-by h3 {
    font-size: 32px;
  }

  .card-sell-trade h5 {
    font-size: 17px;
  }

  .progress-step .progress-title {
    font-size: 12px;

  }

  .pr-example-item .pr-example-image {
    background-color: #f7f9fa;
  }

  p {
    font-size: 15px;
  }

  .a-contact h3 {
    line-height: 32px;
  }

  #about h1 {
    font-size: 32px;
    line-height: 46px;
  }

  #about-us-detail .count-style {
    gap: 40px;
    padding: 28px 36px;
  }

  #make_model_dropdown .accordion-body,
  #more_filter_dropdown.accordion-body,
  #color #finance-body-style-accordion.accordion-body {
    padding: 0px;
  }

  #body-style-accordion .accordion-body {
    padding: 0px !important;
  }

  #filterDrawer .exterior_color.form-check {
    padding: 9px;
    margin: 3px;
  }

  .body_style.form-check img {
    width: 25px;
  }

  .vehicle-capacity {
    font-size: 12px;
    line-height: 22px;
  }

  .gray-car-detail {

    padding: 3px 8px;
  }

  .btn-prequalified {

    width: 100%;
  }

  #finance-form form label {
    font-size: 14px !important;
  }


  #finance-form .powered-by #form-container .financial-info {
    padding: 14px;
  }

  #finance-form .powered-by #form-container .personal-info {
    padding: 6px;
  }

  #finance-form .powered-by #form-container {
    padding: 6px;
  }

  #finance-form form .card {
    padding: 12px;
  }

  #finance-form .finance-inner h4 {
    color: black;
    font-size: 38px;
    line-height: 45px;
  }

  #finance-banner .finance-qualified-heading {
    font-size: 31px;
  }


  .about-content h3 {
    font-size: 32px;
  }

  html[dir="rtl"] .about-content h3 {
    font-size: 28px;
  }

  html[dir="rtl"] #cardelo-outlet-picks #cardelo-outlet-headings .main-heading {
    font-size: 28px;
  }

  #cardelo-outlet-picks #cardelo-outlet-headings .main-heading {
    font-size: 30px;
    line-height: 41px;
  }


  .about-content p {
    line-height: 27px;
    font-size: 16px;
  }

  #features .mission-paragraph,
  .values-inner p,
  #about-contact p {
    font-size: 16px;
  }

  html[dir="rtl"] #about-contact p {
    font-size: 14px;
  }

  #features .mission-cards h5 {
    font-size: 22px;
  }

  #features .mission-cards p {
    font-size: 16px;
  }

  .mission-cards img {

    width: 12%;
  }

  html[dir="rtl"] #about-us-detail .count-style {
    right: 10px;
    left: auto;
  }



  .mission-cards {
    margin: 0px;
  }

  html[dir="rtl"] .about-content .list-style {
    padding-right: 1.2rem;
  }

  #finance-form .features {
    max-width: 100%;
    padding: 0px;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;


  }



  .reserved-btn {
    height: 51px !important;
  }

  .reserved-btn-car {
    margin-top: 0px !important;
    height: 45px;
  }

  #payment-calculator .summary-text {
    font-weight: 600 !important;
    font-size: 12px !important;
  }

  #checkout .card ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--white-200);
  }

  #checkout .card .nav-tabs .nav-item {
    padding: 0;
  }

  #checkout .card .nav-tabs .nav-link {
    display: grid;
    justify-items: center;
  }

  #checkout .card .nav-tabs .nav-link span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    border: 1px solid #a6a6a6;
    border-top-color: rgb(166, 166, 166);
    border-right-color: rgb(166, 166, 166);
    border-bottom-color: rgb(166, 166, 166);
    border-left-color: rgb(166, 166, 166);
    background-color: #a6a6a6;
    border-radius: 50%;
    font-size: 12px;
    line-height: 25px;
  }

  #checkout .nav-tabs {
    gap: 20px;
  }

  #checkout .card .nav-tabs .nav-link {
    font-size: 12px;
  }

  #checkout .checkout-process label {
    font-size: 13px;
  }

  #myTabContent .card {
    padding: 10px 24px !important;
  }

  .scheduler-border h5 {
    font-size: 16px;
    font-weight: 700;
  }

  .scheduler-border p {
    font-size: 12px;
  }



  .btn-sell-car-home {
    width: 100%;
    margin-bottom: 14px;
  }

  .btn-sell-car-search {
    width: 100%;
  }

  .profile-image-container #profilePreview {

    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #eaeaea
  }

  .add-your-info {
    font-size: 20px;
  }

  .order .my-order-card .img img {
    width: 100%;
  }

  .body_style img {
    width: 47px;
    height: 21px;
    object-fit: contain;


  }

  .test_body.active {
    border: 1px solid #ff4c00;
    color: #ff4c00;
    font-weight: bold;
  }

  .test_body {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 6px;
  }

  .test_body label {
    font-size: 12px;
    line-height: 15px;
  }

  html[dir="rtl"] .test_body label {
    font-size: 10px;
  }

  #year_slider_mobile_id,
  #cash_slider_mobile {
    width: 90%;
    margin: 10px;
  }

  .results-badges {
    height: 22px;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 18px;
  }

  #header .navbar .dropdown-menu.profile .dropdown-item .icon .bi {
    font-size: 20px;
    color: var(--purple);
  }

  #header .dropdown .dropdown-toggle:hover {
    color: var(--purple);
  }


  #header .navbar-light .navbar-toggler {
    border: none;
  }

  .logo-brand {
    width: 33%;
  }

  .logo-brand img {
    width: 100%;
  }

  .navbar-toggler .navbar-toggler-icon {
    background-image: none !important;
    /* Removes Bootstrap default icon */
  }

  #header .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }

  #header #mobileOffcanvas .offcanvas-header {
    background: #FFF;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
  }

  #header #mobileOffcanvas .navbar-nav-profile {
    border-bottom: 1px solid #E7E6E6;
    padding-top: 12px;
    padding-bottom: 20px;
  }

  #header #mobileOffcanvas .navbar-nav {
    padding-bottom: 20px;
    padding-top: 6px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E7E6E6;
  }

  /* Make all offcanvas nav links black */
  #header #mobileOffcanvas ul li a {
    font-weight: 600;
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 2px 20px 9px 0px;
    text-align: left;
    color: #3D3E40;
    font-size: 16px;
  }

  #header #mobileOffcanvas .mobile-canvas-order {
    background: linear-gradient(135deg, #f7ddd8, #FFFAE7);
    padding: 10px;
    border-radius: 8px;
    color: black;
  }

  #header #mobileOffcanvas .logout {
    background: linear-gradient(135deg, #cbe2f7, #FFFAE7);
    padding: 12px;
    border-radius: 8px;
    color: black;
    margin-top: 12px;

  }

  #header #mobileOffcanvas .logout:hover {
    background-color: #e9ecef;
    /* slightly darker on hover */
  }


  #header #mobileOffcanvas .nav-link.login {
    background: var(--cd-orange);
    color: white !important;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .btn-submenu {
    transition: transform 0.3s ease;
    display: inline-block;
    user-select: none;
    font-size: 14px;
  }

  .btn-submenu.rotated {
    transform: rotate(180deg);
  }

  /* Ensure submenu doesn't have conflicting transitions */

  html[dir="rtl"] #header #mobileOffcanvas .menu-item-has-children .sub-menu {
    border-right: 3px solid var(--cd-orange);
    border-left: 0px;
  }

  #header #mobileOffcanvas .menu-item-has-children .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    background-color: #fff1e5;
    border-left: 3px solid var(--cd-orange);
    overflow: hidden;
    padding: 12px;
    border-radius: 12px;
  }

  #header #mobileOffcanvas .information-menu-mobile p {
    color: #696665;
    font-size: 16px;
    font-weight: 600;
  }


  #header #mobileOffcanvas .information-menu-mobile .icon i {
    color: var(--cd-orange);
    background: #ffe6da;
    font-size: 1.2rem;
    padding: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Optional: Change link color on hover */
  #header #mobileOffcanvas .nav-link:hover {
    color: #555 !important;
    /* or any other color you prefer */
  }


  #header .navbar-light .navbar-toggler-icon {
    background-image: none !important;
    width: auto;
    height: auto;
    font-size: 36px;
    color: var(--cd-blue);
  }




  .home-content h1 {
    font-size: 34px;
    line-height: 41px;
  }

  .home-content p {
    font-size: 16px !important;
    line-height: 25px;
  }

  #home-banner {
    background-image: url('../assets/images/home-mobile-car-1.png'), url('../assets/images/home-mobile-car-2.png');
    padding: 40px 20px 50px 20px !important;
    background-size: 40% auto, 40% auto;
  }

  .bold-underline,
  #cardelo-steps h2 {
    font-size: 28px;
  }

  .popular-models h3 {
    font-size: 24px !important;
  }

  /* Popular section */
  .popular-models a {
    font-size: 16px !important;
    line-height: 22px !important;
  }

  /*steps*/
  .step-image img {
    width: 82px;
    height: 82px;
  }

  .step-title-text {
    font-size: 16px;
    line-height: 22px;
  }

  .step-number {
    font-size: 40px;
    line-height: 46px;
  }

  .step-title-highlight {

    font-size: 16px;
    line-height: 22px;
  }

  .step-progress {
    width: 64px;
  }

  .step:last-child .step-progress::before {
    height: 50%;
  }

  .main-step {
    /*max-width: 100% !important;*/
    padding: 22px;
  }

  .body-search-btn,
  .brand-search-btn {
    font-size: 15px;
    line-height: 19px;
    padding: 12px;
  }


  .search-body-cars {
    padding: 22px;
  }

  .body-cars h5 {
    font-size: 16px;
    font-weight: 600;
  }

  .blogs-card-body h4 {
    font-size: 18px;
    line-height: 27px;
  }

  .hblogs-p {
    max-width: 100%;
  }

  .blogs-card {
    border: 0px;
    box-shadow: 0px 20px 50px 0px #0000000D;

  }

  .social-icons {
    padding-top: 32px !important;
  }

  .popular-models {
    padding-bottom: 22px;
  }

  #mobileFilterTabs .nav-item a {
    font-size: 12px;
    line-height: 18px;
  }

  #mobileFilterTabs .nav-item .nav-link {

    padding: 13px 9px;
  }

  #vehicle-overview h5,
  #vehicle-overview span,
  #vehicle-detail h5,
  #vehicle-detail span {
    font-size: 16px;
    line-height: 32px;
  }

  #inspection-report h5 {
    font-size: 18px;
    line-height: 32px;
  }

  #inspection-report h3,
  #payment-calculator h3 {
    font-family: 'ABeeZee', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px !important;



  }

  .italicized-title {

    font-size: 28px;
  }

  #interestRateSelect {
    width: 100%;
  }

  .summary-card h4 {
    font-family: 'ABeeZee', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 25px;

  }

  .summary-card span {
    font-size: 17px;
  }

  .dent.active::after {

    width: 2px;
    height: 176px;
    background-color: #ff5722;
    top: 108px;
    left: 56%;

  }

  .dent[num="3"] {
    z-index: 999;
  }

  .main-slider {
    height: 100%;
  }

  .checkmark {

    top: 16px;
    right: 35px;
  }

  .gray-box h3 {

    font-weight: 700;
    font-size: 18px !important;
    line-height: 30px;
    font-style: normal;


  }

  .italic-title {
    font-size: 28px !important;
  }

  .payment-monthly-col h4 {
    font-size: 17px;
  }

  .buy-cash span {
    font-size: 12px;
    line-height: 18px;
  }



  .btn-preapprove {

    padding: 9px 28px;
    width: 100%;
  }


  .summary-text {
    font-size: 9px !important;
  }

  #vehicle-top-menu a {
    font-size: 12px !important;
  }

  #vehicle-top-menu h4,
  .vehicle-top-price {
    font-size: 20px;
  }

  .main-slider .swiper-slide img {
    border-radius: 22px;
  }



  .swiper.main-slider.swiper-initialized {
    margin-left: 17px;
  }

  #contact-finance h2 {
    font-size: 28px;
  }

  #contact-finance p {
    max-width: 100%;
    font-size: 14px;
  }

  .contact-boxes h5 {
    font-size: 19px;
    line-height: 26px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  #finance-faq h4,
  #finance-faq a {
    font-size: 18px;
  }

  #result-pagination .page-item {
    margin: 0px !important;
  }

  #result-pagination .pagination .active>.page-link,
  #result-pagination .page-link {
    padding: 3px 12px;
    margin: 5px;
    font-size: 15px;

  }

  .page-dots {
    font-size: 14px;
  }

  html[dir="rtl"] #vehicle-top-menu a {
    font-size: 12px !important;
  }

  .search-box input {
    font-size: 10px !important;
  }

  .footer-logo {
    width: 50%;
  }

  .btn-pre-qualify {
    width: 100%;
    padding: 13px 25px;
  }
}


@media(min-width:1020px)and (max-width:1196px) {

  #why-cardealo-feature .cardealo-chosse-right h2,
  #cardealo-buy-car h2 {
    font-size: 35px;
  }

  .chosse-expertises-iconbox .image {
    width: 100%;
  }
}

/******************************* RTL STYLE *********************************/
html[dir="rtl"],
html[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", sans-serif !important;
}

html[dir="rtl"] .header-btn-login,
html[dir="rtl"] .header-btn-signup {
  font-size: 14px;
  padding: 10px 27px;
}

html[dir="rtl"] #header .nav-item .nav-link {
  font-size: 16px;
}


html[dir="rtl"] .body-brand-tabs {
  max-width: 390px;
}

html[dir="rtl"] .footer p,
html[dir="rtl"] .footer a {
  font-weight: 600;
}

html[dir="rtl"] .main-slider .swiper-slide img {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

html[dir="rtl"] #vehicle-overview h5 {
  font-family: 'Noto Kufi Arabic', sans-serif;

}

html[dir="rtl"] .dent[data-num="two"]::after {
  right: 100%;
  width: 342px;
}

html[dir="rtl"] .cross-sign {
  position: absolute;
  right: auto;
  top: 6px;
  left: 12px;
}

html[dir="rtl"] #mobileFilterTabs .nav-item .nav-link.active {
  border-right: 5px solid var(--cd-orange);
  border-left: 0px;
}

html[dir="rtl"] .step-title-text {
  font-weight: 500;
}



html[dir="rtl"] {
  font-family: "Noto Kufi Arabic", sans-serif !important;
}



html[dir="rtl"] .hblogs-p {
  max-width: 359px;
}

html[dir="rtl"] * {
  font-family: "Noto Kufi Arabic", sans-serif !important;
  font-style: normal !important;


}

html[dir="rtl"] .form-check .form-check-input {
  float: left;
  margin-left: 0;
}

@media (min-width: 992px) and (max-width: 1400px) {



  .sell-your-car-heading {
    font-size: 34px;
  }

  #sell-trade h3 {
    font-size: 43px;
  }

  .card-sell-trade text h5 {
    font-size: 16px;
  }

  .buy-cash span {
    font-size: 18px;
  }


}

@media (min-width:992px) and (max-width:1200px) {



  .outlet-steps-card .step-title {
    font-size: 21px;
  }

  .outlet-steps-card .step-description {
    font-size: 12px;
  }

  .cms-inner .cms-card {
    max-width: 100%;
  }

  html[dir="rtl"] #header .nav-item .nav-link {
    font-size: 13px;
  }

  #header .nav-item .nav-link {
    font-size: 14px;
  }

  html[dir="rtl"] .header-btn-login,
  html[dir="rtl"] .header-btn-signup {
    font-size: 11px;
    padding: 10px;
    line-height: 14px;
  }

  .header-btn-login,
  .header-btn-signup {
    font-size: 13px;
    padding: 9px 26px;
    line-height: 11px;
  }

  #header .nav-item .nav-link {
    font-size: 14px;
  }

  .logo-brand img {
    width: 84%;
  }

  html[dir="rtl"] .filter-dropdown-btn {
    padding: 7px 18px;
    font-size: 14px;
    line-height: 28px;
  }

}

@media (min-width:1200px) and (max-width:1400px) {

  #why-chosse-cardealo .main-heading {
    font-size: 52px;
  }

  html[dir="rtl"] .filter-dropdown-btn {
    padding: 7px 18px;
    font-size: 14px;
    line-height: 28px;
  }

  html[dir="rtl"] .header-btn-login,
  html[dir="rtl"] .header-btn-signup {
    font-size: 11px;
    padding: 8px 17px;
    line-height: 14px;
  }

  .header-btn-login,
  .header-btn-signup {
    font-size: 13px;
    padding: 9px 26px;
    line-height: 11px;
  }

  html[dir="rtl"] #header .nav-item .nav-link {
    font-size: 14px;
  }

  #header .nav-item .nav-link {
    font-size: 14px;
  }

  .logo-brand img {
    width: 84%;
  }

}

@media (max-width: 767px) {

  html[dir="rtl"] #featuresModal .feature-model-description {
    font-weight: 500;
    font-size: 13px;

  }

  html[dir="rtl"] #featuresModal .vehicle-title {
    font-size: 26px;
  }

  html[dir="rtl"] .main-slider .swiper-slide img {
    border-radius: 22px;

  }


  .car-img {
    width: 100%;
    height: 250px;
    /* fixed height — adjust as needed */
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
  }

  .car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  .btn-prequalified {
    height: 46px;
    margin-top: 6px;
  }

  html[dir="rtl"] .bs-img {
    width: 40px;
    margin-right: 0px;
  }

  html[dir="rtl"] .dent[data-num="two"]::after {

    width: 2px;
    right: 52%;
  }

  html[dir="rtl"] .step-title-text {
    font-size: 13px;
  }
}



@media (min-width: 992px) and (max-width: 1200px) {

  #about {
    border-bottom-left-radius: 58% 42px;
    border-bottom-right-radius: 58% 42px;
    width: 100%;
    left: 0%;
    padding: 56px 0px;
  }

  html[dir="rtl"] #about {
    right: 0%;
  }

  #sell-trade-home .home-sell-car-img {
    /* border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;*/
    width: 55%;
    height: 50%;
    display: block;
    margin: 0 auto;
  }

  .btn-preapprove {
    font-size: 14px;
  }

  html[dir="rtl"] .btn-preapprove {
    font-size: 12px;
  }

  html[dir="rtl"] .btn-prequalified {
    font-size: 10px;

  }
}

@media (max-width: 320px) {

  #vehicle-top-menu h4 {
    font-size: 14px;
  }


  #reservation .purchase-info .nav-tabs .nav-link.active {
    font-size: 14px;
    height: 43px;
  }

  html[dir="rtl"] .btn-preapprove {
    font-size: 12px;
  }

  html[dir="rtl"] .btn-prequalified {
    font-size: 10px;

  }
}

@media (max-width: 388px) {

  #vehicle-top-menu h4 {
    font-size: 13px;
  }

  #reservation .purchase-info .nav-tabs .nav-link {
    font-size: 14px !important;
  }
}