@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
p,
span,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

label {
  margin-bottom: 0px !important;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: none;
  text-decoration: none;
}

a {
  text-decoration-skip-ink: none;
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  outline: none;
}

.container-new {
  max-width: 90rem;
  margin: 0 auto;
}

.map-search .search-item {
  z-index: 11;
}

.search-wrap {
  padding: 8px;
  border-radius: 16px;
  background-color: rgba(24, 24, 24, 0.04);
  width: 100%;
  display: flex;
  gap: 9px;
}
.search-wrap .search-item {
  position: relative;
  flex: 1;
  background-color: transparent;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.search-wrap .search-item__text {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #181818;
  font-size: 1rem;
  white-space: nowrap;
  max-width: 150px;
  display: block;
}
.search-wrap .search-item__wrap {
  gap: 4px;
  display: flex;
  align-items: center;
}
.search-wrap .search-item__wrap .sticker {
  display: none;
  align-items: center;
  justify-content: center;
  height: 20px;
  font-size: 0.75rem;
  color: #fff;
  min-width: 20px;
  border-radius: 50%;
  background-color: #00a3f4;
}
.search-wrap .search-item.is-locked {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
  display: none;
}
.search-wrap .search-item:hover {
  transition: 0.3s;
  background-color: rgba(24, 24, 24, 0.04);
}
.search-wrap .search-item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  right: -5px;
  width: 1px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(24, 24, 24, 0.1);
}
.search-wrap .search-item__list-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  overflow: auto;
  min-width: 350px;
  max-height: 300px;
  z-index: 5;
  width: fit-content;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 56px 0 rgba(29, 29, 31, 0.2);
  padding: 4px;
  cursor: default;
  display: none;
}
.search-wrap .search-item__list-wrap.bedrooms {
  padding: 14px;
}
.search-wrap .search-item__list-wrap.bedrooms .price-wrap__title {
  display: block;
  margin-bottom: 12px;
}
.search-wrap .search-item__list-wrap.show {
  display: block;
}
.search-wrap .search-item__list-wrap .search-list {
  width: 100%;
}
.search-wrap .search-item__list-wrap .search-list__item {
  padding: 8px;
  display: flex;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  align-items: center;
}
.search-wrap .search-item__list-wrap .search-list__item.disable {
  opacity: 0.5;
}
.search-wrap .search-item__list-wrap .search-list__item:hover {
  background: rgba(24, 24, 24, 0.04);
  transition: 0.3s;
}
.search-wrap .search-item__list-wrap .search-list__item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 4px;
  border: 1px solid rgba(24, 24, 24, 0.2);
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
.search-wrap .search-item__list-wrap .search-list__item input[type=checkbox]:checked {
  border-color: var(--colors-blue-base, #00a3f4);
  background: var(--colors-blue-base, #00a3f4);
}
.search-wrap .search-item__list-wrap .search-list__item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.search-wrap .pr-link {
  display: none;
}
.search-wrap.main-page {
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.1);
}
.search-wrap.main-page .pr-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 32px;
  gap: 4px;
  background-color: #00a3f4;
  border-radius: 8px;
  color: #fff;
  font-size: 1 rem;
  font-weight: 400;
  line-height: 136.593%;
}
.search-wrap.main-page .pr-link .total {
  color: #fff;
}
.search-wrap.main-page svg path {
  stroke: #fff;
}
.search-wrap.main-page .search-item__text {
  color: #fff;
}

.bedroom-list {
  display: flex;
  gap: 8px;
  padding: 12px;
}
.bedroom-list__item input[type=checkbox] {
  display: none;
}
.bedroom-list__item input[type=checkbox]:checked + label {
  background-color: rgba(0, 163, 244, 0.08);
  border-color: rgba(0, 163, 244, 0.32);
  color: #00a3f4;
}
.bedroom-list__item label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(24, 24, 24, 0.12);
  background-color: rgba(24, 24, 24, 0.0392156863);
  color: #181818;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 0px !important;
}
.bedroom-list__item label:hover {
  border-color: rgba(0, 163, 244, 0.32);
}

