.bhcar__container {
  max-width: 1460px;
  width: 100%;
  padding: 30px 10px 0;
  margin: 0 auto;
}

.bhcar-search__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
}

.bhcar-search__header-criteria {
  flex-basis: 100%;
  width: 100%;
  padding: 10px 16px;
  background-color: rgba(226, 36, 21, 0.1);
  border-left: 3px solid #e22415;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 150%;
  color: #eee;
  margin-bottom: 8px;
}

.bhcar-search__header-criteria-label {
  font-weight: 600;
  color: #e22415;
  margin-right: 8px;
}

.bhcar-search__header-criteria strong {
  font-weight: 600;
  color: #fff;
}

.bhcar-search__header-criteria-separator {
  margin: 0 8px;
  color: #e22415;
  font-weight: 600;
}

.bhcar-search__header-result,
.bhcar-search__header-result > span {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #e22415;
}

.bhcar-search__header-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bhcar-search__header-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.bhcar-search__header-sort > label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.bhcar-search__header-button,
.bhcar__search-pagination-select {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  cursor: pointer;
  border-radius: 8px;
  padding: 0 16px;
  width: 189px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;

  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
}

.bhcar-search__header-button > option {
  background-color: #000;
  cursor: pointer;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.bhcar__search-pagination-limit {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .bhcar__search-pagination-limit {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

.bhcar-search__header-close {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  display: none; /* Hidden by default */
  align-items: center;
  gap: 16px;
}

.bhcar-search__header-closeBtn {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Show close button when sorting is active */
.bhcar-search__header-close.show {
  display: flex;
}

.bhcar-search__body {
  display: grid;
  /* grid-template: 1fr / 72% 26%; */
  grid-template: 1fr / 1fr 350px;
  grid-column-gap: 29px;
}

.bhcar-search__box {
  width: 100%;
  display: flex;
  border-radius: 16px;
  margin-bottom: 24px;
  max-height: 450px;
}

.bhcar-search__box-image {
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 16px 0 0 16px;
  max-width: 50%;
  /* max-width: 40%; */
}

.bhcar-search__box-content {
  background-color: #fff;
  padding: 55px 40px;
  /* padding: 35px 40px; */
  width: 100%;
  border-radius: 0 16px 16px 0;
}

.bhcar-search__box-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050505;
  margin: 0 0 8px;
}
@media (max-width: 1820px) {
  .bhcar-search__box-title {
    font-size: 26px;
  }
}

.bhcar-search__box-description {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #414141;
  margin: 0 0 16px;
}
@media (max-width: 1820px) {
  .bhcar-search__box-description {
    font-size: 14px;
  }
}

.bhcar-search__box-characteristics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*gap: 14px;*/
  gap: 7px;
  margin-bottom: 8px;
}

.bhcar-search__box-characteristic {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  /* font-size: 20px; */
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #050505;
}
.bhcar-search__box-characteristic:first-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
  /*width: 117px ;*/
  width: auto;
}
.bhcar-search__box-characteristic:first-of-type > svg {
  flex-shrink: 0;
}
.bhcar-search__box-comment {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 83%;
  letter-spacing: 0.03em;
  color: #414141;
  margin: 0 0 24px;
}

.bhcar-search__box-price {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050505;
  margin: 0 0 8px;
}

.bhcar-search__box-discount {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #050505;
  margin: 0 0 24px;
}

.bhcar-search__box-discount > span {
  color: #0096cf;
}

.bhcar-search__center-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #050505;
  padding-top: 16px;
}

.bhcar-search__center {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bhcar-search__center-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #050505;
  margin: 0 0 8px;
}

.bhcar-search__center-distance {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bhcar-search__center-distance > span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: 0.04em;
  color: #050505;
}

.bhcar-search__center-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bhcar-search__center-control {
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.bhcar-search__results {
  width: 100%;
}

.bhcar-search__aside-boxes {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  height: fit-content;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.bhcar-search__aside-box {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.bhcar-search__aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}

.bhcar-search__aside-start {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
}

.bhcar-search__aside-end {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: transparent;
}

.bhcar-search__information {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  background-image: url(./content/banner.png);
  background-size: cover;
  background-position: center;
}
.bhcar-search__information.--first {
  background-image: url(./content/banner-1.png);
}
.bhcar-search__information.--second {
  background-image: url(./content/banner-2.png);
}
.bhcar-search__information.--third {
  background-image: url(./content/banner-3.png);
}
.bhcar-search__information.--fourth {
  background-image: url(./content/banner-4.png);
}
.bhcar-search__information.--fifth {
  background-image: url(./content/banner-5.png);
}
.bhcar-search__information-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 24px 0;
}

.bhcar-search__information-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.bhcar-search__search {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 16px;
  display: none;
}

.bhcar-search__search-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px;
  border-radius: 8px;
}

