@charset "UTF-8";
/* Variables
-------------------------------------------------------------- */
/* Mixin
-------------------------------------------------------------- */
/* Reset
-------------------------------------------------------------- */
/* Toast notification — override global * { color } reset */
.toastify,
.toastify * {
  z-index: 9999999 !important;
  color: #fff !important;
}

/* Fonts loaded via Botble Theme typography system */
html {
  margin-right: 0 !important;
}

main {
  overflow: hidden;
  position: relative;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font, "Manrope", sans-serif);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #1C1C1C;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-tap-highlight-color: transparent;
}

.font-main-2 {
  font-family: var(--heading-font, "Albert Sans", sans-serif) !important;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-auto::-webkit-scrollbar {
  display: none;
}

.smooth {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 67px;
  position: relative;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 8px;
}

.fixed {
  position: fixed;
  overflow: hidden;
}

.hiden {
  overflow: hidden;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #98BC2A;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #98BC2A;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
}

.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: 68px;
  line-height: 76px;
}

.text-56 {
  font-size: 56px;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 40px;
  line-height: 48px;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 1.333;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 20px;
  line-height: 1.6;
}

h7,
.h7 {
  font-size: 18px;
  line-height: 1.44;
}

.text-body-style-2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #4B4B4B;
}

.line-height-28 {
  line-height: 28px;
}

p {
  margin-bottom: 0;
}

.padding-0 {
  padding: 0 !important;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-28 {
  border-radius: 28px;
}

.radius-40 {
  border-radius: 40px;
}

.left-auto {
  margin-left: auto;
}

.flex-col {
  flex-direction: column;
}

.justify-end {
  justify-content: end;
}

.width-full {
  width: 100%;
}

.container {
  max-width: 1440px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

.white {
  color: #fff;
}

.white-dark {
  color: #fff !important;
}

.color-primary {
  color: #990000;
}

#wrapper {
  overflow: hidden !important;
  position: relative;
  width: 100%;
  height: 100%;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

svg path {
  transition: all 0.3s ease;
}

.link,
a {
  text-decoration: none;
  color: unset;
  transition: all 0.3s ease;
  cursor: pointer;
}
.link:hover,
a:hover {
  color: #990000;
}

a {
  display: inline-block;
}

.search-modal__overlay:hover,
.mobile-menu-overlay:hover,
.bg-modal:hover,
.filter-sidebar__overlay:hover,
.close-hover:hover {
  cursor: url("./icons/close-modal.svg") 16 16, auto;
}

.transition3s {
  transition: all 0.3s ease;
}

.center {
  text-align: center;
}

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

.text-left {
  text-align: left;
}

.capitalize {
  text-transform: capitalize;
}

.relative {
  position: relative;
}

.container-fluid {
  max-width: 1920px;
  margin: auto;
  width: 100%;
}

.container-fluid.px-0,
.container.px-0 {
  padding-left: 0;
  padding-right: 0;
}

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

button {
  transition: all 0.3s ease;
  cursor: pointer;
}

select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  background: #fff;
  color: #1C1C1C;
  width: 100%;
  background-image: url("./icons/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  position: relative;
  outline: 0;
  box-shadow: none;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 0 0 1px #E7E7E7;
}
select:active, select:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
select.select-blur {
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}
select.select-large {
  padding: 12px 16px;
  border-radius: 12px;
}
select.language-select {
  background: transparent;
  padding: 0 12px 0 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
select.language-select.language-select--white {
  background-image: url("./icons/chevron-down-white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-position-y: calc(50% - 2px);
}
select.language-select.language-select--black {
  background-image: url("./icons/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-position-y: calc(50% - 2px);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  transition: all 0.3s ease;
  position: relative;
  outline: 0;
  box-shadow: none;
  border: none;
  font-size: 16px;
  line-height: 26px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  background: transparent;
  box-shadow: 0 0 0 1px #E7E7E7;
  outline: none;
}
textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: #9FA1A4;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: #9FA1A4;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
textarea.active, textarea:active, textarea:focus,
input[type=text].active,
input[type=text]:active,
input[type=text]:focus,
input[type=password].active,
input[type=password]:active,
input[type=password]:focus,
input[type=datetime].active,
input[type=datetime]:active,
input[type=datetime]:focus,
input[type=datetime-local].active,
input[type=datetime-local]:active,
input[type=datetime-local]:focus,
input[type=date].active,
input[type=date]:active,
input[type=date]:focus,
input[type=month].active,
input[type=month]:active,
input[type=month]:focus,
input[type=time].active,
input[type=time]:active,
input[type=time]:focus,
input[type=week].active,
input[type=week]:active,
input[type=week]:focus,
input[type=number].active,
input[type=number]:active,
input[type=number]:focus,
input[type=email].active,
input[type=email]:active,
input[type=email]:focus,
input[type=url].active,
input[type=url]:active,
input[type=url]:focus,
input[type=search].active,
input[type=search]:active,
input[type=search]:focus,
input[type=tel].active,
input[type=tel]:active,
input[type=tel]:focus,
input[type=color].active,
input[type=color]:active,
input[type=color]:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
textarea.input-large,
input[type=text].input-large,
input[type=password].input-large,
input[type=datetime].input-large,
input[type=datetime-local].input-large,
input[type=date].input-large,
input[type=month].input-large,
input[type=time].input-large,
input[type=week].input-large,
input[type=number].input-large,
input[type=email].input-large,
input[type=url].input-large,
input[type=search].input-large,
input[type=tel].input-large,
input[type=color].input-large {
  height: 50px;
  border-radius: 12px;
}
textarea.time-picker,
input[type=text].time-picker,
input[type=password].time-picker,
input[type=datetime].time-picker,
input[type=datetime-local].time-picker,
input[type=date].time-picker,
input[type=month].time-picker,
input[type=time].time-picker,
input[type=week].time-picker,
input[type=number].time-picker,
input[type=email].time-picker,
input[type=url].time-picker,
input[type=search].time-picker,
input[type=tel].time-picker,
input[type=color].time-picker {
  background-image: url("./icons/clock.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
textarea.date-picker,
input[type=text].date-picker,
input[type=password].date-picker,
input[type=datetime].date-picker,
input[type=datetime-local].date-picker,
input[type=date].date-picker,
input[type=month].date-picker,
input[type=time].date-picker,
input[type=week].date-picker,
input[type=number].date-picker,
input[type=email].date-picker,
input[type=url].date-picker,
input[type=search].date-picker,
input[type=tel].date-picker,
input[type=color].date-picker {
  background-image: url("./icons/calendar.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
textarea.input-normal,
input[type=text].input-normal,
input[type=password].input-normal,
input[type=datetime].input-normal,
input[type=datetime-local].input-normal,
input[type=date].input-normal,
input[type=month].input-normal,
input[type=time].input-normal,
input[type=week].input-normal,
input[type=number].input-normal,
input[type=email].input-normal,
input[type=url].input-normal,
input[type=search].input-normal,
input[type=tel].input-normal,
input[type=color].input-normal {
  height: 48px;
  border-radius: 8px;
}
textarea.inp-blur,
input[type=text].inp-blur,
input[type=password].inp-blur,
input[type=datetime].inp-blur,
input[type=datetime-local].inp-blur,
input[type=date].inp-blur,
input[type=month].inp-blur,
input[type=time].inp-blur,
input[type=week].inp-blur,
input[type=number].inp-blur,
input[type=email].inp-blur,
input[type=url].inp-blur,
input[type=search].inp-blur,
input[type=tel].inp-blur,
input[type=color].inp-blur {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
textarea.inp-blur::-moz-placeholder, input[type=text].inp-blur::-moz-placeholder, input[type=password].inp-blur::-moz-placeholder, input[type=datetime].inp-blur::-moz-placeholder, input[type=datetime-local].inp-blur::-moz-placeholder, input[type=date].inp-blur::-moz-placeholder, input[type=month].inp-blur::-moz-placeholder, input[type=time].inp-blur::-moz-placeholder, input[type=week].inp-blur::-moz-placeholder, input[type=number].inp-blur::-moz-placeholder, input[type=email].inp-blur::-moz-placeholder, input[type=url].inp-blur::-moz-placeholder, input[type=search].inp-blur::-moz-placeholder, input[type=tel].inp-blur::-moz-placeholder, input[type=color].inp-blur::-moz-placeholder {
  color: #fff;
}
textarea.inp-blur::placeholder,
input[type=text].inp-blur::placeholder,
input[type=password].inp-blur::placeholder,
input[type=datetime].inp-blur::placeholder,
input[type=datetime-local].inp-blur::placeholder,
input[type=date].inp-blur::placeholder,
input[type=month].inp-blur::placeholder,
input[type=time].inp-blur::placeholder,
input[type=week].inp-blur::placeholder,
input[type=number].inp-blur::placeholder,
input[type=email].inp-blur::placeholder,
input[type=url].inp-blur::placeholder,
input[type=search].inp-blur::placeholder,
input[type=tel].inp-blur::placeholder,
input[type=color].inp-blur::placeholder {
  color: #fff;
}

.textarea-primary {
  min-height: 140px;
  text-align: left;
  padding: 16px;
}

/* Ẩn mật khẩu */
.password-input.is-hidden {
  background-image: url("./icons/eye-slash.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

/* Hiện mật khẩu */
.password-input.is-visible {
  background-image: url("./icons/eye.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

.input-payment-wrapper {
  display: flex;
  align-items: center;
}
.input-payment-wrapper .payment {
  position: absolute;
  height: 16px;
  right: 16px;
}
.input-payment-wrapper input {
  padding-right: 160px !important;
}

.input-clear-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.input-clear-wrapper .input-clear {
  padding-right: 40px !important;
}
.input-clear-wrapper .input-clear-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: none;
  border: none;
  cursor: pointer;
}
.input-clear-wrapper .input-clear-btn.show {
  display: flex;
}

.input-social-wrapper .input-clear {
  padding-left: 52px !important;
}

.prefix-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

button {
  outline: none;
  border: none;
  background: transparent;
}

/* Scroll Top
-------------------------------------------------------------- */
#scroll-top {
  position: fixed;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 4px;
  text-align: center;
  z-index: 8;
  right: 14px;
  bottom: 23px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  overflow: hidden;
  background-color: #990000;
  border: 1px solid #fff;
}

#scroll-top.show {
  right: 15px;
  opacity: 1;
  visibility: visible;
}

#scroll-top:before,
#scroll-top:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
}

#scroll-top:before {
  z-index: -1;
}

#scroll-top:after {
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}

#scroll-top:hover {
  transform: translateY(-7%);
}

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

/* @Keyframe */
@keyframes rotating {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.themes-bg {
  background-color: #fff;
}

.form-group input[type=checkbox],
.form-group input[type=radio] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group input[type=checkbox] + label,
.form-group input[type=radio] + label {
  position: relative;
  cursor: pointer;
}

.form-group input[type=checkbox] + label:before,
.form-group input[type=radio] + label:before {
  content: "";
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 12px;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 2px;
  background-image: url("./icons/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form-group input[type=checkbox]:checked + label:before,
.form-group input[type=radio]:checked + label:before {
  background-image: url("./icons/checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.search-cars__search {
  background-color: var(--primary-color) !important;
}

/* Bootstrap-compatible utility classes for plugin compatibility
   Only includes classes NOT already defined by the theme
-------------------------------------------------------------- */
.d-none {
  display: none !important;
}

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

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

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

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

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

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

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

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

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

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

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-static {
  position: static !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

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

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

.pe-3 {
  padding-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

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

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

.text-start {
  text-align: left !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

.fs-4 {
  font-size: 1.5rem !important;
}

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

.rounded {
  border-radius: 0.375rem !important;
}

.bg-body-tertiary {
  background-color: #f8f9fa !important;
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.375rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-img-top {
  width: 100%;
}

.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #E7E7E7;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-control:focus {
  border-color: #1C1C1C;
  outline: 0;
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
}
.form-check .form-check-input:checked {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

.footer .invalid-feedback,
footer .invalid-feedback {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 8px;
}

.footer .is-invalid,
footer .is-invalid {
  border-color: #ff6b6b !important;
}

/* Themes
-------------------------------------------------------------- */
.switcher-container .setting {
  margin-top: -2px;
  animation: 1s linear 0s infinite normal none running rotating;
}
.switcher-container .setting.setting_light {
  display: block;
}
.switcher-container .setting.setting_dark {
  display: none;
}
.switcher-container h2 .sw-click {
  background-color: #1C1C1C;
}

.search-cars__features-title {
  color: #1C1C1C;
}
.search-cars__features-title .icon {
  color: #1C1C1C;
}

.switcher__title,
.sw-odd h3 {
  color: #fff;
}

.sw-odd .sw-click {
  background-color: #1C1C1C;
  color: #fff;
}
.sw-odd .sw-click.is_active {
  background-color: #fff;
  color: #1C1C1C;
}

.sw-odd .sw-click {
  background-color: #1C1C1C;
  color: #fff;
}

.simple-banner-card__image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 45%;
  z-index: 1;
}

.sw-odd {
  background-color: #1C1C1C;
  padding: 0 28px 28px 28px;
  transition: all 0.3s ease;
  border-radius: 0 0 0 12px;
}
.sw-odd span {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  padding-left: 3px;
}
.sw-odd h3 {
  display: flex;
  align-items: center;
}

.sw-even {
  background-color: #1C1C1C;
  padding: 20px 0 20px 40px;
  transition: all 0.3s ease;
}

.sw-even a {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 40px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 26px 10px 27px;
  margin-right: 10px;
  letter-spacing: 1.8px;
}

.sw-even a:hover {
  background-color: #14a077;
  border: 1px solid #14a077;
  color: #fff !important;
}

.sw-light {
  background-color: #fff;
  color: #000 !important;
}

.sw-odd a {
  font-size: 16px;
  color: #fff;
  width: 100%;
  display: inline-block;
  line-height: 30px;
  width: 100%;
  position: relative;
  padding-left: 47px;
}

.sw-odd .ws-colors a:before {
  background: none;
}

.sw-odd .ws-colors {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sw-odd .ws-colors a {
  padding: 0;
  width: 136px;
  height: 48px;
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.sw-odd .dark_mode {
  display: none;
}

/* Switcher
-------------------------------------------------------------- */
.switcher-container {
  position: fixed;
  right: -290px;
  top: 150px;
  width: 290px;
  z-index: 99999999;
}

.switcher-container h2 {
  border-radius: 12px 0 0 0;
  transition: all 0.3s ease;
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  padding: 20px 28px 16px;
  background-color: #1C1C1C;
}

.switcher-container h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.switcher-container h2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -50px;
  top: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  outline: 0;
  color: #fff;
  border-radius: 4px 0px 0px 4px;
}

.switcher__item {
  background-color: #1C1C1C;
  padding: 0 28px 28px 28px;
  transition: all 0.3s ease;
}

/* @Keyframe */
@keyframes rotating {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Dark Mode
-------------------------------------------------------------- */
.dark-mode {
  display: none !important;
}

body.is_dark {
  background-color: #1C1C1C;
}

.is_dark .light-mode {
  display: none !important;
}
.is_dark .dark-mode {
  display: inline-block !important;
}
.is_dark .simple-banner-card {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
.is_dark .simple-banner-card h4 {
  color: #fff;
}
.is_dark .simple-banner-card p {
  color: rgba(255, 255, 255, 0.7) !important;
}
.is_dark .simple-banner-card .btn {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #1C1C1C !important;
}
.is_dark .btn-mode .light-mode {
  display: none;
}
.is_dark .btn-mode .dark-mode {
  display: inline-block !important;
}
.is_dark .filter-color-dropdown__option span {
  color: #1C1C1C;
}
.is_dark .password-input.is-hidden {
  background-image: url(./icons/eye-slash-dark.svg);
  background-repeat: no-repeat;
}
.is_dark .password-input.is-visible {
  background-image: url(./icons/eye-dark.svg);
  background-repeat: no-repeat;
}
.is_dark .filter-checkbox span,
.is_dark .term-page .term-page--nav li a,
.is_dark .filter-radio-style-2 input[type=radio]:checked + .label-focus span,
.is_dark .shopping-cart-page .cart-wrapper .cart-item__total .total-price,
.is_dark .shopping-cart-page .cart-wrapper .cart-item__price .price,
.is_dark .rating-box__score,
.is_dark .flat-tabs-style .menu-tab-style4 li.active span, .is_dark .flat-tabs .menu-tab-style4 li.active span,
.is_dark .filter-select-dropdown__text span,
.is_dark .btn-filter,
.is_dark #SearchModal .search-modal__title,
.is_dark * {
  color: #fff;
}
.is_dark .modal .bg-modal {
  background: rgba(255, 255, 255, 0.2);
}
.is_dark .page-title--form .filter-select-dropdown__text span,
.is_dark .page-title .filter-select-dropdown__text span,
.is_dark .search-cars .filter-select-dropdown__text span {
  color: #1C1C1C;
}
.is_dark .page-title--form .search-cars__label,
.is_dark .page-title .search-cars__label,
.is_dark .search-cars .search-cars__label {
  color: #4B4B4B;
}
.is_dark .page-title--form .select-selected.select--black,
.is_dark .page-title--form .filter-select-dropdown,
.is_dark .page-title .select-selected.select--black,
.is_dark .page-title .filter-select-dropdown,
.is_dark .search-cars .select-selected.select--black,
.is_dark .search-cars .filter-select-dropdown {
  background-image: url(./icons/chevron-down-primary.svg);
}
.is_dark .dashboard-box .filter-checkbox span {
  color: #1C1C1C;
}
.is_dark .search-cars__advanced .form-group input:checked + label:before {
  background-image: url(./icons/checked.svg);
}
.is_dark .progress-bar .progress-bar__bg {
  background-color: #9FA1A4;
}
.is_dark .progress-bar .percent::before,
.is_dark .progress-bar .percent {
  background-color: #fff;
}
.is_dark .dashboard-container .dashboard-content--inner {
  background-color: #1C1C1C;
}
.is_dark .pagination__link.active, .is_dark .pagination__link:hover {
  background-color: #fff;
  color: #1C1C1C;
  border-color: #fff;
}
.is_dark .listing-tabs .item-menu:hover svg rect, .is_dark .listing-tabs .item-menu:hover svg circle, .is_dark .listing-tabs .item-menu.active svg rect, .is_dark .listing-tabs .item-menu.active svg circle {
  fill: #fff;
  stroke: #fff;
}
.is_dark .filter-sidebar__content,
.is_dark .filter-sidebar__header.bg-white {
  background-color: #1C1C1C;
}
.is_dark .select-item.active,
.is_dark .select-item:hover {
  background-color: #fff;
  color: #1C1C1C;
  border-color: #fff;
}
.is_dark .btn-filter svg path {
  fill: #fff;
}
.is_dark .btn-filter:hover {
  color: #fff;
}
.is_dark .filter-radio input[type=radio]:checked + .label-focus::before, .is_dark .filter-radio input[type=radio]:checked + span::before,
.is_dark .filter-radio-style-2 input[type=radio]:checked + .label-focus::before {
  background-image: url(./icons/radio2-checked.svg);
}
.is_dark .dashboard-container .message-date-separator span,
.is_dark .dashboard-container .message-item__time,
.is_dark .dashboard-container .message-chat__email,
.is_dark .filter-radio-style-2 .label-focus span,
.is_dark .filter-checkbox.style-4 span em,
.is_dark .filter-checkbox.style-4 span,
.is_dark .rating-box__count,
.is_dark .filter-radio .label-focus, .is_dark .filter-radio span,
.is_dark .search-cars__label,
.is_dark .filter-label,
.is_dark .testimonior-box .testimonior-box--user .desc {
  color: #9FA1A4;
}
.is_dark .product-details-page .product-details-content .bth-heart {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .product-details-page .product-details-content .bth-heart svg path {
  stroke: #1C1C1C;
}
.is_dark .product-details-content .list-item svg {
  color: #fff;
}
.is_dark .time path {
  stroke: #fff;
}
.is_dark .btn.btn-primary-3::before, .is_dark .btn.btn-primary-3::after {
  background-color: #fff;
}
.is_dark .btn.btn-primary-3:hover {
  color: #1C1C1C;
  background-color: #fff;
}
.is_dark .btn.btn-primary-3:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .rating-input__star {
  opacity: 0.5;
}
.is_dark .rating-input__star.active {
  opacity: 1;
}
.is_dark .select-selected.select--black,
.is_dark .filter-select-dropdown {
  background-image: url(./icons/chevron-down-white.svg);
}
.is_dark .listing-topmap .search-cars__label,
.is_dark .listing-topmap .filter-select-dropdown__text span {
  color: #1C1C1C;
}
.is_dark .listing-topmap .filter-select-dropdown {
  background-image: url(./icons/chevron-down-black.svg);
}
.is_dark .pagination-style.swiper-pagination.pagination-dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #fff;
}
.is_dark .btn.btn-line-1 {
  color: #fff;
  border-color: #fff;
}
.is_dark .btn.btn-line-1 svg path {
  stroke: #fff;
}
.is_dark .btn.btn-line-1:hover {
  color: #1C1C1C;
}
.is_dark .btn.btn-line-1:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .car-box svg path {
  stroke: #fff;
}
.is_dark .header.header-style-3 .header-top-bar .header-top-bar--socical li a svg path {
  stroke: #fff;
}
.is_dark .header.header-style-3 .header-top-bar .header-top-bar--socical li a:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .header.header-style-3 .header-top-bar .header-top-bar--socical {
  border-color: #fff;
}
.is_dark.home-3 .header-top-bar {
  background-color: #990000;
}
.is_dark.home-3 .core-dropdown.language-select .core-dropdown__button .icon-chevron path {
  stroke: #fff;
}
.is_dark .btn.btn-line {
  border-color: #fff;
}
.is_dark .btn.btn-line.btn.bg-sign-in:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .btn.btn-line.btn.bg-sign-in:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .dashboard-container .cart-item .action:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .dashboard-container .cart-item .action:hover svg path {
  fill: #1C1C1C;
}
.is_dark .dashboard-container .dashboard-content.style-3 .filter-select-dropdown.style2 {
  background-color: transparent;
}
.is_dark .dashboard-container .cart-item .action:hover {
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.is_dark .search-form-listing button svg path {
  fill: #fff;
}
.is_dark .btn.btn-line {
  color: #fff;
}
.is_dark .btn.btn-line svg path {
  stroke: #fff;
}
.is_dark .btn.btn-line:hover {
  color: #1C1C1C;
  background-color: #fff;
}
.is_dark .btn.btn-line:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .btn::after {
  background-color: #fff;
}
.is_dark .btn:hover {
  color: #1C1C1C;
  background-color: #fff;
}
.is_dark .flat-tabs-style .menu-tab-style5 li:not(.item):hover, .is_dark .flat-tabs-style .menu-tab-style5 li:not(.item).active, .is_dark .flat-tabs .menu-tab-style5 li:not(.item):hover, .is_dark .flat-tabs .menu-tab-style5 li:not(.item).active {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .widget-categories li a .label,
.is_dark .widget-categories li a span {
  color: #fff;
}
.is_dark .widget-categories li a.active .label,
.is_dark .widget-categories li a.active span, .is_dark .widget-categories li a:hover .label,
.is_dark .widget-categories li a:hover span {
  color: #990000;
}
.is_dark .widget-categories li a .label::after {
  background-color: #990000;
}
.is_dark .dashboard-container .message-contact__time,
.is_dark .widget-tags li a {
  color: #9FA1A4;
}
.is_dark .scroll-element .menu-tab-style5 .item:hover a, .is_dark .scroll-element .menu-tab-style5 .item.active a {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .pagination-style.swiper-pagination.pagination-dark .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.is_dark .pagination-style.swiper-pagination.pagination-dark .swiper-pagination-bullet::before {
  background-color: #fff;
}
.is_dark .out-brand-2 {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.is_dark .header-button .btn.btn-white {
  color: #1C1C1C;
}
.is_dark .header-button .btn.btn-white:hover {
  color: #fff;
}
.is_dark .widget-tags li a:hover, .is_dark .widget-tags li a.active {
  border-color: #fff;
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .hover-fill-white svg path {
  fill: #fff;
}
.is_dark .hover-fill-white:hover {
  background-color: #fff;
}
.is_dark .hover-fill-white:hover svg path {
  fill: #1C1C1C;
}
.is_dark .hover-stroke-white svg path {
  stroke: #fff;
}
.is_dark .hover-stroke-white:hover {
  background-color: #fff;
}
.is_dark .hover-stroke-white:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .flat-tabs-style .menu-tab-style6 li span,
.is_dark .flat-tabs .menu-tab-style6 li span {
  color: #9FA1A4;
}
.is_dark .flat-tabs-style .menu-tab-style6 li.active span, .is_dark .flat-tabs-style .menu-tab-style6 li:hover span,
.is_dark .flat-tabs .menu-tab-style6 li.active span,
.is_dark .flat-tabs .menu-tab-style6 li:hover span {
  color: #990000;
}
.is_dark .bloc-details-container .bloc-details-tag-style-2 li a svg path {
  fill: #fff;
}
.is_dark .bloc-details-container {
  background-color: #1C1C1C;
}
.is_dark .dashboard-container .message-sidebar,
.is_dark .dashboard-container .message-chat {
  background-color: transparent;
}
.is_dark .dashboard-container .search-form-contact svg path {
  fill: #fff;
}
.is_dark .dashboard-container .message-contact .message-contact__badge {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .dashboard-container .message-contact:hover .message-contact__preview,
.is_dark .dashboard-container .message-contact:hover .message-contact__name, .is_dark .dashboard-container .message-contact.active .message-contact__preview,
.is_dark .dashboard-container .message-contact.active .message-contact__name {
  color: #1C1C1C;
}
.is_dark .dashboard-container .message-contact:hover .message-contact__badge, .is_dark .dashboard-container .message-contact.active .message-contact__badge {
  background-color: #1C1C1C;
  color: #fff;
}
.is_dark .dashboard-container .message-contact__name,
.is_dark .dashboard-container .message-chat__name {
  color: #fff;
}
.is_dark .btn-icon-circle,
.is_dark .dashboard-container .message-container,
.is_dark .dashboard-container .dashboard-box,
.is_dark .dashboard-container .dashboard-cart,
.is_dark .services-center-form.bg-white,
.is_dark .service-box,
.is_dark .out-brand-3,
.is_dark .contact-page-info,
.is_dark .rating-box,
.is_dark .out-brand-4,
.is_dark .out-brand-2,
.is_dark .why-choose-us.style2,
.is_dark .card-box-style-7.style2,
.is_dark .card-box-style-5,
.is_dark .card-box-style-4,
.is_dark .card-box-style-3.bg-white,
.is_dark .post {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .service-box .icon path {
  fill: #fff;
}
.is_dark .widget-tags li a {
  border-color: #fff;
  color: #fff;
}
.is_dark .blog-detail-tags li a:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .sale-agent-box .card-bottom .contact li a svg {
  color: #fff;
}
.is_dark .sale-agent-box .card-bottom .contact li a:hover {
  background-color: #fff;
  border-color: #fff;
}
.is_dark .sale-agent-box .card-bottom .contact li a:hover svg {
  color: #1C1C1C;
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item {
  border-color: rgba(255, 255, 255, 0.3);
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item a {
  color: #fff;
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item svg path {
  stroke: #fff;
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item:hover {
  background-color: #fff;
  border-color: #fff;
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item:hover a {
  color: #1C1C1C;
}
.is_dark .blog-detail-social .bb-social-sharing .bb-social-sharing__item:hover svg path {
  stroke: #1C1C1C;
}
.is_dark .filter-select-dropdown.style2,
.is_dark .product {
  background-color: transparent;
}
.is_dark .btn-icon-circle,
.is_dark .dashboard-container .message-container,
.is_dark .dashboard-container .dashboard-box,
.is_dark .dashboard-container .dashboard-cart,
.is_dark .services-center-form,
.is_dark .out-brand-3,
.is_dark .inner-page .header,
.is_dark .contact-page-info,
.is_dark .rating-box,
.is_dark .out-brand-4,
.is_dark .card-box-style-9.card-box .content,
.is_dark .card-box-style-8.card-box .content,
.is_dark .why-choose-us.style2,
.is_dark .header.header-style-2 .header-contact .icon,
.is_dark .header.header-style-2 .header-search input {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .contact-page-form.bg-white,
.is_dark #wrapper.bg-white,
.is_dark .card-box-style-7.style3,
.is_dark .card-box-style-6.card-box .content {
  background-color: transparent;
}
.is_dark .card-box-style-8:hover .compare-details {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .card-box-style-8:hover .compare-details svg {
  color: #1C1C1C;
}
.is_dark .card-box-style-8 .compare-details {
  border-color: #fff;
  color: #fff;
}
.is_dark .car-box-style-2 .card--img path {
  fill: #fff;
}
.is_dark .header.header-style-2 .header-contact li .text {
  color: #fff;
}
.is_dark .header-search-btn svg path {
  stroke: #fff;
}
.is_dark .header.header-style-2 .header-contact .icon svg path {
  stroke: #fff;
}
.is_dark .modal-login form .social-login a {
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.is_dark .out-brand {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.is_dark .dashboard-container .upload-section .upload-content .upload-action .upload-btn {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .flat-tabs-style .menu-tab-style4 li span, .is_dark .flat-tabs .menu-tab-style4 li span,
.is_dark .text-secondary,
.is_dark .filter-checkbox.style-5 span {
  color: #9FA1A4;
}
.is_dark section.bg-white,
.is_dark .modal .modal-container,
.is_dark .search-modal__content,
.is_dark #main-nav .sub-menu li.menu-item-inner .sub-menu-item-inner,
.is_dark #main-nav .sub-menu,
.is_dark #main-nav .sub-menu .sub-menu {
  background-color: #1C1C1C;
}
.is_dark #main-nav .sub-menu li a {
  color: #fff;
}
.is_dark #main-nav .sub-menu li a:hover {
  color: #990000;
}
.is_dark .modal-right.quick-view .add-to-cart-btn .bth-heart,
.is_dark .service-box,
.is_dark .flat-accordion .flat-toggle,
.is_dark .card-box-style-1 .compare-details,
.is_dark .search-cars__select-wrapper .filter-checkbox:not(:last-child),
.is_dark .btn.btn-line-style-2 {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .btn.btn-line-style-2 {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.is_dark .btn.btn-line-style-2 svg path {
  fill: #fff;
}
.is_dark .btn.btn-line-style-2:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .btn.btn-line-style-2:hover::after {
  background-color: #fff;
}
.is_dark .btn.btn-line-style-2:hover svg path {
  fill: #1C1C1C;
}
.is_dark .card-box-style-1 .compare-details::after {
  background-color: #fff;
}
.is_dark .card-box-style-1 .compare-details {
  color: #fff;
}
.is_dark h2 .sw-click {
  background-color: #fff;
}
.is_dark .compare-details::after {
  background-color: #fff;
}
.is_dark .card-box-style-1.active .compare-details,
.is_dark .card-box-style-1:hover .compare-details {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .card-box-style-1.active .compare-details svg,
.is_dark .card-box-style-1:hover .compare-details svg {
  color: #1C1C1C !important;
  stroke: #1C1C1C;
}
.is_dark .card-box-style-1 .view-details {
  color: #fff;
}
.is_dark .search-cars__features-grid .form-group label,
.is_dark .card-box .content .tag li span {
  color: #9FA1A4;
}
.is_dark .btn.btn-line-hover {
  color: #fff;
}
.is_dark .btn.btn-line-hover::after {
  background-color: #fff;
}
.is_dark .btn.btn-line-hover:hover {
  border-color: #fff;
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .btn.btn-line-hover:hover svg path {
  fill: #1C1C1C;
}
.is_dark .svg-themes path {
  fill: #fff;
}
.is_dark .checkout-container .select-selected {
  background: transparent;
}
.is_dark .dashboard-box #CalculatorInterestRate,
.is_dark .dashboard-box select,
.is_dark .calculate-form #CalculatorInterestRate,
.is_dark .calculate-form select,
.is_dark .listing-details--sidebar-box #CalculatorInterestRate,
.is_dark .listing-details--sidebar-box select,
.is_dark .caculator-box #CalculatorInterestRate,
.is_dark .caculator-box select,
.is_dark .send-inquiry #CalculatorInterestRate,
.is_dark .send-inquiry select,
.is_dark .financing-calculator #CalculatorInterestRate,
.is_dark .financing-calculator select {
  background: transparent;
  background-image: url(./icons/chevron-down-white.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.is_dark .caculator-box {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1019607843);
}
.is_dark .caculator-box input,
.is_dark .caculator-box select {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .loan-form-result {
  background: transparent;
}
.is_dark [data-block-id=why-us] img {
  filter: brightness(0) invert(1);
}
.is_dark .btn.btn-primary {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .btn.btn-primary:hover {
  color: #fff;
}
.is_dark .btn.btn-primary svg path {
  stroke: #1C1C1C;
}
.is_dark .flat-tabs-style .menu-tab-style2 li.active .text,
.is_dark .flat-tabs .menu-tab-style2 li.active .text {
  color: #fff;
}
.is_dark .background-light {
  background-color: #1C1C1C;
}
.is_dark .card-popular.background-light {
  background-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.is_dark .card-popular.background-light:hover {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.25);
}
.is_dark .header.bg-white {
  background-color: #1C1C1C;
}
.is_dark #main-nav .menu > .menu-item a svg path {
  stroke: #fff;
}
.is_dark #main-nav .menu > li > a {
  color: #fff;
}
.is_dark .header-button .btn.bg-sign-in, .is_dark .header-button .btn.btn-signin {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.is_dark .header-button .btn.bg-sign-in svg path, .is_dark .header-button .btn.btn-signin svg path {
  stroke: #fff;
}
.is_dark .header-button .btn.btn-primary {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .header-button .btn.btn-primary svg path {
  stroke: #1C1C1C;
}
.is_dark .page-title .search-cars__select-wrapper,
.is_dark .search-cars .search-cars__select-wrapper {
  background-color: #fff !important;
  border-radius: 12px;
}
.is_dark .page-title .search-cars__select-wrapper .search-cars__select,
.is_dark .page-title .search-cars__select-wrapper .filter-select-dropdown,
.is_dark .search-cars .search-cars__select-wrapper .search-cars__select,
.is_dark .search-cars .search-cars__select-wrapper .filter-select-dropdown {
  background-color: #fff !important;
  color: #1C1C1C !important;
}
.is_dark .page-title .search-cars__select-wrapper .search-cars__label,
.is_dark .search-cars .search-cars__select-wrapper .search-cars__label {
  color: #4B4B4B !important;
}
.is_dark .page-title .search-cars__select-wrapper .filter-select-dropdown__text,
.is_dark .page-title .search-cars__select-wrapper .filter-select-dropdown__text span,
.is_dark .page-title .search-cars__select-wrapper .select-selected,
.is_dark .search-cars .search-cars__select-wrapper .filter-select-dropdown__text,
.is_dark .search-cars .search-cars__select-wrapper .filter-select-dropdown__text span,
.is_dark .search-cars .search-cars__select-wrapper .select-selected {
  color: #1C1C1C !important;
}
.is_dark .page-title .search-cars__filter,
.is_dark .search-cars .search-cars__filter {
  background-color: #fff !important;
}
.is_dark .page-title .search-cars__filter .search-cars__filter-label,
.is_dark .search-cars .search-cars__filter .search-cars__filter-label {
  color: #1C1C1C !important;
}
.is_dark .page-title .search-cars__filter svg,
.is_dark .page-title .search-cars__filter .icon,
.is_dark .search-cars .search-cars__filter svg,
.is_dark .search-cars .search-cars__filter .icon {
  color: #98BC2A !important;
  stroke: #98BC2A !important;
}
.is_dark .page-title .filter-select-dropdown__menu,
.is_dark .search-cars .filter-select-dropdown__menu {
  background-color: #1C1C1C;
}
.is_dark .modal-right .ship,
.is_dark .modal-right.quick-view .add-to-cart-btn .bth-heart,
.is_dark .flat-accordion .flat-toggle,
.is_dark .divider {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .flat-accordion .flat-toggle .toggle-title .icon svg path {
  stroke: #fff;
}
.is_dark .flat-tabs-style .menu-tab-style7.large li,
.is_dark .flat-tabs .menu-tab-style7.large li {
  color: #1C1C1C;
}
.is_dark .flat-tabs-style .menu-tab-style7.large li:hover, .is_dark .flat-tabs-style .menu-tab-style7.large li.active,
.is_dark .flat-tabs .menu-tab-style7.large li:hover,
.is_dark .flat-tabs .menu-tab-style7.large li.active {
  background-color: #1C1C1C;
  color: #fff;
}
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box .number,
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box::before, .is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box::after,
.is_dark .sell-your-car-box-wrapper .sell-your-car-box::before, .is_dark .sell-your-car-box-wrapper .sell-your-car-box::after {
  background-color: #9FA1A4;
  color: #fff;
}
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step::before,
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step)::before, .is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step)::after {
  background-color: #fff;
}
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step) .number,
.is_dark .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step .number {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .caculator-box.outline,
.is_dark .cta-section.background-be,
.is_dark .border-light {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .cta-section.background-be,
.is_dark .card-box .content {
  background: rgba(255, 255, 255, 0.1019607843);
}
.is_dark .card-box-style-9 .compare-details::after,
.is_dark .compare-details::after {
  background-color: #fff;
}
.is_dark .card-box-style-9 .compare-details,
.is_dark .compare-details {
  border-color: #fff;
  color: #fff;
}
.is_dark .card-box-style-9 .compare-details svg,
.is_dark .compare-details svg {
  color: #fff;
}
.is_dark .card-box-style-9:hover .compare-details {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .card-box-style-9:hover .compare-details svg {
  color: #1C1C1C;
}
.is_dark .header-actions svg {
  color: #fff;
}
.is_dark .header-wrapper .header-action-btn svg,
.is_dark .header.header-style-1 .header-action-btn svg {
  color: #fff;
}
.is_dark .header-wrapper .header-action-btn svg path,
.is_dark .header.header-style-1 .header-action-btn svg path {
  stroke: #fff;
}
.is_dark .header-wrapper .header-action-btn:hover svg,
.is_dark .header.header-style-1 .header-action-btn:hover svg {
  color: #990000;
}
.is_dark .header-wrapper .header-action-btn:hover svg path,
.is_dark .header.header-style-1 .header-action-btn:hover svg path {
  stroke: #990000;
}
.is_dark #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item,
.is_dark .switcher__title,
.is_dark .sw-odd h3 {
  color: #1C1C1C;
}
.is_dark #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item.current-item,
.is_dark .switcher__title.current-item,
.is_dark .sw-odd h3.current-item {
  color: #990000;
}
.is_dark .switcher-container h2 {
  background-color: #fff;
}
.is_dark .sw-odd span,
.is_dark .switcher-container h2 {
  color: #1C1C1C;
}
.is_dark .sw-odd,
.is_dark .switcher__item {
  background-color: #fff;
}
.is_dark .sw-odd .sw-click {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .sw-odd .sw-click.is_active {
  background-color: #1C1C1C;
  color: #fff;
}
.is_dark #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item:hover {
  color: #990000;
}
.is_dark .core-dropdown.user-admin .core-dropdown__button.user-admin svg path {
  stroke: #fff;
}
.is_dark .form-group input:checked + label:before,
.is_dark .filter-checkbox input[type=checkbox]:checked + span::before,
.is_dark .filter-checkbox.style-2 input[type=checkbox]:checked + span::before {
  background-image: url(./icons/checked-white.svg);
}
.is_dark input[type=text],
.is_dark input[type=password],
.is_dark input[type=datetime],
.is_dark input[type=datetime-local],
.is_dark input[type=date],
.is_dark input[type=month],
.is_dark input[type=time],
.is_dark input[type=week],
.is_dark input[type=number],
.is_dark input[type=email],
.is_dark input[type=url],
.is_dark input[type=search],
.is_dark input[type=tel],
.is_dark input[type=color],
.is_dark textarea {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark input[type=text]::-moz-placeholder, .is_dark input[type=password]::-moz-placeholder, .is_dark input[type=datetime]::-moz-placeholder, .is_dark input[type=datetime-local]::-moz-placeholder, .is_dark input[type=date]::-moz-placeholder, .is_dark input[type=month]::-moz-placeholder, .is_dark input[type=time]::-moz-placeholder, .is_dark input[type=week]::-moz-placeholder, .is_dark input[type=number]::-moz-placeholder, .is_dark input[type=email]::-moz-placeholder, .is_dark input[type=url]::-moz-placeholder, .is_dark input[type=search]::-moz-placeholder, .is_dark input[type=tel]::-moz-placeholder, .is_dark input[type=color]::-moz-placeholder, .is_dark textarea::-moz-placeholder {
  color: #9FA1A4;
}
.is_dark input[type=text]::placeholder,
.is_dark input[type=password]::placeholder,
.is_dark input[type=datetime]::placeholder,
.is_dark input[type=datetime-local]::placeholder,
.is_dark input[type=date]::placeholder,
.is_dark input[type=month]::placeholder,
.is_dark input[type=time]::placeholder,
.is_dark input[type=week]::placeholder,
.is_dark input[type=number]::placeholder,
.is_dark input[type=email]::placeholder,
.is_dark input[type=url]::placeholder,
.is_dark input[type=search]::placeholder,
.is_dark input[type=tel]::placeholder,
.is_dark input[type=color]::placeholder,
.is_dark textarea::placeholder {
  color: #9FA1A4;
}
.is_dark select {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  background-image: url(./icons/chevron-down-white.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.is_dark .select-selected {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .select-items {
  background: #1C1C1C;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);
}
.is_dark .select-items div:hover {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .filter-sidebar__panel {
  background: #1C1C1C;
}
.is_dark .filter-sidebar__header {
  background: #1C1C1C;
}
.is_dark .filter-sidebar__header::after {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .filter-sidebar__content {
  background-color: #1C1C1C;
}
.is_dark .filter-select-dropdown__list {
  background: #1C1C1C;
}
.is_dark .filter-select-dropdown__list .filter-checkbox {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .filter-select-dropdown__menu {
  background-color: #1C1C1C;
}
.is_dark .filter-select-dropdown__search {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .filter-select-dropdown__search-input {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .filter-select-dropdown.style2 {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .filter-color-dropdown__menu {
  background: #1C1C1C;
}
.is_dark .filter-color-dropdown__option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .filter-range {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .filter-checkboxes {
  background-color: #1C1C1C;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);
}
.is_dark .search-form__input {
  background: #1C1C1C !important;
  color: #fff;
}
.is_dark .search-form {
  background: #1C1C1C;
}
.is_dark .search-modal__content {
  background-color: #1C1C1C;
}
.is_dark .search-modal__title {
  color: #fff;
}
.is_dark .search-modal__close {
  color: #fff;
}
.is_dark .search-modal__close:hover {
  color: #990000;
}
.is_dark .search-modal__input-wrapper input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .search-modal__input-wrapper input:focus {
  border-color: #990000;
}
.is_dark .card-box .content {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .card-box .content .tag li span {
  color: #9FA1A4;
}
.is_dark .card-box-style-7.style3 {
  background-color: transparent;
}
.is_dark .card-contact {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}
.is_dark .card-contact__icon {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .card-contact__icon svg {
  color: #fff;
}
.is_dark .card-contact__item {
  color: #9FA1A4;
}
.is_dark .card-contact__item svg {
  color: #9FA1A4;
}
.is_dark .card-contact__item:hover {
  color: #fff;
}
.is_dark .contact-page-social a {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .contact-page-social a svg path {
  fill: #fff;
}
.is_dark .contact-page-social a:hover {
  background-color: #fff;
  border-color: #fff;
}
.is_dark .contact-page-social a:hover svg path {
  fill: #1C1C1C;
}
.is_dark .car-overview-list > li,
.is_dark .car-overview-list-style3 > li,
.is_dark .car-overview-list-style4 > li {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .car-overview-list-style2 > li:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .quote {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .blog-detail-tags li a {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .blog-detail-recentpost .previous {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .comment-box {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .comment-box__avatar.guest {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .comments-post--inner {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .blog-detail-comment-form,
.is_dark .fob-comment-form {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .blog-detail-comment-form input[type=text],
.is_dark .blog-detail-comment-form input[type=email],
.is_dark .blog-detail-comment-form input[type=url],
.is_dark .blog-detail-comment-form textarea,
.is_dark .fob-comment-form input[type=text],
.is_dark .fob-comment-form input[type=email],
.is_dark .fob-comment-form input[type=url],
.is_dark .fob-comment-form textarea {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .review-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.is_dark .review-prompt-card {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .car-manager-review-form {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.is_dark .car-manager-review-form label {
  color: #ddd;
}
.is_dark .car-manager-review-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ddd;
}
.is_dark .form-rating-stars > label {
  color: #555;
}
.is_dark .fob-comment-item .fob-comment-item-date,
.is_dark .fob-comment-item .fob-comment-item-content {
  color: #9FA1A4;
}
.is_dark .fob-comment-item .fob-comment-item-inner {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .post-style-5 .tags > span:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.2);
}
.is_dark .post-style-7 .read-more {
  color: #fff;
}
.is_dark .post-style-7 .read-more:hover {
  color: #990000;
}
.is_dark .post.post-effect-style-1 .content {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .section-featured-posts .featured-posts-sidebar-item {
  background: rgba(255, 255, 255, 0.05);
}
.is_dark .section-featured-posts .featured-posts-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .header-user-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .header-user-toggle:hover {
  border-color: #fff;
}
.is_dark .header-user-menu {
  background: #1C1C1C;
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .header-user-menu li a {
  color: #fff;
}
.is_dark .header-user-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .breadcrumb-section {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .pagination__link {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .flat-tabs-style .menu-tab-style1,
.is_dark .flat-tabs .menu-tab-style1,
.is_dark .flat-tabs-style .menu-tab-style4,
.is_dark .flat-tabs .menu-tab-style4 {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .flat-tabs-style .menu-tab-style5,
.is_dark .flat-tabs .menu-tab-style5 {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .flat-tabs-style .menu-tab-style7,
.is_dark .flat-tabs .menu-tab-style7 {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}
.is_dark .flat-tabs-style .menu-tab-style6 li.active span,
.is_dark .flat-tabs .menu-tab-style6 li.active span {
  color: #fff;
}
.is_dark .flat-tabs-style .menu-tab-package .item-menu,
.is_dark .flat-tabs .menu-tab-package .item-menu {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .inner-page .header {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .listing-details--sidebar-box {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .financing-calculator {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .listing-details select {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}
.is_dark .listing-details--contact .contact-info li .icon {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .listing-details--contact .contact-info li .icon svg path {
  stroke: #fff;
}
.is_dark .listing-topmap .search-cars__filters,
.is_dark .listing-topmap .search-cars__filter {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .product-details-page .product-details-content .bth-heart {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .shopping-cart-page .cart-wrapper .cart-header {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .shopping-cart-page .cart-wrapper .cart-item {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .shopping-cart-page .flash-sale {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .checkout-container input,
.is_dark .checkout-container textarea {
  color: #fff;
}
.is_dark .form-contact-wrapper,
.is_dark .booking-form,
.is_dark .sale-info {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .widget-search input {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
}
.is_dark .listing-sidebar-right .filter-select-dropdown {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.is_dark .search-cars__range.style2 .value {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .filter-price-range-label > p:nth-child(1)::after {
  background: rgba(255, 255, 255, 0.2);
}
.is_dark .modal-login .resutl {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .modal-login .resutl span {
  color: #fff;
}
.is_dark .modal-login form .social-login a {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .modal-right .ship {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .modal-right.modal-bottom .compare-item {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .modal-right.shopping-cart .order-item:last-child {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .newsletter--content .newsletter-form button {
  background: #fff;
  color: #1C1C1C;
}
.is_dark .newsletter--content .newsletter-form button:hover {
  background-color: #990000;
  color: #fff;
}
.is_dark::-webkit-scrollbar-track,
.is_dark ::-webkit-scrollbar-track {
  background: #1C1C1C;
}
.is_dark .bg-mode,
.is_dark .themes-bg {
  background-color: #1C1C1C;
}
.is_dark section.background-be,
.is_dark .background-be {
  background-color: rgba(255, 255, 255, 0.05);
}
.is_dark .verify {
  background: rgba(230, 75, 24, 0.15);
}
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-cart,
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-account {
  background: #1C1C1C;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a,
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a span,
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-account ul li a,
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-account ul li a span {
  color: #fff !important;
}
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a:hover,
.is_dark .header .header-top-bar .box-dropdown-cart .dropdown-account ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .core-dropdown__item:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .flat-accordion .flat-toggle {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .border-light {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .rating-box__bar-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
}
.is_dark .car-detail-share .share-dropdown {
  background: #1C1C1C;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.is_dark .list-style li::before {
  background-color: #fff;
}
.is_dark .product .action {
  background-color: #1C1C1C;
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .product .action:hover {
  background-color: #fff;
  border-color: #fff;
}
.is_dark .header-wrapper.header-sticky .header.is-fixed.is-visible {
  background-color: #1C1C1C;
}
.is_dark .header.is-fixed {
  background-color: #1C1C1C;
}
.is_dark .calculate-form select {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .sell-your-car-box-wrapper .sell-your-car-box .number {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .sell-your-car-box-wrapper .sell-your-car-box p:not(.number) {
  color: #fff !important;
}
.is_dark .auth-card.card {
  background: rgba(255, 255, 255, 0.102) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
}
.is_dark .auth-card.card .card-header {
  background-color: transparent !important;
}
.is_dark .auth-card.card .card-header .text-muted {
  color: #9FA1A4 !important;
}
.is_dark .auth-card.card .card-body {
  background-color: transparent !important;
}
.is_dark .auth-card.card form.auth-form .form-control {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
.is_dark .auth-card.card form.auth-form .form-control::-moz-placeholder {
  color: #9FA1A4 !important;
}
.is_dark .auth-card.card form.auth-form .form-control::placeholder {
  color: #9FA1A4 !important;
}
.is_dark .auth-card.card form.auth-form .form-check-label {
  color: #fff !important;
}
.is_dark .auth-card.card form.auth-form .form-check-input {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.is_dark .auth-card.card form.auth-form .form-check-input:checked {
  background-color: #fff !important;
  border-color: #fff !important;
}
.is_dark .auth-card.card form.auth-form .text-decoration-underline {
  color: #fff !important;
}
.is_dark .auth-card.card form.auth-form .mt-3.text-center {
  color: #9FA1A4 !important;
}
.is_dark .auth-card.card form.auth-form .mt-3.text-center a {
  color: #fff !important;
}
.is_dark .shortcode-testimonial {
  background-color: #1C1C1C !important;
}
.is_dark .testimonior-box {
  background: rgba(255, 255, 255, 0.102) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .section-car-dealers {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .section-car-dealers .card-box {
  background: rgba(255, 255, 255, 0.102) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.is_dark .icon-shape-arrow img {
  filter: invert(1);
}
.is_dark #main-nav-mobile {
  background-color: #1C1C1C;
}
.is_dark .filter-sidebar-popup .filter-select-dropdown {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.is_dark .search-cars__select-wrapper .filter-checkbox:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .inner-page-sidebar__nav li a,
.is_dark .term-page .term-page--nav li a {
  color: #9FA1A4;
}
.is_dark .inner-page-sidebar__nav li a.active, .is_dark .inner-page-sidebar__nav li a:hover,
.is_dark .term-page .term-page--nav li a.active,
.is_dark .term-page .term-page--nav li a:hover {
  color: #fff;
}
.is_dark .card-testimonial {
  background: rgba(255, 255, 255, 0.102) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .border-bottom,
.is_dark .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark hr {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.is_dark .page-default-content hr {
  border-color: rgba(255, 255, 255, 0.15);
}
.is_dark .section-pricing-1 .border {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.is_dark .section-pricing-1 .btn-line {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .section-pricing-1 .btn-line:hover {
  background: #fff;
  color: #1C1C1C;
}
.is_dark .dropdown-filter .btn-dropdown {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}
.is_dark .dropdown-filter .dropdown-menu {
  background: #1C1C1C;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.is_dark .dropdown-filter .dropdown-item {
  color: #fff;
}
.is_dark .dropdown-filter .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .location-suggestions {
  background: #1C1C1C;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.is_dark .location-suggestions li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .availability-check {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .letter-btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}
.is_dark .letter-btn:hover, .is_dark .letter-btn.active {
  background-color: #fff;
  color: #1C1C1C;
  border-color: #fff;
}
.is_dark .filter-brands-by-alphabet .brand-item {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .dashboard-container .dashboard-content {
  background-color: transparent;
}
.is_dark .dashboard-container .dashboard-box,
.is_dark .dashboard-container .dashboard-cart {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .dashboard-container .bg-white {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .dashboard-container .border {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.is_dark .dashboard-container .card,
.is_dark .dashboard-container .card-body {
  background-color: transparent !important;
}
.is_dark .dashboard-container input[type=text],
.is_dark .dashboard-container input[type=email],
.is_dark .dashboard-container input[type=password],
.is_dark .dashboard-container input[type=tel],
.is_dark .dashboard-container input[type=number],
.is_dark .dashboard-container textarea {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .dashboard-container input[type=text]::-moz-placeholder, .is_dark .dashboard-container input[type=email]::-moz-placeholder, .is_dark .dashboard-container input[type=password]::-moz-placeholder, .is_dark .dashboard-container input[type=tel]::-moz-placeholder, .is_dark .dashboard-container input[type=number]::-moz-placeholder, .is_dark .dashboard-container textarea::-moz-placeholder {
  color: #9FA1A4;
}
.is_dark .dashboard-container input[type=text]::placeholder,
.is_dark .dashboard-container input[type=email]::placeholder,
.is_dark .dashboard-container input[type=password]::placeholder,
.is_dark .dashboard-container input[type=tel]::placeholder,
.is_dark .dashboard-container input[type=number]::placeholder,
.is_dark .dashboard-container textarea::placeholder {
  color: #9FA1A4;
}
.is_dark .dashboard-container select {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.is_dark .dashboard-container .upload-section {
  border-color: rgba(255, 255, 255, 0.2);
}
.is_dark .dashboard-container .text-dark {
  color: #fff !important;
}
.is_dark .customer-page .profile-card {
  background: rgba(255, 255, 255, 0.102) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .content-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .content-card > .card-header {
  background: rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.is_dark .customer-page .content-card > .card-body {
  background: transparent !important;
}
.is_dark .customer-page .card {
  background: rgba(255, 255, 255, 0.102) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff;
}
.is_dark .customer-page .card .card-body {
  background: transparent !important;
}
.is_dark .customer-page .card .btn-primary {
  background: #fff !important;
  color: #1C1C1C !important;
  border: none !important;
}
.is_dark .customer-page .customer-content .border-bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .customer-content .bg-white,
.is_dark .customer-page .customer-content .bg-light {
  background: rgba(255, 255, 255, 0.05) !important;
}
.is_dark .customer-page .customer-content .badge.bg-light {
  background: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .customer-content .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.is_dark .customer-page .customer-content .alert-warning {
  background: rgba(234, 179, 8, 0.1) !important;
  border-color: rgba(234, 179, 8, 0.25) !important;
  color: #fbbf24 !important;
}
.is_dark .customer-page .customer-content .alert-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border-color: rgba(34, 197, 94, 0.25) !important;
  color: #4ade80 !important;
}
.is_dark .customer-page .customer-content .alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  color: #f87171 !important;
}
.is_dark .customer-page .customer-content .alert-info {
  background: rgba(59, 130, 246, 0.1) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  color: #60a5fa !important;
}
.is_dark .customer-page .customer-content .form-check-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.is_dark .customer-page .customer-content .form-check-label {
  color: #fff;
}
.is_dark .customer-page .customer-content .btn-link {
  color: #9fa1a4 !important;
}
.is_dark .customer-page .nav-dashboard .nav-link {
  color: #9fa1a4;
  border-color: rgba(255, 255, 255, 0.05);
}
.is_dark .customer-page .nav-dashboard .nav-link:hover, .is_dark .customer-page .nav-dashboard .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .customer-page .bb-customer-card {
  background: rgba(255, 255, 255, 0.102) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .bb-customer-card .card-body,
.is_dark .customer-page .bb-customer-card .card-footer {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.is_dark .customer-page .bb-customer-card .bb-card-title a {
  color: #fff;
}
.is_dark .customer-page .bb-customer-card .bb-card-date,
.is_dark .customer-page .bb-customer-card .bb-card-content {
  color: #9fa1a4;
}
.is_dark .customer-page .bb-customer-card .bb-card-price {
  color: #fff;
}
.is_dark .customer-page .bb-customer-card .booking-period {
  color: #9fa1a4;
}
.is_dark .customer-page .bb-empty-state {
  background: rgba(255, 255, 255, 0.102) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff;
}
.is_dark .customer-page .bb-empty-state p {
  color: #9fa1a4;
}
.is_dark .customer-page .form-group label,
.is_dark .customer-page .form-label {
  color: #fff !important;
}
.is_dark .customer-page .form-control {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
.is_dark .customer-page .form-control::-moz-placeholder {
  color: #9fa1a4 !important;
}
.is_dark .customer-page .form-control::placeholder {
  color: #9fa1a4 !important;
}
.is_dark .customer-page .bg-light {
  background: rgba(255, 255, 255, 0.05) !important;
}
.is_dark section.bg-white,
.is_dark div.shortcode-financing > section.bg-white {
  background-color: #1C1C1C;
}
.is_dark #js-box-search-advance .search-cars__filter {
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .search-cars__advanced-content {
  background-color: #1C1C1C;
}
.is_dark .core-dropdown__menu {
  background-color: #1C1C1C;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .core-dropdown__option {
  color: #fff;
}
.is_dark .core-dropdown__option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .core-dropdown__selected {
  color: #fff;
}
.is_dark .core-dropdown__button {
  background-color: #1C1C1C;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.is_dark .core-dropdown__button svg path {
  stroke: #fff;
}
.is_dark .auth-card.card {
  background-color: #1C1C1C;
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .auth-card.card .card-header {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}
.is_dark .auth-card.card form.auth-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.is_dark .auth-card.card form.auth-form .form-control::-moz-placeholder {
  color: #9FA1A4;
}
.is_dark .auth-card.card form.auth-form .form-control::placeholder {
  color: #9FA1A4;
}
.is_dark .auth-card.card form.auth-form .form-check-label {
  color: #fff;
}
.is_dark .card-news {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .card-news.bg-white {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .alert-warning {
  background-color: rgba(255, 200, 50, 0.15);
  color: #ffc107;
  border-color: rgba(255, 200, 50, 0.3);
}
.is_dark .alert-danger {
  background-color: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  border-color: rgba(220, 53, 69, 0.3);
}
.is_dark .alert-success {
  background-color: rgba(25, 135, 84, 0.15);
  color: #51cf66;
  border-color: rgba(25, 135, 84, 0.3);
}
.is_dark .brand-item:hover,
.is_dark .brand-item-small:hover,
.is_dark .brand-item-style-3:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.is_dark .btn.btn-line-primary:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .btn.btn-blur:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.is_dark .car-box-style-5:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .icon-shape.background-light {
  background-color: rgba(255, 255, 255, 0.1);
}
.is_dark .rental-invitation-card.bg-white,
.is_dark .shortcode-contact-form.bg-white {
  background-color: #1C1C1C;
}
.is_dark .package-box .tag {
  color: #fff;
}
.is_dark .flat-accordion .flat-toggle .toggle-title .icon svg {
  color: #fff;
}
.is_dark .pagination svg {
  color: #fff;
}
.is_dark .text-dark {
  color: #fff !important;
}
.is_dark .text-body-style-2 {
  color: #9FA1A4;
}
.is_dark .bg-mode {
  background-color: #1C1C1C;
}
.is_dark .themes-bg {
  background-color: #1C1C1C;
}
.is_dark ::-webkit-scrollbar-track {
  background: #1C1C1C;
}
.is_dark select option {
  background-color: #1C1C1C;
  color: #fff;
}

.is_light .sw-odd .light_mode {
  display: block;
}
.is_light .sw-odd .dark_mode {
  display: none;
}
.is_light .switcher-container h2 .setting.setting_light {
  display: block;
}
.is_light .switcher-container h2 .setting.setting_dark {
  display: none;
}

.is_dark .sw-odd .light_mode {
  display: none;
}
.is_dark .sw-odd .dark_mode {
  display: block;
}
.is_dark .switcher-container h2 .setting.setting_light {
  display: none;
}
.is_dark .switcher-container h2 .setting.setting_dark {
  display: block;
}

/* Button
-------------------------------------------------------------- */
*, ::after, ::before {
  box-sizing: border-box;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  right: 0;
  width: 0;
  height: 100%;
  transition: 0.3s;
  z-index: -2;
}
.btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 102%;
  left: -2px;
  top: 0;
  transition: 0.3s;
  background-color: #1C1C1C;
  transform: translateX(-103%);
  z-index: -2;
}
.btn.gap-5 {
  gap: 5px;
}
.btn.effect-line-white::after {
  background-color: #fff;
}
.btn.effect-line-white:hover {
  color: #1C1C1C;
  background-color: #fff;
  border-color: #fff;
}
.btn.effect-line-white:hover::after {
  transform: translateX(0);
}
.btn.effect-line-primary::after {
  background-color: #1C1C1C;
}
.btn.effect-line-primary:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
  color: #fff;
}
.btn.effect-line-primary:hover::after {
  transform: translateX(0);
}
.btn.btn-line {
  border: 2px solid #1C1C1C;
  color: #000000;
}
.btn.btn-line:hover {
  color: #fff;
  background-color: #1C1C1C;
}
.btn.btn-line:hover svg path {
  stroke: #fff;
}
.btn.btn-line:hover::after {
  transform: translateX(0);
}
.btn.btn-line::before {
  background: #1C1C1C;
}
.btn.btn-white {
  background-color: #fff;
}
.btn.btn-white::before {
  background-color: #990000;
}
.btn.btn-white:hover {
  background-color: #990000;
  color: #fff;
}
.btn.btn-white:hover svg path {
  stroke: #fff;
}
.btn.btn-white:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn.btn-line-1 {
  border: 2px solid #1C1C1C;
  color: #000000;
}
.btn.btn-line-1:hover {
  background-color: #1C1C1C;
  color: #fff;
}
.btn.btn-line-1:hover svg path {
  stroke: #fff;
}
.btn.btn-line-1:hover::after {
  transform: translateX(0);
}
.btn.btn-line-primary {
  border: 2px solid #990000;
  color: #fff;
  border-radius: 12px;
}
.btn.btn-line-primary:hover {
  border-color: transparent;
  background-color: #fff;
  color: #1C1C1C;
}
.btn.btn-line-primary:hover svg path {
  fill: #1C1C1C;
}
.btn.btn-line-white {
  border: 2px solid #fff;
  color: #fff;
}
.btn.btn-line-white::after {
  background-color: #fff;
}
.btn.btn-line-white:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.btn.btn-line-white:hover svg path {
  stroke: #1C1C1C;
}
.btn.btn-line-white:hover::after {
  transform: translateX(0);
}
.btn.btn-line-style-2 {
  border: 2px solid #E7E7E7;
  color: #000000;
}
.btn.btn-line-blur {
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  color: #fff;
}
.btn.btn-line-hover {
  border: 2px solid #990000;
  color: #000000;
}
.btn.btn-line-hover:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
  color: #fff;
}
.btn.btn-primary {
  background-color: #1C1C1C;
  color: #fff;
}
.btn.btn-primary::before {
  background: #990000;
}
.btn.btn-primary:hover::before {
  width: 100%;
  left: 0;
}
.btn.btn-primary:hover {
  background: #990000;
}
.btn.btn-primary-3 {
  background-color: #990000;
  color: #fff;
}
.btn.btn-primary-3::before {
  background: #1C1C1C;
}
.btn.btn-primary-3:hover::before {
  width: 100%;
  left: 0;
}
.btn.btn-primary-3:hover {
  background: #1C1C1C;
}
.btn.btn-primary-4 {
  background-color: #4518CC;
  color: #fff;
}
.btn.btn-primary-4:hover {
  background-color: #1C1C1C;
}
.btn.btn-blur {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  color: #fff;
}
.btn.btn-blur::after {
  background-color: #fff;
}
.btn.btn-blur:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.btn.btn-blur:hover::after {
  transform: translateX(0);
}
.btn.btn-small {
  height: 38px;
  padding: 8px 16px;
}
.btn.btn-small-2 {
  height: 40px;
  border-radius: 8px;
  padding: 8px 16px;
}
.btn.btn-medium {
  height: 48px;
  padding: 12px 24px;
}
.btn.btn-medium.padding-button-medium {
  padding: 12px 14px;
}
.btn.btn-large {
  height: 52px;
  padding: 8px 28px;
}
.btn.btn-large.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}
.btn.btn-large-2 {
  height: 58px;
  padding: 8px 32px;
}
.btn.btn-large-3 {
  height: 52px;
  padding: 8px 40px;
}
.btn.btn-large-4 {
  height: 50px;
  padding: 8px 32px;
}
.btn.btn-primary-2 {
  background-color: #990000;
  color: #fff;
}
.btn.btn-primary-2:hover {
  background-color: #fff;
  color: #1C1C1C;
}

.btn-filter {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #990000;
  color: #1C1C1C;
  padding: 8px 16px;
  height: 44px;
  border-radius: 8px;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: 6px;
  transition: all 0.3s ease;
}
.btn-filter:hover {
  background-color: #990000;
  color: #1C1C1C;
}

.h-50 {
  height: 50px;
}

.btn-clear-items {
  height: 28px;
  padding: 0 12px;
  border-radius: 40px;
  display: inline-block;
  gap: 4px;
  font-size: 12px;
  line-height: 28px;
  color: #fff;
  transition: all 0.3s ease;
  background-color: #1C1C1C;
  text-transform: uppercase;
  margin: 4px 0;
}
.btn-clear-items:hover {
  background-color: #990000;
}
.btn-clear-items img {
  vertical-align: middle;
  margin-top: -2px;
}

.btn-icon-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7E7;
  border: 1px solid #E7E7E7;
}
.btn-icon-circle:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
  color: #fff;
}

.hover-stroke-white:hover svg path {
  stroke: #fff;
}

.hover-stroke-hover:hover svg path {
  stroke: #990000;
}

.hover-fill-hover:hover svg path {
  fill: #990000;
}

.hover-fill-primary:hover {
  color: #1C1C1C;
  background-color: #fff;
}
.hover-fill-primary:hover svg path {
  fill: #1C1C1C;
}

.hover-fill-white:hover {
  color: #1C1C1C;
  background-color: #1C1C1C;
}
.hover-fill-white:hover svg path {
  fill: #fff;
}

/* Menu
-------------------------------------------------------------- */
/* Mobile Menu */
#menu-primary-menu::-webkit-scrollbar {
  display: none;
}

.main-nav-mobile {
  overflow: hidden;
}
.main-nav-mobile .mobile-button {
  transition: all 0s ease;
  top: 45px;
  position: fixed;
  z-index: 13;
}
.show-admin-bar .main-nav-mobile .mobile-button {
  top: 85px;
}
.main-nav-mobile .mobile-menu-overlay {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  visibility: visible;
}

.mobile-button {
  display: none;
  transition: all 0.3s ease;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  right: 15px;
  background-color: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}
.mobile-button:before, .mobile-button:after,
.mobile-button span {
  background-color: #990000;
  transition: all 0.3s ease;
}
.mobile-button:before, .mobile-button:after {
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
  width: 100%;
  left: 0;
  top: 50%;
  transform-origin: 50% 50%;
}
.mobile-button span {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  overflow: hidden;
  text-indent: 200%;
}
.mobile-button:before {
  transform: translate3d(0, -7px, 0);
}
.mobile-button:after {
  transform: translate3d(0, 7px, 0);
}
.mobile-button.active span {
  opacity: 0;
}
.mobile-button.active:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.mobile-button.active:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

#main-nav-mobile .sub-menu {
  display: none;
}
#main-nav-mobile .sub-menu .car-box-style-3 {
  display: none;
}
#main-nav-mobile .sub-menu .h5 {
  font-size: 16px;
  color: #fff;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  font-weight: 400;
  padding: 0 20px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
#main-nav-mobile .sub-menu .h5:hover {
  color: #990000;
}
#main-nav-mobile .sub-menu .h5:hover .chevron-down path {
  stroke: #990000;
}
#main-nav-mobile .menu-item--static {
  position: relative;
}
#main-nav-mobile .menu-item--static .sub-menu:not(.sub-menu--full) {
  position: relative;
  max-width: 1440px;
  left: 50%;
  transform: translateX(-50%);
}
#main-nav-mobile .menu-item--static .sub-menu.sub-menu--full::-webkit-scrollbar {
  display: none;
}
#main-nav-mobile .menu-item--static .sub-menu.sub-menu--full .menu-item .menu-item-image {
  display: none;
}

/* Sub Menu */
#main-nav-mobile .sub-menu-item-listing .sub-menu-item-inner {
  display: none;
}

#main-nav .sub-menu {
  padding: 28px 40px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#main-nav .sub-menu.sub-menu--container {
  overflow-y: inherit;
}
#main-nav .sub-menu:not(.sub-menu--full) li a {
  min-width: 240px;
}
#main-nav .sub-menu {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(43, 52, 74, 0.12);
  border-radius: 0 0 12px 12px;
}
#main-nav .sub-menu li {
  margin-right: 0 !important;
  width: 100%;
}
#main-nav .sub-menu li .menu-item-inner,
#main-nav .sub-menu li a {
  padding: 10px 20px;
  opacity: 1;
}
#main-nav .sub-menu li .menu-item-inner-title svg {
  transform: rotate(-90deg);
}
#main-nav .sub-menu li .menu-item-inner-title svg path {
  stroke: #990000;
}
#main-nav .sub-menu li.menu-item-inner {
  position: relative;
  padding: 10px 20px;
  width: 100%;
}
#main-nav .sub-menu li.menu-item-inner .current-item.menu-item-inner-title {
  color: #990000;
}
#main-nav .sub-menu li.menu-item-inner .sub-menu-item-inner {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(15px);
  background: #fff;
  z-index: 9;
  left: 100%;
  top: 0;
  padding: 5px 0px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  box-shadow: 0 0px 12px 0 rgba(12, 12, 12, 0.3);
  border-radius: 12px;
}
#main-nav .sub-menu li.menu-item-inner:hover .sub-menu-item-inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-nav .sub-menu li:hover > .sub-menu {
  z-index: 9;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-nav .sub-menu li a {
  display: block;
  color: #1C1C1C;
  border-radius: 8px;
  transition: all 0.2s ease;
}
#main-nav .sub-menu li a:hover,
#main-nav .sub-menu li a.current-item {
  color: #990000;
  background-color: rgba(152, 188, 42, 0.06);
}
#main-nav .sub-menu li.menu-item-has-children {
  position: relative;
}
#main-nav .sub-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main-nav .sub-menu li.menu-item-has-children > a .chevron-down {
  transform: rotate(-90deg);
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
#main-nav .sub-menu li.menu-item-has-children:hover > a {
  color: #990000;
  background-color: rgba(152, 188, 42, 0.06);
}
#main-nav .sub-menu li.menu-item-has-children:hover > a .chevron-down path {
  stroke: #990000;
}
#main-nav .sub-menu .sub-menu {
  position: absolute;
  left: calc(100% + 4px);
  top: 0;
  width: auto;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 8px 0;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  flex-direction: column;
  overflow: visible;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

#main-nav .sub-menu li a:hover,
#main-nav .sub-menu li a.current-item {
  text-decoration-color: #990000;
}

#main-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-nav .menu.right {
  justify-content: flex-end;
  padding-right: 15px;
}
#main-nav .menu.right li:last-child {
  margin-right: 0;
}
#main-nav .menu.style-2 > li > a {
  color: #fff;
}
#main-nav .menu {
  z-index: 99;
}
#main-nav .menu > li {
  position: relative;
  margin-right: 28px;
}
#main-nav .menu > li.menu-item--static {
  position: static;
}
#main-nav .menu > li.menu-item--static .sub-menu:not(.sub-menu--full) {
  max-width: 1440px;
  left: 50%;
  transform: translateX(-50%);
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full::-webkit-scrollbar {
  display: none;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing {
  border-radius: 0 0 16px 16px !important;
  padding: 40px;
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 1410px;
  left: 50%;
  transform: translateX(-50%);
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav {
  width: 62%;
  gap: 48px;
  display: flex;
  flex-wrap: wrap;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav ul:nth-child(1) {
  margin-right: 48px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav ul:nth-child(2) {
  margin-right: 8px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav ul:nth-child(3) {
  margin-right: 22px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .car-box-style-3 {
  max-height: 330px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .car-box-style-3 .content {
  padding: 24px 24px 24px 24px !important;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .car-box-style-3 .content .list {
  margin-bottom: 22px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-image {
  padding-left: 16px;
  width: 38%;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-image .car-box-style-3 {
  margin-left: auto;
  max-width: 480px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing ul li a {
  padding: 0;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  border-radius: 0 !important;
  flex-direction: column;
  gap: 20px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main > ul {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item {
  border-radius: 12px;
  background-color: #F7F7F7;
  border: 1px solid #E7E7E7;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item .menu-item-image {
  display: block;
  margin-bottom: 20px;
}
#main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main .menu-item.menu-item-inner {
  display: block;
}
#main-nav .menu > li:last-child {
  margin-right: 0;
}
#main-nav .menu > li .sub-menu:not(.sub-menu--full) {
  padding: 8px 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 12px 12px;
  overflow: visible;
  margin-top: 8px;
}
#main-nav .menu > li .sub-menu:not(.sub-menu--full) li a {
  padding: 10px 24px;
}
#main-nav .menu > li .sub-menu:not(.sub-menu--full) li.menu-item-inner {
  padding: 2px 20px;
}
#main-nav .menu > li .sub-menu.sub-menu--style-2 > li {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-right: 20px;
}
#main-nav .menu > li .sub-menu.sub-menu--style-2 > li > a {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 120px;
}
#main-nav .menu > li > a {
  position: relative;
  display: block;
  font-weight: 600;
  padding: 34px 0;
}
#main-nav .menu > li > a:hover {
  color: #990000;
}
#main-nav .menu > li > a:hover .chevron-down path {
  stroke: #990000;
}
#main-nav .menu > li > a::before {
  height: 2px;
  position: absolute;
  width: 100%;
  background-color: #990000;
  content: "";
  left: 0;
  bottom: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
#main-nav .menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-nav .menu li.menu-item-has-children > a:hover::after {
  color: #990000;
}
#main-nav .menu li.menu-item.current-menu-item > a::before {
  opacity: 1;
}

#main-nav-mobile {
  margin: 0;
  width: 100%;
  left: 0;
  z-index: 9;
  padding: 0;
  position: fixed;
  opacity: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  transform: translateX(-100%);
  background: #1C1C1C;
  transition: transform 0.3s ease;
  max-width: 385px;
  display: flex;
  flex-direction: column;
}
.show-admin-bar #main-nav-mobile {
  top: 40px;
  height: calc(100vh - 40px);
}
#main-nav-mobile.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
#main-nav-mobile .menu {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
#main-nav-mobile .btn {
  background-color: #fff !important;
  border: #fff;
  color: #1C1C1C;
}
#main-nav-mobile .btn.bg-sign-in svg path {
  stroke: #1C1C1C;
}
#main-nav-mobile .btn svg path {
  stroke: #1C1C1C;
}
#main-nav-mobile .btn:first-child {
  margin-left: 16px;
}
#main-nav-mobile ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-nav-mobile ul .menu-item-inner,
#main-nav-mobile ul li {
  margin: 0;
  cursor: pointer;
  padding: 0 !important;
  position: relative;
}
#main-nav-mobile > ul > li > a {
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  font-family: var(--primary-font, "Manrope", sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
#main-nav-mobile .header-button {
  position: relative;
  z-index: 3;
}
#main-nav-mobile .sub-menu .menu-item-inner p svg {
  transform: rotate(0);
  margin-right: 20px;
}
#main-nav-mobile .sub-menu .menu-item-inner p svg path {
  stroke: #9FA1A4;
}
#main-nav-mobile .sub-menu .menu-item-inner p {
  padding-left: 40px;
  color: #fff;
  margin-bottom: 12px;
}
#main-nav-mobile .sub-menu .menu-item-inner p.current-item {
  color: #990000;
}
#main-nav-mobile .sub-menu li a {
  padding-left: 40px;
  display: block;
  color: #fff;
  margin-bottom: 12px;
}
#main-nav-mobile .sub-menu li a.current-item {
  color: #990000;
}
#main-nav-mobile .menu-item-inner .sub-menu-item-inner {
  display: none;
  position: relative;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  min-width: auto;
  width: 100%;
  padding-left: 24px;
}
#main-nav-mobile .menu-item-inner .sub-menu-item-inner li {
  padding: 0;
}
#main-nav-mobile .menu-item-inner .sub-menu-item-inner a {
  display: block;
  color: #fff;
}
#main-nav-mobile .menu-item-inner.active .sub-menu-item-inner {
  display: block;
}
#main-nav-mobile .sub-menu--listing-nav .sub-menu-item-listing .sub-menu-item-inner {
  display: none;
  position: relative;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  min-width: auto;
  width: 100%;
  padding-left: 24px;
  overflow: hidden;
}
#main-nav-mobile .sub-menu--listing-nav .sub-menu-item-listing .sub-menu-item-inner li {
  padding: 0;
}
#main-nav-mobile .sub-menu--listing-nav .sub-menu-item-listing .sub-menu-item-inner a {
  display: block;
  color: #fff;
}
#main-nav-mobile .sub-menu--listing-nav .sub-menu-item-listing.active .menu-item-inner-title img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#main-nav-mobile .sub-menu--listing-nav .sub-menu-item-listing .menu-item-inner-title img {
  transition: transform 0.3s ease;
}
#main-nav-mobile ul li:first-child {
  border-top: 0px;
}
#main-nav-mobile ul ul li.current-item a,
#main-nav-mobile ul > li.current-menu-item > a,
#main-nav-mobile ul > li > a:hover {
  color: #990000;
}
#main-nav-mobile ul ul li.current-item a .chevron-down path,
#main-nav-mobile ul > li.current-menu-item > a .chevron-down path,
#main-nav-mobile ul > li > a:hover .chevron-down path {
  stroke: #990000;
}

.header-style-2 #main-nav .menu > li > a {
  padding: 16px 0;
}
.header-style-2 #main-nav .menu > li > a::before {
  height: 2px;
  bottom: 14px;
}

.mobile-menu-overlay {
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 8;
  display: block;
  opacity: 1;
  transition: opacity 0.3s;
  background: rgba(28, 28, 28, 0.3);
}
.show-admin-bar .mobile-menu-overlay {
  top: 40px;
  height: calc(100vh - 40px);
}

/* Header
-------------------------------------------------------------- */
.header-spacing {
  padding: 0 40px;
}

.header-wrapper {
  min-height: 94px;
  position: relative;
  z-index: 999;
}
.header-wrapper.header-wrapper--transparent {
  min-height: 0;
}
.header-wrapper.header-sticky {
  position: fixed;
  width: 100%;
}
.header-wrapper.header-sticky .header.is-fixed.is-visible {
  background-color: #1C1C1C;
}
.header-wrapper.header-sticky .header.header-style-1.is-fixed.is-visible,
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-visible,
.header-wrapper.header-sticky .header.header-style-4.is-fixed.is-visible {
  background-color: #fff;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-top-bar-wrapper {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .bg-primary,
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-fixed-primary {
  background-color: #fff !important;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom #main-nav .menu > li > a {
  color: #1C1C1C;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .logo-mobile-header {
  display: flex !important;
  height: 54px;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-actions .header-action-btn,
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-actions .header-action-icon {
  color: #1C1C1C;
}
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-actions .header-action-btn svg path,
.header-wrapper.header-sticky .header.header-style-2.is-fixed.is-custom .header-actions .header-action-icon svg path {
  stroke: #1C1C1C;
}
.show-admin-bar .header-wrapper.header-sticky {
  top: 40px;
}
.header-wrapper #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 94px);
}

.header-wrapper-style-2 {
  height: 196px;
}
.header-wrapper-style-2 #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 196px);
}

.header-wrapper-style-3 {
  height: 194px;
}
.header-wrapper-style-3 #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 194px);
}

.header-wrapper-style-4 {
  height: 144px;
}
.header-wrapper-style-4 #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 144px);
}

.header-wrapper-style-6 {
  height: 145px;
}
.header-wrapper-style-6 #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 145px);
}

.header-wrapper-style-5 {
  height: 150px;
}
.header-wrapper-style-5 #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 150px);
}

.min-height-header {
  min-height: 94px;
}

.header .header-top-bar--wrapper {
  display: flex;
  justify-content: space-between;
}
.header .header-top-bar {
  padding: 10px 0;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  color: #fff;
}
.header .header-top-bar a, .header .header-top-bar span, .header .header-top-bar p {
  color: #fff !important;
}
.header .header-top-bar svg:not(.flag) {
  color: #fff;
}
.header .header-top-bar svg:not(.flag) path, .header .header-top-bar svg:not(.flag) circle, .header .header-top-bar svg:not(.flag) line, .header .header-top-bar svg:not(.flag) polyline, .header .header-top-bar svg:not(.flag) rect {
  stroke: #fff;
}
.header .header-top-bar.background-light {
  color: #1C1C1C;
}
.header .header-top-bar.background-light a, .header .header-top-bar.background-light span, .header .header-top-bar.background-light p {
  color: #1C1C1C !important;
}
.header .header-top-bar.background-light svg:not(.flag) {
  color: #1C1C1C;
}
.header .header-top-bar.background-light svg:not(.flag) path, .header .header-top-bar.background-light svg:not(.flag) circle, .header .header-top-bar.background-light svg:not(.flag) line, .header .header-top-bar.background-light svg:not(.flag) polyline, .header .header-top-bar.background-light svg:not(.flag) rect {
  stroke: #1C1C1C;
}
.header .header-top-bar .topbar-container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header .header-top-bar .header-top-bar--socical-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top-bar .header-top-bar--socical {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}
.header .header-top-bar .header-top-bar--socical li {
  width: 20px;
  height: 20px;
}
.header .header-top-bar .header-top-bar--socical li:not(:last-child) {
  margin-right: 16px;
}
.header .header-top-bar .header-top-bar--socical li a {
  width: 20px;
  height: 20px;
}
.header .header-top-bar--text {
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
}
.header .header-top-bar .ae-anno-announcement-wrapper {
  width: auto !important;
  position: relative !important;
  padding: 0 !important;
  gap: 4px;
}
.header .header-top-bar .ae-anno-announcement-wrapper.ae-anno-announcement--dismissible {
  padding-inline-end: 20px !important;
}
.header .header-top-bar .ae-anno-announcement-wrapper .ae-anno-announcement__dismiss-button {
  position: absolute !important;
  inset-inline-end: 0 !important;
}
.header .header-top-bar .ae-anno-announcement-wrapper .ae-anno-announcement__dismiss-button .ae-anno-announcement__dismiss-button-icon {
  width: 1rem;
  height: 1rem;
}
.header .header-top-bar .widget-contact-information {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-top-bar .widget-contact-information a {
  margin-bottom: 0 !important;
  white-space: nowrap;
}
.header .header-top-bar .btn-mode {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
}
.header .header-top-bar .btn-mode:hover, .header .header-top-bar .btn-mode:focus, .header .header-top-bar .btn-mode:active {
  background: transparent;
  box-shadow: none;
}
.header .header-top-bar .btn-mode .dark-mode {
  display: none;
}
.header .header-top-bar .box-dropdown-cart {
  position: relative;
  cursor: pointer;
  line-height: 1;
}
.header .header-top-bar .box-dropdown-cart .icon-list {
  font-size: 14px;
  color: inherit;
}
.header .header-top-bar .box-dropdown-cart .dropdown-cart,
.header .header-top-bar .box-dropdown-cart .dropdown-account {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 100px;
  padding: 8px 0;
}
.header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a,
.header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a span,
.header .header-top-bar .box-dropdown-cart .dropdown-account ul li a,
.header .header-top-bar .box-dropdown-cart .dropdown-account ul li a span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  color: #1C1C1C !important;
  white-space: nowrap;
  font-size: 14px;
}
.header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a span,
.header .header-top-bar .box-dropdown-cart .dropdown-account ul li a span {
  padding: 0;
}
.header .header-top-bar .box-dropdown-cart .dropdown-cart ul li a:hover,
.header .header-top-bar .box-dropdown-cart .dropdown-account ul li a:hover {
  background: #F7F7F7;
}
.header .header-top-bar .box-dropdown-cart:hover .dropdown-cart, .header .header-top-bar .box-dropdown-cart:hover .dropdown-account {
  display: block;
}
.header {
  z-index: 100;
  width: 100%;
  min-height: 94px;
}
.header.header-absolute {
  position: absolute;
}
.header.header-style-1 .header-container-fluid {
  padding: 0 40px;
}
.header.header-style-1 .header-action-btn svg path {
  stroke: #1C1C1C;
}
.header.header-style-1 .header-action-btn:hover svg path {
  stroke: #990000;
}
.header.header-style-1.header-blur {
  background-color: rgba(149, 149, 149, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.header-style-1.header-blur #main-nav .menu > li > a,
.header.header-style-1.header-blur .header-actions .header-action-btn,
.header.header-style-1.header-blur .header-actions .header-action-icon {
  color: #fff;
}
.header.header-style-1.header-blur #main-nav .menu > li > a svg path,
.header.header-style-1.header-blur .header-actions .header-action-btn svg path,
.header.header-style-1.header-blur .header-actions .header-action-icon svg path {
  stroke: #fff;
}
.header.header-style-1.header-blur .btn.bg-sign-in {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.header.header-style-1.header-blur .btn.bg-sign-in svg path {
  stroke: #fff;
}
.header.header-style-1.header-blur .header-action-btn svg path {
  stroke: #fff;
}
.header.header-style-1.header-blur .header-action-btn:hover svg path {
  stroke: #990000;
}
.header.header-style-1.header-blur.is-fixed.is-visible {
  background-color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header.header-style-1.header-blur.is-fixed.is-visible #main-nav .menu > li > a,
.header.header-style-1.header-blur.is-fixed.is-visible .header-actions .header-action-btn,
.header.header-style-1.header-blur.is-fixed.is-visible .header-actions .header-action-icon {
  color: #1C1C1C;
}
.header.header-style-1.header-blur.is-fixed.is-visible #main-nav .menu > li > a svg path,
.header.header-style-1.header-blur.is-fixed.is-visible .header-actions .header-action-btn svg path,
.header.header-style-1.header-blur.is-fixed.is-visible .header-actions .header-action-icon svg path {
  stroke: #1C1C1C;
}
.header.header-style-1.header-blur.is-fixed.is-visible .btn.bg-sign-in {
  background-color: rgba(28, 28, 28, 0.08);
  border-color: transparent;
  color: #1C1C1C;
}
.header.header-style-1.header-blur.is-fixed.is-visible .btn.bg-sign-in svg path {
  stroke: #1C1C1C;
}
.header.header-style-1.header-blur.is-fixed.is-visible .header-action-btn svg path {
  stroke: #1C1C1C;
}
.header.header-style-2 .header-container-fluid {
  padding: 0 60px;
}
.header.header-style-2 .header-right {
  gap: 57px;
}
.header.header-style-2 .header-sticky-buttons {
  display: none !important;
}
.header.header-style-2.is-fixed.is-custom .header-sticky-buttons {
  display: flex !important;
}
.header.header-style-3 .header-top-bar .header-top-bar--socical {
  border-color: rgba(28, 28, 28, 0.1);
}
.header.header-style-4.header-blur {
  background-color: #959595;
}
.header.header-style-4.header-blur #main-nav .menu > li > a,
.header.header-style-4.header-blur .header-actions .header-action-btn,
.header.header-style-4.header-blur .header-actions .header-action-icon {
  color: #fff;
}
.header.header-style-4.header-blur #main-nav .menu > li > a svg path,
.header.header-style-4.header-blur .header-actions .header-action-btn svg path,
.header.header-style-4.header-blur .header-actions .header-action-icon svg path {
  stroke: #fff;
}
.header.header-style-4.header-blur .btn.bg-sign-in {
  color: #1C1C1C;
}
.header.header-style-4 .header-top-bar {
  height: 50px;
}
.header .header-right-style-2.header-right {
  justify-content: end;
  width: calc(100% - 270px);
}
.header .header-right-style-3.header-right {
  justify-content: end;
  width: calc(100% - 240px);
}
.header .header-container-fluid {
  margin: auto;
}
.header .logo-mobile img,
.header .logo img {
  max-height: 54px;
  transition: all 0.3s ease;
}
.header .logo-mobile {
  display: none;
  padding: 20px 15px;
}
.header .logo-mobile img {
  height: 42px;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header .header-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header .header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.header .header-action-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-action-btn svg path {
  transition: all 0.3s ease;
}
.header .header-action-btn:hover svg path {
  stroke: #990000;
}
.header .header-action-btn.header-action-icon::after {
  content: attr(data-badge);
  position: absolute;
  top: -8px;
  right: -6px;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #990000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  border-radius: 99px;
}
.header.header-sticky {
  position: fixed;
}
.header.is-fixed {
  top: 0;
  left: 0;
}
.show-admin-bar .header.is-fixed {
  top: 40px;
}
.header.is-fixed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-200px);
}
.header.is-fixed.is-custom {
  position: fixed;
  transition: all 0.3s ease;
}
.header.is-fixed.is-custom .header-style-2-main,
.header.is-fixed.is-custom .header-top-bar {
  transition: all 0.3s ease;
}
.header.is-fixed.is-custom #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--main {
  height: calc(100vh - 94px) !important;
}
.header.is-fixed.is-custom #main-nav .menu > li > a {
  padding: 34px 0 !important;
}
.header.is-fixed.is-custom .header-style-2-main,
.header.is-fixed.is-custom .header-top-bar {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.header.is-fixed.header-absolute {
  top: 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}
.header.is-fixed.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header.header-style-2.header-style-3 .header-inner-style-2 {
  height: 92px;
}
.header.header-style-2 .logo-mobile-header {
  display: none;
  height: 54px;
}
.header.header-style-2 .header-inner-style-2 {
  height: 94px;
}
.header.header-style-2 .header-action-btn svg path {
  stroke: #fff;
}
.header.header-style-2 .header-action-btn:hover svg path {
  stroke: #990000;
}
.header.header-style-2 .header-contact {
  display: flex;
  gap: 60px;
}
.header.header-style-2 .header-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header.header-style-2 .header-contact li .text {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1C1C1C;
}
.header.header-style-2 .header-contact li .text:hover {
  color: #990000;
}
.header.header-style-2 .header-contact .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #1C1C1C;
  color: #fff;
}
.header.header-style-2 .header-contact .icon:hover {
  border-color: #990000;
}
.header.header-style-2 .header-contact .icon:hover svg path {
  stroke: #990000;
}
.header.header-style-2 .header-search {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 400px;
  height: 50px;
}
.header.header-style-2 .header-search input {
  box-shadow: none;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid #E7E7E7;
  border-radius: 0;
}
.header.header-style-2 .header-search .header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}
.header.header-style-2 .header-search .header-search-btn:hover svg path {
  stroke: #990000;
}

.header-search-wrapper {
  position: relative;
}

.search-form {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 250px;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.search-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-form__input {
  background: #fff !important;
}

.header-top-bar-style2 {
  position: relative;
  z-index: 20;
}
.header-top-bar-style2 .header-top-bar-style2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-bar-style2 .header-top-bar-left {
  display: flex;
  align-items: center;
}
.header-top-bar-style2 .header-actions {
  display: flex;
  align-items: center;
}
.header-top-bar-style2 {
  color: #fff;
}
.header-top-bar-style2 a, .header-top-bar-style2 span, .header-top-bar-style2 p, .header-top-bar-style2 button, .header-top-bar-style2 label {
  color: #fff;
}
.header-top-bar-style2 svg path {
  stroke: #fff;
}
.header-top-bar-style2 .box-dropdown-cart {
  position: relative;
  cursor: pointer;
  line-height: 1;
}
.header-top-bar-style2 .box-dropdown-cart .dropdown-cart,
.header-top-bar-style2 .box-dropdown-cart .dropdown-account {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 100px;
  padding: 8px 0;
}
.header-top-bar-style2 .box-dropdown-cart .dropdown-cart ul li a,
.header-top-bar-style2 .box-dropdown-cart .dropdown-account ul li a {
  color: #1C1C1C !important;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-top-bar-style2 .box-dropdown-cart .dropdown-cart ul li a:hover,
.header-top-bar-style2 .box-dropdown-cart .dropdown-account ul li a:hover {
  color: #990000 !important;
}
.header-top-bar-style2 .box-dropdown-cart:hover .dropdown-cart,
.header-top-bar-style2 .box-dropdown-cart:hover .dropdown-account {
  display: block;
}
.header-top-bar-style2 .language-switcher-wrapper {
  position: relative;
  cursor: pointer;
  z-index: 200;
}
.header-top-bar-style2 .language-switcher-wrapper .dropdown-account {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  padding: 8px 0;
}
.header-top-bar-style2 .language-switcher-wrapper .dropdown-account ul li a,
.header-top-bar-style2 .language-switcher-wrapper .dropdown-account ul li a span {
  color: #1C1C1C !important;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
}
.header-top-bar-style2 .language-switcher-wrapper .dropdown-account ul li a:hover,
.header-top-bar-style2 .language-switcher-wrapper .dropdown-account ul li a span:hover {
  color: #990000 !important;
}
.header-top-bar-style2 .language-switcher-wrapper:hover .dropdown-account {
  display: block;
}
.header-top-bar-style2 .head-currency {
  position: relative;
  z-index: 200;
}
.header-top-bar-style2 .head-currency .dropdown-cart {
  z-index: 200;
}

.home-style-11 .header .header-top-bar-style2 {
  padding: 16px 0;
  background-color: #212331;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.home-style-11 .header .header-top-bar-style2 .logo {
  height: 54px;
  display: flex;
  flex-shrink: 0;
}
.home-style-11 .header .header-top-bar-style2 .logo img {
  max-height: 54px;
  width: auto;
}
.home-style-11 .header .header-top-bar-style2 .header-top-bar-left,
.home-style-11 .header .header-top-bar-style2 .header-actions-right {
  flex: 1;
  min-width: 0;
}
.home-style-11 .header .header-top-bar-style2 .header-actions-right {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.home-style-11 .header .header-top-bar-style2 .header-action-btn svg path,
.home-style-11 .header .header-top-bar-style2 .header-action-icon svg path {
  stroke: #fff;
}
.home-style-11 .header.header-style-2 .header-container-fluid {
  padding: 0 60px;
  min-height: auto;
}
.home-style-11 .header.header-style-2 .header-container-fluid #main-nav .menu > li > a {
  color: #fff;
  padding: 20px 0;
}
.home-style-11 .header.header-style-2 .header-container-fluid .btn.bg-sign-in {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.home-style-11 .header.header-style-2 .header-container-fluid .btn.bg-sign-in svg path {
  stroke: #fff;
}
.home-style-11 .header.header-style-2.is-custom .header-container-fluid {
  min-height: 94px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.home-style-11 .header-wrapper-style-3 {
  height: auto;
}

.header.is-custom .header-fixed-primary {
  min-height: 94px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.inner-page .header {
  border-bottom: 1px solid #E7E7E7;
}

/* Header user dropdown — logged-in customer */
.header-user-dropdown {
  position: relative;
}

.header-user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #E7E7E7;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-user-toggle:hover {
  border-color: #1C1C1C;
}

.header-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}
.header-user-avatar .header-user-avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-user-name {
  font-weight: 600;
  font-size: 14px;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  list-style: none;
  z-index: 100;
  display: none;
}
.header-user-menu.show {
  display: block;
}
.header-user-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #1C1C1C;
  transition: all 0.2s ease;
}
.header-user-menu li a:hover {
  background-color: #F7F7F7;
  color: #990000;
}

/* Mobile switchers — currency & language */
.mobile-switchers {
  padding: 12px 20px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}
.mobile-switchers > div {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 8px;
  margin-top: 12px;
}
.mobile-switchers > div:first-child {
  margin-top: 0;
}

.currency-list-mobile,
.language-list-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.currency-item,
.language-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.2s ease;
}
.currency-item:hover,
.language-item:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.currency-item.active,
.language-item.active {
  color: #990000 !important;
}
.currency-item *,
.language-item * {
  color: inherit !important;
}
.currency-item .language-flag img,
.language-item .language-flag img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

/* Mobile CTA cards — Carento-style */
.mobile-cta-card {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  gap: 12px;
  width: 100%;
  transition: all 0.3s ease;
}
.mobile-cta-card .mobile-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.mobile-cta-card .mobile-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-cta-card .mobile-cta-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.mobile-cta-card .mobile-cta-text small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.mobile-cta-card .mobile-cta-arrow {
  color: #fff;
  flex-shrink: 0;
}

.mobile-cta-primary {
  background: linear-gradient(135deg, #990000 0%, #660000 100%);
}
.mobile-cta-primary:hover {
  opacity: 0.9;
}
.mobile-cta-primary svg {
  color: #fff !important;
}
.mobile-cta-primary svg path {
  stroke: #fff !important;
}

.mobile-cta-signin {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}
.mobile-cta-signin:hover {
  opacity: 0.9;
}
.mobile-cta-signin svg {
  color: #fff !important;
}
.mobile-cta-signin svg path {
  stroke: #fff !important;
}

.mobile-section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.mobile-customer-block {
  width: 100%;
  margin-bottom: 4px;
}

#main-nav-mobile {
  display: flex !important;
  flex-direction: column !important;
}
#main-nav-mobile > .logo-mobile {
  order: 1;
  display: block !important;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}
#main-nav-mobile > .header-button-mobile {
  order: 2;
  display: block !important;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 8px;
}
#main-nav-mobile > .menu {
  order: 3;
}
#main-nav-mobile > .mobile-switchers-panel {
  order: 4;
}

/* Mobile customer menu — logged-in state */
.mobile-customer-section {
  width: 100%;
}

.mobile-customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
}

.mobile-customer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}
.mobile-customer-avatar .mobile-customer-avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-customer-name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-customer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-customer-menu li a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-customer-menu li a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.mobile-customer-menu .mobile-customer-logout {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-customer-menu .mobile-customer-logout a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
}
.mobile-customer-menu .mobile-customer-logout a svg {
  color: rgba(255, 255, 255, 0.7) !important;
  stroke: rgba(255, 255, 255, 0.7) !important;
}

.home-style-9 .header.is-custom {
  background-color: #1C1C1C;
}

/* Swiper
-------------------------------------------------------------- */
.swiper-slide {
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.swiper-container-visible.swiper-container {
  overflow: visible;
}

.shortcode-testimonial {
  overflow: hidden;
}

.swiper-testimonior .swiper-slide {
  height: initial;
}

.pagination-style.pagination-absolute {
  position: absolute;
  bottom: 24px !important;
  left: 50%;
  transform: translateX(-50%);
}

.pagination-style {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0 !important;
}
.pagination-style.pagination-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: white;
}
.pagination-style.pagination-white .swiper-pagination-bullet::before {
  border: 1px solid white;
}
.pagination-style.pagination-white .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: white;
}
.pagination-style.pagination-dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #1C1C1C;
}
.pagination-style.pagination-dark .swiper-pagination-bullet::before {
  border: 1px solid #1C1C1C;
}
.pagination-style.pagination-dark .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #1C1C1C;
}
.pagination-style .swiper-pagination-bullet {
  background: transparent;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 1;
}
.pagination-style .swiper-pagination-bullet::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}
.pagination-style.pagination-style-absolute {
  position: absolute;
  bottom: 20px !important;
}

.swiper-card-5,
.swiper-card-6,
.showshawdow,
.swiper-outbrand-3 {
  padding: 30px;
  margin: -30px;
}

.swiper-brand-wrapper {
  margin-right: -255px;
}

.swiper-card,
.swiper-card-7,
.swiper-outbrand,
.swiper-card-3,
.swiper-testimonior,
.swiper-outbrand-4 {
  padding: 24px;
  margin: -24px;
}

.swiper-testimonior-2 .swiper-slide,
.swiper-testimonior .swiper-slide {
  height: auto !important;
}

.swiper-brand-wrapper,
.swiper-card-wrapper {
  width: calc(100vw - (100vw - 1488px) / 2 - 7px);
  max-width: 100%;
}

.tp-showcase-slider-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.tp-showcase-slider-bg::after {
  content: "";
  position: absolute;
  background-color: rgba(10, 10, 10, 0.3);
  inset: 0;
}

.sw-single .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.swiper-card-2 {
  padding: 30px !important;
  margin: -30px !important;
}

.swiper-container-fade .swiper-listing-details-thumbs-style-2 .swiper-slide,
.swiper-container-fade .swiper-listing-details-thumbs .swiper-slide,
.swiper-container-fade.swiper-listing-details-main-style-2 .swiper-listing-details-thumbs-style-2 .swiper-slide,
.swiper-container-fade.swiper-listing-details-main-style-2 .swiper-listing-details-thumbs .swiper-slide {
  pointer-events: auto !important;
  cursor: pointer;
}

/* Page Title
-------------------------------------------------------------- */
.page-title {
  position: relative;
  z-index: 2;
  background-color: #5d5c5b;
}
.page-title .filter-select-dropdown {
  padding: 20px 12px 0;
}
.page-title .category-list {
  position: relative;
  z-index: 1;
}
.page-title .search-cars__filters {
  position: relative;
  z-index: 10;
}
.page-title .search-cars__filters .filter-select-dropdown__list .filter-checkbox span {
  color: #1C1C1C;
}
.page-title.page-title-style-2 {
  height: 662px;
  padding-bottom: 2px;
}
.page-title.page-title-style-3 {
  height: 664px;
}
.page-title.page-title-style-4 {
  padding: 84px 0 24px;
  height: 656px;
}
.page-title.page-title-style-4 .flat-tabs {
  margin-top: 8.2%;
}
.page-title.page-title-style-4.style-3 {
  height: 650px;
  padding: 75px 0 24px;
}
.page-title.page-title-style-5 {
  padding: 87px 0 0;
}
.page-title.page-title-style-5 .page-title--image {
  width: 100%;
  padding: 68px 105px 0;
}
.page-title.page-title-style-6 {
  padding: 85px 0 78px;
  background-color: #D8E1EA;
}
.page-title.page-title-style-6 .page-title--slider {
  display: none;
}
.page-title.page-title-style-6 .swiper-btn,
.page-title.page-title-style-6 .swiper-pagination {
  display: none;
}
.page-title.page-title-style-6 .search-cars__search {
  width: calc(100% - 80px);
}
.page-title.page-title-style-6 .page-title-wrapper {
  margin-right: -120px;
  display: flex;
}
.page-title.page-title-style-6 .page-title--image {
  width: calc(100% - 450px);
  padding-left: 32px;
}
.page-title.page-title-style-6 .search-cars__advanced {
  left: 50%;
  transform: translateX(-50%);
  margin-top: 45px;
  max-width: 1440px;
  margin: 40px 0 0;
  padding: 0 15px;
  width: 100%;
}
.page-title.page-title-style-6 .search-cars {
  width: 450px;
  position: static;
}
.page-title.page-title-style-6 .search-cars {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 20px;
  background-color: #fff;
}
.page-title.page-title-style-6 .search-cars__filters {
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
.page-title.page-title-style-6 .search-cars__filters .search-cars__select-wrapper {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 0 0 1px #E7E7E7;
}
.page-title.page-title-style-6 .search-cars__filter {
  width: 68px;
  background-color: #1C1C1C;
}
.page-title.page-title-style-6 .search-cars__filter svg {
  color: #fff !important;
  stroke: #fff !important;
}
.page-title.page-title-style-6 .search-cars__filter:hover, .page-title.page-title-style-6 .search-cars__filter.active {
  background-color: #990000;
  border-color: #990000;
}
.page-title.page-title-style-6 .category-list {
  display: none;
}
.page-title.page-title-style-6 .menu-tab-style1 li span {
  color: #1C1C1C;
}
.page-title.page-title-style-6 .search-cars__title {
  color: #1C1C1C;
  margin-bottom: 8px;
}
.page-title.page-title-style-6 .search-cars .search-cars.container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.page-title.page-title-style-6 .search-cars > .mt-20 {
  margin-top: 0 !important;
}
.page-title.page-title-style-6 .search-cars__filters {
  display: grid !important;
  grid-template-columns: 68px 1fr;
  gap: 15px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
}
.page-title.page-title-style-6 .search-cars__filters .search-cars__select-wrapper {
  grid-column: 1/-1;
}
.page-title.page-title-style-6 .search-cars__filters .search-cars__filter {
  grid-column: 1;
  width: 68px;
}
.page-title.page-title-style-6 .search-cars__filters .search-cars__search {
  grid-column: 2;
}
.page-title.page-title-style-7 {
  padding-bottom: 95px;
}
.header-wrapper--transparent ~ main .page-title.page-title-style-7.radius-40 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.header-wrapper--transparent ~ main .page-title.page-title-style-7 .page-title--slider.radius-40 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.page-title.page-title-style-7 .search-cars .search-cars.container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-title.page-title-style-7 .menu-tab-style1 {
  justify-content: flex-start !important;
}
.page-title.page-title-style-8 {
  height: 704px;
  margin-top: 96px;
  max-width: 1410px;
}
.page-title .category-list {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-title .category-list::-webkit-scrollbar {
  display: none;
}
.page-title .category-list.style-2 {
  gap: 8px;
}
.page-title .category-list.style-2 .brand-item-small {
  padding: 0 10px;
}

.swiper-listing-details-5 .swiper-button,
.swiper-listing-details-main .swiper-button,
.swiper-listing-details-main-style-2 .swiper-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  height: 60px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
}
.swiper-listing-details-5 .swiper-button svg,
.swiper-listing-details-main .swiper-button svg,
.swiper-listing-details-main-style-2 .swiper-button svg {
  width: 24px;
  height: 24px;
}
.swiper-listing-details-5 .swiper-button:hover,
.swiper-listing-details-main .swiper-button:hover,
.swiper-listing-details-main-style-2 .swiper-button:hover {
  background: #fff;
}
.swiper-listing-details-5 .swiper-button:hover svg path,
.swiper-listing-details-main .swiper-button:hover svg path,
.swiper-listing-details-main-style-2 .swiper-button:hover svg path {
  fill: #1C1C1C;
}
.swiper-listing-details-5 .swiper-button.navigation-next,
.swiper-listing-details-main .swiper-button.navigation-next,
.swiper-listing-details-main-style-2 .swiper-button.navigation-next {
  right: 24px;
}
.swiper-listing-details-5 .swiper-button.navigation-prev,
.swiper-listing-details-main .swiper-button.navigation-prev,
.swiper-listing-details-main-style-2 .swiper-button.navigation-prev {
  left: 24px;
}
.swiper-listing-details-5 .swiper-button.swiper-button-disabled,
.swiper-listing-details-main .swiper-button.swiper-button-disabled,
.swiper-listing-details-main-style-2 .swiper-button.swiper-button-disabled {
  opacity: 0.5;
}

.page-title .swiper-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  height: 76px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
}
.page-title .swiper-btn:hover {
  background: #fff;
}
.page-title .swiper-btn:hover svg path {
  fill: #1C1C1C;
}
.page-title .swiper-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.page-title .swiper-btn.navigation-next {
  right: 40px;
}
.page-title .swiper-btn.navigation-prev {
  left: 40px;
}

.page-title .swiper-pagination {
  z-index: 1;
  position: absolute;
  bottom: 24px !important;
  left: 50%;
  transform: translateX(-50%);
}

.page-title-style-1 {
  position: relative;
}
.page-title-style-1 .page-title--content {
  position: absolute;
  bottom: 80px;
  z-index: 15;
  left: 80px;
  width: calc(100% - 330px);
}
.page-title-style-1 .page-title--content .page-title--title {
  letter-spacing: -1.2px;
}
.page-title-style-1 .page-title--post-list {
  height: calc(100% - 94px);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 15;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}
.page-title-style-1 .page-title--post-list .item {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.page-title-style-1 .page-title--post-list .item:hover {
  background-color: #fff;
}
.page-title-style-1 .page-title--post-list .item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-title-style-1 .page-title--post-list .item .item-title {
  margin-top: 8px;
  color: #fff;
  transition: all 0.3s ease;
}
.page-title-style-1 .page-title--post-list .item:hover .item-title {
  color: #1C1C1C;
}
.page-title-style-1 .page-title--post-list .item:hover svg path {
  stroke: #1C1C1C;
}

.page-title--slider {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
}
.page-title--slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 2;
  pointer-events: none;
}
.page-title--slider .page-title--slider-content {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 8;
}
.page-title--slider .page-title--slider-content.style-1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 60px;
}
.page-title--slider .page-title--slider-content.style-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-title--slider .page-title--image-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title--slider .page-title--image-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 6;
}

.page-title--image-overlay {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-title {
  /* Search Cars */
}
.page-title select {
  box-shadow: 0 0 0 1px transparent;
}
.page-title select:active, .page-title select:focus {
  box-shadow: 0 0 0 2px #6b0000;
}

.letter-spacing-1 {
  letter-spacing: -1px;
}

.search-cars {
  position: relative;
  z-index: 10;
}
.search-cars__title {
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.search-cars__title.mb-40 {
  margin-bottom: 40px;
}
.search-cars__title.letter-normal {
  letter-spacing: 0;
}
.search-cars__tab {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.search-cars__tab:hover {
  color: #990000;
}
.search-cars__tab.active {
  color: #990000;
}
.search-cars__tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #990000;
}
.search-cars__filters {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.search-cars__select-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
}
.search-cars__label {
  z-index: 1;
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #4B4B4B;
}
.search-cars__select {
  padding: 20px 14px 0;
  padding-right: 40px;
  color: #1C1C1C;
  height: 60px;
}
.search-cars__select option {
  background: #fff;
  color: #1C1C1C;
  padding: 10px;
}
.search-cars__filter.style2 {
  width: 68px;
}
.search-cars__filter {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  color: #990000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-cars__filter:hover, .search-cars__filter.active {
  background: #1C1C1C;
  border-color: #1C1C1C;
}
.search-cars__search {
  width: 254px;
  padding: 12px 12px;
  height: 62px;
  background: #990000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.search-cars__search svg {
  color: #fff;
  stroke: #fff;
}
.search-cars__search::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  transition: all 0.3s ease-in-out;
  z-index: -2;
  background: #1C1C1C;
}
.search-cars__search:hover::before {
  width: 100%;
  left: 0;
}
.search-cars__search:hover {
  background: #1C1C1C;
}
.search-cars__advanced {
  width: 100%;
  position: absolute;
  display: none;
  z-index: 9;
  max-width: 1440px;
}
.search-cars__advanced-content {
  max-width: calc(100% - 30px);
  background: #fff;
  border-radius: 16px;
  padding: 28px 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.search-cars__advanced-row {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 28px;
  padding: 0 28px;
}
.search-cars__advanced-row .search-cars__select-advanced {
  border: 1px solid #E7E7E7;
  height: 50px;
  padding: 0px 12px;
}
.search-cars__advanced-row .search-cars__select-advanced option {
  background: #fff;
  color: #1C1C1C;
}
.search-cars__range {
  max-width: 307px;
  grid-column: span 2;
}
.search-cars__range-label {
  display: block;
  margin-bottom: 12px;
  color: #1C1C1C;
}
.search-cars__range-label span {
  color: #1C1C1C;
}
.search-cars__range-wrapper {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  border-radius: 3px;
}
.search-cars__range-wrapper #slider-range {
  height: 6px;
  border: none;
  background: transparent;
  position: relative;
}
.search-cars__range-wrapper #slider-range .ui-slider-range {
  background: #990000;
  height: 4px;
  border-radius: 3px;
  position: absolute;
  top: 0;
  border: none;
}
.search-cars__range-wrapper #slider-range .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #990000;
  cursor: pointer;
  top: -6px;
  margin-left: -10px;
  outline: none;
  position: absolute;
  z-index: 3;
  transition: all 0.05s ease;
}
.search-cars__range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  z-index: 2;
  margin: 0;
}
.search-cars__range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #990000;
  cursor: pointer;
  position: relative;
  z-index: 3;
  margin-top: -7px;
}
.search-cars__range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #990000;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.search-cars__range-input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: transparent;
}
.search-cars__range-input::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: transparent;
}
.search-cars__range-min {
  z-index: 3;
}
.search-cars__range-max {
  z-index: 2;
}
.search-cars__features {
  margin-top: 26px;
  padding: 0 28px;
}
.search-cars__features-title {
  font-size: 18px;
  font-weight: 500;
  color: #1C1C1C;
  margin-bottom: 20px;
}
.search-cars__features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 12px;
}
.search-cars__features-grid .form-group label {
  color: #1C1C1C;
}
@media (max-width: 1199px) {
  .search-cars__features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .search-cars__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .search-cars__features-grid {
    grid-template-columns: 1fr;
  }
}
.search-cars .category-list {
  display: flex;
  gap: 7px;
}

.inner-page select {
  box-shadow: 0 0 0 2px #E7E7E7;
}
.inner-page select:active, .inner-page select:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
.inner-page select.select-style-2 {
  box-shadow: 0 0 0 1px #E7E7E7;
  height: 50px;
}
.inner-page select.select-style-2:active, .inner-page select.select-style-2:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
.inner-page.halfmap #map {
  height: calc(100vh - 94px);
}

.page-title-inner-page {
  position: relative;
  height: 376px;
}
.page-title-inner-page .page-title--image-overlay {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
}
.page-title-inner-page .page-title--image-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title-inner-page .page-title--image-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 6;
}

.listing-details-item-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.listing-details-item-wrapper .main-item {
  grid-column: span 2;
}

.listing-details-item {
  overflow: hidden;
  display: flex;
  position: relative;
  border-radius: 24px;
}
.listing-details-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listing-details-item .listing-details-item--content {
  transition: all 0.5s ease;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.listing-details-item .listing-details-item--content .listing-details-item--button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 48px;
  padding: 4px 16px;
  color: #fff;
  font-weight: 600;
}
.listing-details-item .listing-details-item--content .listing-details-item--button img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.listing-details-item .listing-details-item--content .listing-details-item--button svg {
  color: #fff;
  stroke: #fff;
}

.listing-details-item--active .listing-details-item .listing-details-item--content,
.swiper-slide-active .listing-details-item .listing-details-item--content {
  opacity: 1;
  visibility: visible;
}

.swiper-listing-details-navigation {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 5px;
}
.swiper-listing-details-navigation .swiper-listing-details-next,
.swiper-listing-details-navigation .swiper-listing-details-prev {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
}
.swiper-listing-details-navigation .swiper-listing-details-next:hover,
.swiper-listing-details-navigation .swiper-listing-details-prev:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.swiper-listing-details-navigation .swiper-listing-details-next svg,
.swiper-listing-details-navigation .swiper-listing-details-prev svg {
  width: 6px;
  height: 11px;
}
.swiper-listing-details-navigation .swiper-listing-details-next.swiper-button-disabled,
.swiper-listing-details-navigation .swiper-listing-details-prev.swiper-button-disabled {
  color: #9FA1A4;
}
.swiper-listing-details-navigation .swiper-listing-details-next.swiper-button-disabled svg path,
.swiper-listing-details-navigation .swiper-listing-details-prev.swiper-button-disabled svg path {
  fill: #9FA1A4;
}
.swiper-listing-details-navigation .swiper-listing-details-next {
  padding-left: 16px;
  margin-left: 16px;
}
.swiper-listing-details-navigation .swiper-listing-details-next::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #E7E7E7;
}

.swiper-listing-details-thumbs-style-2 {
  position: absolute;
  right: 40px;
  top: 56px;
  z-index: 5;
}
.swiper-listing-details-thumbs-style-2 .swiper-slide {
  overflow: hidden;
  border-radius: 12px;
  width: 100px !important;
  height: 100px !important;
}

.swiper-listing-details-main-style-2.style-2,
.swiper-listing-details-main.style-2 {
  position: relative;
  border-radius: 0;
  margin-bottom: 0;
}
.swiper-listing-details-main-style-2.style-2 .listing-details-item,
.swiper-listing-details-main.style-2 .listing-details-item {
  height: 675px;
}
.swiper-listing-details-main-style-2.style-2 .listing-details-item .img-main,
.swiper-listing-details-main.style-2 .listing-details-item .img-main {
  border-radius: 0;
}
.swiper-listing-details-main-style-2.style-2 .swiper-listing-details-thumbs-2,
.swiper-listing-details-main-style-2.style-2 .swiper-listing-details-thumbs,
.swiper-listing-details-main.style-2 .swiper-listing-details-thumbs-2,
.swiper-listing-details-main.style-2 .swiper-listing-details-thumbs {
  height: 548px;
  overflow: hidden;
  position: absolute;
  right: 40px;
  top: 56px;
  z-index: 5;
}
.swiper-listing-details-main-style-2.style-2 .swiper-listing-details-thumbs-2 .swiper-slide,
.swiper-listing-details-main-style-2.style-2 .swiper-listing-details-thumbs .swiper-slide,
.swiper-listing-details-main.style-2 .swiper-listing-details-thumbs-2 .swiper-slide,
.swiper-listing-details-main.style-2 .swiper-listing-details-thumbs .swiper-slide {
  height: 100px !important;
}
.swiper-listing-details-main-style-2,
.swiper-listing-details-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.swiper-listing-details-main-style-2 .listing-details-item,
.swiper-listing-details-main .listing-details-item {
  position: relative;
  width: 100%;
  height: 600px;
}
.swiper-listing-details-main-style-2 .listing-details-item .img-main,
.swiper-listing-details-main .listing-details-item .img-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.swiper-listing-details-thumbs-style-2,
.swiper-listing-details-thumbs {
  margin-top: 8px;
}
.swiper-listing-details-thumbs-style-2 .swiper-slide,
.swiper-listing-details-thumbs .swiper-slide {
  width: auto;
}
.swiper-listing-details-thumbs-style-2 .listing-details-thumb,
.swiper-listing-details-thumbs .listing-details-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.swiper-listing-details-thumbs-style-2 .listing-details-thumb::before,
.swiper-listing-details-thumbs .listing-details-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100px;
  z-index: 1;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-sizing: border-box;
}
.swiper-listing-details-thumbs-style-2 .listing-details-thumb img,
.swiper-listing-details-thumbs .listing-details-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.swiper-listing-details-thumbs-style-2 .swiper-slide-thumb-active .listing-details-thumb::before,
.swiper-listing-details-thumbs .swiper-slide-thumb-active .listing-details-thumb::before {
  border-color: #990000;
}

.slide-gallery-list {
  display: flex;
  height: 465px;
  gap: 12px;
}
.slide-gallery-list .slide-gallery {
  position: relative;
  height: 465px;
  transition: all 0.3s ease;
  flex: 1;
}
.slide-gallery-list .slide-gallery.active {
  flex: 3.7;
}
.slide-gallery-list .slide-gallery.active.listing-details-item .listing-details-item--content {
  opacity: 1;
  visibility: visible;
}
.slide-gallery-list .slide-gallery .img-main {
  height: 465px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-gallery-list.style2 {
  gap: 10px;
  height: 472px;
}
.slide-gallery-list.style2 .slide-gallery {
  display: flex;
  height: 472px;
}
.slide-gallery-list.style2 .slide-gallery > img {
  height: 100%;
}
.slide-gallery-list.style2 .slide-gallery.active {
  flex: 2;
}
.slide-gallery-list.scroll {
  gap: 10px;
  height: 472px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.slide-gallery-list.scroll .slide-gallery {
  display: flex;
  height: 472px;
}
.slide-gallery-list.scroll .slide-gallery > img {
  height: 100%;
}
.slide-gallery-list.scroll .slide-gallery.active {
  flex: 2;
}

.container-grid-gallery.gallery-scroll {
  overflow-x: auto;
  margin-right: -250px;
  padding-right: 250px;
}
.container-grid-gallery.gallery-scroll::-webkit-scrollbar {
  display: none !important;
}

.swiper-listing-details-5 {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
}

.max-width-930 {
  max-width: 930px;
}

.max-width-850 {
  max-width: 850px;
}

/*--------- Abstracts variable ---------- */
.effect-content-slide .effect-item {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.6s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.effect-content-slide .effect-img-zoom {
  overflow: hidden;
}

.effect-content-slide .effect-img-zoom .img-zoom {
  transition: all 15s linear;
  -o-object-fit: cover;
     object-fit: cover;
}

.effect-content-slide .swiper-slide-active .effect-up,
.effect-content-slide .tab-pane.active .effect-up {
  --animation-name: slideinup;
}

.effect-content-slide .swiper-slide-active .effect-left,
.effect-content-slide .tab-pane.active .effect-left {
  --animation-name: slideinleft;
}

.effect-content-slide .swiper-slide-active .effect-right,
.effect-content-slide .tab-pane.active .effect-right {
  --animation-name: slideinright;
}

.effect-content-slide .swiper-slide-active .effect-down,
.effect-content-slide .tab-pane.active .effect-down {
  --animation-name: slideindown;
}

.effect-content-slide .swiper-slide-active .img-zoom,
.effect-content-slide .tab-pane.active .img-zoom {
  transform: scale(1.25);
}

.effect-content-slide .swiper-slide-active .img-zoom-out,
.effect-content-slide .tab-pane.active .img-zoom-out {
  animation: zoom2 5s ease-in-out;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-1,
.effect-content-slide .tab-pane.active .effect-item.delay-1 {
  animation-delay: 0.3s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-2,
.effect-content-slide .tab-pane.active .effect-item.delay-2 {
  animation-delay: 0.6s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-3,
.effect-content-slide .tab-pane.active .effect-item.delay-3 {
  animation-delay: 0.9s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-4,
.effect-content-slide .tab-pane.active .effect-item.delay-4 {
  animation-delay: 1.2s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-5,
.effect-content-slide .tab-pane.active .effect-item.delay-5 {
  animation-delay: 1.5s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-6,
.effect-content-slide .tab-pane.active .effect-item.delay-6 {
  animation-delay: 1.8s;
}

.effect-content-slide .swiper-slide-active .effect-item.delay-7,
.effect-content-slide .tab-pane.active .effect-item.delay-7 {
  animation-delay: 2.1s;
}

.effect-content-slide.effect-2 .swiper-slide-active .effect-zoom-item {
  animation: zoom1 1.2s ease-in-out alternate;
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoom1 {
  0% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom2 {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shine-reverse {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
/* Form section below slider style-4 */
.page-title--form-section .category-list {
  display: none;
}

/* Styled search inputs inside filter dropdowns */
.search-input--styled {
  width: 100%;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.filter-select-dropdown__list--padded {
  padding: 12px;
}

/* Overlap hero — search form overlays the slider above */
.search-cars--overlap-hero {
  margin-top: -450px;
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
}
.search-cars--overlap-hero .search-cars__title {
  text-align: left;
  font-family: var(--heading-font, "Albert Sans", sans-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  max-width: 760px;
  margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.6), 0 12px 48px rgba(0, 0, 0, 0.35);
}
.search-cars--overlap-hero .search-cars__subtitle {
  text-align: left;
  font-family: var(--primary-font, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.55);
}

/* Tabs
-------------------------------------------------------------- */
.scroll-element .menu-tab-style5 .item .element {
  height: 48px;
}
.scroll-element .menu-tab-style5 .item a {
  height: 40px;
  padding: 8px 16px;
  border-radius: 88px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.scroll-element .menu-tab-style5 .item:hover a, .scroll-element .menu-tab-style5 .item.active a {
  background-color: #1C1C1C;
  color: #fff;
}

.flat-tabs-style .menu-tab-style1,
.flat-tabs-style .menu-tab-style2,
.flat-tabs-style .menu-tab-style3,
.flat-tabs-style .menu-tab-style4,
.flat-tabs-style .menu-tab-style6,
.flat-tabs-style .menu-tab-style7,
.flat-tabs .menu-tab-style1,
.flat-tabs .menu-tab-style2,
.flat-tabs .menu-tab-style3,
.flat-tabs .menu-tab-style4,
.flat-tabs .menu-tab-style6,
.flat-tabs .menu-tab-style7 {
  display: flex;
  width: -moz-min-content;
  width: min-content;
}
.flat-tabs-style .menu-tab-style1 li,
.flat-tabs-style .menu-tab-style2 li,
.flat-tabs-style .menu-tab-style3 li,
.flat-tabs-style .menu-tab-style4 li,
.flat-tabs-style .menu-tab-style6 li,
.flat-tabs-style .menu-tab-style7 li,
.flat-tabs .menu-tab-style1 li,
.flat-tabs .menu-tab-style2 li,
.flat-tabs .menu-tab-style3 li,
.flat-tabs .menu-tab-style4 li,
.flat-tabs .menu-tab-style6 li,
.flat-tabs .menu-tab-style7 li {
  cursor: pointer;
  min-width: -moz-max-content;
  min-width: max-content;
}
.flat-tabs-style .menu-tab-style5,
.flat-tabs .menu-tab-style5 {
  display: grid;
  padding: 4px;
  border-radius: 88px;
  border: 1px solid #E7E7E7;
}
.flat-tabs-style .menu-tab-style5.large .item,
.flat-tabs-style .menu-tab-style5.large li,
.flat-tabs .menu-tab-style5.large .item,
.flat-tabs .menu-tab-style5.large li {
  height: 48px;
}
.flat-tabs-style .menu-tab-style5 li:not(.item),
.flat-tabs .menu-tab-style5 li:not(.item) {
  height: 40px;
  padding: 8px 16px;
  border-radius: 88px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.flat-tabs-style .menu-tab-style5 li:not(.item):hover, .flat-tabs-style .menu-tab-style5 li:not(.item).active,
.flat-tabs .menu-tab-style5 li:not(.item):hover,
.flat-tabs .menu-tab-style5 li:not(.item).active {
  background-color: #1C1C1C;
  color: #fff;
}
.flat-tabs-style .menu-tab-style7,
.flat-tabs .menu-tab-style7 {
  padding: 4px;
  border-radius: 88px;
  border: 1px solid #E7E7E7;
  background-color: #F7F7F7;
}
.flat-tabs-style .menu-tab-style7.large li,
.flat-tabs .menu-tab-style7.large li {
  height: 40px;
}
.flat-tabs-style .menu-tab-style7 li,
.flat-tabs .menu-tab-style7 li {
  width: 156px;
  height: 40px;
  padding: 8px 16px;
  border-radius: 88px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.flat-tabs-style .menu-tab-style7 li.active,
.flat-tabs .menu-tab-style7 li.active {
  background-color: #1C1C1C;
  color: #fff;
}
.flat-tabs-style .menu-tab li,
.flat-tabs .menu-tab li {
  cursor: pointer;
}
.flat-tabs-style .menu-tab-style2,
.flat-tabs .menu-tab-style2 {
  overflow-y: hidden;
}
.flat-tabs-style .menu-tab-style2.margin-auto.gap-10,
.flat-tabs .menu-tab-style2.margin-auto.gap-10 {
  flex-wrap: wrap !important;
  width: auto !important;
}
.flat-tabs-style .menu-tab-style2 li .text,
.flat-tabs .menu-tab-style2 li .text {
  color: #9FA1A4;
}
.flat-tabs-style .menu-tab-style2 li.active .text,
.flat-tabs .menu-tab-style2 li.active .text {
  color: #1C1C1C;
}
.flat-tabs-style .menu-tab-style2::-webkit-scrollbar,
.flat-tabs .menu-tab-style2::-webkit-scrollbar {
  display: block !important;
  width: 6px;
  height: 4px;
}
.flat-tabs-style .menu-tab-style2::-webkit-scrollbar-track,
.flat-tabs .menu-tab-style2::-webkit-scrollbar-track {
  background: #F7F7F7;
  border-radius: 3px;
}
.flat-tabs-style .menu-tab-style2::-webkit-scrollbar-thumb,
.flat-tabs .menu-tab-style2::-webkit-scrollbar-thumb {
  background: #1C1C1C;
  border-radius: 3px;
}
.flat-tabs-style .menu-tab-style3 li .text,
.flat-tabs .menu-tab-style3 li .text {
  color: #9FA1A4;
}
.flat-tabs-style .menu-tab-style3 li.active .text,
.flat-tabs .menu-tab-style3 li.active .text {
  color: #fff;
}
.flat-tabs-style .menu-tab-style1,
.flat-tabs .menu-tab-style1 {
  border-bottom: 2px solid #E7E7E7;
}
.flat-tabs-style .menu-tab-style1 li,
.flat-tabs .menu-tab-style1 li {
  display: block;
  font-weight: 600;
  position: relative;
  padding: 0 16px 6px;
}
.flat-tabs-style .menu-tab-style1 li::before,
.flat-tabs .menu-tab-style1 li::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #990000;
  opacity: 0;
  transition: all 0.3s ease;
}
.flat-tabs-style .menu-tab-style1 li.active::before,
.flat-tabs .menu-tab-style1 li.active::before {
  width: 100%;
  opacity: 1;
}
.flat-tabs-style .menu-tab-style1 li:not(:last-child),
.flat-tabs .menu-tab-style1 li:not(:last-child) {
  margin-right: 24px;
}
.flat-tabs-style .menu-tab-style4,
.flat-tabs .menu-tab-style4 {
  border-bottom: 2px solid #E7E7E7;
}
.flat-tabs-style .menu-tab-style4 li,
.flat-tabs .menu-tab-style4 li {
  display: block;
  position: relative;
  padding-bottom: 7px;
}
.flat-tabs-style .menu-tab-style4 li span,
.flat-tabs .menu-tab-style4 li span {
  color: #4B4B4B;
}
.flat-tabs-style .menu-tab-style4 li::before,
.flat-tabs .menu-tab-style4 li::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #990000;
  opacity: 0;
  transition: all 0.3s ease;
}
.flat-tabs-style .menu-tab-style4 li.active span,
.flat-tabs .menu-tab-style4 li.active span {
  font-weight: 600;
  color: #1C1C1C;
}
.flat-tabs-style .menu-tab-style4 li.active::before,
.flat-tabs .menu-tab-style4 li.active::before {
  width: 100%;
  opacity: 1;
}
.flat-tabs-style .menu-tab-style4 li:not(:last-child),
.flat-tabs .menu-tab-style4 li:not(:last-child) {
  margin-right: 22px;
}
.flat-tabs-style .menu-tab-style6,
.flat-tabs .menu-tab-style6 {
  border-bottom: 2px solid transparent;
}
.flat-tabs-style .menu-tab-style6.primary li:not(:last-child),
.flat-tabs .menu-tab-style6.primary li:not(:last-child) {
  margin-right: 40px;
}
.flat-tabs-style .menu-tab-style6.primary li span,
.flat-tabs .menu-tab-style6.primary li span {
  color: #9FA1A4;
}
.flat-tabs-style .menu-tab-style6.primary li::before,
.flat-tabs .menu-tab-style6.primary li::before {
  background: #1C1C1C;
}
.flat-tabs-style .menu-tab-style6 li,
.flat-tabs .menu-tab-style6 li {
  display: block;
  position: relative;
  padding-bottom: 7px;
}
.flat-tabs-style .menu-tab-style6 li span,
.flat-tabs .menu-tab-style6 li span {
  color: #4B4B4B;
}
.flat-tabs-style .menu-tab-style6 li::before,
.flat-tabs .menu-tab-style6 li::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #990000;
  opacity: 0;
  transition: all 0.3s ease;
}
.flat-tabs-style .menu-tab-style6 li.active span,
.flat-tabs .menu-tab-style6 li.active span {
  font-weight: 600;
  color: #1C1C1C;
}
.flat-tabs-style .menu-tab-style6 li.active::before,
.flat-tabs .menu-tab-style6 li.active::before {
  width: 100%;
  opacity: 1;
}
.flat-tabs-style .menu-tab-style6 li:not(:last-child),
.flat-tabs .menu-tab-style6 li:not(:last-child) {
  margin-right: 48px;
}
.flat-tabs-style .menu-tab-package .item-menu,
.flat-tabs .menu-tab-package .item-menu {
  transition: all 0.3s ease;
  padding: 24px;
  box-shadow: inset 0 0 0 1px #E7E7E7;
  border-radius: 16px;
  width: calc(50% - 16px);
}
.flat-tabs-style .menu-tab-package .item-menu.active, .flat-tabs-style .menu-tab-package .item-menu:hover,
.flat-tabs .menu-tab-package .item-menu.active,
.flat-tabs .menu-tab-package .item-menu:hover {
  box-shadow: inset 0 0 0 2px #6b0000;
}
.flat-tabs-style .content-tab,
.flat-tabs .content-tab {
  position: relative;
}

.content-inner {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  transform: scale(0.9) translate(0, 0%);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.content-inner.active {
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: scale(1) translate(0, 0%);
}

.flat-tabs-style2 {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
.flat-tabs-style2 .menu-tab {
  padding-bottom: 60px;
  border: none;
  justify-content: flex-end;
}
.flat-tabs-style2 .menu-tab li {
  position: relative;
  cursor: pointer;
}
.flat-tabs-style2 .menu-tab li::after {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #171717;
  transition: all 0.3s ease;
  opacity: 0;
}
.flat-tabs-style2 .menu-tab li.active::after {
  opacity: 1;
}
.flat-tabs-style2 .menu-tab li {
  margin-left: 24px;
}
.flat-tabs-style2 .menu-tab li span {
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}
.flat-tabs-style2 .menu-tab li:nth-child(1) {
  margin-right: 0;
  margin-left: 0;
}
.flat-tabs-style2 .menu-tab li:hover span, .flat-tabs-style2 .menu-tab li.active span {
  color: #990000;
}
.flat-tabs-style2 .content-inner {
  display: flex;
  align-items: inherit;
  justify-content: space-between;
}

.tf-about .flat-tabs .content-tab {
  padding-top: 32px;
}
.tf-about .flat-tabs .content-inner p {
  font-weight: 400;
}
.tf-about .menu-tab li {
  position: relative;
  margin-right: 32px;
  font-weight: 600;
  cursor: pointer;
}
.tf-about .menu-tab li:last-child {
  margin-right: 0;
}
.tf-about .menu-tab li::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 50%;
  background-color: #171717;
  opacity: 0;
}
.tf-about .menu-tab li.active::after {
  transition: all 0.5s ease;
  width: 100%;
  opacity: 1;
}

#tab--content {
  position: relative;
  overflow-x: hidden;
}

.tabcontent {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
}
.tabcontent .image .img {
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
}
.tabcontent .image .icon {
  opacity: 0;
  visibility: hidden;
}
.tabcontent.tab-active {
  opacity: 1;
  visibility: visible;
  transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}
.tabcontent.tab-active .image .img {
  transition: all ease-in-out 0.8s;
  -moz-transition: all ease-in-out 0.8s;
  -webkit-transition: all ease-in-out 0.8s;
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.tabcontent.tab-active .image .icon {
  transition: all 0.8s ease 0s;
  opacity: 1;
  visibility: visible;
  transform: rotate(5deg) translateY(0);
}

.tabcontent:first-child {
  position: relative;
}

.tabcontent.tab-active {
  opacity: 1;
  visibility: visible;
  border-top: 0px;
  display: block;
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

.icetab:last-child .service-box {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.icetab.active .service-box .number {
  color: #990000;
}
.icetab.active .service-box .content .title {
  color: #fff;
}
.icetab.active .service-box .icon svg path {
  fill: #fff;
}
.icetab.active .service-box .effect-arow .effect {
  left: 200%;
  opacity: 0;
  visibility: hidden;
}
.icetab.active .service-box .effect-arow .effect-absolute {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.listing-tabs svg circle {
  transition: all 0.3s ease;
}
.listing-tabs .item-menu {
  cursor: pointer;
  transition: all 0.3s ease;
}
.listing-tabs .item-menu:hover, .listing-tabs .item-menu.active {
  display: block;
}
.listing-tabs .item-menu:hover svg rect,
.listing-tabs .item-menu:hover svg circle, .listing-tabs .item-menu.active svg rect,
.listing-tabs .item-menu.active svg circle {
  fill: #1C1C1C;
  stroke: #1C1C1C;
}

/* Box
-------------------------------------------------------------- */
.compare-details {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.compare-details::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 102%;
  left: -2px;
  top: 0;
  transition: 0.3s;
  background-color: #1C1C1C;
  transform: translateX(-103%);
  z-index: -2;
}

.card-box-style-1 {
  display: block;
}
.card-box-style-1 fit-content .content .tag li span {
  color: #4B4B4B;
}
.card-box-style-1 .compare-details {
  border: 2px solid #1C1C1C;
  color: #000000;
  padding: 8px 14px;
  gap: 4px;
  font-size: 14px;
}
.card-box-style-1 .compare-details::after {
  background-color: #1C1C1C;
}
.card-box-style-1.active, .card-box-style-1:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.card-box-style-1.active .card--img, .card-box-style-1:hover .card--img {
  transform: scale(1.1);
}
.card-box-style-1.active .compare-details, .card-box-style-1:hover .compare-details {
  background-color: #1C1C1C;
}
.card-box-style-1.active .compare-details::after, .card-box-style-1:hover .compare-details::after {
  transform: translateX(0);
}
.card-box-style-1.active .compare-details, .card-box-style-1:hover .compare-details {
  color: #fff;
}
.card-box-style-1.active .compare-details svg path, .card-box-style-1:hover .compare-details svg path {
  stroke: #fff;
}
.card-box-style-1.active .card-box__price, .card-box-style-1:hover .card-box__price {
  color: #990000;
}
.card-box-style-1.active .content .card-box__title a, .card-box-style-1:hover .content .card-box__title a {
  text-decoration: underline;
}
.card-box-style-1.active .content .bottom .category a, .card-box-style-1:hover .content .bottom .category a {
  color: white;
  text-decoration: underline;
}

.card-box-style-2 .content .tag li span {
  color: #fff;
}
.card-box-style-2 .content .tag li span {
  color: #9FA1A4;
}
.card-box-style-2.active, .card-box-style-2:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.card-box-style-2.active .card--img, .card-box-style-2:hover .card--img {
  transform: scale(1.1);
}
.card-box-style-2.active .compare-details::after, .card-box-style-2:hover .compare-details::after {
  transform: translateX(0);
}
.card-box-style-2.active .compare-details, .card-box-style-2:hover .compare-details {
  background-color: #fff;
  color: #1C1C1C;
  padding: 8px 14px;
}
.card-box-style-2.active .compare-details svg path, .card-box-style-2:hover .compare-details svg path {
  stroke: #1C1C1C;
}
.card-box-style-2.active .card-box__price, .card-box-style-2:hover .card-box__price {
  color: #990000;
}
.card-box-style-2.active .content .card-box__title a, .card-box-style-2:hover .content .card-box__title a {
  text-decoration: underline;
}
.card-box-style-2.active .content .bottom .category a, .card-box-style-2:hover .content .bottom .category a {
  color: white;
  text-decoration: underline;
}
.card-box-style-2 .compare-details {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 14px;
  gap: 4px;
  font-size: 14px;
}
.card-box-style-2 .compare-details::after {
  background-color: #fff;
}

.card-box {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-box:hover {
  cursor: pointer;
}
.card-box .image {
  position: relative;
  overflow: hidden;
  display: flex;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 520/380;
  clear: unset;
  text-align: unset;
  margin: 0;
}
.card-box .image > a {
  width: 100%;
  height: 100%;
}
.card-box .image .card--img {
  transition: all 0.5s ease;
  border-radius: 16px 16px 0 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-box:hover .top .heart, .card-box.active .top .heart {
  background-color: #fff;
}
.card-box:hover .top .heart svg path, .card-box.active .top .heart svg path {
  fill: #990000;
}
.card-box.active .added {
  display: flex;
}
.card-box.active .compare {
  display: none;
}
.card-box .added {
  display: none;
}
.card-box .top {
  z-index: 1;
  overflow: hidden;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
}
.card-box .top .highlight {
  font-size: 12px;
  line-height: 1.44;
  font-weight: bold;
  padding: 4px 12px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 8px;
}
.card-box .top .highlight svg {
  color: inherit;
}
.card-box .top .heart {
  overflow: hidden;
  position: relative;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-box .top .heart.active, .card-box .top .heart:hover {
  background-color: #fff;
}
.card-box .top .heart.active svg path, .card-box .top .heart:hover svg path {
  fill: #990000;
}
.card-box .bottom {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 12px);
  z-index: 1;
}
.card-box .bottom .category {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  gap: 4px;
  height: 28px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-box .bottom .category > a {
  font-size: 12px;
}
.card-box .bottom .category a:hover {
  color: white;
  text-decoration: underline;
}
.card-box .content {
  position: relative;
  padding: 16px;
  border-radius: 0 0 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-box .content > .divider {
  margin-top: auto;
}
.card-box .content .card-box__title > a,
.card-box .content .card-box__title {
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 500;
}
.card-box .content .tag {
  flex-wrap: wrap;
}
.card-box .content .tag.style2 {
  justify-content: start;
  gap: 8px;
}
.card-box .content .tag.style3 {
  justify-content: start;
  gap: 28px;
}
.card-box .content .tag {
  display: flex;
  justify-content: space-between;
}
.card-box .content .tag li {
  display: flex;
  align-items: center;
}
.card-box .content .tag li img {
  margin-right: 4px;
  width: 16px;
  height: 16px;
}
.card-box .content .tag li svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  margin-right: 4px;
}
.card-box .content .tag li span {
  line-height: 20px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.card-box__price {
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 1.44;
  font-weight: 600;
}
.card-box .view-details {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.card-box-style-3 {
  padding: 24px 0 24px 24px;
  background-color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
  margin-top: 10px;
  width: 100%;
}
.card-box-style-3 .image {
  margin-bottom: 24px;
  min-height: 126px;
}
.card-box-style-3.active, .card-box-style-3:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  transform: translateY(-10px);
}
.card-box-style-3.card-box-blur {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-box-style-4 {
  background-color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
  padding-top: 62px;
}
.card-box-style-4 .image {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  height: 137px;
  width: 100%;
}
.card-box-style-4 .content {
  padding: 24px 20px;
}
.card-box-style-4.active, .card-box-style-4:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  transform: translateY(-10px);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}
.brand-item svg pth,
.brand-item svg g,
.brand-item svg path {
  transition: all 0.3s ease;
}
.brand-item:hover {
  background-color: #fff;
  color: #1C1C1C;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.brand-item:hover img {
  filter: brightness(0);
}
.brand-item:hover svg path {
  stroke: #1C1C1C;
}

.brand-item-style-2 {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  height: 472px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}
.brand-item-style-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.brand-item-style-2 .brand-item-button {
  transition: all 0.3s ease;
  width: calc(100% - 38px);
  position: absolute;
  bottom: 20px;
  color: #fff;
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 112px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}
.brand-item-style-2:hover .brand-item-button {
  background-color: #1C1C1C;
  color: #fff;
}

.brand-item-style-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 56px;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  padding: 11px 27px;
  margin-bottom: 12px;
  gap: 8px;
}
.brand-item-style-3 svg pth,
.brand-item-style-3 svg g,
.brand-item-style-3 svg path {
  transition: all 0.3s ease;
}
.brand-item-style-3:hover {
  color: #1C1C1C;
  background-color: #fff;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.brand-item-style-3:hover svg path {
  stroke: #1C1C1C;
}

.brand-item-small {
  overflow: hidden;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  padding: 0 11px;
  border-radius: 8px;
  gap: 8px;
  transition: all 0.3s ease;
}
.brand-item-small svg pth,
.brand-item-small svg g,
.brand-item-small svg path {
  transition: all 0.3s ease;
}
.brand-item-small:hover {
  background-color: #fff;
  color: #1C1C1C;
}
.brand-item-small:hover svg path {
  stroke: #1C1C1C;
}
.brand-item-small:hover img {
  filter: invert(1);
}

.testimonior-box {
  transition: all 0.3s ease;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
  padding: 32px 31px;
  transform: translateY(0);
  height: 100%;
}
.testimonior-box:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  transform: translateY(-15px);
}
.testimonior-box .testimonial-star rect {
  fill: #F5A623;
}
.testimonior-box--desc {
  font-size: 18px;
  line-height: 28px;
}
.testimonior-box .testimonior-box--user {
  display: flex;
  align-items: center;
}
.testimonior-box .testimonior-box--user .testimonior-box--user-content {
  margin-left: 12px;
}
.testimonior-box .testimonior-box--user .testimonior--img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonior-box .testimonior-box--user .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonior-box .testimonior-box--user .desc {
  font-size: 14px;
  color: #4B4B4B;
}

.out-brand {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px 20px;
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.out-brand .h5 {
  transition: all 0.3s ease;
}
.out-brand.active, .out-brand:hover {
  border-color: #990000;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.out-brand.active .h5, .out-brand:hover .h5 {
  color: #990000;
}
.out-brand--img {
  width: 80px;
  height: 80px;
}

.out-brand-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px;
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px #E7E7E7;
}
.out-brand-2.active, .out-brand-2:hover {
  box-shadow: inset 0 0 0 2px #990000;
}
.out-brand-2--img {
  width: 80px;
  height: 80px;
}

.out-brand-3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 18px 22px;
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px #E7E7E7;
}
.out-brand-3.active, .out-brand-3:hover {
  box-shadow: 0 0 0 2px #990000;
}
.out-brand-3 .out-brand--image {
  margin-bottom: 14px;
  width: auto;
  height: 140px;
}

.out-brand-4 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 32px 8px;
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px #E7E7E7;
}
.out-brand-4.active, .out-brand-4:hover {
  box-shadow: 0 0 0 2px #990000;
}
.out-brand-4--img {
  width: 80px;
  height: 80px;
}

.about-form {
  padding: 26px;
  border: 2px solid #E7E7E7;
  border-radius: 16px;
}

.gap-4 {
  gap: 4px;
}

.car-box {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 4px 12px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.car-box:hover, .car-box.active {
  border-color: #990000;
}

.card-box-style-5 {
  width: 100%;
  background-color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
  margin-top: 12px;
  padding: 15px 0 23px;
}
.card-box-style-5 .image {
  position: relative;
  padding: 0 0 36px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box-style-5 .content {
  margin-top: -10px;
  padding: 0 24px;
}

.card-box-style-6.card-box.active, .card-box-style-6.card-box:hover {
  box-shadow: none;
}
.card-box-style-6.card-box .content {
  padding: 16px 0 0;
}
.card-box-style-6.card-box .content .tag {
  justify-content: flex-start;
  gap: 28px;
}

.card-box-style-7 {
  background-color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
  padding-top: 75px;
}
.card-box-style-7.style2 {
  box-shadow: none !important;
}
.card-box-style-7.blur {
  background-color: rgba(255, 255, 255, 0.1);
}
.card-box-style-7--title {
  height: 52px;
  display: flex;
  align-items: center;
}
.card-box-style-7 .image {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 102px;
  width: 100%;
}
.card-box-style-7 .content {
  padding: 24px 20px 20px;
}
.card-box-style-7 .content.style-2 {
  padding: 28px 0 0px;
}
.card-box-style-7.active, .card-box-style-7:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  transform: translateY(-10px);
}

.card-box-style-8.card-box {
  display: flex;
}
.card-box-style-8.card-box .bottom,
.card-box-style-8.card-box .top {
  width: 314px;
}
.card-box-style-8.card-box .image {
  max-width: 330px;
  border-radius: 16px 0 0 16px;
}
.card-box-style-8.card-box .image .card--img {
  border-radius: 16px 0 0 16px;
}
.card-box-style-8.card-box .bottom {
  position: absolute;
  bottom: 8px;
  z-index: 1;
  top: auto;
}
.card-box-style-8.card-box .content {
  width: calc(100% - 330px);
  border-radius: 0 16px 16px 0;
  border: 1px solid #E7E7E7;
  padding: 42px 20px 0;
}
.card-box-style-8.card-box .content .bottom {
  bottom: 8px;
  top: auto;
}
.card-box-style-8 .content .tag li span {
  color: #4B4B4B;
}
.card-box-style-8 .compare-details {
  border: 2px solid #1C1C1C;
  color: #000000;
  padding: 8px 14px;
  gap: 4px;
  font-size: 14px;
}
.card-box-style-8 .compare-details::before {
  background-color: #1C1C1C;
}
.card-box-style-8.active, .card-box-style-8:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.card-box-style-8.active .card--img, .card-box-style-8:hover .card--img {
  transform: scale(1.1);
}
.card-box-style-8.active .compare-details, .card-box-style-8:hover .compare-details {
  background-color: #1C1C1C;
  color: #fff;
}
.card-box-style-8.active .compare-details::after, .card-box-style-8:hover .compare-details::after {
  transform: translateX(0);
}
.card-box-style-8.active .compare-details svg path, .card-box-style-8:hover .compare-details svg path {
  stroke: #fff;
}
.card-box-style-8.active .card-box__price, .card-box-style-8:hover .card-box__price {
  color: #990000;
}
.card-box-style-8.active .content .card-box__title a, .card-box-style-8:hover .content .card-box__title a {
  text-decoration: underline;
}
.card-box-style-8.active .content .bottom .category a, .card-box-style-8:hover .content .bottom .category a {
  color: white;
  text-decoration: underline;
}

.card-box-style-9.card-box {
  display: flex;
  flex-direction: row;
  height: -moz-fit-content;
  height: fit-content;
}
.card-box-style-9.card-box .bottom,
.card-box-style-9.card-box .top {
  width: 283px;
}
.card-box-style-9.card-box .image {
  max-width: 299px;
  border-radius: 16px 0 0 16px;
  min-height: 225px;
}
.card-box-style-9.card-box .image .card--img {
  border-radius: 16px 0 0 16px;
}
.card-box-style-9.card-box .bottom {
  position: absolute;
  bottom: 8px;
  z-index: 1;
  top: auto;
}
.card-box-style-9.card-box .content {
  width: calc(100% - 299px);
  border-radius: 0 16px 16px 0;
  border: 1px solid #E7E7E7;
  padding: 24px 24px 0;
}
.card-box-style-9.card-box .content .bottom {
  bottom: 8px;
  top: auto;
}
.card-box-style-9 .content .tag li {
  color: #4B4B4B;
}
.card-box-style-9 .content .tag li svg {
  color: #4B4B4B;
}
.card-box-style-9 .content .tag li span {
  color: #4B4B4B;
}
.card-box-style-9 .compare-details {
  border: 2px solid #1C1C1C;
  color: #000000;
  padding: 8px 26px;
  gap: 6px;
  font-size: 14px;
  min-width: 140px;
}
.card-box-style-9 .view-details {
  color: #000000;
}
.card-box-style-9 .view-details svg {
  color: #000000;
}
.card-box-style-9.active, .card-box-style-9:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.card-box-style-9.active .compare-details, .card-box-style-9:hover .compare-details {
  background-color: #1C1C1C;
  color: #fff;
}
.card-box-style-9.active .compare-details svg path, .card-box-style-9:hover .compare-details svg path {
  stroke: #fff;
}
.card-box-style-9.active .content .bottom .category a, .card-box-style-9:hover .content .bottom .category a {
  color: white;
  text-decoration: underline;
}

.car-box-style-2 .card--img {
  transition: all 0.5s ease;
  margin-bottom: 14px;
}
.car-box-style-2 .card--title {
  display: inline;
  font-size: 20px;
  line-height: 1.4px;
  font-weight: 600;
  text-decoration: none;
}
.car-box-style-2:hover .card--img {
  transform: rotateY(-180deg);
}

.car-box-style-3 {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  max-height: 393px;
}
.car-box-style-3 .card--img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.car-box-style-3 .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.car-box-style-3 .content .list {
  margin-bottom: 32px;
}
.car-box-style-3 .content .list li:not(:last-child) {
  margin-bottom: 8px;
}
.car-box-style-3 .content .list li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.car-box-style-4 {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
}
.car-box-style-4 .card--img {
  -o-object-fit: cover;
     object-fit: cover;
}
.car-box-style-4 .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.car-box-style-4 .content .list {
  margin-bottom: 32px;
}
.car-box-style-4 .content .list li:not(:last-child) {
  margin-bottom: 8px;
}
.car-box-style-4 .content .list li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.car-box-style-5 {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  padding: 4px 28px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #fff;
}
.car-box-style-5:hover, .car-box-style-5.active {
  border-color: #fff;
  background-color: #fff;
  color: #1C1C1C;
}

.box-content {
  padding: 40px;
  display: block;
  position: relative;
  overflow: hidden;
}
.box-content .box-content--effect {
  transition: all 0.3s ease;
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #1C1C1C;
  padding: 40px;
}
.box-content.active .box-content--effect, .box-content:hover .box-content--effect {
  bottom: 0;
}

.box-couter-item {
  position: relative;
}
.box-couter-item.outline-right::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.box-couter {
  display: flex;
  justify-content: center;
}
.box-couter .number-content {
  margin-bottom: 4px;
}
.box-couter .number-content,
.box-couter .count-number {
  font-weight: 600;
  font-size: 44px;
  line-height: 50px;
}

.effect-svg-hover:hover svg path {
  stroke: #990000;
}

.effect-svg-primary:hover svg path {
  stroke: #1C1C1C;
}

.caculator-box {
  border-radius: 12px;
}
.caculator-box.outline {
  padding: 40px 40px 38px;
  border: 2px solid #E7E7E7;
}
.caculator-box.blur {
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 38px;
  border-radius: 8px;
}
.caculator-box--image {
  margin-top: 12px;
  margin-left: 87px;
}

.card-details {
  overflow-x: auto;
}
.card-details .w-24 {
  width: 24%;
}
.card-details .w-76 {
  width: 76%;
}
.card-details .card-details--table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  border-radius: 20px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  text-indent: 0;
}
.card-details .card-details--table tr td {
  width: 380px;
  width: 100%;
}
.card-details .card-details--table tr:first-child td {
  border: none;
}
.card-details .card-details--table tr:first-child .top {
  max-width: 350px;
  margin: auto;
}
.card-details .card-details--table tr:first-child .top img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 16px;
}
.card-details .card-details--table tr:first-child .compare-item-remove-table {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
.card-details .card-details--table tr:first-child .compare-item-remove-table svg {
  width: 16px;
  height: 16px;
  color: #333;
}
.card-details .card-details--table tr:first-child .compare-item-remove-table:hover {
  background: #ccc;
}
.card-details .card-details--table tr:nth-child(2) td:first-child {
  border-top-left-radius: 20px;
}
.card-details .card-details--table tr:nth-child(2) td:last-child {
  border-top-right-radius: 20px;
}
.card-details .card-details--table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}
.card-details .card-details--table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
.card-details .card-details--table tr:not(:last-child) td {
  border-bottom: 0;
}
.card-details .card-details--table tr span {
  font-size: 18px;
  font-weight: 500;
}
.card-details .card-details--table tr td:not(:last-child) {
  border-right: 0;
}
.card-details .card-details--table tr td {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 15px 32px;
  border-spacing: 0;
  width: 38%;
  border: 1px solid #E7E7E7;
}
.card-details .card-details--table tr td:nth-child(1) {
  text-align: left;
  width: 24%;
}

.select-item {
  margin: 4px 6px 4px 0;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  padding: 0 12px;
  border-radius: 40px;
  transition: all 0.3s ease;
  border: 1px solid #E7E7E7;
  line-height: 28px;
  height: 30px;
  vertical-align: middle;
}
.select-item.active, .select-item:hover {
  border-color: #1C1C1C;
}
.select-item img {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
  margin-top: -2px;
}

.sale-agent-box .card-top {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.sale-agent-box.active .sale-agent-social li a, .sale-agent-box:hover .sale-agent-social li a {
  bottom: 0;
  opacity: 1;
}
.sale-agent-box.active .sale-agent-title, .sale-agent-box:hover .sale-agent-title {
  text-decoration: underline;
}
.sale-agent-box .sale-agent-title {
  margin-bottom: 4px;
}
.sale-agent-box .sale-agent-social {
  transition: all 0.5s ease;
  position: absolute;
  bottom: 20px;
}
.sale-agent-box .sale-agent-social li {
  width: 40px;
  height: 40px;
}
.sale-agent-box .sale-agent-social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: -100px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  opacity: 0;
}
.sale-agent-box .sale-agent-social li a:hover {
  border-color: #1C1C1C;
  background-color: #1C1C1C;
}
.sale-agent-box .sale-agent-social li a:hover svg path {
  stroke: #fff;
}
.sale-agent-box .card-bottom .contact {
  gap: 8px;
  display: flex;
}
.sale-agent-box .card-bottom .contact li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E7E7;
}
.sale-agent-box .card-bottom .contact li a:hover {
  border-color: #1C1C1C;
  background-color: #1C1C1C;
}
.sale-agent-box .card-bottom .contact li a:hover svg path {
  fill: #fff;
}

.dealer-box {
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  padding: 16px 22px 15px;
  gap: 31.25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dealer-box .icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
}
.dealer-box .icon img {
  width: 24px;
  height: 24px;
}
.dealer-box .image {
  width: 150px;
}
.dealer-box > div:nth-child(1) {
  width: 12%;
}
.dealer-box > div:nth-child(2) {
  padding-left: 2px;
  width: 24%;
}
.dealer-box > div:nth-child(3) {
  padding-left: 6px;
  width: 29.5%;
}
.dealer-box > div:nth-child(4) {
  padding-left: 4px;
  width: 19.5%;
}
.dealer-box > div:nth-child(5) {
  width: 15%;
}
.dealer-box .btn.btn-large {
  padding: 8px 42px;
}
.dealer-box {
  transition: all 0.3s ease;
}
.dealer-box.active, .dealer-box:hover {
  border-color: #6b0000;
}

.border-box {
  border: 2px solid #E7E7E7;
  padding: 26px;
  border-radius: 16px;
}

.price-box {
  border: 1px solid #E7E7E7;
  padding: 32px 16px 31px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.compare-box {
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  padding: 38px;
}

.about-box {
  position: relative;
  padding-bottom: 20px;
  padding-right: 100px;
  display: flex;
}
.about-box .sub-img {
  display: flex;
  background-color: #fff;
  width: 300px;
  height: 300px;
  padding: 20px 0 0 20px;
  position: absolute;
  border-radius: 32px 32px 20px 0;
  position: absolute;
  bottom: 20px;
  right: 30px;
  overflow: hidden;
  z-index: 2;
}
.about-box .sub-img img {
  border-radius: 16px;
}

.about-content {
  padding: 50px 50px 50px 50px;
}
.about-content .btn {
  padding: 8px 40px;
}

.sell-your-car-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.sell-your-car-box-wrapper.style-2 {
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
.sell-your-car-box-wrapper.style-2 .sell-your-car-box::before, .sell-your-car-box-wrapper.style-2 .sell-your-car-box::after {
  width: calc(50% + 50px);
}
.sell-your-car-box-wrapper.style-2 .sell-your-car-box::after {
  right: -50px;
}
.sell-your-car-box-wrapper.style-2 .sell-your-car-box::before {
  left: -50px;
}
.sell-your-car-box-wrapper .sell-your-car-box {
  position: relative;
}
.sell-your-car-box-wrapper .sell-your-car-box::before, .sell-your-car-box-wrapper .sell-your-car-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  height: 2px;
  background-color: #E7E7E7;
  width: calc(50% + 30px);
}
.sell-your-car-box-wrapper .sell-your-car-box::after {
  left: auto;
  right: -30px;
}
.sell-your-car-box-wrapper .sell-your-car-box::before {
  right: auto;
  left: -30px;
}
.sell-your-car-box-wrapper .sell-your-car-box:last-child::after {
  display: none;
}
.sell-your-car-box-wrapper .sell-your-car-box:first-child::before {
  display: none;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step::before {
  background-color: #1C1C1C;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step .number {
  background-color: #1C1C1C;
  color: #fff;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step) .number {
  background-color: #1C1C1C;
  color: #fff;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step)::before, .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box:not(.active-step)::after {
  background-color: #1C1C1C;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box .number {
  background-color: #E7E7E7;
  color: #1C1C1C;
}
.sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box::before, .sell-your-car-box-wrapper:has(.active-step) .sell-your-car-box.active-step ~ .sell-your-car-box::after {
  background-color: #E7E7E7;
}

.sell-your-car-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sell-your-car-box.active .number {
  background-color: #1C1C1C;
  color: #fff;
}
.sell-your-car-box .number {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E7E7E7;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
}

.service-box {
  padding: 40px 38px 36px;
  border: 2px solid #fff;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.service-box:hover {
  border-color: #990000;
}

.services-center-form {
  padding: 24px 28px;
  background-color: #fff;
  border-radius: 20px;
}

.services-center-info {
  padding: 36px 40px 0 0;
}
.services-center-info .contact {
  display: flex;
}
.services-center-info .contact .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.services-center-info .contact .icon img {
  width: 32px;
  height: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  height: 44px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  background-color: #fff;
  padding: 13px 12px;
  gap: 4px;
}
.quantity-selector.style-2 {
  height: 52px;
}
.quantity-selector.style-2 button {
  height: -webkit-fill-available;
}
.quantity-selector svg {
  min-width: 24px;
}
.quantity-selector__value {
  color: #1C1C1C;
  padding: 0;
  border: none;
  text-align: center;
  box-shadow: none !important;
  font-weight: 600;
}

.contact-page-info {
  padding: 38px;
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  max-width: 570px;
}
.contact-page-info .contact {
  display: flex;
}
.contact-page-info .contact > div.icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
}
.contact-page-info .contact > div.icon img {
  width: 24px;
  height: 24px;
}
.contact-page-info .contact > div.icon svg {
  width: 24px;
  height: 24px;
  color: #4B4B4B;
  stroke-width: 1.5;
  border: none;
  border-radius: 0;
  min-width: auto;
}

.contact-page-form textarea {
  height: 172px;
}
.contact-page-form .form-group {
  margin-bottom: 16px;
}
.contact-page-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
.contact-page-form .form-check input[type=checkbox] {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  accent-color: #1C1C1C;
  cursor: pointer;
}
.contact-page-form .form-check .form-check-label {
  cursor: pointer;
  font-size: 14px;
}

.contact-page-info-social li {
  display: flex;
  align-items: center;
}
.contact-page-info-social li a {
  border: 1px solid #E7E7E7;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page-info-social li a:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}

.package-box {
  padding: 24px;
  box-shadow: inset 0 0 0 1px #E7E7E7;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-box .tag {
  position: absolute;
  transition: all 0.3s ease;
  top: -23px;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1C1C1C;
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.package-box .btn {
  margin-top: auto;
}
.package-box:hover, .package-box.active {
  box-shadow: inset 0 0 0 2px #6b0000;
}
.package-box:hover .tag, .package-box.active .tag {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.package-box:hover .btn, .package-box.active .btn {
  background-color: #990000;
  border-color: #990000;
  color: #fff;
}
.package-box .list li {
  display: flex;
  gap: 12px;
}
.package-box .list li img {
  height: 22px;
}
.package-box .btn {
  border: 2px solid #E7E7E7;
  color: #000000;
}
.package-box .btn:hover {
  background-color: #990000;
  border-color: #990000;
  color: #fff;
}

.attachments-box {
  padding: 16px;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
}
.attachments-box .item {
  width: 256px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background-color: #F7F7F7;
  border-radius: 8px;
}
.attachments-box .item .trash {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #F15353;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.attachments-box .file-name {
  color: #4B4B4B;
  display: flex;
  flex-direction: column;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  -webkit-line-clamp: 1;
}

.hightlight-text {
  padding: 11px 15px;
  border-radius: 12px;
  background-color: #F7F7F7;
  border: 1px solid #E7E7E7;
}

.compare-item-list {
  padding-bottom: 16px;
  width: calc(100% - 270px);
  display: flex;
  gap: 24px;
  overflow-x: auto;
}

.compare-action {
  width: 240px;
}

.compare-items {
  display: flex;
  gap: 30px;
}
.compare-items::-webkit-scrollbar {
  height: 4px;
}
.compare-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.compare-items::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}
.compare-items::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.compare-item {
  min-width: 420px;
  width: 100%;
  position: relative;
}
.compare-item-remove {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform 0.3s ease;
}
.compare-item-remove:hover {
  transform: scale(1.1);
}
.compare-item-remove svg {
  width: 24px;
  height: 24px;
}
.compare-item-image {
  width: 106px;
  min-width: 106px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}
.compare-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.compare-item-info {
  flex: 1;
  min-width: 0;
}
.compare-item-info .h7 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.compare-item-info .text-sm {
  font-size: 12px;
}

/* Card Style 2: Minimal/Clean */
.card-box-style-2 .image {
  border-radius: 12px;
  overflow: hidden;
}
.card-box-style-2 .image .card--img {
  border-radius: 12px;
}
.card-box-style-2 .content {
  padding: 12px 0;
  border: none;
}
.card-box-style-2:hover .card--img {
  transform: scale(1.05);
}

/* Card Style 3: Info-Dense */
.card-box-style-3__spec-strip {
  display: flex;
  gap: 16px;
  padding: 8px 12px;
  background: rgba(28, 28, 28, 0.08);
  font-size: 12px;
  flex-wrap: wrap;
}
.card-box-style-3__spec-strip span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4B4B4B;
}
.card-box-style-3:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}
.card-box-style-3:hover .card--img {
  transform: scale(1.1);
}

/* List card style variants */
.card-box-list-style-2.card-box .image {
  flex: 0 0 40%;
  max-width: 40%;
}
.card-box-list-style-2.card-box .content {
  width: 60%;
}

/* Grid
-------------------------------------------------------------- */
.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1199px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1199px) {
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1199px) {
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
}
@media (min-width: 1400px) {
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.gap-22 {
  gap: 22px;
}

.gap-23 {
  gap: 23px;
}

.gap-24 {
  gap: 24px;
}

.gap-26 {
  gap: 26px;
}

.gap-28 {
  gap: 28px;
}

.gap-40 {
  gap: 40px;
}

.gap-48 {
  gap: 48px;
}

/* Blog
-------------------------------------------------------------- */
/* Featured posts widget (above blog list) */
.section-featured-posts .featured-posts-row {
  display: flex;
  gap: 30px;
  min-height: 440px;
}
.section-featured-posts .featured-posts-main {
  flex: 0 0 60%;
  max-width: 60%;
}
.section-featured-posts .card-blog {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.section-featured-posts .card-blog .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.section-featured-posts .card-blog:hover .post--img {
  transform: scale(1.05);
}
.section-featured-posts .card-blog .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.section-featured-posts .featured-posts-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.section-featured-posts .featured-posts-sidebar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}
.section-featured-posts .featured-posts-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.section-featured-posts .featured-posts-sidebar-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  overflow: hidden;
  border-radius: 12px;
}
.section-featured-posts .featured-posts-sidebar-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-featured-posts .featured-posts-sidebar-content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 991px) {
  .section-featured-posts .featured-posts-row {
    flex-direction: column;
    min-height: auto;
  }
  .section-featured-posts .featured-posts-main {
    flex: none;
    max-width: 100%;
  }
  .section-featured-posts .card-blog {
    height: 300px;
  }
}
.innerpage-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.innerpage-container .innerpage__content {
  width: calc(100% - 480px);
}
.innerpage-container .innerpage__sidebar {
  width: 400px;
}

.post {
  position: relative;
  height: 600px;
  background-color: #fff;
  border-radius: 20px;
}
.post.post-effect-style-1 {
  display: block;
}
.post.post-effect-style-1 a {
  transition: all 0.4s ease;
}
.post.post-effect-style-1.active .post--img, .post.post-effect-style-1:hover .post--img {
  max-height: 600px;
}
.post.post-effect-style-1.active .content, .post.post-effect-style-1:hover .content {
  transition: all 0.2s ease;
  border-color: transparent !important;
}
.post.post-effect-style-1.active .content .title,
.post.post-effect-style-1.active .content span, .post.post-effect-style-1:hover .content .title,
.post.post-effect-style-1:hover .content span {
  transition: all 0.6s ease;
}
.post.post-effect-style-1.active .content .title, .post.post-effect-style-1.active .content tags, .post.post-effect-style-1.active .content a, .post.post-effect-style-1.active .content span, .post.post-effect-style-1:hover .content .title, .post.post-effect-style-1:hover .content tags, .post.post-effect-style-1:hover .content a, .post.post-effect-style-1:hover .content span {
  color: #fff;
}
.post.post-effect-style-1 .content {
  position: absolute;
  height: 124px;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 0 0 20px 20px;
  padding: 20px;
}
.post.post-effect-style-1 .content .title,
.post.post-effect-style-1 .content span {
  transition: all 0.3s ease;
}
.post.post-effect-style-1 .content .tags > span,
.post.post-effect-style-1 .content .tags > a {
  font-size: 12px;
  margin-right: 4px;
}
.post.post-effect-style-1 .post--img {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 124px);
  transition: max-height 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-style-2 {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.post-style-2 .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.post-style-2 .title {
  transition: all 0.3s ease;
}
.post-style-2.radius-none {
  border-radius: 0;
}
.post-style-2:hover .post--img {
  transform: scale(1.1);
}
.post-style-2:hover .title {
  color: #990000;
}
.post-style-2 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

.post-style-3 {
  display: flex;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.post-style-3 .post--img {
  width: 48%;
  overflow: hidden;
}
.post-style-3 .post--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.post-style-3 .title {
  transition: all 0.3s ease;
}
.post-style-3:hover .post--img img {
  transform: scale(1.1);
}
.post-style-3:hover .title {
  color: #990000;
}
.post-style-3 .content {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 18px 24px;
  z-index: 1;
}

.post-style-4 {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: all 0.3s ease;
  max-height: 393px;
}
.post-style-4 .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.post-style-4:hover .post--img {
  transform: scale(1.1);
}
.post-style-4 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

.post-style-5 {
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.post-style-5 .post--img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.post-style-5 .post--img img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-style-5:hover .post--img img {
  transform: scale(1.1);
}
.post-style-5 .content {
  width: 100%;
  z-index: 1;
}
.post-style-5 .tags > span {
  position: relative;
}
.post-style-5 .tags > span:not(:last-child) {
  padding-right: 9px;
}
.post-style-5 .tags > span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 1px;
  height: 12px;
  background-color: #E7E7E7;
}

.post-style-6 {
  display: block;
  position: relative;
}
.post-style-6 .post--img {
  min-height: 300px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.post-style-6 .image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
}
.post-style-6 .title {
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.post-style-6:hover .title {
  color: #990000;
}
.post-style-6:hover .post--img {
  transform: scale(1.1);
}
.post-style-6 .content {
  width: 100%;
  z-index: 1;
}

.post-style-7 {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  gap: 30px;
}
.post-style-7 .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.post-style-7 .image {
  overflow: hidden;
  border-radius: 12px;
  width: calc(50% - 25px);
}
.post-style-7 .title {
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: capitalize;
}
.post-style-7:hover .post--img {
  transform: scale(1.1);
}
.post-style-7 .read-more:hover,
.post-style-7 .title:hover {
  color: #990000;
}
.post-style-7 .read-more:hover {
  -webkit-text-decoration: underline #990000;
          text-decoration: underline #990000;
}
.post-style-7 .content {
  width: calc(50% - 15px);
  z-index: 1;
}
.post-style-7 .read-more {
  color: #1C1C1C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.post-style-8 {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.post-style-8 .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
  min-height: 600px;
}
.post-style-8:hover .post--img {
  transform: scale(1.1);
}
.post-style-8 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

.post-style-9 {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.post-style-9 .post--img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
  height: 388px;
}
.post-style-9:hover .post--img {
  transform: scale(1.1);
}
.post-style-9 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

.recent-post {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.recent-post .post--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.recent-post .image {
  width: 100px;
  min-width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
}
.recent-post .title {
  transition: all 0.3s ease;
}
.recent-post:hover .title {
  color: #990000;
}
.recent-post:hover .post--img {
  transform: scale(1.1);
}
.recent-post .content {
  width: 100%;
  z-index: 1;
}

.widget-search {
  position: relative;
}
.widget-search input {
  box-shadow: 0 0 0 2px #E7E7E7 !important;
}
.widget-search input.active, .widget-search input:active, .widget-search input:focus {
  box-shadow: 0 0 0 2px #6b0000 !important;
}
.widget-search .widget-search-btn {
  position: absolute;
  right: 16px;
  top: 12px;
}

.widget-categories li:not(:last-child) {
  margin-bottom: 8px;
}
.widget-categories li a {
  padding: 2px 0;
}
.widget-categories li a .label,
.widget-categories li a span {
  transition: all 0.3s ease;
  color: #4B4B4B;
}
.widget-categories li a .label {
  position: relative;
}
.widget-categories li a .label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1C1C1C;
  transition: all 0.3s ease;
}
.widget-categories li a {
  display: flex;
  justify-content: space-between;
}
.widget-categories li a.active span,
.widget-categories li a.active .label, .widget-categories li a:hover span,
.widget-categories li a:hover .label {
  font-weight: 600;
  color: #1C1C1C;
}
.widget-categories li a.active .label::after, .widget-categories li a:hover .label::after {
  width: 100%;
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.widget-tags li a:hover, .widget-tags li a.active {
  background-color: #1C1C1C;
  color: #fff;
}
.widget-tags li a {
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  font-size: 14px;
  line-height: 22px;
  color: #4B4B4B;
  padding: 4px 15px;
}

.blog-details-banner {
  height: 762px;
  position: relative;
}
.blog-details-banner .breadcrumb-wrapper {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
}
.blog-details-banner .image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.blog-details-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-banner .overlay-image {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
}
.blog-details-banner .content {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  bottom: 40px;
}

.quote {
  border-radius: 12px;
  padding: 26px;
  border: 2px solid #E7E7E7;
  gap: 28px;
  display: flex;
}
.quote .icon-quote {
  width: 40px;
  height: 32px;
}

.blog-detail-tags li {
  display: flex;
  align-items: center;
}
.blog-detail-tags li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5px 12px;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
}
.blog-detail-tags li a:hover {
  background-color: #1C1C1C;
  color: #fff;
}

.blog-detail-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-detail-social .bb-social-sharing .bb-social-sharing__item {
  width: 40px;
  height: 40px;
}
.blog-detail-social .bb-social-sharing .bb-social-sharing__item:hover svg path {
  stroke: #fff;
}

.blog-detail-recentpost {
  display: flex;
}
.blog-detail-recentpost .previous,
.blog-detail-recentpost .next {
  width: 50%;
}
.blog-detail-recentpost .previous a,
.blog-detail-recentpost .next a {
  letter-spacing: 0.2px;
}
.blog-detail-recentpost .previous {
  padding-right: 40px;
  border-right: 1px solid #E7E7E7;
}
.blog-detail-recentpost .next {
  padding-left: 40px;
}

.comments-post {
  display: flex;
  gap: 16px;
}
.comments-post .avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.comments-post .avatar img {
  width: 100%;
  height: 100%;
}
.comments-post.comments-post--inner {
  border: 1px solid #E7E7E7;
  border-left: none;
  border-right: none;
  padding: 21px 0;
  margin-left: 76px;
}

.blog-detail-comment-form {
  border-radius: 16px;
  border: 2px solid #E7E7E7;
  padding: 26px;
}
.blog-detail-comment-form textarea {
  padding: 16px 16px 5px;
}
.blog-detail-comment-form .md-col-span-2 {
  padding: 0;
}

/* fob-comment plugin — theme overrides */
.fob-comment-form-section .fob-comment-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.fob-comment-form-section .fob-comment-form-note {
  color: #4B4B4B;
  margin-bottom: 20px;
  font-size: 14px;
}

.fob-comment-form {
  border-radius: 16px;
  border: 2px solid #E7E7E7;
  padding: 26px;
}
.fob-comment-form .form-group {
  margin-bottom: 16px;
}
.fob-comment-form .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
}
.fob-comment-form input[type=text],
.fob-comment-form input[type=email],
.fob-comment-form input[type=url],
.fob-comment-form textarea {
  width: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 26px;
  background-color: #fff;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.fob-comment-form input[type=text]:focus, .fob-comment-form input[type=text]:active,
.fob-comment-form input[type=email]:focus,
.fob-comment-form input[type=email]:active,
.fob-comment-form input[type=url]:focus,
.fob-comment-form input[type=url]:active,
.fob-comment-form textarea:focus,
.fob-comment-form textarea:active {
  border-color: #6b0000;
  box-shadow: none;
}
.fob-comment-form input[type=text]::-moz-placeholder, .fob-comment-form input[type=email]::-moz-placeholder, .fob-comment-form input[type=url]::-moz-placeholder, .fob-comment-form textarea::-moz-placeholder {
  color: #9FA1A4;
}
.fob-comment-form input[type=text]::placeholder,
.fob-comment-form input[type=email]::placeholder,
.fob-comment-form input[type=url]::placeholder,
.fob-comment-form textarea::placeholder {
  color: #9FA1A4;
}
.fob-comment-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 16px;
}
.fob-comment-form .form-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.fob-comment-form .form-check,
.fob-comment-form .form-group:has(input[type=checkbox]) {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.fob-comment-form .form-check input[type=checkbox],
.fob-comment-form .form-group:has(input[type=checkbox]) input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #990000;
}
.fob-comment-form .form-check label,
.fob-comment-form .form-check span,
.fob-comment-form .form-group:has(input[type=checkbox]) label,
.fob-comment-form .form-group:has(input[type=checkbox]) span {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}
.fob-comment-form button[type=submit],
.fob-comment-form .btn {
  background-color: #1C1C1C;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.fob-comment-form button[type=submit]:hover,
.fob-comment-form .btn:hover {
  background-color: #990000;
}

.fob-comment-list-section .fob-comment-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.fob-comment-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.fob-comment-item .fob-comment-item-avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.fob-comment-item .fob-comment-item-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fob-comment-item .fob-comment-item-author {
  font-weight: 600;
  margin-bottom: 4px;
}
.fob-comment-item .fob-comment-item-date {
  color: #4B4B4B;
  font-size: 14px;
  margin-bottom: 12px;
}
.fob-comment-item .fob-comment-item-content {
  color: #4B4B4B;
  margin-bottom: 12px;
}
.fob-comment-item .fob-comment-item-reply {
  text-decoration: underline;
  font-weight: 600;
  color: #990000;
  cursor: pointer;
  font-size: 14px;
}
.fob-comment-item .fob-comment-item-inner {
  border: 1px solid #E7E7E7;
  border-left: none;
  border-right: none;
  padding: 21px 0;
  margin-left: 76px;
}

.bloc-details-container {
  position: relative;
  background-color: #fff;
  z-index: 2;
  margin: -78px auto 0;
  border-radius: 40px 40px 0 0;
  max-width: 1050px;
  padding: 60px 60px 0;
}
.bloc-details-container .title-2 {
  font-size: 56px;
  line-height: 1.21;
}
.bloc-details-container .listing-details--contact-dealer {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bloc-details-container .listing-details--contact-dealer img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloc-details-container .bloc-details-tag-style-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bloc-details-container .bloc-details-tag-style-2 li a {
  gap: 8px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.bloc-details-container .bloc-details-tag-style-2 li a:hover svg path {
  fill: #990000;
}
.bloc-details-container .bloc-details-tag-style-2 li:not(:last-child) a {
  border-right: 1px solid #E7E7E7;
}

/* Footer
-------------------------------------------------------------- */
.footer {
  position: relative;
  background-color: var(--footer-background-color, #000000);
  color: var(--footer-text-color, #8e8e8e);
}
.footer.bg-dark {
  background-color: #18191B;
}
.footer .footer-top {
  padding-top: 80px;
  padding-bottom: 72px;
}
.footer .footer-top > .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-top > .container > .row .widget-site-information {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
.footer .footer-top > .container > .row .footer-menu-col {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}
.footer .footer-top > .container > .row .widget-footer-contact {
  flex: 0 0 25%;
  max-width: 25%;
}
.footer .footer-top > .container > .row .collapse {
  display: block !important;
}
@media (max-width: 991px) {
  .footer .footer-top > .container > .row .widget-site-information {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .footer .footer-top > .container > .row .footer-menu-col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  .footer .footer-top > .container > .row .widget-footer-contact {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .footer .footer-top > .container > .row .footer-menu-col,
  .footer .footer-top > .container > .row .widget-footer-contact {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .footer-bottom {
  padding: 17px 0;
}
.footer .footer-bottom-links {
  display: flex;
  align-items: center;
}
.footer .footer-bottom-links > li {
  position: relative;
  margin-left: 8px;
  padding-left: 12px;
}
.footer .footer-bottom-links > li:not(:first-child):before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer .footer-bottom-links > li > a {
  font-size: 14px;
  line-height: 22px;
  color: #9FA1A4;
}
.footer .footer-bottom-links > li > a:hover {
  color: #fff;
}
.footer .footer-heading-text {
  color: var(--footer-heading-color, #050b20);
}
.footer .footer-text {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .footer-text a {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .footer-text a:hover {
  color: var(--footer-heading-color, #1C1C1C);
}
.footer .widget-newsletter {
  max-width: 380px;
  margin-top: 20px;
}
.footer .widget-newsletter .text-muted {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .widget-newsletter form {
  position: relative;
}
.footer .widget-newsletter form input[type=email] {
  width: 100%;
  padding-right: 60px;
}
.footer .widget-newsletter form button[type=submit] {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0;
  padding: 0;
}
.footer .widget-newsletter form button[type=submit]::after {
  content: "→";
  font-size: 20px;
  color: #000000;
}
.footer .widget-newsletter form button[type=submit]:hover {
  background-color: #990000;
}
.footer .widget-newsletter form button[type=submit]:hover::after {
  color: #fff;
}
.footer .widget-newsletter form label {
  display: none;
}
.footer .widget-site-information .text-sm, .footer .widget-site-information span, .footer .widget-site-information a:not(.block) {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .widget-site-information svg, .footer .widget-site-information .icon {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .widget-site-information .footer-heading-text {
  color: var(--footer-heading-color, #050b20);
}
.footer .collapse-title {
  color: var(--footer-heading-color, #050b20) !important;
}
.footer .footer-copyright {
  color: var(--footer-text-color, #8e8e8e);
}
.footer .logo {
  height: 54px;
  margin-bottom: 22px;
}
.footer .footer-links {
  padding-left: 45px;
  padding: 0 6px 0 45px;
}
.footer .footer-contact {
  padding-left: 110px;
}
.footer input {
  height: 56px;
  box-shadow: none;
  border-radius: 128px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #9FA1A4;
  padding: 8px 20px;
}
.footer .download-app-badge {
  height: 40px;
  width: auto;
}
.footer .form-footer {
  max-width: 380px;
}
.footer .form-footer .btn-submit {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  background-color: #fff;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .form-footer .btn-submit svg path {
  transition: all 0.3s ease;
}
.footer .form-footer .btn-submit:hover svg path {
  fill: #fff;
}
.footer .form-footer .btn-submit:hover {
  background-color: #990000;
}

/* Widget
-------------------------------------------------------------- */
.widget-links li:not(:last-child) {
  margin-bottom: 4px;
}
.widget-links li a {
  color: var(--footer-text-color, #9FA1A4);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
}
.widget-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--footer-heading-color, #fff);
  transition: all 0.3s ease;
}
.widget-links li a:hover {
  color: var(--footer-heading-color, #1C1C1C);
}
.widget-links li a:hover::before {
  width: 100%;
}

.widget-socical {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.widget-socical li:not(:last-child) {
  margin-bottom: 8px;
}
.widget-socical li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  color: var(--footer-heading-color, #ffffff);
}
.widget-socical li a svg {
  color: var(--footer-heading-color, #ffffff);
}
.widget-socical li a svg path, .widget-socical li a svg circle, .widget-socical li a svg rect, .widget-socical li a svg polygon, .widget-socical li a svg line, .widget-socical li a svg polyline, .widget-socical li a svg ellipse {
  stroke: var(--footer-heading-color, #ffffff);
  transition: all 0.3s ease;
}
.widget-socical li a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1C1C1C;
}
.widget-socical li a:hover svg {
  color: #1C1C1C;
}
.widget-socical li a:hover svg path, .widget-socical li a:hover svg circle, .widget-socical li a:hover svg rect, .widget-socical li a:hover svg polygon, .widget-socical li a:hover svg line, .widget-socical li a:hover svg polyline, .widget-socical li a:hover svg ellipse {
  stroke: #1C1C1C;
}

.title-section {
  gap: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-style li {
  position: relative;
  padding-left: 28px;
}
.list-style li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 4px;
  background-color: #1C1C1C;
  border-radius: 50%;
  left: 11px;
  top: 13px;
}

/* Spacing
-------------------------------------------------------------- */
.ml-60 {
  margin-left: 60px;
}

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

.mb-2 {
  margin-bottom: 2px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-38 {
  margin-top: 38px;
}

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

.mb-12 {
  margin-bottom: 12px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-28 {
  padding-left: 28px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-28 {
  margin-bottom: 28px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-18 {
  margin-right: 18px;
}

.pt-4 {
  padding-top: 4px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-34 {
  margin-bottom: 34px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mb-38 {
  margin-bottom: 38px;
}

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

.mt-32 {
  margin-top: 32px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mt-1 {
  margin-top: 1px;
}

.mt2 {
  margin-top: -2px;
}

.mt-2 {
  margin-top: 2px;
}

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

.mt-16 {
  margin-top: 16px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-6 {
  margin-bottom: 6px;
}

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

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

.mt-28 {
  margin-top: 28px;
}

.mb-24 {
  margin-bottom: 24px;
}

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

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.py-100 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-100 {
  padding-top: 70px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-84 {
  padding-bottom: 84px;
}

.pb-100 {
  padding-bottom: 70px;
}

.mb-14 {
  margin-bottom: 14px;
}

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

.mb-16 {
  margin-bottom: 16px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-12 {
  margin-right: 12px;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-12 {
  margin-left: 12px;
  margin-right: 12px;
}

#filterDivider {
  margin-left: 18px;
  margin-right: 15px;
}

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

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

.mb-22 {
  margin-bottom: 22px;
}

.pl-4 {
  padding-left: 4px;
}

.ml-8 {
  margin-left: 8px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-40 {
  padding-left: 40px;
}

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

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.padding-box-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pb-44 {
  padding-bottom: 44px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mt-8 {
  margin-top: 8px;
}

.counter-spacing {
  padding: 0 52px;
}

.mt-94 {
  margin-top: 94px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-24 {
  margin-right: 24px;
}

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

.mt-92 {
  margin-top: 92px;
}

.px-28 {
  padding: 0 28px;
}

/* Section
-------------------------------------------------------------- */
.section-video {
  position: relative;
  padding: 204px 0;
}
.section-video .overlay.image {
  margin: 0;
}

.show-tablet {
  display: none !important;
}

.why-choose-us {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 56px 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-bottom: 60px;
  align-items: center;
}
.why-choose-us.style2 {
  border-color: #E7E7E7;
  background-color: #fff;
}
.why-choose-us.style3 {
  margin-bottom: 58px;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.cta-section.style-2 .cta--content {
  padding-left: 0;
}
.cta-section.style-2 .cta--image {
  border-radius: 20px;
  overflow: hidden;
}
.cta-section .cta--content {
  width: 53%;
  padding: 10px 65px 0 80px;
}
.cta-section .cta--image {
  width: 47%;
  display: flex;
  height: -webkit-fill-available;
}

.height-650 {
  height: 650px;
}

.height-658 {
  height: 658px;
}

.height-664 {
  height: 664px;
}

.height-840 {
  height: 840px;
}

.home-06 #main-nav .menu > li > a {
  padding: 37px 0;
}

.home-style-9 {
  padding: 40px;
}

.home-style-10 {
  padding: 0 180px;
}

.listing-halfmap {
  padding: 41px 36px 41px 40px;
  max-height: calc(100vh - 94px);
  overflow-y: auto;
}
.listing-halfmap .pagination {
  margin-top: 65px;
}

.search-cars__filter:hover, .search-cars__filter.active {
  background-color: #990000;
  border-color: #990000;
}

.listing-topmap #map {
  height: 602px;
}
.listing-topmap .search-cars__filters {
  border: 2px solid #E7E7E7;
}
.listing-topmap .search-cars__filter {
  border: 1px solid #E7E7E7;
}

.search-cars__select-zip-code .filter-select-dropdown {
  box-shadow: 0 0 0 1px #E7E7E7;
  padding: 20px 26px 0 14px;
  background-image: url(./icons/chevron-down-black.svg);
  background-repeat: no-repeat;
  background-position: right 100px center;
}
.search-cars__select-zip-code .zip-code {
  border-left: 1px solid #E7E7E7;
  padding-left: 12px;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
  top: -11px;
}

.listing-details {
  display: flex;
  gap: 80px;
}
.listing-details--sidebar {
  width: 400px;
}
.listing-details--content {
  width: calc(100% - 480px);
}
.listing-details input {
  border-radius: 12px !important;
}
.listing-details select {
  box-shadow: 0 0 0 1px #E7E7E7 !important;
}
.listing-details select.active, .listing-details select:active, .listing-details select:focus {
  box-shadow: 0 0 0 2px #6b0000 !important;
}
.listing-details--contact-dealer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.listing-details--contact-dealer img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.listing-details--contact-dealer.style-2 img {
  border: 1px solid #E7E7E7;
}
.listing-details--contact-dealer.style-3 img {
  width: 100px;
  height: 100px;
}
.listing-details--contact .contact-info li {
  display: flex;
  gap: 12px;
}
.listing-details--contact .contact-info li .icon {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E7E7;
}
.listing-details--contact .contact-info li .icon img {
  width: 24px;
  height: 24px;
}
.listing-details--contact .contact-info li .icon svg {
  width: 20px;
  height: 20px;
}

.verify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 100px;
  background: rgba(230, 75, 24, 0.1019607843);
  padding: 4px 12px;
}
.verify img {
  width: 16px;
  height: 16px;
}

.listing-details--sidebar-box, .booking-form,
.sale-info, .form-contact-wrapper {
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  padding: 22px;
}
.listing-details--sidebar-box .filter-checkbox span, .booking-form .filter-checkbox span,
.sale-info .filter-checkbox span, .form-contact-wrapper .filter-checkbox span {
  padding-left: 22px;
}
.listing-details--sidebar-box select, .booking-form select,
.sale-info select, .form-contact-wrapper select {
  padding: 13px 16px !important;
}
.listing-details--sidebar-box .core-dropdown__item, .booking-form .core-dropdown__item,
.sale-info .core-dropdown__item, .form-contact-wrapper .core-dropdown__item {
  padding: 8px 0;
}
.listing-details--sidebar-box .core-dropdown__item:not(:last-child), .booking-form .core-dropdown__item:not(:last-child),
.sale-info .core-dropdown__item:not(:last-child), .form-contact-wrapper .core-dropdown__item:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}

.whatsapp-contact-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E7E7E7;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-whatsapp-btn:hover {
  background-color: #128C7E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.contact-whatsapp-btn svg {
  width: 20px;
  height: 20px;
  margin: 0;
}

.financing-calculator {
  padding: 26px;
  border: 2px solid #E7E7E7;
  border-radius: 16px;
}
.financing-calculator .financing-calculator-form {
  display: flex;
  align-items: end;
  gap: 12px;
}
.financing-calculator .financing-calculator-form > div {
  width: calc(100% - 130px);
}
.financing-calculator .financing-calculator-form .btn {
  min-width: 130px;
  width: 130px;
}

.rating-box {
  padding: 26px;
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  background-color: #fff;
}
.rating-box.rating-box-product-detail {
  padding: 36px 38px 40px;
}
.rating-box.rating-box-product-detail .rating-box__content {
  gap: 134px;
}
.rating-box.rating-box-product-detail .rating-box__content .rating-box__distribution {
  padding-left: 14px;
}
.rating-box__content {
  display: flex;
  gap: 64px;
}
.rating-box__overview {
  flex-shrink: 0;
}
.rating-box__average {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rating-box__score {
  font-size: 68px;
  line-height: 76px;
  font-weight: 600;
  color: #1C1C1C;
}
.rating-box__stars {
  display: flex;
  align-items: center;
}
.rating-box__stars img {
  width: 20px;
  height: 20px;
}
.rating-box__count {
  font-size: 14px;
  color: #4B4B4B;
  margin: 0;
}
.rating-box__distribution {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rating-box__button {
  display: flex;
  align-items: center;
}
.rating-box__bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-box__bar-label {
  display: flex;
  gap: 6px;
}
.rating-box__bar-label .text {
  width: 12px;
  display: flex;
}
.rating-box__bar-wrapper {
  flex: 1;
  height: 12px;
  background-color: #E9E9E9;
  border-radius: 1px;
  overflow: hidden;
}
.rating-box__bar {
  height: 100%;
  background-color: #990000;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.rating-box__bar-percent {
  min-width: 38px;
}

.comment-box.border-none {
  border-bottom: none;
}
.comment-box__header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.comment-box__header.gap-12 {
  gap: 12px;
}
.comment-box.style2 {
  border: none;
  padding-bottom: 0;
  margin-bottom: 26px;
}
.comment-box.style2 .comment-box__header {
  align-items: start !important;
}
.comment-box.style2:last-child {
  margin-bottom: 0;
}
.comment-box__avatar {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.comment-box__avatar.guest {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7E7;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.comment-box {
  padding-bottom: 19px;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 28px;
}

.review-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}
.review-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.review-card__date {
  position: relative;
  padding-left: 12px;
}
.review-card__date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4B4B4B;
}

.review-prompt-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px dashed #E7E7E7;
  background: var(--bg-1);
}
.review-prompt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb, 226, 56, 42), 0.1);
  color: #990000;
  margin-bottom: 16px;
}
.review-prompt-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.review-prompt-card__actions .btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.review-prompt-card__actions .btn-primary {
  background-color: #4B4B4B;
  color: #fff;
  border: none;
}
.review-prompt-card__actions .btn-primary:hover {
  opacity: 0.9;
}
.review-prompt-card__actions .btn-line {
  background: transparent;
  color: #4B4B4B;
  border: 2px solid #4B4B4B;
}
.review-prompt-card__actions .btn-line:hover {
  background-color: #4B4B4B;
  color: #fff;
}
.review-prompt-card--success {
  border-style: solid;
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.04);
}
.review-prompt-card--success .review-prompt-card__icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.car-manager-review-form {
  background: var(--bg-1);
  border: 1px solid #E7E7E7;
  border-radius: 16px;
  padding: 32px;
}
.car-manager-review-form .form-group {
  margin-bottom: 20px;
}
.car-manager-review-form label {
  font-weight: 600;
  font-size: 14px;
  color: #1C1C1C;
  margin-bottom: 8px;
}
.car-manager-review-form textarea {
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.car-manager-review-form textarea:focus {
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
  outline: none;
}
.car-manager-review-form .form-hint {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}
.car-manager-review-form .btn-primary {
  background-color: #990000;
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.car-manager-review-form .btn-primary:hover {
  background-color: rgb(127.5, 0, 0);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(153, 0, 0, 0.3);
}

.add-review-form textarea {
  height: 100px;
  padding: 16px;
  border-radius: 12px;
}

.form-rating-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.25rem;
  margin-bottom: 8px;
}
.form-rating-stars .btn-check {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-rating-stars > label {
  cursor: pointer;
  line-height: 1;
  transition: transform 0.15s ease;
}
.form-rating-stars > label:hover {
  transform: scale(1.15);
}
.form-rating-stars > label svg {
  width: 2rem;
  height: 2rem;
}
.form-rating-stars > label .star-outline {
  display: inline-block;
  stroke: #ccc !important;
}
.form-rating-stars > label .star-filled {
  display: none;
  fill: #fab528 !important;
}
.form-rating-stars > input:checked ~ label .star-filled {
  display: inline-block;
}
.form-rating-stars > input:checked ~ label .star-outline {
  display: none;
}
.form-rating-stars > label:hover .star-filled,
.form-rating-stars > label:hover ~ label .star-filled {
  display: inline-block;
}
.form-rating-stars > label:hover .star-outline,
.form-rating-stars > label:hover ~ label .star-outline {
  display: none;
}

.send-inquiry textarea {
  height: 100px;
  padding: 10px 16px;
  border-radius: 12px;
}

.form-contact-wrapper {
  margin-bottom: 40px;
}
.form-contact-wrapper h4, .form-contact-wrapper h5 {
  margin-bottom: 16px;
}
.form-contact-wrapper input, .form-contact-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  margin-bottom: 12px;
}
.form-contact-wrapper textarea {
  height: 100px;
}
.form-contact-wrapper button[type=submit] {
  width: 100%;
}

.booking-form,
.sale-info {
  margin-bottom: 40px;
}

.rating-input__stars {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rating-input.rating-input-style2 .rating-input__stars {
  gap: 0;
}
.rating-input.rating-input-style2 .rating-input__star .star-icon {
  width: 40px;
  height: 40px;
}
.rating-input__star {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.rating-input__star .star-icon {
  width: 20px;
  height: 20px;
}

.car-overview-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.car-overview-list > li {
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.car-overview-list > li img {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.car-overview-list-style2 > li {
  padding-top: 12px;
}
.car-overview-list-style2 > li:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid #E7E7E7;
}

.car-overview-list-style3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.car-overview-list-style3 > li {
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  padding: 20px 16px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.car-overview-list-style3 > li img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.car-overview-list-style4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.car-overview-list-style4 > li {
  gap: 16px;
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  padding: 19px 4px 19px 20px;
  display: flex;
}
.car-overview-list-style4 > li img {
  width: 48px;
  height: 48px;
}
.car-overview-list-style4 > li > p {
  display: flex;
  flex-direction: column;
}

.w-16 {
  width: 16px;
}

.w-80 {
  width: 80px;
}

.w-100 {
  width: 100px;
}

.h-16 {
  height: 16px;
}

.h-24 {
  height: 24px;
}

.max-w-1440 {
  max-width: 1440px;
}

.max-w-1840 {
  max-width: 1840px;
}

.max-w-1920 {
  max-width: 1920px;
}

.max-w-1600 {
  max-width: 1600px;
}

.max-w-1170 {
  max-width: 1170px;
}

.max-w-850 {
  max-width: 850px;
}

/* Contact page — social links
-------------------------------------------------------------- */
.contact-page-social {
  list-style: none;
}
.contact-page-social li {
  display: flex;
  align-items: center;
}
.contact-page-social a {
  border: 1px solid #E7E7E7;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-page-social a svg {
  width: 20px;
  height: 20px;
}
.contact-page-social a:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}
.contact-page-social a:hover svg {
  color: #fff;
}
.contact-page-social a:hover svg path {
  fill: #fff;
}

/* Branch locations — card-contact
-------------------------------------------------------------- */
.card-contact {
  padding: 28px 24px;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}
.card-contact:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.card-contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-contact__icon svg {
  width: 24px;
  height: 24px;
  color: #1C1C1C;
}
.card-contact__title {
  margin-bottom: 16px;
  font-weight: 600;
}
.card-contact__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4B4B4B;
  font-size: 14px;
  line-height: 22px;
}
.card-contact__item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  color: #9FA1A4;
}
.card-contact__item:hover {
  color: #1C1C1C;
}

.slider-style-2 .swiper-pagination {
  bottom: 30px;
}
.slider-style-2 + .search-cars {
  margin-top: -550px;
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
}

.car-type-style-2 .card-popular.background-light {
  background-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}
.car-type-style-2 .card-popular.background-light:hover {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.3);
}
.car-type-style-2 .card-title {
  color: #fff;
}

.pricing-toggle {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 4px;
  display: inline-flex !important;
}
.pricing-toggle__btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  color: #64666c;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.pricing-toggle__btn:hover {
  color: #1c1c1c;
}
.pricing-toggle__btn.active {
  background: #1c1c1c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ck-content > h1, .ck-content > h2, .ck-content > h3, .ck-content > h4, .ck-content > h5, .ck-content > h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.7;
}
.ck-content > h1:first-child, .ck-content > h2:first-child, .ck-content > h3:first-child, .ck-content > h4:first-child, .ck-content > h5:first-child, .ck-content > h6:first-child {
  margin-top: 0;
}
.ck-content > p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b4b4b;
  margin-bottom: 0.8em;
}
.ck-content > p a {
  color: #98bc2a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck-content > p a:hover {
  color: #6e8b1b;
}
.ck-content > ul, .ck-content > ol {
  font-size: 15px;
  line-height: 1.7;
  color: #4b4b4b;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.ck-content > ul li, .ck-content > ol li {
  margin-bottom: 0.3em;
  list-style: disc;
}
.ck-content > ul li a, .ck-content > ol li a {
  color: #98bc2a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck-content > ul li a:hover, .ck-content > ol li a:hover {
  color: #6e8b1b;
}
.ck-content > ol li {
  list-style: decimal;
}
.ck-content > hr {
  border: none !important;
  border-top: 1px solid #e7e7e7 !important;
  margin: 1.5em 0;
  height: 0;
  background: none !important;
}
.ck-content > blockquote a, .ck-content > table td a {
  color: #98bc2a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck-content > blockquote a:hover, .ck-content > table td a:hover {
  color: #6e8b1b;
}
.ck-content > strong {
  font-weight: 700;
}

.is_dark .ck-content > h1, .is_dark .ck-content > h2, .is_dark .ck-content > h3, .is_dark .ck-content > h4, .is_dark .ck-content > h5, .is_dark .ck-content > h6 {
  color: #fff;
}
.is_dark .ck-content > p, .is_dark .ck-content > ul, .is_dark .ck-content > ol {
  color: #c5c5c5;
}
.is_dark .ck-content > p a, .is_dark .ck-content > ul a, .is_dark .ck-content > ol a {
  color: #98bc2a;
}
.is_dark .ck-content > p a:hover, .is_dark .ck-content > ul a:hover, .is_dark .ck-content > ol a:hover {
  color: #b5d640;
}
.is_dark .ck-content > hr {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

.customer-page .profile-card {
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  padding: 32px 20px;
  background: #fff;
}
.customer-page .profile-image {
  width: 100px;
  height: 100px;
}
.customer-page .profile-image .avatar-view img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.customer-page .nav-dashboard {
  margin-top: 8px;
}
.customer-page .nav-dashboard .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64666c;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 2px;
}
.customer-page .nav-dashboard .nav-link .icon {
  width: 18px;
  height: 18px;
}
.customer-page .nav-dashboard .nav-link:hover {
  color: #1c1c1c;
  background: rgba(0, 0, 0, 0.04);
}
.customer-page .nav-dashboard .nav-link.active {
  color: #1c1c1c;
  background: rgba(152, 188, 42, 0.1);
  font-weight: 600;
}
.customer-page .content-card {
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  background: #fff;
  overflow: hidden;
}
.customer-page .content-card > .card-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e7e7e7;
  background: #fafafa;
}
.customer-page .content-card > .card-header .card-title {
  font-size: 18px;
}
.customer-page .content-card > .card-body {
  padding: 24px;
}

.is_dark .pricing-toggle {
  background: rgba(255, 255, 255, 0.1);
}
.is_dark .pricing-toggle .pricing-toggle__btn {
  color: #9fa1a4;
}
.is_dark .pricing-toggle .pricing-toggle__btn:hover {
  color: #fff;
}
.is_dark .pricing-toggle .pricing-toggle__btn.active {
  background: #fff;
  color: #1c1c1c;
}

/* Modal
-------------------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.newsletter-popup {
  --bs-modal-bg: #fff;
  --bs-border-radius-lg: 12px;
  --bs-modal-width: 800px;
  display: none;
  opacity: 1;
  visibility: visible;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.modal.newsletter-popup.show {
  display: flex;
}
.modal.newsletter-popup .modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--bs-modal-width);
  margin: 1.75rem auto;
  background: var(--bs-modal-bg);
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
}
.modal.newsletter-popup .modal-dialog.modal-lg {
  --bs-modal-width: 800px;
}
.modal.newsletter-popup .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 0;
  transform: none;
  border: 0;
  border-radius: 0;
  max-height: none;
}
@media (min-width: 992px) {
  .modal.newsletter-popup .modal-content {
    flex-direction: row;
  }
}
.modal.newsletter-popup .modal-header {
  border-bottom: 0;
}
.modal.newsletter-popup .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  padding: 0.5rem;
  width: 1em;
  height: 1em;
  opacity: 0.5;
  cursor: pointer;
  z-index: 2;
}
.modal.newsletter-popup .btn-close:hover {
  opacity: 1;
}
.modal.newsletter-popup .position-absolute {
  position: absolute;
}
.modal.newsletter-popup .border-0 {
  border: 0;
}
.modal.newsletter-popup .d-flex {
  display: flex;
}
.modal.newsletter-popup .flex-column {
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal.newsletter-popup .flex-md-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .modal.newsletter-popup .flex-lg-row {
    flex-direction: row;
  }
}
.modal.newsletter-popup .align-items-start {
  align-items: flex-start;
}
.modal.newsletter-popup .p-0 {
  padding: 0;
}
@media (min-width: 992px) {
  .modal.newsletter-popup .col-md-6 {
    width: 50%;
    flex-shrink: 0;
  }
}
.modal.newsletter-popup .newsletter-popup-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
  flex: 1;
}
@media (min-width: 768px) {
  .modal.newsletter-popup .newsletter-popup-content {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 767px) {
  .modal.newsletter-popup .newsletter-popup-bg {
    height: 200px;
  }
}
.modal.newsletter-popup .newsletter-popup-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modal.newsletter-popup .newsletter-popup-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.modal.newsletter-popup .modal-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
  font-weight: 500;
}
.modal.newsletter-popup .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C1C1C;
}
.modal.newsletter-popup .modal-text {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.modal.newsletter-popup .fs-2 {
  font-size: 1.5rem;
}
.modal.newsletter-popup .text-muted {
  color: #6c757d;
}
.modal.newsletter-popup input[type=email] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.modal.newsletter-popup input[type=email]:focus {
  border-color: #1C1C1C;
}
.modal.newsletter-popup button[type=submit] {
  width: 100%;
  height: 48px;
  background: #1C1C1C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background-color 0.2s ease;
}
.modal.newsletter-popup button[type=submit]:hover {
  background: #990000;
}
.modal.newsletter-popup .form-check {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  min-height: auto;
}
.modal.newsletter-popup .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  float: none;
  accent-color: #1C1C1C;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
}
.modal.newsletter-popup .form-check input[type=checkbox]:focus {
  outline: none;
  box-shadow: none;
}
.modal.newsletter-popup .form-check label {
  font-size: 13px;
  color: #666;
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .modal.newsletter-popup .modal-dialog.modal-lg {
    max-width: 90%;
  }
  .modal.newsletter-popup .col-md-6 {
    width: 100%;
  }
}
.modal .bg-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.2);
}
.modal .modal-content {
  position: relative;
  max-width: 1450px;
  width: 100%;
  padding: 0 20px;
  max-height: 90vh;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.modal .modal-content .modal-inner {
  flex: auto;
  overflow-y: auto;
  width: 100%;
}
.modal .modal-content .modal-inner::-webkit-scrollbar {
  display: none;
}
.modal .modal-content.modal-sm {
  max-width: 480px;
}
.modal .modal-content.modal-lg {
  max-width: 920px;
}
.modal .modal-container {
  padding: 60px;
  border-radius: 24px;
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: auto;
  height: 100%;
  overflow: hidden;
}
.modal .modal-container.style2 {
  background-color: transparent;
  padding: 0;
  display: flex;
}
.modal .modal-container.style2 .modal-inner {
  display: flex;
  height: 100%;
}
.modal.modal-bottom {
  align-items: end;
  padding-bottom: 24px;
}
.modal.modal-bottom .modal-container {
  padding: 24px;
}
.modal.active .modal-content {
  transform: scale(1) translateY(0);
}
.modal .close-modal {
  position: absolute;
  top: -20px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal .close-modal:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}
.modal-login .close-modal {
  right: 40px;
  top: 20px;
}
.modal-login .modal-container {
  border-radius: 20px;
  padding: 28px 24px;
}
.modal-login form {
  width: 100%;
}
.modal-login form label {
  display: flex;
  flex-direction: column;
}
.modal-login form .px-2 {
  margin-left: 2px;
  margin-right: 2px;
}
.modal-login form .filter-checkbox.style-5 span {
  padding-left: 28px;
}
.modal-login form .social-login a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 152px;
  border: 1px solid #1C1C1C;
  height: 52px;
}
.modal-login .resutl {
  border-radius: 12px;
  padding: 12px 16px;
  background-color: #F7F7F7;
}
.modal.modal-newsletter .close-modal {
  top: 12px;
  right: 32px;
}
.modal.modal-newsletter .modal-container {
  padding: 0;
}
.modal .newsletter--content {
  padding: 28px;
  text-align: center;
}
.modal .newsletter--content .newsletter-social li a {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.modal .newsletter--content .newsletter-form {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.modal .newsletter--content .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 3px;
  width: 100px;
  height: 100%;
  background: #1C1C1C;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 24px;
  border-radius: 8px;
  height: 44px;
}
.modal .newsletter--content .newsletter-form button:hover {
  background-color: #990000;
  color: #fff;
}

.modal-right {
  justify-content: flex-end;
  align-items: center;
}

.modal-right .modal-container {
  height: 100%;
  border-radius: 0;
  overflow-y: auto;
}

.modal-right.active .modal-content {
  transform: translateX(0) !important;
}

.modal-right .modal-container {
  padding: 28px 24px;
}
.modal-right .product-shop {
  display: flex;
  justify-content: space-between;
}
.modal-right .modal-content {
  max-width: 480px;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
.modal-right .ship {
  padding: 16px;
  background: #F7F7F7;
  border-radius: 12px;
}
.modal-right .close-modal {
  top: 24px;
  right: 24px;
}
.modal-right.modal-bottom {
  justify-content: flex-end;
  align-items: flex-end;
}
.modal-right.modal-bottom .modal-content {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 90vh;
  margin: 0;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-right.modal-bottom.active .modal-content {
  transform: translateY(0) !important;
}
.modal-right.modal-bottom .modal-container {
  padding: 24px;
  border-radius: 24px 24px 0 0;
  background: #fff;
}
.modal-right.modal-bottom .close-modal {
  top: 24px;
  right: 24px;
}
.modal-right.modal-bottom .compare-modal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.modal-right.modal-bottom .compare-modal-content .compare-items {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.modal-right.modal-bottom .compare-modal-content .compare-items::-webkit-scrollbar {
  height: 4px;
}
.modal-right.modal-bottom .compare-modal-content .compare-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.modal-right.modal-bottom .compare-modal-content .compare-items::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}
.modal-right.modal-bottom .compare-modal-content .compare-items::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.modal-right.modal-bottom .compare-modal-content .compare-item {
  min-width: 280px;
  position: relative;
  padding: 16px;
  border-radius: 12px;
  background: #F7F7F7;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-remove {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform 0.3s ease;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-remove:hover {
  transform: scale(1.1);
}
.modal-right.modal-bottom .compare-modal-content .compare-item-remove svg {
  width: 24px;
  height: 24px;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-image {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 32px;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-info {
  flex: 1;
  min-width: 0;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-info .h7 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.modal-right.modal-bottom .compare-modal-content .compare-item-info .text-sm {
  font-size: 12px;
}
.modal-right.modal-bottom .compare-modal-content .compare-empty-state {
  width: 100%;
  padding: 40px 20px;
}
.modal-right.modal-bottom .compare-modal-content .compare-empty-state .h5 {
  font-size: 16px;
  line-height: 1.5;
}
.modal-right.modal-bottom .compare-modal-content .compare-action {
  flex-shrink: 0;
}
.modal-right.modal-bottom .compare-modal-content .compare-action .btn {
  min-width: 140px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .modal-right.modal-bottom .compare-modal-content {
    flex-direction: column;
    align-items: stretch;
  }
  .modal-right.modal-bottom .compare-modal-content .compare-action {
    width: 100%;
  }
  .modal-right.modal-bottom .compare-modal-content .compare-action .btn {
    width: 100%;
  }
}
.modal-right.shopping-cart .modal-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-right.shopping-cart .modal-inner .your-order {
  flex: auto;
  overflow-y: auto;
}
.modal-right.shopping-cart .modal-inner .your-order.scroll-custom {
  margin: 0 -24px;
  padding: 0 24px;
}
.modal-right.shopping-cart .modal-inner .your-order .order-item:last-child {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 20px;
  padding-bottom: 19px;
}
.modal-right.quick-view .product-info {
  position: sticky;
  top: 0;
}
.modal-right.quick-view .product-info .modal-inner--title {
  margin-top: -24px;
  position: sticky;
  top: 0;
  padding-top: 28px;
  padding-bottom: 12px;
  z-index: 10;
}
.modal-right.quick-view .product-info .inner-content {
  padding-top: 12px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}
.modal-right.quick-view .product-images {
  width: 340px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-right.quick-view .add-to-cart-btn {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.modal-right.quick-view .add-to-cart-btn .bth-heart {
  width: 52px;
  height: 52px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 52px;
}
.modal-right.quick-view .modal-container {
  padding: 0 24px;
}
.modal-right.quick-view .product-info {
  width: calc(100% - 388px);
}
.modal-right.quick-view .modal-content {
  transform: translateX(0);
}
.modal-right.quick-view .modal-content {
  max-width: 856px;
  margin: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
.modal-right.quick-view .product-thumbnails .thumbnail {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}
.modal-right.quick-view .product-thumbnails .thumbnail:hover {
  border-color: #1C1C1C;
}
.modal-right.modal-team .modal-content {
  max-width: 1080px;
}
.modal-right.modal-team .modal-content .modal-container {
  padding: 40px;
}

.open-modal {
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.search-modal.active {
  opacity: 1;
  visibility: visible;
}
.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.2);
}
.search-modal__content {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
}
.search-modal.active .search-modal__content {
  transform: translateY(0);
}
.search-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  z-index: 10;
  transition: all 0.3s ease;
}
.search-modal__close:hover {
  color: #1C1C1C;
  transform: rotate(90deg);
}
.search-modal__close svg {
  width: 24px;
  height: 24px;
}
.search-modal__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: #1C1C1C;
  margin-bottom: 40px;
  text-align: center;
}
.search-modal__form {
  width: 100%;
  max-width: 800px;
}
.search-modal__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-modal__input-wrapper input {
  box-shadow: none !important;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #E7E7E7;
  padding: 8px 60px 8px 0;
}
.search-modal__input-wrapper input:focus {
  border-color: #990000;
}
.search-modal__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  color: #1C1C1C;
  padding: 10px 0;
  width: 100%;
}
.search-modal__input::-moz-placeholder {
  color: #999;
}
.search-modal__input::placeholder {
  color: #999;
}
@media (max-width: 768px) {
  .search-modal__input {
    font-size: 16px;
  }
}
.search-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search-modal__submit:hover {
  color: #1C1C1C;
}
.search-modal__submit svg {
  width: 24px;
  height: 24px;
}

/* Breadcrumb
-------------------------------------------------------------- */
.breadcrumb-section {
  border-top: 1px solid #E7E7E7;
}

.breadcrumb {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  line-height: 22px;
  padding: 16px 0 18px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 14px;
  line-height: 22px;
}
.breadcrumb span {
  color: #9FA1A4;
}
.breadcrumb .breadcrumb-icon {
  padding-top: 1px;
}
.breadcrumb.breadcrumb-style-2 {
  padding: 0;
}

/* Dropdown
-------------------------------------------------------------- */
.core-dropdown {
  position: relative;
  min-width: 180px;
}
.core-dropdown.style-2 {
  min-width: 140px;
}
.core-dropdown.language-select {
  min-width: auto;
}
.core-dropdown.language-select .core-dropdown__button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 14px;
  padding: 0;
}
.core-dropdown.language-select .core-dropdown__button .icon-chevron {
  margin-bottom: 4px;
}
.core-dropdown.language-select .core-dropdown__menu {
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 14px;
  left: 0;
  right: auto;
}
.core-dropdown.language-select .core-dropdown__list li:not(:last-child) {
  margin-bottom: 4px;
}
.core-dropdown__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #E7E7E7;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}
.core-dropdown__button:hover {
  box-shadow: 0 0 0 2px #6b0000;
}
.core-dropdown__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #6b0000;
}
.core-dropdown__selected {
  color: #1C1C1C;
  flex: 1;
  text-align: left;
}
.core-dropdown__icon {
  width: 20px;
  height: 20px;
}
.core-dropdown__menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  min-width: 100%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.core-dropdown.active .core-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.core-dropdown__list {
  list-style: none;
  padding: 8px 16px;
  margin: 0;
}
.core-dropdown__item {
  margin: 0;
}
.core-dropdown__item:not(:last-child) .core-dropdown__option {
  border-bottom: 1px solid #E7E7E7;
}
.core-dropdown__option {
  display: block;
  padding: 10px 16px;
  color: #1C1C1C;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  padding: 6px 0;
}
.core-dropdown__option:hover, .core-dropdown__option.active {
  background-color: #F7F7F7;
}
.core-dropdown.user-admin .core-dropdown__button {
  box-shadow: none;
  display: flex;
  gap: 8px;
  font-weight: 600;
  background-color: transparent;
}
.core-dropdown.user-admin .core-dropdown__button .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.core-dropdown.user-admin .core-dropdown__menu {
  top: calc(100% + 13px);
  min-width: 240px;
  left: 0;
  right: auto;
}
.core-dropdown.user-admin .user-admin-links {
  padding: 16px;
}
.core-dropdown.user-admin .user-admin-links li a {
  color: #1C1C1C;
  height: 52px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 12px;
  gap: 12px;
  border-radius: 12px;
}
.core-dropdown.user-admin .user-admin-links li a.active, .core-dropdown.user-admin .user-admin-links li a:hover {
  background-color: #990000;
  color: #fff;
}
.core-dropdown.user-admin .user-admin-links li a.active svg path, .core-dropdown.user-admin .user-admin-links li a:hover svg path {
  fill: #fff;
}

.core-dropdown.language-select .core-dropdown__list li {
  color: #1C1C1C;
  transition: all 0.3s ease;
}
.core-dropdown.language-select .core-dropdown__list li:hover {
  color: #990000;
}

/* Filter Sidebar
-------------------------------------------------------------- */
.filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.filter-sidebar.active {
  opacity: 1;
  visibility: visible;
}
.filter-sidebar.active .filter-sidebar__panel {
  transform: translateX(0);
}
.filter-sidebar.active .filter-sidebar__overlay {
  opacity: 1;
}
.filter-sidebar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
}
.filter-sidebar__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.filter-sidebar__panel.right-sidebar {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px 20px 28px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 15;
}
.filter-sidebar__header::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #E7E7E7;
  bottom: 0;
  width: calc(100% - 56px);
}
.filter-sidebar__close {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.filter-sidebar__close img {
  width: 28px;
  height: 28px;
}
.filter-sidebar__content {
  flex: 1;
  padding: 22px 25px 28px 28px;
}
.filter-sidebar__submit {
  width: 100%;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  background-color: #990000;
  color: #fff;
  border-radius: 12px;
}
.filter-sidebar__submit:hover {
  background-color: #1C1C1C;
}
.filter-sidebar .search-cars__range {
  max-width: 100%;
}

.search-cars__range.style2 .search-cars__range-wrapper {
  padding-left: 8px;
  margin-right: 8px;
}
.search-cars__range.style2 .value {
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  height: 40px;
  padding: 4px 12px;
  align-items: center;
  justify-content: space-between;
}

.search-cars__range-wrapper {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  border-radius: 3px;
}
.search-cars__range-wrapper .ui-slider.ui-widget.ui-widget-content {
  height: 6px;
  border: none;
  background: transparent;
  position: relative;
  border-radius: 3px;
}
.search-cars__range-wrapper .ui-slider .ui-slider-range.ui-widget-header {
  background: #990000;
  height: 4px;
  border-radius: 3px;
  position: absolute;
  top: 0;
}
.search-cars__range-wrapper .ui-slider .ui-slider-handle.ui-state-default {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #990000;
  cursor: pointer;
  top: -6px;
  margin-left: -10px;
  outline: none;
  position: absolute;
  z-index: 3;
  transition: all 0.05s ease;
  box-sizing: border-box;
}
.search-cars__range-wrapper .ui-slider .ui-slider-handle.ui-state-default:hover, .search-cars__range-wrapper .ui-slider .ui-slider-handle.ui-state-default:active, .search-cars__range-wrapper .ui-slider .ui-slider-handle.ui-state-default.ui-state-hover, .search-cars__range-wrapper .ui-slider .ui-slider-handle.ui-state-default.ui-state-active {
  background: #fff;
  border-color: #990000;
  box-shadow: 0 0 0 4px rgba(153, 0, 0, 0.15);
}

.filter-price-range-label {
  display: flex;
  position: relative;
}
.filter-price-range-label > p {
  position: relative;
  width: 50%;
}
.filter-price-range-label > p:nth-child(1)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 1px;
  height: calc(100% - 6px);
  background: #E7E7E7;
}
.filter-price-range-label > p:nth-child(2) {
  padding-left: 20px;
}

.filter-label {
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #4B4B4B;
  margin-bottom: 8px;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  color: #1C1C1C;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-select:focus {
  outline: none;
  border-color: #990000;
  box-shadow: 0 0 0 2px rgba(153, 0, 0, 0.1);
}

.filter-search {
  position: relative;
}
.filter-search__input {
  padding: 7px 16px !important;
  padding-right: 44px;
  border-radius: 4px !important;
}
.filter-search__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.filter-checkboxes {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  padding: 12px;
  border-radius: 16px;
}

.filter-range {
  border: 2px solid #E7E7E7;
  border-radius: 12px;
  padding: 14px 14px 6px;
}

.search-cars__select-wrapper .filter-checkbox {
  padding: 10.5px;
}
.search-cars__select-wrapper .filter-checkbox:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1C1C1C;
  position: relative;
}
.filter-checkbox input[type=checkbox],
.filter-checkbox input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.filter-checkbox input[type=checkbox]:checked + span::before,
.filter-checkbox input[type=radio]:checked + span::before {
  background-image: url("./icons/checked-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.filter-checkbox.style-2 input[type=checkbox]:checked + span::before {
  background-image: url("./icons/checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.filter-checkbox.style-3 span {
  padding-left: 24px !important;
}
.filter-checkbox.style-4 span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #4B4B4B;
  padding-left: 32px;
  padding-right: 0;
}
.filter-checkbox.style-4 span::before {
  top: 5px;
  width: 18px;
  height: 18px;
}
.filter-checkbox.style-4 span em {
  color: #4B4B4B;
}
.filter-checkbox.style-5 span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #4B4B4B;
  padding-left: 32px;
  padding-right: 0;
}
.filter-checkbox.style-5 span::before {
  top: 0px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
.filter-checkbox span {
  color: #1C1C1C;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  display: inline-block;
}
.filter-checkbox span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 15px;
  height: 15px;
  background-image: url("./icons/checkbox-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.filter-radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 16px;
}

.filter-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1C1C1C;
  position: relative;
}
.filter-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.filter-radio input[type=radio]:checked + .label-focus::before, .filter-radio input[type=radio]:checked + span::before {
  border-color: #000000;
  background-image: url("./icons/radio-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.filter-radio .label-focus,
.filter-radio span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-left: 21px;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  color: #4B4B4B;
}
.filter-radio .label-focus.top-0::before,
.filter-radio span.top-0::before {
  top: 0 !important;
}
.filter-radio .label-focus::before,
.filter-radio span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("./icons/radio.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.filter-radio-style-2 {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1C1C1C;
  position: relative;
}
.filter-radio-style-2 input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.filter-radio-style-2 input[type=radio]:checked + .label-focus::before {
  border-color: #000000;
  background-image: url("./icons/radio-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.filter-radio-style-2 input[type=radio]:checked + .label-focus span {
  color: #1C1C1C;
}
.filter-radio-style-2 .label-focus {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-left: 21px;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  color: #4B4B4B;
}
.filter-radio-style-2 .label-focus span {
  color: #4B4B4B;
}
.filter-radio-style-2 .label-focus.top-0::before {
  top: 0 !important;
}
.filter-radio-style-2 .label-focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5.5px;
  width: 16px;
  height: 16px;
  background-image: url("./icons/radio.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.filter-radio-style-3 {
  cursor: pointer;
  color: #1C1C1C;
  position: relative;
}
.filter-radio-style-3 input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.filter-radio-style-3 input[type=radio]:checked + .label-focus::before {
  border-color: #000000;
  background-image: url("./icons/radio2-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #1C1C1C;
}
.filter-radio-style-3 .label-focus {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-left: 44px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-self: center;
  font-size: 14px;
  color: #4B4B4B;
}
.filter-radio-style-3 .label-focus.top-0::before {
  top: 0 !important;
}
.filter-radio-style-3 .label-focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("./icons/radio2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.filter-price-range {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-price-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.filter-price-input:focus {
  outline: none;
  border-color: #990000;
  box-shadow: 0 0 0 2px rgba(153, 0, 0, 0.1);
}

.filter-price-separator {
  font-size: 16px;
  color: #1C1C1C;
}

.filter-color-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-color-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.filter-color-btn:hover {
  transform: scale(1.1);
}
.filter-color-btn.active {
  border-color: #990000;
  box-shadow: 0 0 0 2px rgba(153, 0, 0, 0.2);
}

/* Filter Collapse
-------------------------------------------------------------- */
.core-collapse__label {
  cursor: pointer;
  margin-bottom: 15px;
  list-style: none;
}
.core-collapse__icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.core-collapse[open] .core-collapse__label .core-collapse__icon {
  transform: rotate(180deg);
}
.core-collapse:not([open]) .core-collapse__label .core-collapse__icon {
  transform: rotate(0deg);
}

.filter-features {
  display: flex;
  flex-direction: column;
  padding-right: 8px;
  gap: 18px;
  max-height: 1000px;
  opacity: 1;
  transition: all 0.3s ease;
}
.filter-features.style-2 {
  gap: 12px;
  padding-right: 0;
}
.filter-features.scroll-custom {
  max-height: 264px;
  overflow-y: auto;
  margin-right: 8px;
}
.filter-features::-webkit-scrollbar {
  width: 6px;
}
.filter-features::-webkit-scrollbar-track {
  background: #F7F7F7;
  border-radius: 3px;
}
.filter-features::-webkit-scrollbar-thumb {
  background: #1C1C1C;
  border-radius: 3px;
}

/* Filter Color Dropdown (CSS Only)
-------------------------------------------------------------- */
.filter-color-dropdown {
  position: relative;
  width: 100%;
}
.filter-color-dropdown__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-color-dropdown__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  width: 100%;
  transition: all 0.3s ease;
}
.filter-color-dropdown__button:hover {
  border-color: #990000;
}
.filter-color-dropdown__selected {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.filter-color-dropdown__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  border: 1px solid transparent;
}
.filter-color-dropdown__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.filter-color-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 10px 25px 0px rgba(54, 96, 104, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 0;
}
.filter-color-dropdown__toggle:checked ~ .filter-color-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}
.filter-color-dropdown__toggle:checked ~ .filter-color-dropdown__button .filter-color-dropdown__icon {
  transform: rotate(180deg);
}
.filter-color-dropdown__list {
  list-style: none;
  padding: 8px;
  margin: 0;
}
.filter-color-dropdown__item {
  margin: 0;
}
.filter-color-dropdown__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #1C1C1C;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}
.filter-color-dropdown__option:hover {
  background-color: #F7F7F7;
}
.filter-color-dropdown__option input[type=radio],
.filter-color-dropdown__option input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.filter-color-dropdown__option input[type=radio]:checked ~ span:last-child,
.filter-color-dropdown__option input[type=checkbox]:checked ~ span:last-child {
  font-weight: 500;
}
.filter-color-dropdown__option input[type=radio]:checked ~ .filter-color-dropdown__swatch,
.filter-color-dropdown__option input[type=checkbox]:checked ~ .filter-color-dropdown__swatch {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #990000;
}
.filter-color-dropdown__option span:last-child {
  flex: 1;
}

.filter-sidebar-popup .search-cars__select {
  padding: 20px 28px 0 16px;
}
.filter-sidebar-popup .search-cars__label {
  left: 16px;
}
.filter-sidebar-popup .filter-select-dropdown {
  box-shadow: inset 0 0 0 2px #E7E7E7;
}
.filter-sidebar-popup .search-cars__range-wrapper {
  margin-left: 6px;
}
.filter-sidebar-popup .search-cars__range {
  max-width: 100%;
}

/* Filter Select Dropdown Component
-------------------------------------------------------------- */
.filter-select-dropdown {
  z-index: 10;
  display: flex;
  position: relative;
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-image: url(./icons/chevron-down-black.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-shadow: inset 0 0 0 2px transparent;
}
.filter-select-dropdown.style2 {
  box-shadow: inset 0 0 0 1px #E7E7E7;
  padding: 12px;
}
.filter-select-dropdown.active {
  z-index: 11;
}
.filter-select-dropdown:has(.filter-select-dropdown__toggle:checked), .filter-select-dropdown.active {
  box-shadow: 0 0 0 2px #6b0000;
}
.filter-select-dropdown__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-select-dropdown__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  position: relative;
}
.filter-select-dropdown__text span {
  flex: 1;
  text-align: left;
  color: #1C1C1C;
}
.filter-select-dropdown__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.filter-select-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  right: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 16px;
}
.filter-select-dropdown__toggle:checked ~ .filter-select-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-select-dropdown__toggle:checked ~ .filter-select-dropdown__text .filter-select-dropdown__icon {
  transform: translateY(-50%) rotate(180deg);
}
.filter-select-dropdown__toggle:checked ~ .filter-select-dropdown__button .filter-select-dropdown__icon {
  transform: rotate(180deg);
}
.filter-select-dropdown__search {
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #E7E7E7;
}
.filter-select-dropdown__search-input {
  width: 100%;
  padding: 10px 16px;
  padding-right: 44px;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.filter-select-dropdown__search-input:focus {
  outline: none;
  border-color: #990000;
  box-shadow: 0 0 0 2px rgba(153, 0, 0, 0.1);
}
.filter-select-dropdown__search-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.filter-select-dropdown__list {
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 98;
}
.filter-select-dropdown__list::-webkit-scrollbar {
  width: 6px;
}
.filter-select-dropdown__list::-webkit-scrollbar-track {
  background: #F7F7F7;
  border-radius: 3px;
}
.filter-select-dropdown__list::-webkit-scrollbar-thumb {
  background: #1C1C1C;
  border-radius: 3px;
}
.filter-select-dropdown__list .filter-checkbox {
  padding: 10px 12px;
  border-bottom: 1px solid #E7E7E7;
  margin: 0;
}
.filter-select-dropdown__list .filter-checkbox:last-child {
  border-bottom: none;
}

.filter-location-input {
  padding-left: 35px !important;
}

/* Desktop Filter Sidebar Card
-------------------------------------------------------------- */
.filter-sidebar-desktop-card {
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 20px;
  background: #fff;
}

.filter-sidebar-desktop-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #1C1C1C;
  border-radius: 20px 20px 0 0;
}
.filter-sidebar-desktop-header__icon {
  width: 36px;
  height: 36px;
  background: #990000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.filter-sidebar-desktop-header__title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--heading-font, "Albert Sans", sans-serif);
}

.filter-sidebar-desktop-body {
  padding: 4px 16px 20px;
}
.filter-sidebar-desktop-body.filter-sidebar-popup .search-cars__select {
  padding: 18px 32px 0 14px;
}
.filter-sidebar-desktop-body.filter-sidebar-popup .search-cars__label {
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9FA1A4;
}
.filter-sidebar-desktop-body > .search-cars__select-wrapper,
.filter-sidebar-desktop-body > .filter-group.filter-range,
.filter-sidebar-desktop-body > .filter-group {
  margin-bottom: 0 !important;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E7E7E7;
}
.filter-sidebar-desktop-body.filter-sidebar-popup .filter-select-dropdown {
  background: #F7F7F7;
  box-shadow: none;
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.filter-sidebar-desktop-body.filter-sidebar-popup .filter-select-dropdown:has(.filter-select-dropdown__toggle:checked), .filter-sidebar-desktop-body.filter-sidebar-popup .filter-select-dropdown.active {
  background: #fff;
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}
.filter-sidebar-desktop-body .filter-range {
  border-color: #E7E7E7;
  background: #F7F7F7;
}
.filter-sidebar-desktop-body .filter-sidebar__submit {
  background: #990000;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  height: 52px;
  gap: 8px;
  margin-top: 6px;
  box-shadow: 0 4px 18px rgba(153, 0, 0, 0.32);
  transition: all 0.25s ease;
}
.filter-sidebar-desktop-body .filter-sidebar__submit:hover {
  background: #7a0000;
  box-shadow: 0 8px 28px rgba(153, 0, 0, 0.42);
  transform: translateY(-2px);
}
.filter-sidebar-desktop-body .filter-sidebar__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(153, 0, 0, 0.28);
}

/* Animate
-------------------------------------------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.zoom-in-out-box {
  animation: zoom-in-zoom-out 2s ease infinite;
}

.pulse_three {
  animation: pulse_three 3s linear infinite;
}

@keyframes pulse_three {
  0% {
    box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff, 0 0 0 0 #fff;
  }
  25% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  75% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.3, 1.3);
  }
  100% {
    transform: scale(1, 1);
  }
}
.d-rotate {
  perspective: 1000px;
}

.d-rotate .rotate-text {
  display: block;
  transform-style: preserve-3d;
  transition: all 0.8s;
  transform-origin: 50% 0%;
  transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
  opacity: 0;
  transition-delay: 0.3s;
}

.img-animation {
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  transform: scale(1.05);
  filter: blur(5px);
  transition: clip-path 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 1.1s, filter 0.5s ease-in-out 1.1s;
  position: relative;
}

.img-animation.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
  filter: blur(0px);
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -30px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes move2 {
  0% {
    transform: rotate(1deg) translate(2px, 2px);
  }
  50% {
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  100% {
    transform: rotate(1deg) translate(2px, 2px);
  }
}
@keyframes move3 {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(30px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes move5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes myanimation {
  0% {
    width: 0;
  }
}
@keyframes myanimation {
  0% {
    width: 0;
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.move1 {
  animation: move1 5s infinite linear;
}

.move2 {
  animation: move2 5s infinite linear;
}

.move3 {
  animation: move3 5s infinite linear;
}

.move5 {
  animation: move5 5s infinite linear;
}

/* -------------------------------- 

Primary style

-------------------------------- */
/* .animationtext {
  font-size: 3rem;
  line-height: 1.2;
}

.animationtext.font-style-normal i,
.animationtext.font-style-normal em {
  font-style: normal;
}

.animationtext .item-text {
    margin: 0;
}

@media only screen and (min-width: 768px) {
  .animationtext {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .animationtext {
    font-size: 6rem;
  }
} */
.animationtext {
  max-height: 170px;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper .item-text {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-weight: inherit;
}

.cd-words-wrapper .item-text.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper .item-text {
  opacity: 0;
}

.no-js .cd-words-wrapper .item-text.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xrotate-1 

-------------------------------- */
.animationtext.rotate-1 .cd-words-wrapper {
  perspective: 300px;
}

.animationtext.rotate-1 .item-text {
  opacity: 0;
  transform-origin: 50% 100%;
  transform: rotateX(180deg);
}

.animationtext.rotate-1 .item-text.is-visible {
  opacity: 1;
  transform: rotateX(0deg);
  animation: cd-rotate-1-in 1.2s;
}

.animationtext.rotate-1 .item-text.is-hidden {
  transform: rotateX(180deg);
  animation: cd-rotate-1-out 1.2s;
}
@keyframes cd-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}
/* -------------------------------- 

xtype 

-------------------------------- */
.animationtext.type .cd-words-wrapper {
  vertical-align: top;
  overflow: hidden;
}

.animationtext.type .cd-words-wrapper::after {
  /* vertical bar */
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: #C8F27C;
}

.animationtext.type .cd-words-wrapper.waiting::after {
  animation: cd-pulse 10s infinite;
}

.animationtext.type .cd-words-wrapper.selected {
  background-color: #C8F27C;
}

.animationtext.type .cd-words-wrapper.selected::after {
  visibility: hidden;
}

.animationtext.type .cd-words-wrapper.selected .item-text {
  color: #0d0d0d;
}

.animationtext.type .item-text {
  visibility: hidden;
}

.animationtext.type .item-text.is-visible {
  visibility: visible;
}

.animationtext.type i {
  position: absolute;
  visibility: hidden;
}

.animationtext.type i.in {
  position: relative;
  visibility: visible;
}
@keyframes cd-pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
/* -------------------------------- 

xrotate-2 

-------------------------------- */
.animationtext.rotate-2 .cd-words-wrapper {
  perspective: 300px;
}

.animationtext.rotate-2 i, .animationtext.rotate-2 em {
  display: inline-block;
  backface-visibility: hidden;
}

.animationtext.rotate-2 .item-text {
  opacity: 0;
}

.animationtext.rotate-2 i {
  transform-style: preserve-3d;
  transform: translateZ(-30px) rotateX(90deg);
  opacity: 0;
}

.is-visible .animationtext.rotate-2 i {
  opacity: 1;
}

.animationtext.rotate-2 i.in {
  animation: cd-rotate-2-in 0.4s forwards;
}

.animationtext.rotate-2 i.out {
  animation: cd-rotate-2-out 0.4s forwards;
}

.animationtext.rotate-2 em {
  transform: translateZ(30px);
}

.no-csstransitions .animationtext.rotate-2 i {
  transform: rotateX(0deg);
  opacity: 0;
}

.no-csstransitions .animationtext.rotate-2 i em {
  transform: scale(1);
}

.no-csstransitions .animationtext.rotate-2 .is-visible i {
  opacity: 1;
}
@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    transform: translateZ(-30px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    transform: translateZ(-30px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(-30px) rotateX(0deg);
  }
}
@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    transform: translateZ(-30px) rotateX(0);
  }
  60% {
    opacity: 0;
    transform: translateZ(-30px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    transform: translateZ(-30px) rotateX(-90deg);
  }
}
/* -------------------------------- 

xloading-bar 

-------------------------------- */
.animationtext.loading-bar span {
  display: inline-block;
  padding: 0.2em 0;
}

.animationtext.loading-bar .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.animationtext.loading-bar .cd-words-wrapper::after {
  /* loading bar */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #C8F27C;
  z-index: 2;
  transition: width 0.3s -0.1s;
}

.animationtext.loading-bar .cd-words-wrapper.is-loading::after {
  width: 100%;
  transition: width 3s;
}

.animationtext.loading-bar .item-text {
  top: 0.2em;
  opacity: 0;
  transition: opacity 0.3s;
}

.animationtext.loading-bar .item-text.is-visible {
  opacity: 1;
  top: 0;
}

/* -------------------------------- 

xslide 

-------------------------------- */
.animationtext.slide span {
  display: inline-block;
  /* padding: .2em 0; */
}

.animationtext.slide .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.animationtext.slide .item-text {
  opacity: 0;
  top: 0.2em;
}

.animationtext.slide .item-text.is-visible {
  top: 0;
  opacity: 1;
  animation: slide-in 0.6s;
}

.animationtext.slide .item-text.is-hidden {
  animation: slide-out 0.6s;
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
/* -------------------------------- 

xclip 

-------------------------------- */
.animationtext.clip span {
  display: inline-block;
  padding: 0;
}

.animationtext.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.animationtext.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: #C8F27C;
}

.animationtext.clip .item-text {
  opacity: 0;
}

.animationtext.clip .item-text.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xzoom 

-------------------------------- */
.animationtext.zoom .cd-words-wrapper {
  perspective: 300px;
}

.animationtext.zoom .item-text {
  opacity: 0;
}

.animationtext.zoom .item-text.is-visible {
  opacity: 1;
  animation: zoom-in 0.8s;
}

.animationtext.zoom .item-text.is-hidden {
  animation: zoom-out 0.8s;
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateZ(-100px);
  }
}
/* -------------------------------- 

xrotate-3 

-------------------------------- */
.animationtext.rotate-3 .cd-words-wrapper {
  perspective: 300px;
}

.animationtext.rotate-3 .item-text {
  opacity: 0;
}

.animationtext.rotate-3 i {
  display: inline-block;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.is-visible .animationtext.rotate-3 i {
  transform: rotateY(0deg);
}

.animationtext.rotate-3 i.in {
  animation: cd-rotate-3-in 0.6s forwards;
}

.animationtext.rotate-3 i.out {
  animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .animationtext.rotate-3 i {
  transform: rotateY(0deg);
  opacity: 0;
}

.no-csstransitions .animationtext.rotate-3 .is-visible i {
  opacity: 1;
}
@keyframes cd-rotate-3-in {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes cd-rotate-3-out {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
/* -------------------------------- 

xscale 

-------------------------------- */
.animationtext.scale .item-text {
  opacity: 0;
}

.animationtext.scale .item-text.is-visible {
  opacity: 1;
}

.animationtext.scale i {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
}

/*.is-visible .animationtext.scale i {
  opacity: 1;
}*/
.animationtext.scale .item-text.is-visible {
  animation: scale-up 0.6s forwards;
}

.animationtext.scale .item-text {
  animation: scale-down 0.6s forwards;
}

.no-csstransitions .animationtext.scale .item-text {
  transform: scale(1);
  opacity: 0;
}

.no-csstransitions .animationtext.scale .is-visible i {
  opacity: 1;
}
@keyframes scale-up {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(0);
    opacity: 0;
  }
}
/* -------------------------------- 

xpush 

-------------------------------- */
.animationtext.push .item-text {
  opacity: 0;
}

.animationtext.push .item-text.is-visible {
  opacity: 1;
  animation: push-in 0.6s;
}

.animationtext.push .item-text.is-hidden {
  animation: push-out 0.6s;
}
@keyframes push-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  60% {
    opacity: 0;
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.d-rotate.animated .rotate-text {
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
  opacity: 1;
}

.image-effect-scale.img,
.image-effect-scale > img {
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  transform: scale(1);
}
.image-effect-scale.img:hover,
.image-effect-scale > img:hover {
  transform: scale(1.05);
}

.simpleParallax {
  height: 100%;
  width: 100%;
}
.simpleParallax img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Pagination
-------------------------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  font-weight: 600;
}
.pagination__link.active, .pagination__link:hover {
  background-color: #1C1C1C;
  color: #fff;
  border-color: #1C1C1C;
}
.pagination__link.active svg path, .pagination__link:hover svg path {
  fill: #fff;
}

/* Accordion
-------------------------------------------------------------- */
.flat-accordion.style-2 .flat-toggle {
  padding: 13px 20px;
}
.flat-accordion.style-2 .flat-toggle .toggle-title {
  height: 26px;
}
.flat-accordion.style-2 .flat-toggle.active {
  padding: 20px;
}
.flat-accordion .flat-toggle {
  padding: 20px 28px;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
}
.flat-accordion .flat-toggle .toggle-title {
  padding-right: 40px;
  position: relative;
  text-transform: capitalize;
}
.flat-accordion .flat-toggle .toggle-title:hover {
  cursor: pointer;
}
.flat-accordion .flat-toggle .toggle-title.active .icon {
  transform: rotate(0);
}
.flat-accordion .flat-toggle .toggle-title .icon {
  display: flex;
  position: absolute;
  right: 0;
  top: 2px;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.flat-accordion .flat-toggle .toggle-content {
  display: none;
  margin-top: 6px;
}

/* Collapse
-------------------------------------------------------------- */
.collapse-title {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.collapse-title .icon {
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product {
  background-color: #fff;
  border-radius: 20px;
}
.product .product-top {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  height: 330px;
}
.product .product-top .img {
  width: 100%;
  height: 100%;
}
.product .product-top .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product-add-to-cart {
  width: calc(100% - 32px);
  background-color: #1C1C1C;
  border-radius: 8px;
  position: absolute;
  bottom: -20px;
  left: 16px;
  z-index: 1;
  height: 40px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.product .product-add-to-cart:hover {
  background-color: #990000;
}
.product .promotion {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 100px;
  z-index: 3;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}
.product .actions {
  transition: all 0.3s ease;
  position: absolute;
  top: 16px;
  right: -20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
}
.product .action {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E7E7E7;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product .action:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}
.product .action:hover svg path {
  fill: #fff;
}
.product .price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product.active .product-add-to-cart, .product:hover .product-add-to-cart {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
}
.product.active .actions, .product:hover .actions {
  right: 16px;
  opacity: 1;
  visibility: visible;
}

.price-old {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #4B4B4B;
  color: #4B4B4B;
}

.sale-box {
  padding: 0 8px;
  border-radius: 100px;
  font-weight: 600;
  background-color: #1C1C1C;
}

.car-detail-share .share-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px;
  min-width: 160px;
}
.car-detail-share .share-dropdown .bb-social-sharing {
  flex-direction: column;
  gap: 4px;
}
.car-detail-share .share-dropdown .bb-social-sharing .bb-social-sharing__item {
  width: auto;
  height: auto;
  border: none;
  border-radius: 8px;
  padding: 6px 8px;
}
.car-detail-share .share-dropdown .bb-social-sharing .bb-social-sharing__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
}
.car-detail-share .share-dropdown .bb-social-sharing .bb-social-sharing__item .bb-social-sharing-text {
  display: inline;
}

/* Select
-------------------------------------------------------------- */
.custom-select {
  position: relative;
  width: 100%;
}

.select-selected {
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #E7E7E7;
  cursor: pointer;
  background: #fff;
}
.select-selected:focus-within, .select-selected:active, .select-selected:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
.select-selected.select--white {
  background-image: url("./icons/chevron-down-white.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-position-y: calc(50% - 2px);
}
.select-selected.select--black {
  background-image: url("./icons/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-position-y: calc(50% - 2px);
}

.select-items {
  position: absolute;
  width: calc(100% + 4px);
  background: #fff;
  display: none;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0px 10px 25px 0px rgba(54, 96, 104, 0.1);
  margin-top: 4px;
  transform: translateX(-2px);
  transition: all 0.3s ease;
}

.select-items div {
  padding: 10px;
  cursor: pointer;
}

.select-items div:hover {
  background: #f0f0f0;
}

/* Shortcode Utilities — Bootstrap-compatible & missing utility classes
-------------------------------------------------------------- */
.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.text-success {
  color: #198754 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-decoration-none {
  text-decoration: none !important;
}

.truncate-1-custom {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-12 {
  border-radius: 12px !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-start-pill {
  border-top-left-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 576px) {
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333%;
  }
}

@media (min-width: 992px) {
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6667%;
  }
}

.pt-1 {
  padding-top: 1px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-80 {
  padding-bottom: 80px;
}

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

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

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

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

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

.mt-60 {
  margin-top: 60px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

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

.p-30 {
  padding: 30px;
}

.p-5 {
  padding: 3rem;
}

.p-1 {
  padding: 0.25rem;
}

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

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

.me-3 {
  margin-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-0 {
  margin: 0 !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

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

.mb-1 {
  margin-bottom: 1px;
}

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

.mt-auto {
  margin-top: auto !important;
}

.bdrd8 {
  border-radius: 8px;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .pt-lg-60 {
    padding-top: 60px;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .w-lg-55 {
    width: 55%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
}
@media (min-width: 992px) {
  .offset-lg-1 {
    margin-left: 8.3333%;
  }
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.g-3 > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.g-4 > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

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

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

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.top-50 {
  top: 50%;
}

.top-100 {
  top: 100%;
}

.start-50 {
  left: 50%;
}

.start-100 {
  left: 100%;
}

.left-50 {
  left: 50%;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.end-0 {
  right: 0;
}

.h-75 {
  height: 75%;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.z-0 {
  z-index: 0;
}

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

.capitalize {
  text-transform: capitalize;
}

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

.text-md {
  font-size: 16px;
  line-height: 26px;
}

.text-dark {
  color: #1C1C1C !important;
}

.text-bold {
  font-weight: 700;
}

.relative {
  position: relative;
}

.border {
  border: 1px solid #E7E7E7 !important;
}

.border-top {
  border-top: 1px solid #E7E7E7;
}

.flex-col {
  flex-direction: column;
}

.line-height-28 {
  line-height: 28px;
}

.w-68 {
  width: 68%;
}

.font-main-2 {
  font-family: var(--heading-font, "Albert Sans", sans-serif);
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.gap-24 {
  gap: 24px;
}

.gap-26 {
  gap: 26px;
}

.gap-40 {
  gap: 40px;
}

.background-0 {
  background: transparent;
}

.text-ellipsis,
.text-ellipsis-2-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis {
  -webkit-line-clamp: 1;
}

.text-ellipsis-2-lines {
  -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
  .h-706 {
    height: 65vh;
    min-height: 320px;
  }
  .h-800 {
    height: 70vh;
    min-height: 350px;
  }
  #js-box-search-advance {
    margin-top: -230px !important;
    padding: 0 16px 30px !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    z-index: 3 !important;
    position: relative !important;
  }
  #js-box-search-advance .search-cars__title {
    color: #fff !important;
    font-size: clamp(22px, 6.5vw, 32px) !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 12px rgba(0, 0, 0, 0.7) !important;
    margin-bottom: 6px !important;
  }
  #js-box-search-advance .search-cars__subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 14px !important;
  }
  #js-box-search-advance .flat-tabs {
    margin-bottom: 12px !important;
  }
  #js-box-search-advance .menu-tab li {
    padding: 4px 0 !important;
  }
  #js-box-search-advance .menu-tab {
    gap: 8px !important;
  }
  #js-box-search-advance .menu-tab li span {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
    padding: 6px 16px !important;
    border-radius: 100px !important;
  }
  #js-box-search-advance .menu-tab li.active span {
    background-color: #990000 !important;
    color: #fff !important;
    opacity: 1 !important;
  }
  #js-box-search-advance .menu-tab::after, #js-box-search-advance .menu-tab::before {
    display: none !important;
  }
  #js-box-search-advance .menu-tab-style1 {
    border-bottom: none !important;
  }
  #js-box-search-advance .menu-tab-style1 li::before {
    display: none !important;
  }
  #js-box-search-advance .search-cars__filters {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 16px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
    backdrop-filter: none !important;
  }
  #js-box-search-advance .search-cars__filters .search-cars__select-wrapper {
    width: 100% !important;
  }
  #js-box-search-advance .search-cars__filter {
    width: 100% !important;
    border: 1px solid #E7E7E7 !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #1C1C1C !important;
    background: #fff !important;
    cursor: pointer;
  }
  #js-box-search-advance .search-cars__filter:hover, #js-box-search-advance .search-cars__filter:active, #js-box-search-advance .search-cars__filter:focus {
    background: #F7F7F7 !important;
  }
  #js-box-search-advance .search-cars__filter-label {
    display: inline !important;
    font-weight: 500;
  }
  #js-box-search-advance button.search-cars__search {
    width: 100% !important;
    border-radius: 12px !important;
  }
  .category-list {
    display: none !important;
  }
  .search-cars__advanced.mobile-offcanvas-active {
    display: block !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background: #fff;
    overflow-y: auto;
    padding: 16px 20px;
    animation: slideUp 0.3s ease;
  }
  .search-cars__advanced.mobile-offcanvas-active .search-cars__advanced-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .search-cars__advanced.mobile-offcanvas-active .search-cars__select-wrapper {
    width: 100% !important;
  }
}
.advanced-filters-header {
  display: none;
}

@media (max-width: 767px) {
  .mobile-offcanvas-active .advanced-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 16px;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 16px;
  }
  .mobile-offcanvas-active .advanced-filters-header h5 {
    margin: 0;
    font-weight: 600;
  }
  .mobile-offcanvas-active .advanced-filters-header .advanced-filters-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E7E7E7;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.search-cars__filter-label {
  display: none;
}

@media (max-width: 1199px) {
  .xl-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .lg-grid-cols-1 {
    grid-template-columns: 1fr;
  }
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .md-grid-cols-1 {
    grid-template-columns: 1fr;
  }
  .md-colspan-1 {
    grid-column: span 1;
  }
  .md-ml-0 {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .sm-grid-cols-1 {
    grid-template-columns: 1fr;
  }
  .sm-flex-col {
    flex-direction: column;
  }
  .sm-items-start {
    align-items: flex-start;
  }
  .sm-gap-16 {
    gap: 16px;
  }
}
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.btn-signin {
  border: 1px solid #E7E7E7;
  background-color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
}
.btn-signin.btn-primary {
  color: #fff;
  border-color: transparent;
}
.btn-signin.btn-primary .icon {
  stroke: #fff;
}

.btn-gray {
  background-color: #F7F7F7;
  color: #1C1C1C;
  border: 1px solid #E7E7E7;
}
.btn-gray:hover {
  background-color: #1C1C1C;
  color: #fff;
  border-color: #1C1C1C;
}

.bg-2 {
  background-color: #F7F7F7 !important;
}

.bg-4 {
  background-color: #F3F7EE !important;
}

.background-2 {
  background-color: #F3F7EE;
}

.background-brand-2 {
  background-color: #990000 !important;
  color: #fff;
}

.background-dark {
  background-color: #1C1C1C;
}

.bg-overlay {
  background: #990000;
}

.title-svg {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wow {
  visibility: visible;
}

/* Shortcode Components — card, icon, swiper, form components for shortcodes
-------------------------------------------------------------- */
/* ===== Card components ===== */
.card-news {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card-news .card-image {
  overflow: hidden;
}
.card-news .card-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.card-news .card-info .card-title h6 {
  margin-bottom: 4px;
}
.card-news .card-info .card-program .endtime {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.card-news:hover .card-image img {
  transform: scale(1.05);
}

.card-testimonial {
  border: 1px solid #E7E7E7;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.card-testimonial .card-info p {
  margin: 0;
}
.card-testimonial .card-top {
  margin-top: auto;
}
.card-testimonial .card-top .card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-testimonial .card-top .card-author .card-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.card-testimonial .card-top .card-author .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-testimonial .card-top .card-rate {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
}
.card-testimonial:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-top .card-author {
  display: flex;
  align-items: center;
}
.card-top .card-author .card-info .card-rate {
  display: flex;
  align-items: center;
  gap: 2px;
}

.card-popular {
  border-radius: 16px;
  overflow: visible;
  padding: 20px;
  transition: all 0.3s ease;
}
.card-popular .card-image {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
}
.card-popular .card-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.card-popular .card-info .card-meta .meta-links {
  font-size: 14px;
}
.card-popular .card-info .card-title {
  margin-top: 8px;
}
.card-popular:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.card-popular:hover .card-image img {
  transform: scale(1.05);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4B4B4B;
}

/* ===== Hover & Shadow effects ===== */
.hover-up {
  transition: all 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-3px);
}

.shadow-2 {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.image-effect-scale {
  transition: all 0.5s ease;
}
.image-effect-scale:hover img {
  transform: scale(1.05);
}

/* ===== Icon shapes — team, rental-invitations ===== */
.icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-sm {
  width: 36px;
  height: 36px;
}

.icon_70 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.icon-shape-arrow {
  border: 1px solid #E7E7E7;
  transition: all 0.3s ease;
}
.icon-shape-arrow:hover {
  background-color: #1C1C1C !important;
  border-color: #1C1C1C;
}
.icon-shape-arrow:hover svg, .icon-shape-arrow:hover img {
  filter: brightness(0) invert(1);
}

.icon-tabler {
  display: inline-block;
  vertical-align: middle;
}

/* ===== Swiper navigation buttons ===== */
.box-swiper {
  position: relative;
}

.swiper-container-visible {
  overflow: visible;
}

.box-button-slider {
  display: flex;
  gap: 8px;
  align-items: center;
}

.box-button-slider-team {
  display: flex;
  gap: 8px;
}

.swiper-button-prev-style-1,
.swiper-button-next-style-1 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: static;
}
.swiper-button-prev-style-1::after,
.swiper-button-next-style-1::after {
  display: none;
}
.swiper-button-prev-style-1 svg,
.swiper-button-next-style-1 svg {
  width: 16px;
  height: 16px;
}
.swiper-button-prev-style-1 svg path,
.swiper-button-next-style-1 svg path {
  stroke: #1C1C1C;
}
.swiper-button-prev-style-1:hover,
.swiper-button-next-style-1:hover {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}
.swiper-button-prev-style-1:hover svg path,
.swiper-button-next-style-1:hover svg path {
  stroke: #fff;
}

/* ===== Video play button ===== */
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #1C1C1C;
  margin-left: 4px;
  position: static;
  background: none;
}
.btn-play::after {
  display: none;
}
.btn-play:hover {
  background-color: #990000;
}
.btn-play:hover::before {
  border-color: transparent transparent transparent #fff;
}

/* ===== Dropdown filter — cars popular ===== */
.dropdown-filter {
  position: relative;
}
.dropdown-filter .btn-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown-filter .btn-dropdown:hover {
  border-color: #1C1C1C;
}
.dropdown-filter .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 180px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
}
.dropdown-filter .dropdown-menu.show {
  display: block;
}
.dropdown-filter .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #1C1C1C;
  transition: all 0.2s ease;
  cursor: pointer;
}
.dropdown-filter .dropdown-item:hover {
  background-color: #F7F7F7;
  color: #990000;
}

/* ===== Form components ===== */
.form-contact .form-group {
  margin-bottom: 16px;
}

.car-loan-form .form-group {
  margin-bottom: 0;
}

.loan-form-result {
  padding: 20px;
  background: #F7F7F7;
  border-radius: 12px;
  margin-top: 16px;
}

.loan-form-error {
  font-size: 14px;
  margin-top: 8px;
}

.location-autocomplete {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}
.location-suggestions.show {
  display: block;
}
.location-suggestions li {
  padding: 8px 12px;
  cursor: pointer;
}
.location-suggestions li:hover {
  background-color: #F7F7F7;
}

.date-range-input {
  position: relative;
}

.content-popular-vehicles {
  flex-wrap: wrap;
}

.availability-check {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E7E7E7;
}

.img-banner {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Shortcode Sections — section-level styles for specific shortcode blocks
-------------------------------------------------------------- */
/* ===== Promotion block ===== */
.shortcode-promotion-block {
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.shortcode-promotion-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* ===== Rental invitations ===== */
.shortcode-rental-invitations {
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.shortcode-rental-invitations .bg-shape {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.bg-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.8) 0%, rgba(28, 28, 28, 0.6) 100%);
  z-index: 0;
}

/* ===== Pricing section ===== */
.section-pricing-1 {
  position: relative;
  overflow: hidden;
}

.rotate-center {
  animation: rotate-center 25s linear infinite;
}

.rotate-center-rev {
  animation: rotate-center 25s linear infinite reverse;
}

@keyframes rotate-center {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ellipse-rotate-success {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 188, 42, 0.08) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}

.ellipse-rotate-primary {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 28, 28, 0.05) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.change-price-plan a {
  transition: all 0.3s ease;
}
.change-price-plan a.btn-white {
  background-color: #F7F7F7;
  color: #1C1C1C;
}

/* ===== Testimonials ===== */
.block-testimonials {
  overflow: hidden;
}

.container-testimonials {
  max-width: 1920px;
  margin: 0 auto;
}

.container-slider {
  padding-left: 0;
}

.box-author-testimonials {
  display: flex;
  align-items: center;
}
.box-author-testimonials img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-author-testimonials img:first-child {
  margin-left: 0;
}

.testimonial-mobile-nav .box-button-slider {
  display: flex;
  gap: 8px;
}

.list-ticks-green-2 li {
  padding-right: 0;
}

/* ===== Download apps ===== */
.download-apps {
  display: flex;
  align-items: center;
  gap: 12px;
}
.download-apps img {
  height: 48px;
  width: auto;
}

.box-app-2 {
  overflow: hidden;
}

.box-app-img {
  height: 100%;
}
.box-app-img img {
  max-width: 100%;
  height: auto;
}

/* ===== Brand filtering (style 3) ===== */
.alphabet-grid {
  margin-bottom: 20px;
}

.letter-btn {
  padding: 6px 14px;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  margin: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.letter-btn:hover, .letter-btn.active {
  background-color: #1C1C1C;
  color: #fff;
  border-color: #1C1C1C;
}

.filter-brands-by-alphabet .brand-item {
  padding: 16px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.filter-brands-by-alphabet .brand-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.filter-brands-by-alphabet .brand-item img {
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.box-search-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.box-list-brand-car {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ===== Dealer cards ===== */
.dealer-avatar-wrapper {
  display: flex;
  justify-content: center;
}

.dealer-avatar {
  -o-object-fit: cover;
     object-fit: cover;
}

.dealer-avatar-placeholder {
  font-size: 32px;
  color: #9FA1A4;
}

.car-count-badge {
  margin-top: 4px;
}

.dealer-contact-info {
  margin-top: 12px;
}
.dealer-contact-info .contact-item {
  font-size: 14px;
  line-height: 22px;
}

/* ===== Sale agent social links ===== */
.sale-agent-social a {
  transition: all 0.3s ease;
}
.sale-agent-social a:hover {
  background-color: #1C1C1C !important;
  border-color: #1C1C1C;
}
.sale-agent-social a:hover svg, .sale-agent-social a:hover img {
  filter: brightness(0) invert(1);
}

/* ===== Section title ===== */
.section-title {
  margin-top: 8px;
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Odometer (counter animation) ===== */
.odometer {
  font-family: var(--heading-font, "Albert Sans", sans-serif);
}

/* ===== Post style 5 — blog-posts shortcode ===== */
.post-style-5 .post--img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.post-style-5 .post--img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.post-style-5 .content .tags {
  margin-bottom: 8px;
}
.post-style-5:hover .post--img img {
  transform: scale(1.05);
}

/* ===== Animations ===== */
.move5 {
  animation: move5 3s ease-in-out infinite;
}

@keyframes move5 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Inner Page
-------------------------------------------------------------- */
.listing-sidebar-right {
  display: flex;
  justify-content: space-between;
}
.listing-sidebar-right .listing-sidebar-right__filter {
  width: 300px;
}
.listing-sidebar-right .listing-sidebar-right__content {
  width: calc(100% - 360px);
}

.calculate-form select {
  height: 48px;
  box-shadow: 0 0 0 1px #E7E7E7;
}

.inner-page-sidebar {
  display: flex;
  justify-content: space-between;
}
.inner-page-sidebar .inner-page-sidebar__nav {
  width: 300px;
}
.inner-page-sidebar .inner-page-sidebar__content {
  width: calc(100% - 360px);
}

.product-details-page .product-details-slider,
.product-details-page .product-details-content {
  width: 50%;
}
.product-details-page .product-details-slider {
  padding-right: 16px;
}
.product-details-page .swiper-listing-details-thumbs .swiper-slide-thumb-active .listing-details-thumb::before {
  border-color: #1C1C1C;
}
.product-details-page .swiper-listing-details-main .listing-details-item {
  height: auto;
}
.product-details-page .product-details-content {
  padding-left: 35px;
}
.product-details-page .product-details-content .checkouts img {
  height: 32px;
}
.product-details-page .product-details-content .bth-heart {
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details-page .product-details-content .price .price-old {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #9FA1A4;
  color: #9FA1A4;
}
.product-details-page .product-details-content .price .sale {
  height: 26px;
  line-height: 1;
  padding: 0 8px;
  border-radius: 100px;
  background: #1C1C1C;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.shopping-cart-page .filter-radio-group {
  min-width: 200px;
  gap: 4px;
  margin-bottom: 0;
}
.shopping-cart-page .filter-radio .label-focus::before {
  top: 5px;
}
.shopping-cart-page .flash-sale {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background-color: #E7E7E7;
  border-radius: 12px;
}
.shopping-cart-page .flash-sale .icon {
  height: 24px;
}
.shopping-cart-page .cart-wrapper .cart-header {
  display: grid;
  grid-template-columns: auto 70px 140px 100px 20px;
  gap: 55px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E7E7E7;
  font-weight: 600;
}
.shopping-cart-page .cart-wrapper .cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.shopping-cart-page .cart-wrapper .cart-item {
  display: grid;
  grid-template-columns: auto 70px 140px 100px 20px;
  gap: 55px;
  padding: 19px 0;
  border-bottom: 1px solid #E7E7E7;
  align-items: center;
}
.shopping-cart-page .cart-wrapper .cart-item:last-child {
  border-bottom: none;
}
.shopping-cart-page .cart-wrapper .cart-item__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shopping-cart-page .cart-wrapper .cart-item__image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 12px;
}
.shopping-cart-page .cart-wrapper .cart-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shopping-cart-page .cart-wrapper .cart-item__name .h6 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #1C1C1C;
  text-decoration: none;
}
.shopping-cart-page .cart-wrapper .cart-item__name .h6:hover {
  color: #990000;
}
.shopping-cart-page .cart-wrapper .cart-item__price .price {
  font-weight: 600;
  color: #1C1C1C;
  font-size: 16px;
}
.shopping-cart-page .cart-wrapper .cart-item__quantity .quantity-selector {
  width: 140px;
  margin: 0 auto;
  padding: 14px 8px;
  color: #1C1C1C !important;
}
.shopping-cart-page .cart-wrapper .cart-item__quantity .quantity-selector__btn svg {
  width: 16px;
  height: 16px;
}
.shopping-cart-page .cart-wrapper .cart-item__total .total-price {
  font-weight: 600;
  color: #1C1C1C;
  font-size: 16px;
}
.shopping-cart-page .cart-wrapper .cart-item__action {
  display: flex;
  justify-content: center;
}
.shopping-cart-page .cart-wrapper .cart-item__remove {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #1C1C1C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shopping-cart-page .cart-wrapper .cart-item__remove svg {
  width: 12px;
  height: 12px;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
}
.progress-bar .progress-bar__bg {
  position: absolute;
  z-index: 1;
  height: 6px;
  background-color: #E7E7E7;
  border-radius: 100px;
  width: 100%;
}
.progress-bar .percent {
  position: relative;
  width: var(--percent);
  height: 6px;
  background: #1C1C1C;
  border-radius: 100px;
  z-index: 2;
  left: 0;
}
.progress-bar .percent::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #1C1C1C;
  border-radius: 50%;
  right: 0;
  top: -5px;
}
.progress-bar.style-2 {
  height: 32px;
}
.progress-bar.style-2 .percent::before {
  width: 32px;
  height: 32px;
  background: transparent;
  background-image: url("/assets/icons/ship-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -10px;
  top: -12px;
}

.cart-total {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
  padding-top: 20px;
  border-top: 1px solid #E7E7E7;
}
.cart-total.style-2 {
  padding-top: 30px;
}
.cart-total__voucher {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.cart-total__voucher.full {
  max-width: 100%;
}
.cart-total__voucher button {
  font-size: 12px;
  position: absolute;
  right: 5px;
  top: 5px;
  min-width: 128px;
  text-transform: uppercase;
}

.checkout-container {
  display: flex;
  gap: 32px;
}
.checkout-container .left {
  padding: 32px 40px 84px 0;
  width: 53%;
}
.checkout-container .right {
  padding: 32px 0 84px 66px;
  width: 47%;
  border-left: 1px solid #E7E7E7;
}

.your-order .order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.your-order .order-item:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 20px;
  padding-bottom: 19px;
}
.your-order .order-item .order-item-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}
.your-order .order-item.style-2 .remove-item {
  margin-top: -32px;
}

.term-page {
  display: flex;
  justify-content: space-between;
}
.term-page .term-page--nav-container {
  position: relative;
  width: 360px;
}
.term-page .term-page--nav {
  position: relative;
}
.term-page .term-page--nav.menuFixed {
  position: fixed !important;
  z-index: 10;
  top: 94px;
}
.term-page .term-page--nav.menuSticky {
  position: absolute !important;
  bottom: 0;
  top: auto;
}
.term-page .content {
  width: calc(100% - 490px);
}
.term-page .section:not(:first-child) {
  margin-top: -60px;
  padding-top: 100px;
}
.term-page .term-page--nav {
  height: -moz-fit-content;
  height: fit-content;
  border-left: 1px solid #E7E7E7;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 11px;
}
.term-page .term-page--nav li a {
  padding-left: 12px;
  position: relative;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #1C1C1C;
}
.term-page .term-page--nav li a.active {
  border-color: #990000;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.error-page .error-page-inner {
  display: flex;
  justify-content: space-between;
}
.error-page .title {
  font-size: 160px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: bold;
}
.error-page .content {
  min-width: -moz-min-content;
  min-width: min-content;
  width: 460px;
  margin: 18px -18px 0 0;
}
.error-page .image {
  width: calc(100% - 500px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coming-soon-page {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coming-soon-page .coming-soon-content {
  max-width: 520px;
  margin-left: 60px;
  padding: 30px 0;
}
.coming-soon-page .coming-soon-page-blur {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  backdrop-filter: blur(40px);
  background: linear-gradient(123.33deg, rgba(255, 255, 255, 0.1) 1.11%, rgba(255, 255, 255, 0.08) 28.04%, rgba(255, 255, 255, 0) 100%);
}
.coming-soon-page .coming-soon-container {
  position: relative;
  z-index: 11;
}
.coming-soon-page .coming-soon-form {
  position: relative;
}
.coming-soon-page .coming-soon-form input {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 128px;
  height: 54px;
  color: #fff;
  padding-left: 20px;
}
.coming-soon-page .coming-soon-form input.active, .coming-soon-page .coming-soon-form input:active, .coming-soon-page .coming-soon-form input:focus {
  box-shadow: 0 0 0 2px #6b0000;
}
.coming-soon-page .coming-soon-form input::-moz-placeholder {
  font-size: 14px;
  line-height: 22px;
}
.coming-soon-page .coming-soon-form input::placeholder {
  font-size: 14px;
  line-height: 22px;
}
.coming-soon-page .coming-soon-form button {
  transition: all 0.3s ease;
  right: 4px;
  top: 3px;
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-page .coming-soon-form button:hover {
  background-color: #990000;
}
.coming-soon-page .coming-soon-form button:hover svg path {
  fill: #fff;
}
.coming-soon-page .clients .clients--images img {
  position: relative;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}
.coming-soon-page .clients .clients--images img:not(:first-child) {
  margin-left: -19px;
}
.coming-soon-page .clients .clients--images img:nth-child(1) {
  z-index: 4;
}
.coming-soon-page .clients .clients--images img:nth-child(2) {
  z-index: 3;
}
.coming-soon-page .clients .clients--images img:nth-child(3) {
  z-index: 2;
}
.coming-soon-page .clients .clients--images img:nth-child(4) {
  z-index: 1;
}
.coming-soon-page .coming-soon-time {
  width: 100%;
  max-width: 665px;
  position: relative;
  z-index: 11;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  margin: 16px 10px 0 auto;
}
.coming-soon-page .coming-soon-time .featured-countdown .countdown__timer,
.coming-soon-page .coming-soon-time .featured-countdown .desc {
  display: flex;
  gap: 35px;
}
.coming-soon-page .coming-soon-time .featured-countdown .desc li {
  width: 140px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}
.coming-soon-page .coming-soon-time .featured-countdown .countdown__item {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.coming-soon-page .coming-soon-time .featured-countdown .countdown__item:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -10px;
  top: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
}
.coming-soon-page .coming-soon-time .featured-countdown .countdown__item .countdown__value {
  display: block;
  color: #fff;
  font-size: 68px;
  font-weight: 600;
  margin-bottom: 25px;
}

.dashboard #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav {
  gap: 12px;
}

.dashboard-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 20px 24px;
  left: 0;
  background-color: #1C1C1C;
}

.dashboard-container {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}
.dashboard-container #main-nav .menu > li > a {
  padding: 33px 0;
}
.dashboard-container .dashboard-sidebar {
  width: 300px;
  height: 100vh;
  background-color: #1C1C1C;
  color: #fff;
  padding: 16px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dashboard-container .dashboard-sidebar .dashboard-sidebar--inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.dashboard-container .dashboard-sidebar .logo {
  height: 54px;
  margin: 2px 0 35px;
}
.dashboard-container .dashboard-sidebar .dashboard-menu {
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard-container .dashboard-sidebar .dashboard-menu .number {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 12px;
}
.dashboard-container .dashboard-sidebar .dashboard-menu li a {
  padding: 14px 12px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.dashboard-container .dashboard-sidebar .dashboard-menu li a.active, .dashboard-container .dashboard-sidebar .dashboard-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.dashboard-container .search-form-listing {
  max-width: 340px;
}
.dashboard-container .search-form-listing {
  width: 100%;
  position: relative;
}
.dashboard-container .search-form-listing input {
  height: 44px;
}
.dashboard-container .search-form-listing button {
  position: absolute;
  right: 16px;
  top: 12px;
}
.dashboard-container .search-form-contact {
  width: 100%;
  position: relative;
}
.dashboard-container .search-form-contact input {
  height: 46px;
}
.dashboard-container .search-form-contact button {
  position: absolute;
  right: 16px;
  top: 12px;
}
.dashboard-container .cart-wrapper .cart-header {
  display: grid;
  grid-template-columns: auto 80px 60px 120px 120px 90px;
  gap: 78px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.dashboard-container .cart-wrapper .cart-header > div {
  color: #1C1C1C;
}
.dashboard-container .cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dashboard-container .cart-item {
  display: grid;
  grid-template-columns: auto 80px 60px 120px 120px 90px;
  gap: 78px;
  padding: 23px 20px 24px 0;
  border-bottom: 1px solid #E7E7E7;
  align-items: center;
}
.dashboard-container .cart-item:last-child {
  border-bottom: none;
}
.dashboard-container .cart-item__product {
  display: flex;
  align-items: center;
  gap: 18px;
}
.dashboard-container .cart-item__image {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 16px;
  overflow: hidden;
}
.dashboard-container .cart-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .cart-item__name .h6 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #1C1C1C;
  text-decoration: none;
}
.dashboard-container .cart-item__name .h6:hover {
  color: #990000;
}
.dashboard-container .cart-item__total .total-price {
  font-weight: 600;
  color: #1C1C1C;
  font-size: 16px;
}
.dashboard-container .cart-item__action {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dashboard-container .cart-item .action {
  transition: all 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  box-shadow: inset 0 0 0 2px #E7E7E7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-container .cart-item .action .tooltip {
  background-color: #fff;
  font-size: 14px;
  line-height: 22px;
  top: -45px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 1px 8px;
  color: #1C1C1C;
}
.dashboard-container .cart-item .action .tooltip::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  transform: translateX(-50%) rotate(-45deg);
  background-color: #fff;
  bottom: -4px;
}
.dashboard-container .cart-item .action:hover .tooltip {
  top: -40px;
  opacity: 1;
  visibility: visible;
}
.dashboard-container .cart-item .action:hover {
  background-color: #1C1C1C;
  box-shadow: inset 0 0 0 2px #1C1C1C;
}
.dashboard-container .dashboard-box {
  border-radius: 20px;
  padding: 30px 32px 32px;
  border: 2px solid #E7E7E7;
}
.dashboard-container .dashboard-box.style-2 {
  padding-bottom: 38px;
}
.dashboard-container .dashboard-box.style-3 {
  padding: 30px;
}
.dashboard-container .dashboard-box.style-4 {
  padding: 40px;
}
.dashboard-container .dashboard-box.style-5 {
  padding: 48px;
}
.dashboard-container .dashboard-content--inner .card {
  border: 2px solid #E7E7E7;
  border-radius: 16px;
  box-shadow: none;
  background-color: #fff;
}
.dashboard-container .dashboard-content--inner .card .card-body {
  padding: 24px;
}
.dashboard-container .dashboard-content--inner .card .card-title {
  font-weight: 600;
  color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}
.dashboard-container .dashboard-content--inner .list-group-item,
.dashboard-container .dashboard-content--inner .booking-item {
  border-color: #E7E7E7;
  padding: 16px 0;
}
.dashboard-container .dashboard-content--inner .list-group-item:last-child,
.dashboard-container .dashboard-content--inner .booking-item:last-child {
  border-bottom: none;
}
.dashboard-container .dashboard-content--inner .btn-outline-primary {
  border: 2px solid #1C1C1C;
  color: #1C1C1C;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.dashboard-container .dashboard-content--inner .btn-outline-primary:hover {
  background-color: #1C1C1C;
  color: #fff;
  border-color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .btn-primary {
  background-color: #1C1C1C;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.dashboard-container .dashboard-content--inner .btn-primary:hover {
  background-color: #990000;
}
.dashboard-container .dashboard-content--inner input[type=text],
.dashboard-container .dashboard-content--inner input[type=email],
.dashboard-container .dashboard-content--inner input[type=tel],
.dashboard-container .dashboard-content--inner input[type=password],
.dashboard-container .dashboard-content--inner input[type=number],
.dashboard-container .dashboard-content--inner input[type=date],
.dashboard-container .dashboard-content--inner textarea,
.dashboard-container .dashboard-content--inner select {
  border: 2px solid #E7E7E7;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.dashboard-container .dashboard-content--inner input[type=text]:focus,
.dashboard-container .dashboard-content--inner input[type=email]:focus,
.dashboard-container .dashboard-content--inner input[type=tel]:focus,
.dashboard-container .dashboard-content--inner input[type=password]:focus,
.dashboard-container .dashboard-content--inner input[type=number]:focus,
.dashboard-container .dashboard-content--inner input[type=date]:focus,
.dashboard-container .dashboard-content--inner textarea:focus,
.dashboard-container .dashboard-content--inner select:focus {
  border-color: #6b0000;
  outline: none;
  box-shadow: none;
}
.dashboard-container .dashboard-content--inner textarea {
  min-height: 100px;
}
.dashboard-container .dashboard-content--inner .alert {
  border-radius: 12px;
  padding: 16px 20px;
  border: none;
  font-size: 14px;
  line-height: 22px;
}
.dashboard-container .dashboard-content--inner .alert-warning {
  background-color: #FFF8E7;
  color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .alert-warning strong {
  color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
}
.dashboard-container .dashboard-content--inner .bg-light {
  background-color: #F7F7F7 !important;
  border-radius: 12px !important;
}
.dashboard-container .dashboard-content--inner .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.dashboard-container .dashboard-content--inner .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid #E7E7E7;
  border-radius: 6px;
  cursor: pointer;
  float: none;
  flex-shrink: 0;
}
.dashboard-container .dashboard-content--inner .form-check .form-check-input:checked {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .form-check .form-check-input:focus {
  box-shadow: none;
}
.dashboard-container .dashboard-content--inner .form-check .form-check-label {
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}
.dashboard-container .dashboard-content--inner .btn-secondary {
  background-color: #fff;
  color: #1C1C1C;
  border: 2px solid #E7E7E7;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.dashboard-container .dashboard-content--inner .btn-secondary:hover {
  background-color: #F7F7F7;
  border-color: #1C1C1C;
}
.dashboard-container .dashboard-content--inner .text-primary {
  color: #990000 !important;
}
.dashboard-container .dashboard-content {
  height: 100vh;
  background-color: #F7F7F7;
  width: calc(100% - 300px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
}
.dashboard-container .dashboard-content.style-3 input {
  height: 52px !important;
}
.dashboard-container .dashboard-content.style-3 .filter-select-dropdown.style2 {
  padding: 12px 16px;
}
.dashboard-container .dashboard-content .header {
  position: sticky;
  top: 0;
  padding: 0 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.03);
}
.dashboard-container .dashboard-content .header .header-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.dashboard-container .comment-box {
  padding-bottom: 40px;
  margin-bottom: 39px;
}
.dashboard-container .comment-box:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.dashboard-container .comments.style2 .comment-box {
  padding-bottom: 0;
  border-bottom: none;
}
.dashboard-container .comments.style2 .comment-box:not(:last-child) {
  margin-bottom: 55px;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown {
  margin-left: auto;
  justify-content: end;
  text-align: right;
  padding-left: 20px;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more .more-links {
  padding: 0;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more .more-links li {
  min-width: -moz-max-content;
  min-width: max-content;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more .more-links li a {
  text-align: left;
  width: 100%;
  color: #4B4B4B;
  padding: 11px 16px;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more .more-links li a.active, .dashboard-container .comments.style2 .comment-box .core-dropdown.more .more-links li a:hover {
  background-color: #F7F7F7;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more .core-dropdown__button {
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 0 2px #E7E7E7;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more:hover .core-dropdown__button svg path, .dashboard-container .comments.style2 .comment-box .core-dropdown.more.active .core-dropdown__button svg path {
  stroke: #fff;
}
.dashboard-container .comments.style2 .comment-box .core-dropdown.more:hover .core-dropdown__button, .dashboard-container .comments.style2 .comment-box .core-dropdown.more.active .core-dropdown__button {
  color: #fff;
  background-color: #1C1C1C;
  box-shadow: 0 0 0 2px #1C1C1C;
}
.dashboard-container .dashboard-content--inner {
  flex: auto;
  height: 100%;
  overflow-y: auto;
  padding: 60px 15px 60px;
}
.dashboard-container .dashboard-content--inner .dashboard-content--details {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
}
.dashboard-container .dashboard-content--inner .core-dropdown {
  min-width: 120px;
}
.dashboard-container .dashboard-content--inner .core-dropdown.listing {
  min-width: 140px;
}
.dashboard-container .dashboard-content--inner .core-dropdown .core-dropdown__button {
  padding: 8px 8px 8px 16px;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__button svg {
  transform: rotate(90deg);
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__button.dropdown__normal {
  padding: 8px 12px;
  width: 100%;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list {
  padding: 0;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list li {
  padding: 11px 32px;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list li:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list.style2 li {
  padding: 0;
  border: none !important;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list.style2 li a {
  padding: 6px 16px;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list.style-2 li {
  padding: 0;
  border: none !important;
}
.dashboard-container .dashboard-content--inner .core-dropdown.style-2 .core-dropdown__list.style-2 li a {
  padding: 6px 16px;
}
.dashboard-container .dashboard-cart {
  gap: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 24px 30px 22px;
  border: 1px solid #E7E7E7;
  background-color: #fff;
}
.dashboard-container .dashboard-cart .icon {
  width: 100%;
  max-width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(152, 188, 42, 0.1019607843);
  padding: 16px;
}
.dashboard-container .car-views-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-container .car-views-chart .core-dropdown__button {
  height: 44px;
}
.dashboard-container .car-views-chart__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.dashboard-container .car-views-chart__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.dashboard-container .car-views-chart__canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.dashboard-container .car-views-chart__tooltip {
  position: absolute;
  pointer-events: none;
  display: none;
}
.dashboard-container .car-preview-upload__image-wrapper {
  width: 100%;
  max-width: 694px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-container .car-preview-upload__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dashboard-container .car-preview-upload__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-container .car-preview-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.dashboard-container .car-gallery-upload__grid {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.dashboard-container .car-gallery-upload__item {
  width: 105px;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #F7F7F7;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard-container .car-gallery-upload__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dashboard-container .car-gallery-upload__image {
  width: 105px;
  height: 105px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .car-gallery-upload__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard-container .car-gallery-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.dashboard-container .car-gallery-upload__hint {
  font-size: 16px;
  line-height: 26px;
  color: #9FA1A4;
}
.dashboard-container .attachments-upload__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.dashboard-container .attachments-upload__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #F7F7F7;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  transition: all 0.3s ease;
}
.dashboard-container .attachments-upload__item:hover {
  background-color: #f0f0f0;
}
.dashboard-container .attachments-upload__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-container .attachments-upload__icon svg {
  width: 100%;
  height: 100%;
}
.dashboard-container .attachments-upload__name {
  font-size: 14px;
  line-height: 20px;
  color: #1C1C1C;
  font-weight: 500;
}
.dashboard-container .attachments-upload__delete {
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 4px;
  transition: all 0.3s ease;
}
.dashboard-container .attachments-upload__delete img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard-container .attachments-upload__delete:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.dashboard-container .upload-section .upload-preview--poster-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dashboard-container .upload-section .upload-preview--poster {
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
}
.dashboard-container .upload-section .upload-preview--poster img {
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .upload-section .upload-preview {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.dashboard-container .upload-section .upload-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .upload-section .upload-preview--avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.dashboard-container .upload-section .upload-preview--poster {
  border-radius: 8px;
}
.dashboard-container .upload-section .upload-content .upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.dashboard-container .upload-section .upload-content .upload-btn {
  cursor: pointer;
}
.dashboard-container .upload-section .upload-content .upload-action {
  padding: 8px 6px;
  border: 1px solid #E7E7E7;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
}
.dashboard-container .upload-section .upload-content .upload-action .upload-btn {
  font-size: 12px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7E7;
  padding: 4px 12px;
  border-radius: 8px;
}
.dashboard-container .upload-section .upload-content .upload-action .upload-btn:hover {
  background-color: #1C1C1C;
  color: #fff;
}
@media (max-width: 768px) {
  .dashboard-container .upload-section .flex.items-start {
    flex-direction: column;
  }
  .dashboard-container .upload-section .upload-preview {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }
  .dashboard-container .upload-section .upload-preview--avatar {
    width: 150px;
    height: 150px;
  }
  .dashboard-container .upload-section .upload-content {
    width: 100%;
    margin-top: 20px;
  }
}
.dashboard-container .upload-section__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-container .upload-section__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.dashboard-container .upload-section__hint {
  font-size: 16px;
  line-height: 26px;
  color: #9FA1A4;
}
.dashboard-container .message-container {
  display: flex;
  gap: 0;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #E7E7E7;
  overflow: hidden;
}
.dashboard-container .message-sidebar {
  width: 400px;
  border-right: 1px solid #E7E7E7;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.dashboard-container .message-search {
  position: relative;
  padding: 20px 24px;
  border-bottom: 1px solid #E7E7E7;
  min-height: 86px;
  max-height: 86px;
  border-right: none;
}
.dashboard-container .message-search__input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  font-size: 14px;
  line-height: 20px;
  background-color: #F7F7F7;
  transition: all 0.3s ease;
}
.dashboard-container .message-search__input:focus {
  outline: none;
  border-color: #1C1C1C;
  box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.1);
}
.dashboard-container .message-search__input::-moz-placeholder {
  color: #9FA1A4;
}
.dashboard-container .message-search__input::placeholder {
  color: #9FA1A4;
}
.dashboard-container .message-search__icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.dashboard-container .message-contacts {
  flex: 1;
  padding: 0;
}
.dashboard-container .message-contact {
  display: flex;
  gap: 20px;
  padding: 15px 26px 15px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard-container .message-contact:hover {
  background-color: #F7F7F7;
}
.dashboard-container .message-contact.active {
  background-color: #F7F7F7;
}
.dashboard-container .message-contact.active .message-contact__preview {
  color: #4B4B4B;
}
.dashboard-container .message-contact.user-offline .message-contact__avatar::before {
  background-color: #9FA1A4;
}
.dashboard-container .message-contact.user-online .message-contact__avatar::before {
  background-color: #ECB018;
}
.dashboard-container .message-contact__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  position: relative;
}
.dashboard-container .message-contact__avatar::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -1px;
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: #4518CC;
  border-radius: 50%;
  border: 2px solid #fff;
}
.dashboard-container .message-contact__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.dashboard-container .message-contact__info {
  flex: 1;
  min-width: 0;
}
.dashboard-container .message-contact__name {
  font-weight: 600;
  color: #1C1C1C;
}
.dashboard-container .message-contact__preview {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-container .message-contact__meta {
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.dashboard-container .message-contact__time {
  font-size: 14px;
  line-height: 22px;
  color: #4B4B4B;
}
.dashboard-container .message-contact__badge {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #1C1C1C;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
}
.dashboard-container .message-chat {
  width: calc(100% - 400px);
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.dashboard-container .message-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #E7E7E7;
  max-height: 86px;
  min-height: 86px;
}
.dashboard-container .message-chat__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-container .message-chat__avatar {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
}
.dashboard-container .message-chat__avatar::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -1px;
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: #4518CC;
  border-radius: 50%;
  border: 2px solid #fff;
}
.dashboard-container .message-chat__avatar.user-offline::before {
  background-color: #9FA1A4;
}
.dashboard-container .message-chat__avatar.user-online::before {
  background-color: #ECB018;
}
.dashboard-container .message-chat__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.dashboard-container .message-chat__user-info {
  display: flex;
  flex-direction: column;
}
.dashboard-container .message-chat__name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 2px;
}
.dashboard-container .message-chat__email {
  font-size: 14px;
  line-height: 20px;
  color: #4B4B4B;
}
.dashboard-container .message-chat__actions {
  display: flex;
  align-items: center;
  justify-content: end;
}
.dashboard-container .message-chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard-container .message-chat__input {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
}
.dashboard-container .message-chat__input button {
  position: absolute;
  right: 12px;
}
.dashboard-container .message-chat .message__action {
  padding: 14px 22px 10px;
  position: relative;
  height: 76px;
  border-top: 1px solid #E7E7E7;
  width: 100%;
  gap: 12px;
}
.dashboard-container .message-chat__input-field {
  position: relative;
  flex: 1;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.dashboard-container .message-chat__input-field::-moz-placeholder {
  color: #9FA1A4;
}
.dashboard-container .message-chat__input-field::placeholder {
  color: #9FA1A4;
}
.dashboard-container .message-chat__attach {
  top: 12px;
}
.dashboard-container .message-chat__send {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C1C1C;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard-container .message-chat__send:hover {
  background-color: #990000;
}
.dashboard-container .message-chat__send svg {
  width: 20px;
  height: 20px;
}
.dashboard-container .message-date-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dashboard-container .message-date-separator::before, .dashboard-container .message-date-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #E7E7E7;
}
.dashboard-container .message-date-separator span {
  padding: 0 20px;
  font-size: 14px;
  line-height: 22px;
  color: #4B4B4B;
}
.dashboard-container .message-item {
  display: flex;
  flex-direction: column;
}
.dashboard-container .message-item--received {
  gap: 4px;
  align-self: flex-start;
  align-items: flex-start;
}
.dashboard-container .message-item--sent {
  gap: 4px;
  align-self: flex-end;
  align-items: flex-end;
}
.dashboard-container .message-item__bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.dashboard-container .message-item__bubble .core-dropdown .core-dropdown__menu li {
  font-size: 14px;
  padding: 4px 24px;
}
.dashboard-container .message-item__bubble .core-dropdown .core-dropdown__menu li:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}
.dashboard-container .message-item__bubble .core-dropdown__button {
  padding: 0 !important;
  box-shadow: none !important;
  width: 20px;
  height: 20px;
}
.dashboard-container .message-item--sent .dashboard-container .message-item__bubble {
  background-color: #F5F5F5;
}
.dashboard-container .message-item__text {
  color: #1C1C1C;
  padding: 12px 16px;
  border-radius: 16px;
  background-color: #F7F7F7;
  max-width: 400px;
  width: 100%;
}
.dashboard-container .message-item__options {
  width: 16px;
  height: 16px;
  min-width: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard-container .message-item__options svg {
  width: 100%;
  height: 100%;
}
.dashboard-container .message-item__time {
  font-size: 14px;
  line-height: 22px;
  color: #4B4B4B;
}

.change-password-wrapper {
  width: 100%;
  max-width: 595px;
}

.dashboard-toggle-btn {
  display: none !important;
}

.tf-product-des-demo h3 {
  margin-bottom: 22px;
  line-height: 19px;
}
.tf-product-des-demo ul {
  margin-top: 15px;
  margin-bottom: 30px;
}
.tf-product-des-demo ul li {
  color: #909090;
  line-height: 25px;
  position: relative;
  padding-left: 20px;
}
.tf-product-des-demo ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tf-product-des-demo ul li::before {
  position: absolute;
  content: "";
  left: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #909090;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.tf-product-des-demo .left .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
}
.tf-product-des-demo .left .icon i {
  font-size: 12px;
}
.tf-product-des-demo .left span {
  color: #909090;
}

/* Auth Pages (Login, Register, Forgot Password)
-------------------------------------------------------------- */
.auth-card.card {
  display: flex;
  flex-direction: column;
  background: #fff !important;
  border-radius: 20px !important;
  padding: 0 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: none !important;
  max-width: 480px;
  margin: 50px auto 80px;
}
.auth-card.card .card-img-top {
  border-radius: 0;
}
.auth-card.card .card-header {
  background: #fff !important;
  border: 0 !important;
  padding: 40px 32px 0 !important;
}
.auth-card.card .card-header .bg-white.p-3, .auth-card.card .card-header .bg-white.p-3.rounded {
  display: none !important;
}
.auth-card.card .card-header > div {
  display: block !important;
  text-align: center;
}
.auth-card.card .card-header h3 {
  font-size: 28px !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.auth-card.card .card-header .text-muted {
  text-align: center;
  font-size: 14px;
  color: #4B4B4B !important;
}
.auth-card.card .card-body {
  padding: 24px 32px 40px !important;
}
.auth-card.card .alert {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
}
.auth-card.card .alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.auth-card.card .alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.auth-card.card .alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.auth-card.card form.auth-form .form-group {
  margin-bottom: 20px;
}
.auth-card.card form.auth-form .auth-input-icon {
  display: none !important;
}
.auth-card.card form.auth-form .form-control {
  display: block;
  width: 100%;
  height: 52px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  padding: 12px 16px !important;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease;
}
.auth-card.card form.auth-form .form-control:focus {
  border-color: #1C1C1C;
  box-shadow: 0 0 0 3px rgba(28, 28, 28, 0.1);
  outline: 0;
}
.auth-card.card form.auth-form .iti {
  width: 100%;
}
.auth-card.card form.auth-form .iti .form-control {
  padding-left: 90px !important;
}
.auth-card.card form.auth-form .iti .iti__country-container .iti__selected-country {
  border-radius: 12px 0 0 12px;
  padding: 0 8px 0 16px;
  background: transparent;
  height: 100%;
}
.auth-card.card form.auth-form .iti .iti__country-container .iti__selected-country-primary {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.auth-card.card form.auth-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 1.5rem;
  margin-bottom: 8px;
  padding-left: 0;
}
.auth-card.card form.auth-form .form-check .form-check-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #E7E7E7;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  position: relative;
  transition: all 0.2s ease;
}
.auth-card.card form.auth-form .form-check .form-check-input:checked {
  border-color: #1C1C1C;
  background: #fff;
}
.auth-card.card form.auth-form .form-check .form-check-input:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1C1C1C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth-card.card form.auth-form .form-check .form-check-input[type=checkbox] {
  border-radius: 4px;
}
.auth-card.card form.auth-form .form-check .form-check-input[type=checkbox]:checked {
  background: #1C1C1C;
  border-color: #1C1C1C;
}
.auth-card.card form.auth-form .form-check .form-check-input[type=checkbox]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}
.auth-card.card form.auth-form .form-check .form-check-label {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #1C1C1C;
}
.auth-card.card form.auth-form .row.g-0 {
  align-items: center;
}
.auth-card.card form.auth-form .btn-auth-submit {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}
.auth-card.card form.auth-form .text-decoration-underline {
  color: #1C1C1C;
  font-weight: 600;
}
.auth-card.card form.auth-form .text-decoration-underline:hover {
  color: #1C1C1C;
}
.auth-card.card form.auth-form .mt-3.text-center {
  font-size: 14px;
  color: #4B4B4B;
}
.auth-card.card form.auth-form .mt-3.text-center a {
  font-weight: 600;
  color: #1C1C1C;
}
.auth-card.card form.auth-form .mt-3.text-center a:hover {
  color: #1C1C1C;
}

/* Responsive
-------------------------------------------------------------- */
.md-show {
  display: none;
}

@media (max-width: 1700px) {
  .dashboard-container .cart-item,
  .dashboard-container .cart-wrapper .cart-header {
    gap: 8px;
  }
  .dashboard-content .dashboard-content--inner {
    padding: 60px;
  }
  .listing-halfmap {
    padding: 16px;
  }
  .header.header-style-2 .header-search {
    max-width: 250px;
  }
  .header.header-style-2 .header-contact {
    gap: 15px;
  }
  .page-title .swiper-btn {
    display: none;
  }
  .header.header-style-2 .header-right {
    gap: 15px;
  }
  .header-right-style-3.header-right,
  .header-right-style-2.header-right {
    justify-content: end;
    width: calc(100% - 40px) !important;
    margin-left: 16px;
  }
  .home-style-9 {
    padding: 20px;
  }
  .home-style-10 {
    padding: 0 60px;
  }
  #main-nav .menu > li {
    margin-right: 12px;
  }
}
@media (max-width: 1440px) {
  .car-overview-list-style4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .car-overview-list-style4 li img {
    width: 32px;
    height: 32px;
  }
  .car-overview-list-style4 li .h5,
  .car-overview-list-style4 li .h7 {
    font-size: 16px;
    line-height: 1.2;
  }
  .car-overview-list-style3,
  .car-overview-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .car-overview-list-style3 li .h7,
  .car-overview-list li .h7 {
    font-size: 16px;
    line-height: 1.2;
  }
  .swiper-card-wrapper {
    margin-right: 0 !important;
  }
  .swiper-brand-wrapper {
    margin-right: 0;
  }
  .caculator-box--image {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .brand-item-style-2.slide-gallery.active .brand-item-button {
    opacity: 1;
    visibility: visible;
  }
  .brand-item-style-2.slide-gallery .brand-item-button {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .dashboard-container .dashboard-box.style-4 {
    padding: 15px;
  }
  .dashboard-container .dashboard-content .header {
    padding: 0;
  }
  .dashboard-content .dashboard-content--inner {
    padding: 60px 15px;
  }
  .coming-soon-page .coming-soon-time .featured-countdown .countdown__item:not(:last-child)::after {
    right: -20px;
  }
  .coming-soon-page .coming-soon-time .featured-countdown .desc li,
  .coming-soon-page .coming-soon-time .featured-countdown .countdown__item {
    width: 100%;
    max-width: 120px;
  }
  .coming-soon-page .coming-soon-time {
    padding: 0 15px;
  }
  .coming-soon-page .coming-soon-content {
    margin: 0 15px;
  }
  .error-page .content {
    margin: 0;
  }
  .inner-page.halfmap #map {
    height: 700px;
  }
  .listing-halfmap {
    margin-bottom: 40px;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .grid.xl2-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.xl2-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .listing-sidebar-right .listing-sidebar-right__content {
    width: calc(100% - 320px);
  }
  #main-nav .menu > li.menu-item--static .sub-menu.sub-menu--full.sub-menu--listing .sub-menu--listing-nav {
    gap: 16px;
  }
  .home-style-10 {
    padding: 0 15px;
  }
  .header .header-actions {
    gap: 12px;
  }
  .search-cars__features-grid {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .flat-tabs .menu-tab-style2, .flat-tabs .menu-tab-style3 {
    overflow-x: auto;
  }
  .header-spacing {
    padding: 0 15px;
  }
  .header.header-style-2 .header-search {
    max-width: 200px;
  }
  .header.header-style-2 .header-contact li .text {
    font-size: 16px;
    line-height: 22px;
  }
  .header .container-fluid {
    padding: 0 15px;
  }
  .header .header-inner {
    gap: 10px;
  }
  .main-nav.mr-24 {
    margin-right: 12px;
  }
  .header .header-right {
    gap: 8px;
  }
  #main-nav .menu > li {
    margin-right: 16px;
  }
  .btn {
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 8px 12px !important;
  }
  .grid.xl-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.xl-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .header .header-container-fluid {
    padding: 0 15px !important;
  }
  .page-title.page-title-style-6 .page-title-wrapper {
    margin-right: 0;
  }
  .xl2-hidden {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .dashboard-container {
    position: relative;
  }
  .dashboard-container .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-150%);
    transition: transform 0.3s ease;
  }
  .dashboard-container .dashboard-sidebar.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .dashboard-container .dashboard-content {
    width: 100%;
  }
  .dashboard-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease;
  }
  .dashboard-container.sidebar-open::before {
    opacity: 1;
    visibility: visible;
  }
  body.dashboard-sidebar-open {
    overflow: hidden;
  }
  .dashboard-toggle-btn {
    display: flex !important;
  }
  .sale-agent-box .sale-agent-social {
    gap: 8px;
  }
  .sale-agent-box .sale-agent-social li {
    width: 32px;
    height: 32px;
  }
  .sale-agent-box .sale-agent-social li a {
    width: 32px;
    height: 32px;
  }
  .sale-agent-box .sale-agent-social li a svg {
    width: 16px;
    height: 16px;
  }
  .car-overview-list-style4 {
    gap: 12px !important;
  }
  .car-overview-list-style4 li {
    gap: 8px;
    padding: 16px 4px 16px 12px;
    font-size: 14px;
  }
  .car-overview-list {
    gap: 12px !important;
  }
  .car-box-style-4 .content {
    padding: 16px;
  }
  .mobile-hidden-header-button {
    display: none !important;
  }
  .core-dropdown.user-admin .core-dropdown__button {
    margin-right: 30px;
    justify-content: start;
  }
  .dashboard-container .dashboard-content .header .header-right {
    justify-content: end;
  }
  .dashboard-container .dashboard-content .header {
    padding: 0;
  }
  .xl-show {
    display: block !important;
  }
  .dashboard-container .dashboard-content .header,
  .dashboard-container .dashboard-content {
    width: 100%;
  }
  .card-box-style-8.card-box .bottom, .card-box-style-8.card-box .top {
    width: 224px;
  }
  .card-box-style-8.card-box .image {
    max-width: 240px;
    min-height: 220px;
  }
  .card-box-style-8.card-box .content {
    width: calc(100% - 240px);
    padding-top: 16px;
  }
  .shopping-cart-page .cart-wrapper .cart-header,
  .shopping-cart-page .cart-wrapper .cart-item {
    gap: 16px;
  }
  .rating-box.rating-box-product-detail .rating-box__content {
    gap: 40px;
  }
  .product-details-page .product-details-content {
    padding-left: 0;
  }
  .product-details-page .product-details-slider,
  .filter-features {
    padding-right: 0;
  }
  .services-center-info {
    padding: 0;
    margin-bottom: 30px;
  }
  .grid.gap-x-60 {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .sell-your-car-box::after,
  .sell-your-car-box::before {
    display: none !important;
  }
  .sell-your-car-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .gap-130 {
    gap: 30px !important;
  }
  .card-box-style-9.card-box .content {
    padding: 12px 12px 0;
  }
  .lg-hidden {
    display: none;
  }
  .innerpage-container {
    gap: 15px;
  }
  .innerpage-container .innerpage__content {
    width: calc(100% - 375px);
  }
  .innerpage-container .innerpage__sidebar {
    width: 360px;
  }
  .listing-details {
    gap: 30px;
  }
  .listing-details .listing-details--content {
    width: calc(100% - 430px);
  }
  .xl-flex-start {
    justify-content: flex-start !important;
  }
  .mt-94 {
    margin-top: 90px;
  }
  .modal .close-modal {
    width: 28px;
    height: 28px;
    top: -12px;
    right: 12px;
  }
  .card-details::-webkit-scrollbar {
    display: none !important;
  }
  .card-details {
    min-width: 1000px;
  }
  .caculator-box--image {
    margin-left: 0;
  }
  .home-style-9 {
    padding: 15px;
  }
  .counter-spacing {
    padding: 0;
  }
  .card-box .content .tag.style3 {
    gap: 8px;
  }
  .mr-50 {
    margin-right: 0 !important;
  }
  .header .header-actions {
    margin-right: 50px;
  }
  .lg-justify-between {
    justify-content: space-between;
  }
  .lg-w-full {
    width: 100%;
  }
  .header.header-style-4 .header-container-fluid {
    flex-direction: column;
    padding: 0 15px !important;
  }
  .lg-hide {
    display: none;
  }
  .lg-show {
    display: block !important;
  }
  .header.header-style-1 .header-container-fluid {
    padding: 0 60px 0 15px;
  }
  .car-box-style-3 .content {
    padding: 24px;
  }
  #site-header-inner {
    padding: 16px 0;
  }
  .hide-tablet {
    display: none;
  }
  .show-tablet {
    display: block !important;
  }
  .header.header-style-2 .header-actions {
    width: 100%;
  }
  .header.header-style-2 .logo-mobile-header {
    margin-right: auto;
  }
  .header.header-style-2 .header-right {
    width: 100%;
  }
  .header.header-style-2 .header-search {
    display: none;
  }
  .header.header-style-2 .header-contact {
    width: 100%;
    justify-content: space-between;
  }
  .header.header-style-2 .header-actions {
    margin-left: 0;
    justify-content: start;
  }
  .header.header-style-2 .header-actions .header-search-wrapper {
    margin-left: auto;
  }
  .header.header-style-2 .header-inner {
    padding: 0;
  }
  .header.header-style-2 .header-inner.header-inner-style-2 {
    height: 66px;
  }
  .home-style-11 .header.header-style-2 .header-actions .header-search-wrapper {
    margin-left: 0;
  }
  .header.header-style-2 .logo-mobile-header {
    display: block;
  }
  .header.header-style-2 .header-inner-style-2 .logo {
    display: none;
  }
  .header .logo-mobile,
  .mobile-button {
    display: block;
  }
  .header .header-inner > .logo {
    display: none;
  }
  .header .header-inner > .logo-mobile {
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .header .header-inner > .logo-mobile img {
    height: 42px;
    width: auto;
    max-height: 54px;
    display: block;
  }
  .header-style-1.header-right {
    margin-right: 48px;
  }
  .ml-60 {
    margin-left: 0;
  }
  .home-style-11 .header .header-top-bar-style2 .logo {
    display: none;
  }
  .home-style-11 .header .header-top-bar-style2 .header-actions {
    width: 50%;
    margin-right: 0;
    padding-right: 0;
    justify-content: end;
  }
  .home-style-11 .header .header-top-bar-style2 .header-top-bar-left {
    width: 50%;
    justify-content: left;
  }
  .lg-justify-center {
    justify-content: center;
  }
  .dealer-box {
    gap: 16px;
  }
  .dealer-box h4 {
    font-size: 18px;
    line-height: 1.2;
  }
  .dealer-box .h7 {
    font-size: 14px;
  }
  .dealer-box > div {
    padding: 0 !important;
  }
  .padding-box-20 {
    padding: 0;
  }
  .xl-gap-16 {
    gap: 16px !important;
  }
}
@media (max-width: 991px) {
  .slide-gallery-list.style2 .slide-gallery.active {
    flex: 5;
  }
  .md-mb-16 {
    margin-bottom: 16px !important;
  }
  .coming-soon-page .coming-soon-content {
    margin: 0 auto;
    text-align: center;
    padding: 30px 15px 0;
  }
  .lg-gap-16 {
    gap: 16px !important;
  }
  .car-overview-list > li {
    padding: 16px;
  }
  .core-dropdown {
    min-width: 150px;
  }
  .page-title.page-title-style-6 .page-title--image {
    width: 100%;
    padding-left: 16px;
  }
  .page-title.page-title-style-6 .search-cars {
    width: 100%;
  }
  .page-title.page-title-style-6 .page-title-wrapper {
    flex-direction: column-reverse;
  }
  .page-title.page-title-style-5 {
    height: auto;
  }
  .header-wrapper-style-6,
  .header-wrapper-style-5,
  .header-wrapper-style-4,
  .header-wrapper-style-3,
  .header-wrapper-style-2 {
    height: 94px;
  }
  .header-inner {
    min-height: 94px;
  }
  .page-title.page-title-style-4.style-2 {
    margin-top: 94px;
  }
  .header-style-2-main,
  .header .header-top-bar {
    display: none;
  }
  .swiper-brand-wrapper {
    margin-right: 0;
  }
  .dashboard-container .cart-item__action {
    right: 0;
    background-color: white;
    z-index: 1;
  }
  .dashboard-container .cart-wrapper {
    overflow-x: auto;
  }
  .dashboard-container .cart-header,
  .dashboard-container .cart-item {
    min-width: 900px;
  }
  .footer-top-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-top-inner .form-footer {
    margin-top: 20px;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
  }
  .footer .footer-links {
    gap: 30px;
    justify-content: start;
  }
  .footer .footer-links .collapse {
    width: 50%;
  }
  .footer .footer-contact {
    margin-top: 28px;
    display: flex;
    gap: 30px;
  }
  .footer .footer-contact > div {
    width: 50%;
  }
  .coming-soon-page .coming-soon-time {
    margin: 30px auto 0;
  }
  .coming-soon-page .coming-soon-page-blur {
    width: 100%;
  }
  .error-page .title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px !important;
  }
  .error-page .error-page-inner {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .error-page .error-page-inner .content,
  .error-page .error-page-inner .image {
    width: 100%;
  }
  .error-page .error-page-inner .content {
    min-width: auto;
  }
  .term-page .term-page--nav {
    width: 300px;
  }
  .term-page .content {
    width: calc(100% - 340px);
  }
  .contact-page-info {
    max-width: 100%;
  }
  .checkout-container .left,
  .checkout-container .right {
    width: 100%;
  }
  .checkout-container .left {
    padding: 0;
  }
  .checkout-container {
    margin-top: 32px;
  }
  .checkout-container .right,
  .checkout-container .right {
    padding: 0 0 70px;
    border: none;
  }
  .checkout-container,
  .lg-flex-col {
    flex-direction: column;
  }
  .inner-page-sidebar {
    flex-direction: column;
    gap: 40px;
  }
  .inner-page-sidebar .inner-page-sidebar__nav,
  .inner-page-sidebar .inner-page-sidebar__content {
    width: 100%;
  }
  .sell-your-car-box-wrapper.style-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .about-content {
    padding: 30px 0;
  }
  .about-box {
    padding-right: 80px;
  }
  .about-box .sub-img {
    right: 0;
  }
  .md-justify-center {
    justify-content: center;
  }
  .dealer-box-wrapper {
    overflow-x: auto;
  }
  .dealer-box-wrapper::-webkit-scrollbar {
    display: block !important;
    width: 6px;
    height: 4px;
  }
  .dealer-box-wrapper::-webkit-scrollbar-track {
    background: #F7F7F7;
    border-radius: 3px;
  }
  .dealer-box-wrapper::-webkit-scrollbar-thumb {
    background: #1C1C1C;
    border-radius: 3px;
  }
  .dealer-box {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .recent-post .image {
    width: 85px;
    height: 85px;
    min-width: 85px;
  }
  .innerpage-container {
    flex-direction: column;
    gap: 40px;
  }
  .innerpage-container .innerpage__sidebar,
  .innerpage-container .innerpage__content {
    width: 100%;
  }
  .recent-post {
    gap: 8px;
  }
  .listing-details {
    flex-direction: column;
  }
  .listing-details .listing-details--sidebar,
  .listing-details .listing-details--content {
    width: 100%;
  }
  .listing-details .listing-details--sidebar {
    margin-top: 40px;
  }
  .page-title-inner-page {
    height: auto;
  }
  .listing-sidebar-right {
    flex-direction: column;
  }
  .listing-sidebar-right .listing-sidebar-right__filter,
  .listing-sidebar-right .listing-sidebar-right__content {
    width: 100%;
  }
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
  .lg-flex-start {
    justify-content: flex-start;
  }
  .lg-mb-16 {
    margin-bottom: 16px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .modal .modal-container {
    padding: 30px;
  }
  .page-title--slider .page-title--slider-content.style-1 {
    padding: 70px 16px;
  }
  h1,
  .search-cars__title {
    font-size: 40px;
    line-height: 1.2;
  }
  .page-title--slider .page-title--slider-content {
    padding: 15px;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .why-choose-us {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .page-title-style-1 .page-title--post-list {
    padding: 30px 16px;
  }
  .page-title-style-1 .page-title--content {
    width: calc(100% - 200px);
    left: 16px;
  }
  .page-title-style-1 .page-title--content .page-title--title {
    font-size: 36px;
    line-height: 1.2;
  }
  .page-title .sub-title {
    font-size: 24px;
    line-height: 1.2;
  }
  .page-title .sub-title .h7 {
    font-size: 16px;
  }
  .box-content {
    padding: 16px;
  }
  .box-content .box-content--effect {
    padding: 16px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .caculator-box.outline,
  .caculator-box {
    padding: 16px !important;
  }
  .caculator-box.outline,
  .caculator-box {
    margin-bottom: 30px;
  }
  .text-56,
  h2, .h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .grid.lg-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lg-col-span-1 {
    grid-column: span 1;
  }
  .lg-col-span-2 {
    grid-column: span 2;
  }
  .grid.lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.lg-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-links {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .footer .footer-contact,
  .footer .footer-links {
    padding: 0;
  }
  .search-cars__select-wrapper {
    width: 100%;
    flex: auto;
  }
  .filter-sidebar-popup .search-cars__select-wrapper {
    width: 100%;
  }
  .filter-sidebar__header {
    padding: 16px;
  }
  .filter-sidebar__header::after {
    width: calc(100% - 32px);
  }
  .filter-sidebar__content {
    padding: 16px;
  }
  .search-cars__filters {
    flex-wrap: wrap;
  }
  .cta-section .cta--content {
    padding: 20px;
  }
  .header .header-top-bar--wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .card-box .content .tag {
    gap: 6px !important;
    justify-content: flex-start !important;
  }
  .page-title.page-title-style-4 {
    padding: 70px 0;
    height: auto;
  }
  .page-title {
    height: auto !important;
    padding: 80px 0 !important;
    min-height: 600px;
  }
  .tf-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .lg-ml-0 {
    margin-left: 0 !important;
  }
  .flat-tabs-style .menu-tab-style5, .flat-tabs .menu-tab-style5 {
    border-radius: 30px;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .btn-filter {
    height: 32px;
  }
  .home-style-10 {
    padding: 0;
  }
  .listing-details-item .listing-details-item--content .listing-details-item--button {
    font-size: 14px;
  }
  .slide-gallery-list .slide-gallery.active {
    flex: 9;
  }
  .flat-accordion .flat-toggle {
    padding: 16px;
  }
  .product-details-page .product-details-slider, .filter-features,
  .product-details-page .product-details-content {
    width: 100%;
  }
  .car-overview-list-style4,
  .car-overview-list-style3,
  .car-overview-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-justify-start {
    justify-content: flex-start !important;
  }
  .why-choose-us {
    padding: 30px 16px;
  }
  .brand-item-small {
    height: 32px;
    padding: 0 8px;
  }
  .page-title.page-title-style-2 {
    height: 700px;
  }
  .page-title .swiper-pagination {
    bottom: 15px !important;
  }
  .search-modal__title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .search-modal__content {
    height: 140px;
    padding: 32px 16px 16px;
  }
  .search-modal__close {
    top: 0;
    right: 0;
  }
  .footer .footer-links .collapse {
    width: 100%;
  }
  .swiper-card-wrapper {
    margin-right: auto !important;
  }
  #site-header-inner {
    padding: 16px 0;
  }
  .page-title.page-title-style-5 {
    padding: 70px 0;
  }
  .header.header-style-4 {
    height: 94px;
  }
  .header.header-style-4 .header-top-bar {
    display: none;
  }
  .box-couter-item .content .h7 {
    font-size: 16px;
    line-height: 1.2;
  }
  .box-couter .number-content,
  .box-couter .count-number {
    font-size: 36px;
    line-height: 1.2;
  }
  .upload-preview--poster-wrapper {
    flex-direction: column;
  }
  .dashboard-container .dashboard-box {
    padding: 24px 15px !important;
  }
  .dashboard-container .upload-section .upload-preview--poster {
    width: 100%;
    height: 400px;
  }
  .dashboard-container .upload-section .upload-preview--poster img {
    height: 100%;
    width: 100%;
  }
  .dashboard-container .message-chat .message__action,
  .dashboard-container .message-search,
  .dashboard-container .message-contact,
  .dashboard-container .message-chat__body {
    padding: 16px;
  }
  .message-container {
    flex-direction: column;
  }
  .message-container .message-chat,
  .message-container .message-sidebar {
    width: 100%;
  }
  .message-container .message-sidebar {
    border-right: none;
  }
  .menu-tab-package {
    flex-direction: column;
  }
  .menu-tab-package .item-menu {
    width: 100% !important;
  }
  .listing-tabs {
    gap: 4px !important;
  }
  .listing-tabs .item-menu svg {
    height: 16px;
  }
  .core-dropdown__icon {
    width: 14px;
    height: 14px;
  }
  .core-dropdown__button {
    padding: 8px 10px;
    gap: 2px;
  }
  .core-dropdown__button .core-dropdown__selected {
    font-size: 14px;
    line-height: 1.2;
  }
  .core-dropdown {
    min-width: 120px;
  }
  .footer .footer-bottom-links {
    justify-content: center;
  }
  .modal-newsletter .img-newletter {
    -o-object-fit: cover;
       object-fit: cover;
    height: 350px;
  }
  .modal-newsletter .modal-newsletter--title {
    margin-bottom: 16px;
  }
  .md-block {
    display: block !important;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .footer-links {
    gap: 16px !important;
  }
  .mb-mb-28 {
    margin-bottom: 28px;
  }
  .mb-mb-30 {
    margin-bottom: 30px;
  }
  .mb-mb-40 {
    margin-bottom: 40px;
  }
  .footer-top-inner {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .footer-top-inner .form-footer {
    margin-top: 0;
    margin-left: 0;
  }
  #map .infoBox {
    margin-left: 0 !important;
  }
  .filter-sidebar__content {
    padding-bottom: 90px;
  }
  .modal .newsletter--content {
    padding: 16px 16px 0;
  }
  .modal-right.quick-view .product-info .inner-content {
    padding-top: 40px;
    top: 0;
    transform: none;
  }
  .modal-right.quick-view .product-info {
    width: 100%;
  }
  .modal-right.quick-view .product-images {
    display: none;
  }
  .modal-right .close-modal {
    top: 24px !important;
  }
  .modal-right .modal-container {
    padding: 28px 15px !important;
  }
  .coming-soon-page .coming-soon-time .featured-countdown .countdown__item:not(:last-child)::after {
    right: -22px;
    top: -5px;
  }
  .coming-soon-page {
    padding: 70px 0;
  }
  .coming-soon-page .coming-soon-time .featured-countdown .countdown__item .countdown__value {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .term-page {
    flex-direction: column;
    gap: 40px;
  }
  .term-page .content,
  .term-page .term-page--nav {
    width: 100%;
  }
  .shopping-cart-page .cart-wrapper .cart-item {
    min-width: 750px;
  }
  .shopping-cart-page .cart-wrapper .cart-item__action {
    background-color: #fff;
    right: 0;
    padding: 10px;
  }
  .cart-wrapper {
    overflow-x: auto;
  }
  .cart-wrapper::-webkit-scrollbar {
    display: none;
  }
  .rating-box.rating-box-product-detail {
    padding: 16px;
  }
  .md-items-start {
    align-items: flex-start !important;
  }
  .sell-your-car-box-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-box .sub-img {
    width: 180px;
    height: 180px;
  }
  .compare-box {
    padding: 16px;
  }
  .compare-box .compare-box-inner {
    grid-column: span 2;
  }
  .bloc-details-container .bloc-details-tag-style-2 {
    flex-direction: column;
    gap: 8px;
  }
  .bloc-details-container .bloc-details-tag-style-2 li a {
    border-right: none !important;
  }
  .bloc-details-container .title-2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .bloc-details-container {
    padding: 40px 15px 0;
  }
  .blog-detail-recentpost .next {
    padding-left: 15px;
  }
  .blog-detail-recentpost .previous {
    padding-right: 15px;
  }
  .blog-detail-recentpost .next .h5,
  .blog-detail-recentpost .previous .h5 {
    font-size: 16px;
    line-height: 1.2;
  }
  .comments-post.comments-post--inner {
    margin-left: 15px;
  }
  .post-style-7 {
    flex-direction: column;
  }
  .post-style-7 .image,
  .post-style-7 .content {
    width: 100%;
  }
  .md-gap-6 {
    gap: 6px !important;
  }
  .swiper-listing-details-main.style-2 .swiper-listing-details-thumbs {
    display: none;
  }
  .listing-details-item .listing-details-item--content .listing-details-item--button {
    padding: 4px 8px;
  }
  .swiper-listing-details-main .listing-details-item {
    height: 400px;
  }
  .listing-details-item-wrapper .main-item {
    grid-column: span 4;
  }
  .listing-details-item-wrapper > .flex {
    grid-column: span 2;
  }
  .md-col-span-2 {
    grid-column: span 2;
    padding: 0;
  }
  .rating-box .rating-box__content {
    flex-direction: column;
    gap: 24px;
  }
  .rating-box .rating-box__content .rating-box__button {
    justify-content: center;
    width: 100%;
  }
  .financing-calculator .financing-calculator-form .btn {
    width: 100%;
  }
  .financing-calculator .financing-calculator-form {
    flex-direction: column;
  }
  .financing-calculator .financing-calculator-form > div, .financing-calculator .financing-calculator-form > button {
    width: 100%;
  }
  .why-choose-us {
    border-radius: 16px;
  }
  .header-top-bar--socical-wrapper {
    gap: 12px !important;
  }
  .cta-section {
    overflow: hidden;
    flex-direction: column-reverse;
  }
  .cta-section .cta--content,
  .cta-section .cta--image {
    width: 100%;
  }
  .brand-item-style-3 {
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 16px;
    margin-bottom: 0;
  }
  .page-title.page-title-style-5 .page-title--image {
    padding: 32px 0 0;
  }
  .flat-tabs .menu-tab-style1 li:not(:last-child) {
    margin-right: 0;
  }
  .header.header-style-2 .header-top-bar {
    height: 32px;
  }
  .header.header-style-2 .header-top-bar .header-top-bar--socical-wrapper,
  .md-hidden {
    display: none;
  }
  .md-show {
    display: block !important;
  }
  .md-min-w-full {
    min-width: 100%;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .md-gap-8 {
    gap: 8px;
  }
  .md-text-0 {
    font-size: 0 !important;
  }
  .card-box-style-9.card-box,
  .card-box-style-8.card-box {
    flex-direction: column;
  }
  .card-box-style-9.card-box .image,
  .card-box-style-8.card-box .image {
    max-width: 100%;
    width: 100%;
    height: 350px;
    border-radius: 16px 16px 0 0;
  }
  .card-box-style-9.card-box .image img,
  .card-box-style-8.card-box .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-box-style-9.card-box .content,
  .card-box-style-8.card-box .content {
    border-radius: 0 0 16px 16px;
    border: 1px solid #e7e7e7;
    border-top: none;
    padding: 16px;
    width: 100%;
  }
  .card-box-style-9.card-box .bottom, .card-box-style-9.card-box .top,
  .card-box-style-8.card-box .bottom,
  .card-box-style-8.card-box .top {
    width: calc(100% - 16px);
  }
  .card-box-style-9.card-box .bottom,
  .card-box-style-8.card-box .bottom {
    bottom: auto;
    top: 314px;
  }
  .md-colspan-1 {
    grid-column: span 2/span 2;
  }
  .page-title-style-1 .page-title--content {
    width: calc(100% - 32px);
  }
  .page-title-style-1 .page-title--post-list {
    height: auto;
    width: 100%;
    bottom: auto;
    top: 80px;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-title-style-1 .page-title--post-list .item {
    padding: 16px;
  }
  .page-title-style-1 .page-title--post-list .item .item-title {
    font-size: 16px;
    line-height: 1.2;
  }
  .header.header-style-2 .header-container-fluid {
    padding: 0 15px;
  }
  .header.header-style-2 .header.header-style-2.header-style-3 .header-inner-style-2,
  .header.header-style-2 .header-inner-style-2 {
    height: 56px !important;
  }
  .header.header-style-2 .header-contact {
    gap: 8px;
  }
  .header.header-style-2 .header-contact li {
    gap: 4px;
  }
  .header.header-style-2 .header-contact li a,
  .header.header-style-2 .header-contact li .text {
    font-size: 10px !important;
    line-height: 14px !important;
  }
  .header.header-style-2 .header-contact li div {
    display: flex;
    flex-direction: column;
  }
  .header.header-style-2 .header-contact .icon {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }
  .header.header-style-2 .header-contact .icon svg {
    width: 14px;
    height: 14px;
  }
  .header .header-top-bar {
    height: 60px;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
  }
  .header .header-top-bar .header-top-bar--text {
    font-size: 12px;
    line-height: 18px;
  }
  .header-top-bar {
    flex-direction: column;
    align-items: center;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .grid.md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.md-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-bottom-links > li {
    margin-left: 6px;
    padding-left: 8px;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .md-flex-col, .footer-links {
    flex-direction: column;
  }
  .md-flex-center {
    justify-content: center;
  }
  .md-flex-start {
    justify-content: flex-start;
  }
  .md-items-start {
    align-items: flex-start !important;
  }
  .md-pl-0 {
    padding-left: 0 !important;
  }
  .md-ml-0 {
    margin-left: 0 !important;
  }
  .pr-40,
  .pr-100 {
    padding-right: 0;
  }
  .testimonior-box {
    padding: 16px;
  }
  .footer .footer-top,
  .section-video,
  .py-80,
  .py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pb-84,
  .pb-100 {
    padding-bottom: 50px;
  }
  .tf-spacing-style3,
  .tf-spacing-style2,
  .tf-spacing {
    height: 70px !important;
  }
  .search-cars__select-wrapper {
    width: 50%;
  }
  .search-cars__advanced-content .search-cars__select-wrapper {
    width: 100%;
  }
  .page-title .filter-select-dropdown,
  .search-cars__select {
    padding: 14px 12px 0;
  }
  .search-cars__label {
    top: 2px;
  }
  .search-cars__filter {
    width: 48px;
  }
  .search-cars__select,
  .search-cars__filter,
  .btn.btn-large-2,
  .search-cars__search {
    height: 48px;
  }
  .md-gap-12 {
    gap: 12px !important;
  }
  .search-cars__advanced-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .search-cars__range-wrapper {
    margin-left: 8px;
  }
  .search-cars__advanced-row,
  .search-cars__features {
    padding: 0 15px;
  }
  .card-details {
    min-width: 800px;
  }
  .card-details .card-details--table tr td {
    padding: 8px 12px;
  }
  .md-w-full {
    width: 100%;
  }
  .height-840 {
    height: 700px;
  }
  .card-box-style-5 {
    padding: 0;
  }
  .blog-details-banner {
    height: 500px;
  }
  .md-mt-16 {
    margin-top: 16px !important;
  }
}
@media (max-width: 575px) {
  .slide-gallery-list.style2 .slide-gallery.active {
    flex: 10;
  }
  .scroll-element .menu-tab-style5 .item a {
    padding: 8px 12px;
  }
  .listing-details-item--content {
    flex-direction: column;
    align-items: start !important;
    justify-content: start;
  }
  .product .product-top {
    height: 400px;
  }
  .menu-tab-style7 {
    max-width: 100%;
  }
  .sm-flex-col {
    flex-direction: column;
  }
  .sm-gap-16 {
    gap: 16px !important;
  }
  .sm-flex-start {
    justify-content: flex-start !important;
  }
  .sm-mt-16 {
    margin-top: 16px !important;
  }
  .sm-items-start {
    align-items: flex-start !important;
  }
  .swiper-listing-details-main-style-2.style-2 .listing-details-item {
    height: 500px;
  }
  .swiper-listing-details-thumbs-style-2 {
    top: 20px;
    right: 20px;
  }
  .swiper-listing-details-thumbs-style-2 .swiper-slide {
    width: 74px !important;
    height: 74px !important;
  }
  .car-overview-list-style4,
  .car-overview-list-style3,
  .car-overview-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-hidden {
    display: none !important;
  }
  .car-box-style-3 .content {
    padding: 16px;
  }
  .card-box-style-5 {
    width: 100%;
  }
  .card-box-style-5 .content {
    margin: 0;
    padding: 0;
  }
  .card-box-style-5 .image {
    width: 100%;
  }
  .card-box-style-5 .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .search-form {
    width: 210px;
  }
  .home-style-11 .header .header-top-bar-style2 .header-actions,
  .home-style-11 .header .header-top-bar-style2 .header-top-bar-left {
    gap: 8px;
  }
  .home-style-11 .header .header-top-bar-style2 .header-actions .divider-vertical,
  .home-style-11 .header .header-top-bar-style2 .header-top-bar-left .divider-vertical {
    margin-left: 0;
    margin-right: 8px;
  }
  .home-style-11 .header .header-top-bar-style2 .header-actions .language-select,
  .home-style-11 .header .header-top-bar-style2 .header-top-bar-left .language-select {
    margin-left: 8px;
  }
  .dashboard-container .upload-section .upload-preview--poster {
    height: 300px;
  }
  .attachments-box > .flex {
    flex-direction: column;
    width: 100%;
  }
  .attachments-box .item {
    width: 100%;
  }
  .attachments-box .item .trash {
    margin-left: auto;
  }
  .sm-col-span-4 {
    grid-column: span 4;
  }
  .grid.sm-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .core-dropdown.user-admin .core-dropdown__button .avatar {
    width: 40px;
    height: 40px;
  }
  .core-dropdown.user-admin .core-dropdown__button {
    gap: 6px;
  }
  .title-section {
    flex-direction: column;
    align-items: start;
  }
  .modal-newsletter .img-newletter {
    height: 250px;
  }
  .bloc-details-container .listing-details--contact-dealer {
    flex-direction: column;
    align-items: start;
  }
  .swiper-listing-details-main.style-2 .listing-details-item,
  .swiper-listing-details-main .listing-details-item {
    height: 370px;
  }
  .car-box-style-3 {
    max-height: 500px;
    height: 500px;
  }
  .card-box-style-9.card-box .image,
  .card-box-style-8.card-box .image {
    height: 250px;
  }
  .card-box-style-9.card-box .bottom,
  .card-box-style-8.card-box .bottom {
    top: 214px;
  }
  .grid.sm-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-page-info {
    padding: 16px;
  }
  .footer .footer-links .collapse {
    width: 100%;
  }
  .footer .footer-contact {
    display: block;
  }
  .footer .footer-contact > div {
    width: 100%;
  }
  .footer-links .collapse .collapse-title {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 400px) {
  .header.header-style-2 .header-inner {
    justify-content: center;
  }
  .header .logo-mobile img, .header .logo img,
  .header.header-style-2 .logo-mobile-header,
  .logo-mobile-header {
    width: 500px;
    height: auto;
  }
  .grid.smb-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
body {
  padding-top: 0;
}
body .fixed-header-primary {
  height: 500px;
  background-color: #1C1C1C;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

html.fake-overflow-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #1C1C1C;
  z-index: 999999;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: #1C1C1C;
}

.h-706 {
  height: 706px;
}

.h-800 {
  height: 800px;
}

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

.border-color-blur {
  border-color: rgba(255, 255, 255, 0.1);
}

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

.flex {
  display: flex;
}

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

.block {
  display: block;
}

.inline {
  display: inline;
}

.align-middle {
  vertical-align: middle;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

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

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

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

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

.margin-auto {
  margin: auto !important;
}

.margin-right-auto {
  margin-right: auto;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.divider {
  height: 1px;
  background: #E7E7E7;
}

.divider {
  height: 1px;
  background: #E7E7E7;
}

.divider-vertical {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.divider-vertical-style2 {
  width: 1px;
  background: #D9D9D9;
}

.divider-vertical-style3 {
  width: 1px;
  background: #E7E7E7;
}

.divider-vertical-style4 {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider-blur {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.font-weight-600 {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-secondary {
  color: #4B4B4B;
}

.tf-spacing {
  height: 100px;
}

.tf-spacing-style2 {
  height: 90px;
}

.tf-spacing-style3 {
  height: 80px;
}

.tf-spacing-style4 {
  height: 60px;
}

.tf-spacing-style5 {
  height: 70px;
}

.max-w-min {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.grid {
  display: grid;
}

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

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

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

.gap-30 {
  gap: 30px;
}

.gap-32 {
  gap: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-42 {
  margin-bottom: 42px;
}

.mb-8 {
  margin-bottom: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.ml-4 {
  margin-left: 4px;
}

.bg-primary-2 {
  background-color: #990000;
}

.bg-green {
  background-color: #4518CC;
}

.text-muted {
  color: #9FA1A4;
}

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

.uppercase {
  text-transform: uppercase;
}

.gap-5 {
  gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.w-20 {
  width: 20px;
}

.w-28 {
  width: 28px;
}

.h-28 {
  height: 28px;
}

.w-40 {
  width: 40px;
}

.h-40 {
  height: 40px;
}

.w-48 {
  width: 48px;
}

.h-48 {
  height: 48px;
}

.h-20 {
  height: 20px;
}

.h-22 {
  height: 22px;
}

.gap-50 {
  gap: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.overlay-parallax {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.index-1 {
  z-index: 1;
}

.index-2 {
  z-index: 2;
}

.index-10 {
  z-index: 10;
}

.index-20 {
  z-index: 20;
}

.background-light {
  background-color: #F7F7F7;
}

.background-be {
  background-color: #F3F7EE;
}

.p-40 {
  padding: 40px;
}

.radius-12 {
  border-radius: 12px;
}

.gap-10 {
  gap: 10px !important;
}

.gap-12 {
  gap: 12px;
}

.gap-15 {
  gap: 15px;
}

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

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

.col-span-2 {
  grid-column: span 2;
}

.col-span-4 {
  grid-column: span 4;
}

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

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

@media (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
.scroll-tab {
  width: calc(100% - 30px);
}

.max-w-628 {
  max-width: 628px;
  width: 100%;
}

.bg-primary {
  background-color: #1C1C1C;
}

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

.bg-blur {
  background: rgba(255, 255, 255, 0.1019607843);
}

.border-blur {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-top-none {
  border-top: none;
}

.list-ticks-green li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 500;
  margin-bottom: 5px;
}
.list-ticks-green li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.clamp {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.clamp-1 {
  -webkit-line-clamp: 1;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-3 {
  -webkit-line-clamp: 3;
}

.text-xs {
  font-size: 12px;
  line-height: 1.67;
}

.text-sm {
  font-size: 14px;
  line-height: 22px;
}

.overflow-x {
  overflow-x: auto;
}
.overflow-x::-webkit-scrollbar {
  display: none;
}

.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}

.h-40 {
  height: 40px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-40 {
  border-radius: 40px;
}

.radius-100 {
  border-radius: 100px;
}

.text-highlight {
  color: #990000;
}

.bg-highlight {
  background-color: #990000;
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.visible {
  overflow: visible !important;
}

.font-weight-500 {
  font-weight: 500;
}

.gap-124 {
  gap: 124px;
}

.gap-130 {
  gap: 130px;
}

.z-index-2 {
  z-index: 2;
}

.gap-x-30 {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.gap-x-60 {
  -moz-column-gap: 60px;
       column-gap: 60px;
}

.gap-x-16 {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.gap-y-8 {
  row-gap: 8px;
}

.gap-y-16 {
  row-gap: 16px;
}

.gap-y-20 {
  row-gap: 20px;
}

.gap-y-24 {
  row-gap: 24px;
}

.gap-x-12 {
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.gap-x-20 {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.gap-y-38 {
  row-gap: 38px;
}

.gap-x-23 {
  -moz-column-gap: 23px;
       column-gap: 23px;
}

.gap-y-30 {
  row-gap: 30px;
}

.gap-y-40 {
  row-gap: 40px;
}

.gap-y-60 {
  row-gap: 40px;
}

.gap-y-39 {
  row-gap: 39.5px;
}

.gap-y-41 {
  row-gap: 41px;
}

.gap-6 {
  gap: 6px;
}

.gap-7 {
  gap: 7px;
}

.gap-13 {
  gap: 13px;
}

.gap-16 {
  gap: 16px;
}

.gap-18 {
  gap: 18px;
}

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

.gap-20 {
  gap: 20px;
}

.gap-60 {
  gap: 60px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.background-blue {
  background-color: #D8E2EA;
}

.unset-select {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Scroll Top
-------------------------------------------------------------- */
.progress-bars .progress-bars-line {
  display: block;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
}
.progress-bars .progress-bars-line > div {
  position: relative;
  display: block;
  height: 10px;
  border-radius: 10px;
  background-color: #990000;
}
.progress-bars .progress-bars-line > div .progress-bars-number {
  position: absolute;
  right: -3px;
  top: -30px;
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 30px;
  box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms linear;
  background: #990000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress-wrap .progress-wrap-icon {
  height: 20px;
  width: 20px;
  position: absolute;
  color: #fff;
  z-index: 1;
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: #fff;
  stroke-width: 4;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}

/* MAP */
.mark-price {
  box-shadow: 0 0 0 4px rgba(241, 91, 40, 0.1019607843);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1C1C1C;
  background-color: #fff;
  border-radius: 100px;
  padding: 8px 16px;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.map-marker-container {
  position: absolute;
  margin-top: 10px;
  transform: translate3d(-50%, -100%, 0);
}

.marker-container {
  position: relative;
  top: 25px;
  left: 10px;
  width: 46px;
  height: 46px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-perspective: 1000;
}

.face {
  position: absolute;
  z-index: 100;
}

.infoBox-opened .mark-price {
  box-shadow: 0 0 0 4px #990000;
}

#singleListingMap .marker-container {
  cursor: default;
}

.marker-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  z-index: 1;
}

#map .infoBox {
  margin-left: 245px;
  margin-bottom: -200px;
}

.map-listing-item {
  position: relative;
}
.map-listing-item .location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-listing-item .location-info img {
  width: 16px;
  height: 16px;
}
.map-listing-item .location-info .location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 22px;
  color: #1C1C1C;
}
.map-listing-item .view-details {
  display: flex;
  align-items: center;
  height: 22px;
  gap: 4px;
  font-size: 14px;
  line-height: 22px;
}

.map-listing-item .inner-box {
  position: relative;
  border-radius: 16px;
  max-width: 240px;
  overflow: hidden;
  background-color: #fff;
}
.map-listing-item .inner-box .infoBox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  cursor: pointer;
  border: none;
  padding: 0;
}
.map-listing-item .inner-box .infoBox-close img {
  width: 20px;
  height: 20px;
  display: block;
}
.map-listing-item .inner-box .infoBox-close:hover {
  opacity: 0.8;
}

.map-listing-item img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.map-listing-item .content {
  position: relative;
  padding: 12px 14px;
  border: 1px solid #E7E7E7;
  border-top: none;
}

.cluster-map-visible {
  text-align: center;
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  background-color: #14a077;
  border: 7px solid rgba(25, 103, 210, 0.2);
  box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
  box-sizing: content-box;
  background-clip: content-box;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.z-98 {
  z-index: 98;
}

.iframe-video {
  border: none;
  width: 100%;
  min-height: 400px;
  height: 100%;
  width: 100%;
}

/* Theme color overrides via CSS variables (configurable from admin Theme Options)
-------------------------------------------------------------- */
:root {
  --color-main: var(--primary-color, #990000);
  --color-hover: var(--primary-color, #990000);
  --color-hover-opacity: var(--primary-color-hover, #6b0000);
}

a:hover,
a:focus {
  color: var(--primary-color, #990000);
}

.bg-hover:hover,
.background-primary {
  background-color: var(--primary-color, #990000) !important;
}

.text-primary-color {
  color: var(--primary-color, #990000) !important;
}

.border-primary-color {
  border-color: var(--primary-color, #990000) !important;
}