.price-wrap {
  padding: 12px;
}
.price-wrap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.price-wrap__title {
  font-size: 1rem;
  color: #181818;
}
.price-wrap__reset {
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #00a3f4;
  cursor: pointer;
  padding: 0;
}
.price-wrap__inputs {
  display: flex;
  align-items: center;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 8px;
}
.price-wrap__field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
}
.price-wrap__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: #181818;
  height: 44px;
  background: transparent;
}
.price-wrap__input::placeholder {
  color: rgba(24, 24, 24, 0.4);
}
.price-wrap__input::-webkit-outer-spin-button, .price-wrap__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-wrap__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: rgba(24, 24, 24, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.price-wrap__divider {
  width: 1px;
  height: 24px;
  background-color: rgba(24, 24, 24, 0.12);
  flex-shrink: 0;
}

.selected-wrap {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.selected-wrap .selected-item {
  padding: 4px 16px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(0, 163, 244, 0.16);
  background: rgba(0, 163, 244, 0.08);
  gap: 12px;
}
.selected-wrap .selected-item .reset-search {
  display: none;
}
.selected-wrap .selected-item .reset-search.show {
  display: flex;
}
.selected-wrap .selected-item__text {
  font-size: 1rem;
  color: #181818;
}
.selected-wrap .selected-item.reset-search {
  background: rgba(24, 24, 24, 0.04);
  border: 1px solid rgba(24, 24, 24, 0.04);
}
.selected-wrap .remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.w-pagination-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.load-more-btn {
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid rgba(24, 24, 24, 0.12);
  background: #fff;
  font-size: 1rem;
  color: #00a3f4;
  cursor: pointer;
  transition: 0.2s;
  backdrop-filter: blur(calc(var(--effect-background-blur, 100px) / 2));
  background: var(--colors-blue-fade-1, rgba(0, 163, 244, 0.08));
}
.load-more-btn:hover {
  background: rgba(24, 24, 24, 0.04);
}

#map-new {
  width: 100%;
  height: 700px;
}

.custom-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: fit-content;
  position: relative;
}
.custom-marker .name-wrap {
  padding: 5px 12px;
  box-shadow: 0 0 56px 0 rgba(29, 29, 31, 0.2);
  border-radius: 100px;
  font-weight: 400;
  line-height: 150%;
  color: #181818;
  min-width: 150px;
  max-width: 200px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(-100% + 10px);
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-marker .marker-icon {
  width: 40px;
  height: 40px;
  background: var(--colors-blue-base, #00a3f4);
  border: 2px solid var(--colors-white-solid, #fff);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.custom-marker:hover .name-wrap {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.map-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-project-card {
  position: absolute;
  left: 10px;
  top: 50px;
  z-index: 500;
  background-color: #fff;
  width: 400px;
  padding: 4px;
  border-radius: 16px;
  display: none;
}
.map-project-card.show {
  display: block;
}
.map-project-card .close-card {
  position: absolute;
  right: 16px;
  top: 16px;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.map-project-card .img-wrap {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.map-project-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-project-card .text-wrap {
  padding: 0 16px;
  background-color: transparent !important;
}
.map-project-card .name {
  color: #181818;
  line-height: 120%; /* 28.8px */
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.map-project-card .area {
  color: rgba(24, 24, 24, 0.7) !important;
  line-height: 150%; /* 28.8px */
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 1 !important;
  text-align: left !important;
}
.pr-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pr-wrap .pr-wrap-item {
  height: 25px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 150%;
  color: #181818;
  font-size: 0.875rem;
  background-color: rgba(24, 24, 24, 0.04);
}
.map-project-card .price {
  color: #00a3f4 !important;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
  text-align: left !important;
  opacity: 1 !important;
}
.map-project-card .bot-info {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(24, 24, 24, 0.1);
}
.map-project-card .bot-info .bot-info__item {
  color: #181818;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.875rem;
}

.mobile-btns,
.form-btns,
.form-head {
  display: none;
}

.mobile-head {
  display: none;
}

@media (max-width: 767px) {
  .search-wrap .search-item__list-wrap.bedrooms {
    padding: 0;
  }
  .price-wrap__field {
    width: 50%;
  }
  .map-search {
    display: none;
  }
  .selected-wrap {
    display: none;
  }
  .mobile-btns {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  [data-filter-key="09-developer"] .search-item__list-wrap.show,
  [data-filter-key="14-handover"] .search-item__list-wrap.show {
    transform: translateY(-70px);
  }
  .search-wrap {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100dvh;
    background-color: #fff;
    z-index: 9999999;
    padding: 12px 12px 0 12px;
    border-radius: 0;
  }
  .search-wrap [data-filter-key=bedrooms],
  .search-wrap [data-filter-key=price] {
    z-index: 1;
  }
  .search-wrap .search-item {
    flex: 0 0 48px;
    width: 100%;
    border: 1px solid rgba(24, 24, 24, 0.1);
    height: 48px;
    position: relative;
  }
  .search-wrap .search-item:not(:last-child)::after {
    display: none;
  }
  .search-wrap .search-item.bedrooms-select {
    border: none;
    flex: 0 0 auto;
    padding: 0;
    flex-shrink: 0;
    height: auto;
  }
  .search-wrap .search-item.bedrooms-select:hover {
    background-color: transparent;
  }
  .search-wrap .search-item.bedrooms-select .search-item__text {
    display: none;
  }
  .search-wrap .search-item.bedrooms-select .search-item__wrap {
    display: none;
  }
  .search-wrap .search-item.bedrooms-select .search-item__list-wrap {
    position: static;
    width: 100%;
    min-width: 100%;
    display: block;
    transform: translateY(0%);
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
  }
  .search-wrap .search-item.bedrooms-select .search-item__list-wrap .bedroom-list {
    overflow: auto;
  }
  .search-wrap .search-item.price-select {
    border: none;
    flex: 0 0 auto;
    padding: 0;
    flex-shrink: 0;
    height: auto;
  }
  .search-wrap .search-item.price-select .price-wrap {
    padding: 0;
  }
  .search-wrap .search-item.price-select:hover {
    background-color: transparent;
  }
  .search-wrap .search-item.price-select .search-item__text {
    display: none;
  }
  .search-wrap .search-item.price-select .search-item__wrap {
    display: none;
  }
  .search-wrap .search-item.price-select .search-item__list-wrap {
    position: static;
    width: 100%;
    min-width: 100%;
    display: block;
    transform: translateY(0%);
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
  }
  .search-wrap .search-item.price-select .search-item__list-wrap .bedroom-list {
    overflow: auto;
  }
  .search-wrap .search-item__list-wrap {
    bottom: -10px;
    max-width: 100%;
    width: 100%;
    z-index: 999;
  }
  .search-wrap.show {
    display: flex;
    background-color: #fff;
  }
  .search-wrap.show .search-item__text {
    color: #181818;
  }
  .search-wrap.show .pr-link {
    display: none;
  }
  .search-wrap.show .form-btns .pr-link {
    display: flex;
    height: 48px;
  }
  .search-wrap.show svg path {
    stroke: #181818;
  }
  .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 8px;
    font-size: 1rem;
    height: 48px;
    padding: 0 32px;
    font-weight: 400;
  }
  .search-btn.open-filter {
    background-color: #00a3f4;
    color: #fff;
    position: relative;
  }
  .search-btn.open-filter .label-total {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #ff5449;
    color: #fff;
    border-radius: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transform: translate(50%, -50%);
  }
  .search-btn.open-filter .label-total.show {
    display: flex;
  }
  .search-btn.map-link {
    color: #00a3f4;
    border: 1px solid #00a3f4;
    flex: 1;
  }
  .form-btns {
    display: flex;
    margin-top: auto;
    width: calc(100% + 24px);
    transform: translateX(-12px);
    padding: 12px 16px;
    background-color: #fff;
    box-shadow: 0 0 56px 0 rgba(29, 29, 31, 0.2);
    justify-content: space-between;
    gap: 8px;
  }
  .form-btns .form-btn {
    height: 48px;
    padding: 0 32px;
    flex-grow: 1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #00a3f4;
    color: #fff;
  }
  .form-btns .form-btn.reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(24, 24, 24, 0.04);
    color: #ff5449;
  }
  .form-head {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 24px);
    transform: translateX(-12px);
    padding: 16px;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    margin-bottom: 16px;
  }
  .form-head .form-head-title {
    font-weight: 600;
    font-size: 1.125rem;
  }
  .form-head button {
    background-color: transparent;
  }
  .form-head button svg {
    pointer-events: none;
  }
  .map-wrap {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 9999;
  }
  #map-new {
    height: 100%;
  }
  .map-project-card {
    top: auto;
    bottom: 20px;
  }
  .map-project-card .img-wrap {
    height: 220px;
  }
  .map-project-card .name {
    font-size: 20px;
  }
  .map-project-card .bot-info {
    display: none;
  }
  .mobile-head {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 16px;
  }
  .mobile-head .page-name {
    font-family: var(--font-family, Manrope);
    font-size: var(--typography-font-size-size-large, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 128%;
    color: #181818;
  }
}
html[dir=rtl] .search-wrap {
  direction: rtl;
}
html[dir=rtl] .search-item__list-wrap {
  left: auto;
  right: 0;
}
html[dir=rtl] .search-item:not(:last-child)::after {
  right: auto;
  left: -5px;
}
html[dir=rtl] .selected-wrap {
  direction: rtl;
}
html[dir=rtl] .selected-item {
  flex-direction: row-reverse;
}
html[dir=rtl] .price-wrap__header {
  flex-direction: row-reverse;
}
html[dir=rtl] .price-wrap__inputs {
  flex-direction: row-reverse;
}
html[dir=rtl] .search-item__wrap {
  flex-direction: row-reverse;
}
html[dir=rtl] .map-project-card {
  left: auto;
  right: 10px;
  text-align: right;
}
html[dir=rtl] .mobile-head {
  flex-direction: row-reverse;
}
html[dir=rtl] .form-head {
  flex-direction: row-reverse;
}
html[dir=rtl] .form-btns {
  flex-direction: row-reverse;
}
html[dir=rtl] .developers_filter-card-info {
  direction: rtl;
}
@media (max-width: 767px) {
  html[dir=rtl] .mobile-btns {
    flex-direction: row-reverse;
  }
  html[dir=rtl] .form-head {
    transform: translateX(12px);
  }

}

/*# sourceMappingURL=style.css.map */