.bhcar-search__search-input {
  width: 100%;
  border-radius: 8px;
  border: none;
  background: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #000;
  outline: none;
}

.bhcar-search__search-button {
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  padding: 0;
  background-color: transparent;
}

.bhcar-search__search-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow: auto;
}
.bhcar-search__search-list::-webkit-scrollbar{
  width: 4px;
}
.bhcar-search__search-list::-webkit-scrollbar-thumb{
  width: 4px;
  background: #e22415;
  border-radius: 15px;
}
.bhcar-search__search-list::-webkit-scrollbar{
  width: 4px;
}
.bhcar-search__search-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  cursor: pointer;
  transition: 0.3s color linear;
  padding: 8px;
  border-radius: 8px;
  margin-right: 8px;
}

.bhcar-search__search-item:hover {
  color: #e22415;
}

.bhcar-search__search-item.--selected {
  background-color: #e22415;
  color: white;
}

/* Search button with selection state */
.bhcar-search__search-button.--has-selection {
  background: #28a745;
  border-color: #28a745;
}

.bhcar-search__price-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
}

.bhcar-search__price-label {
  display: flex;
  align-items: center;
  gap: 3px;
}

.bhcar-search__price-label > input {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  padding: 0;
  text-align: center;
}

.bhcar-search__range-slider {
  position: relative;
  height: 15px;
}

.bhcar-search__range-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

/* Общий стиль бегунков — одинаковый */
.bhcar-search__range-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: red;
  border: 2px solid white;
  cursor: pointer;
  pointer-events: all;
  margin-top: -6px;
  z-index: 3;
  position: relative;
}

.bhcar-search__range-slider input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: red;
  border: 2px solid white;
  cursor: pointer;
  pointer-events: all;
}

.bhcar-search__range-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.bhcar-search__range-slider input[type="range"]::-moz-range-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.bhcar__search-submit {
  border-radius: 8px;
  padding: 10px 16px;
  height: 44px;

  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  cursor: pointer;
  border: 1px solid #e22415;
  outline: none;
  margin: 16px auto;

  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #050505;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.bhcar__search-submit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background-color: #e2231542;
  z-index: -1;
  transition: width 0.4s ease;
}

.bhcar__search-submit:hover::after {
  width: 100%;
}

.bhcar__search-clear {
  font-family: "Inter", sans-serif;
  outline: none;
  border: none;
  background-color: transparent;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s color linear;
}

.bhcar__search-clear:hover {
  color: #e22415;
  text-decoration: underline;
}

.bhcar__search-slider {
  margin-top: 72px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 0 71px;
}
.bhcar__search-slider.--main {
  align-items: flex-end;
}

.bhcar__search-slider-ellipse {
  position: absolute;
  right: 0;
  top: 0;
  width: 283px;
  height: 122px;
  border-radius: 100%;
  background-color: rgba(0, 150, 207, 0.5);
  filter: blur(100px);
  z-index: -1;
}

.bhcar__search-slider-background {
  position: absolute;
  right: -90px;
  top: 60%;
  z-index: -1;
}

.bhcar__search-slider-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 0 32px;
}

.bhcar__search-slider-item {
  padding: 33px 36px;
  border-radius: 16px;
  backdrop-filter: blur(42px);
  box-shadow: inset -5px -5px 250px 0 rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bhcar__search-slider-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 92%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin: 0 0 41px;
}

.bhcar__search-slider-image {
  width: 100%;
  max-height: 95px;
  object-fit: cover;
  margin: 0 auto;
}

.bhcar__search-slider-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 24px 0 50px;
  text-align: center;
}

.bhcar__search-slider-distance {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bhcar__search-slider-distance > span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 144%;
  letter-spacing: 0.03em;
  color: #fff;
}

.bhcar__search-slider-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bhcar__search-slider-wrapper {
  position: relative;
  max-width: 360px;
  width: 100%;
}

.bhcar__search-slider-next {
  position: absolute;
  right: -51px;
  top: 0;
  bottom: 0;
  margin: auto;
  outline: none;
  border: none;
  background-color: transparent;
  z-index: 15;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.bhcar__search-slider-prev {
  position: absolute;
  left: -51px;
  top: 0;
  bottom: 0;
  margin: auto;
  outline: none;
  border: none;
  background-color: transparent;
  z-index: 15;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.bhcar__search-pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bhcar__search-pagination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bhcar__search-pagination-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.bhcar__search-pagination-link.--active {
  color: #e22415;
}

.bhcar__search-pagination-control {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.bhcar__search-pagination-control > svg,
.bhcar__search-pagination-control > svg path {
  transition: 0.3s all linear;
}

.bhcar__search-pagination-control:hover > svg {
  fill: #fff;
}
.bhcar__search-pagination-control:hover > svg path {
  fill: #000;
}
.bhcar-no-results {
  margin-bottom: 40px;
}

/* Loading states for Marque filter */
.bhcar-loading-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #666;
  font-style: italic;
}

.bhcar-loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0096cf;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Error state for Marque filter */
.bhcar-error-item {
  padding: 16px;
  color: #dc3545;
  font-style: italic;
  text-align: center;
}

/* Message state for Modèle filter */
.bhcar-message-item {
  padding: 16px;
  color: #6c757d;
  font-style: italic;
  text-align: center;
}

.bhcar-search__header-sort
  .select2-container--default
  .select2-selection--single,
.bhcar__search-pagination-limit
  .select2-container--default
  .select2-selection--single {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.bhcar-search-select-dropdown {
  background-color: #6c6c6c !important;
}

.bhcar-search-select-dropdown .select2-results__option--selected {
  background-color: #6c6c6c !important;
}
.bhcar-search-select-dropdown
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: #e22415 !important;
}
.bhcar-search-select-dropdown .select2-results__option--selectable {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 7px 16px !important;
}
.bhcar-acheter-selector-wrapper {
  height: auto;
}
.bhcar-search-select-dropdown
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #838383 !important;
}

.bhcar-search-select-dropdown .select2-search__field {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 4px;
  padding: 6px;
}
.bhcar-search-select-dropdown
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field {
  height: 30px;
  border: none !important;
}

.bhcar-search-select-dropdown .select2-results__options::-webkit-scrollbar {
  width: 3px;
}

.bhcar-search-select-dropdown
  .select2-results__options::-webkit-scrollbar-track {
  background: #8a8a8a !important; /* фон трека */
}

.bhcar-search-select-dropdown
  .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #e22415 !important; /* цвет ползунка */
  border-radius: 4px;
}

.bhcar-search__header-sort .select2-selection__arrow,
.bhcar__search-pagination-limit .select2-selection__arrow {
  display: none !important;
}

.bhcar-search__header-sort .select2-selection__clear,
.bhcar__search-pagination-limit .select2-selection__clear {
  display: none !important;
}

.bhcar-search__header-sort .select2-selection__rendered,
.bhcar__search-pagination-limit .select2-selection__rendered {
  padding: 7px 16px !important;
  height: fit-content;
  line-height: 100% !important;
  min-width: 189px;
}

@media (max-width: 1675px) {
  .bhcar-search__box-characteristics {
    flex-wrap: wrap;
  }

  .bhcar-search__box-image {
    object-fit: cover;
  }
}

@media (max-width: 1300px) {
  .bhcar-search__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .bhcar__search-slider {
    padding-bottom: 40px;
  }
}
@media (max-width: 1100px) {
  .bhcar-search__box {
    max-height: 100%;
  }
}

/* Selected items display in sidebar filters */
.bhcar-search__selected-items {
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(226, 36, 21, 0.05);
  border-top: 1px solid rgba(226, 36, 21, 0.1);
}

.bhcar-search__selected-items:empty {
  display: none;
}

.bhcar-search__selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(226, 36, 21, 0.9);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.bhcar-search__selected-tag:hover {
  background: rgba(226, 36, 21, 1);
}

.bhcar-search__selected-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bhcar-search__selected-remove:hover {
  transform: scale(1.1);
}

.bhcar-search__selected-remove svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

@media (max-width: 768px) {
  .bhcar-search__box-characteristic {
    width: 35% !important;
  }
  .bhcar__search-slider-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .bhcar__search-slider-text {
    font-size: 13px;
    margin: 11px 0 19px;
  }
  .bhcar__search-slider {
    width: 100%;
    padding: 0;
  }
  .bhcar__search-slider.--main {
    align-items: center;
  }

  .bhcar__search-slider-footer {
    justify-content: center;
    gap: 10px;
  }
  .bhcar__search-slider-footer > img {
    width: 19px;
  }
  .bhcar__search-slider-prev {
    left: 20px;
    top: 93px;
  }
  .bhcar__search-slider-next {
    right: 20px;
    top: 93px;
  }
  .bhcar__search-slider-distance > span {
    font-size: 10px;
    gap: 12px;
  }
  .bhcar-search__header-result,
  .bhcar-search__header-result > span {
    font-weight: 600;
    font-size: 15px;
  }

  .bhcar-search__header-sort > label {
    font-weight: 600;
    font-size: 15px;
  }

  .bhcar-search__header-criteria {
    padding: 8px 12px;
    font-size: 12px;
  }

  .bhcar-search__header-criteria-separator {
    margin: 0 6px;
  }

  .bhcar__search-slider {
    display: none;
  }

  .bhcar-search__aside-start {
    font-weight: 300;
    font-size: 14px;
  }

  .bhcar-search__search-item {
    font-size: 14px;
  }

  .bhcar-search__search-input {
    font-weight: 300;
    font-size: 14px;
  }

  .bhcar__search-submit {
    font-size: 15px;
    width: 100%;
  }

  .bhcar__search-clear {
    text-decoration: underline;
  }

  .bhcar-search__box {
    flex-direction: column;
    max-width: 450px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .bhcar-search__box-image {
    filter: opacity(0.7);
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    height: 251px;
  }

  .bhcar-search__box-content {
    border-radius: 0 0 16px 16px;
    padding: 6px 16px 9px;
    position: relative;
  }

  .bhcar-search__box-title {
    font-size: 14px;
  }

  .bhcar-search__box-description {
    font-weight: 400;
    font-size: 10px;
    margin-bottom: 16px;
  }

  .bhcar-search__box-characteristic {
    flex-direction: column;
    font-size: 12px;
  }

  .bhcar-search__box-characteristics {
    justify-content: space-evenly;
  }

  .bhcar-search__box-price {
    background-color: #0096cf;
    position: absolute;
    top: -42px;
    right: 0;
    border-radius: 20px 0 0 0;
    padding: 6px 16px 6px 24px;
    width: 121px;
    height: 42px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
  }

  .bhcar-search__box-discount {
    position: absolute;
    top: -18px;
    right: 16px;
    font-weight: 400;
    font-size: 10px;
    color: #f0f0f0;
  }

  .bhcar-search__box-discount > span {
    color: #ffcf32;
  }

  .bhcar-search__box-comment {
    text-align: center;
    font-size: 8px;
    margin-bottom: 0;
  }

  .bhcar-search__center-name {
    font-size: 15px;
    color: #fff;
  }

  .bhcar-search__center-footer {
    position: absolute;
    top: -251px;
    width: 90%;
  }

  .bhcar-search__center-distance > span {
    font-size: 13px;
    color: #fff;
  }

  .bhcar-search__center-distance > svg > g > path {
    fill: #fff;
  }

  .bhcar-search__center-control > svg > path {
    fill: #fff;
  }

  .bhcar-search__information {
    background-size: cover;
    background-position: center;
  }

  .bhcar-search__information-title {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin: 0 0 25px 21px;
  }

  .bhcar-search__information-text {
    font-weight: 300;
    font-size: 14px;
  }

  .bhcar-search__information-image {
    float: left;
  }

  .bhcar-search__information {
    padding: 24px;
  }
  .bhcar__search-pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 550px) {
  .bhcar__search-submit {
    justify-content: space-between;
  }

  .bhcar__search-pagination-control > svg {
    width: 34px;
    height: 34px;
  }

  .bhcar__search-pagination-link {
    font-size: 14px;
  }

  .bhcar-search__header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .bhcar-search__header-controls {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
