html{
  height: 100%;
}

body{
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  background-color: #FFFFFF;
  color: #1e272e;
}

@view-transition {
  navigation: auto;
}

input{
  font-family: "Rubik", sans-serif;
}

textarea{
  font-family: "Rubik", sans-serif;
}

button{
  font-family: "Rubik", sans-serif;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
  color: #1e272e;
  background-color: #FFF;
}

th, td {
  padding: 5px 10px 4px 10px;
  border: 1px solid #E8E8E8;
  white-space: pre;
}

th {
  color: #FFFFFF;
  white-space: nowrap;
  font-weight: 500;
  background-color: #cba84d;
}

.margin0{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  width: 90%;
}

.block_1{
  display: flex;
  flex-direction: row;
  background-color: #344e41;
  height: 50px;
}

.block_2{
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, #344e41 0%, #2d6a4f 100%);
  height: 220px;
}

.block_3{
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  padding: 0 0 20px 0;
}

.block_4{
  display: flex;
  flex-direction: row;
  background-color: #EEEEEE;
  padding: 20px 0;
}

.block_4 .margin0{
  align-items: flex-start;
}

.block_5{
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #EEEEEE;
  padding: 20px 0;
  margin: 5px 0 0 0;
}

.block_5_inside{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: rgba(52, 78, 65, 0.35);
}

.block_5_inside a{
  position: relative;
  display: inline-block;
  color: #344e41;
  text-decoration: none;
  width: fit-content;
}

.block_5_inside a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.block_5_inside a:hover::after{
  transform: scaleX(1);
}

.block_5_inside a:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
  border-radius: 2px;
}

.block_1_inside{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  width: 100%;
}

.block_1_left{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.block_1_right{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.block_1_user,
.block_1_sep,
.block_1_link{
  line-height: 1.35;
  color: #FFFFFF;
}

.block_1_link{
  position: relative;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  width: fit-content;
}

.block_1_link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.block_1_link:hover::after,
.block_1_link_active::after{
  transform: scaleX(1);
}

.block_1_link_active{
  cursor: default;
}

.block_1_link:focus-visible{
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: 2px;
}

.block_1_user{
  opacity: 0.9;
}

.block_1_sep{
  opacity: 0.45;
}

/* display:none поки модалка закрита: інакше iOS бачить type=password
   на весь екран (opacity:0 + display:flex) і пропонує «Заповнити пароль» на кожен тап */
#modal-overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(52, 78, 65, 0.72);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#modal-overlay.active{
  display: flex;
}

.modal{
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  padding: 24px 24px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-top: 3px solid #344e41;
  box-shadow: 0 8px 24px rgba(52, 78, 65, 0.12);
  box-sizing: border-box;
}

.modal__title{
  font-size: 16px;
  font-weight: 500;
  color: #1e272e;
}

.modal__subtitle{
  margin-top: 2px;
  font-size: 12px;
  color: #6B7280;
}

.modal__field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal__label{
  font-size: 12px;
  font-weight: 500;
  color: #344e41;
}

.modal__input{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  background: #F9F9F9;
  color: #1e272e;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.modal__input:focus{
  border-color: #344e41;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.12);
}

.modal__switch{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #585858;
  cursor: pointer;
  user-select: none;
}

.modal__switch input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.modal__switch_track{
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  border-radius: 50px;
  background: #CCC;
  transition: background 0.2s ease;
}

.modal__switch_track::after{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  transition: transform 0.2s ease;
}

.modal__switch input:checked + .modal__switch_track{
  background: #344e41;
}

.modal__switch input:checked + .modal__switch_track::after{
  transform: translateX(16px);
}

.modal__switch input:focus-visible + .modal__switch_track{
  box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.12);
}

.modal__btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  margin-top: 4px;
  border: 1px solid #BDBDBD;
  border-radius: 50px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  transition: border-color 0.45s ease;
}

.modal__btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.modal__btn_label{
  position: relative;
  z-index: 1;
  color: #344e41;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal__btn:hover:not(:disabled){
  border-color: #344e41;
}

.modal__btn:hover:not(:disabled)::before{
  transform: scaleX(1);
}

.modal__btn:hover:not(:disabled) .modal__btn_label{
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.modal__btn:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
}

.modal__btn:disabled{
  opacity: 0.6;
  cursor: default;
}

#modal_auth_msg:empty{
  display: none;
}

#modal_auth_msg{
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}

#modal_auth_msg.is-success{
  background: rgba(45, 106, 79, 0.1);
  color: #2d6a4f;
  border: 1px solid rgba(45, 106, 79, 0.3);
}

#modal_auth_msg.is-error{
  background: rgba(238, 82, 83, 0.08);
  color: #c0392b;
  border: 1px solid rgba(238, 82, 83, 0.35);
}

.block_3_inside{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  margin: -40px 0 0 0;
}

.cat-item,
.cat-item_active{
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.cat-item{
  aspect-ratio: 9/11;
}

.cat-item:hover,
.cat-item_active{
  aspect-ratio: 9/13;
}

.cat-item > a,
.cat-item_active > a{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.pic_title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.pic_overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.2s ease;
  z-index: 1;
}

.cat-item:hover .pic_overlay,
.cat-item_active .pic_overlay{
  background: rgba(0, 0, 0, 0.35);
}

.cat-item:hover,
.cat-item_active{
  box-shadow: 0 0 0 2px #FFFFFF;
}

.pic_category{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_2_inside{
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: #FFFFFF;

  align-items: center;

  margin: -40px 0 0 0;
}

.block_2_left{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.block_2_center{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.block_2_right{
  display: flex;
  flex-direction: row;
  gap: 34px;
  justify-content: end;
  align-items: center;
}

/* ── Контакти в хедері (телефони + офіс) ── */
.contact-group{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contact-ico{
  flex: none;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.contact-lines{
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.phone{
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  width: fit-content;
}

.phone::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone:hover::after{
  transform: scaleX(1);
}

.phone:focus-visible{
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-label{
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.contact-addr{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.main_logo{
  padding: 18px;
  border: 1px solid #344e41;
  border-radius: 10px;
  transition: all ease 0.1s;
}

.main_logo:hover{
  border: 3px solid #FFFFFF;

}

/* ── Кнопки-режими ПРОДАЖ / ОРЕНДА — Ефект 2 ── */
/* Палітра: лише білий #FFFFFF і темно-зелений #344e41 */
/* Клас стоїть на <a>, всередині — <div> або <span> */
.mode_btn,
.mode_btn_active{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  isolation: isolate;
  text-decoration: none;
  color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.45s ease;
}

/* Розміри як у filter_button, кольори й анімація від mode_btn */
.catalog_mode_btn{
  height: 42px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.mode_btn.catalog_mode_btn div,
.mode_btn.catalog_mode_btn span,
.mode_btn_active.catalog_mode_btn div,
.mode_btn_active.catalog_mode_btn span{
  font-weight: 500;
}

.mode_btn:visited,
.mode_btn_active:visited{
  color: #FFFFFF;
}

.mode_btn::before,
.mode_btn_active::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.mode_btn div,
.mode_btn span,
.mode_btn_active div,
.mode_btn_active span{
  display: block;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0.09em;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mode_btn:hover{
  border-color: #FFFFFF;
}

.mode_btn:hover::before{
  transform: scaleX(1);
}

.mode_btn:hover div,
.mode_btn:hover span{
  color: #344e41;
  letter-spacing: 0.14em;
}

.mode_btn_active{
  border-color: #FFFFFF;
  cursor: default;
}

.mode_btn_active::before{
  transform: scaleX(1);
}

.mode_btn_active div,
.mode_btn_active span{
  color: #344e41;
  letter-spacing: 0.14em;
}

.mode_btn:focus-visible,
.mode_btn_active:focus-visible{
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .mode_btn,
  .mode_btn_active,
  .mode_btn::before,
  .mode_btn_active::before,
  .mode_btn div,
  .mode_btn span,
  .mode_btn_active div,
  .mode_btn_active span{
    transition: none;
  }
}

.block_4_inside{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}

.filter{
  width: 100%;
}

.just_gap_20px{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.display_form_panel{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.filter_hidden{
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.filter_hidden.is-open{
  display: grid;
}

.build_numbers{
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

.width_1{
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.width_2{
  display: flex;
  flex-direction: row;
}

.width_2:not(.drop_filter_menu_numbers){
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(52, 78, 65, 0.18);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.width_2:not(.drop_filter_menu_numbers):focus-within{
  border-color: #344e41;
  box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.12);
}

.drop_filter_menu_numbers{
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  width: 100%;
  max-height: 220px;
  background-color: #FFFFFF;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid rgba(52, 78, 65, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(52, 78, 65, 0.16);
  overflow: auto;
  z-index: 20;
}

.inputs_filter_investors,
.inputs_filter{
  width: 100%;
  height: 42px;
  border: 1px solid rgba(52, 78, 65, 0.18);
  border-radius: 10px;
  padding: 0 18px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #344e41;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inputs_filter{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23344e41' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 38px;
  cursor: pointer;
}

.inputs_filter_investors:focus,
.inputs_filter:focus{
  border-color: #344e41;
  box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.12);
}

.inputs_filter_left,
.inputs_filter_right{
  width: 100%;
  height: 40px;
  border: none;
  padding: 0 18px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #344e41;
  background: transparent;
  box-sizing: border-box;
}

.inputs_filter_left{
  border-right: 1px solid rgba(52, 78, 65, 0.14);
}

.inputs_filter::placeholder,
.inputs_filter_left::placeholder,
.inputs_filter_right::placeholder,
.inputs_filter_investors::placeholder{
  color: rgba(52, 78, 65, 0.45);
}

.hidden_values{
  position: absolute;
  top: -10000px;
}

.checkbox_filter input[type="checkbox"]{
  display: none;
}

.checkbox_filter label{
  display: block;
  width: 100%;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  overflow: hidden;
  padding: 9px 16px;
  font-weight: 400;
  color: #344e41;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

.checkbox_filter label:hover{
  background-color: rgba(52, 78, 65, 0.06);
}

.checkbox_filter input[type="checkbox"]:checked + label{
  background-color: #344e41;
  color: #FFFFFF;
}

.min_values{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 2px 0;
}

.selected-value{
  background-color: #344e41;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1.3;
}

.selected-value:hover{
  background: #2d6a4f;
  cursor: pointer;
}

.remove-button{
  font-weight: 500;
}

.no-results{
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(52, 78, 65, 0.55);
}

.filter_actions{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.for_filter_buttons{
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: fit-content;
}

.filter_button,
.filter_reset_mobile,
.filter_more{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 42px;
  padding: 0 22px;
  border: 1px solid #344e41;
  border-radius: 50px;
  background: transparent;
  color: #344e41;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  transition: border-color 0.45s ease;
}

.filter_button::before,
.filter_reset_mobile::before,
.filter_more::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

.filter_button .filter_button_label,
.filter_reset_mobile .filter_button_label,
.filter_more .filter_button_label{
  position: relative;
  z-index: 1;
  color: #344e41;
  font-weight: 500;
  letter-spacing: 0.09em;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter_button:hover,
.filter_reset_mobile:hover,
.filter_more:hover{
  border-color: #344e41;
}

.filter_button:hover::before,
.filter_reset_mobile:hover::before,
.filter_more:hover::before{
  transform: scaleX(1);
}

.filter_button:hover .filter_button_label,
.filter_reset_mobile:hover .filter_button_label,
.filter_more:hover .filter_button_label,
.filter_button_active .filter_button_label{
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

a.filter_button{
  text-decoration: none;
}

.filter_button_active{
  cursor: default;
}

.filter_button_active::before{
  transform: scaleX(1);
}

.filter_button_spinner{
  position: relative;
  z-index: 1;
  width: 0;
  height: 13px;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(52, 78, 65, 0.35);
  border-top-color: #344e41;
  border-radius: 50%;
  box-sizing: border-box;
  transition: width 0.25s ease, margin-left 0.25s ease, opacity 0.2s ease, border-width 0.25s ease, border-color 0.45s ease;
}

.filter_button:hover .filter_button_spinner,
.filter_reset_mobile:hover .filter_button_spinner{
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
}

.filter_button.is-loading::before,
.filter_reset_mobile.is-loading::before{
  transform: scaleX(1);
}

.filter_button.is-loading .filter_button_label,
.filter_reset_mobile.is-loading .filter_button_label{
  color: #FFFFFF;
}

.filter_button.is-loading .filter_button_spinner,
.filter_reset_mobile.is-loading .filter_button_spinner{
  width: 13px;
  margin-left: 8px;
  opacity: 1;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
  animation: filter_button_spin 0.6s linear infinite;
}

.filter_button:disabled,
.filter_reset_mobile:disabled{
  cursor: not-allowed;
  pointer-events: auto;
  opacity: 0.65;
}

@keyframes filter_button_spin{
  to{
    transform: rotate(360deg);
  }
}

.counts,
.filter_counts{
  display: none;
}

.block_5_inside{
  display: flex;
  flex-direction: row;
  gap: 7px;
}

.block_5_inside a{
  text-decoration: none;
  color: #1e272e;
}

.block_6{
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
}

.block_6_inside{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.block_6_inside_left{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
}

.block_6_inside_left .filter_button{
  min-width: 0;
  width: auto;
}

.block_6_inside_center{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.block_6_inside_center .filter_button{
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.block_6_inside_right{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.multi_block{
  display: flex;
  align-items: center;
  gap: 10px;
}

.multi_done_btns{
  display: flex;
  align-items: center;
  gap: 10px;
}

.multi_gen_btn,
.multi_new_btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 42px;
  padding: 0 18px;
  border: 1px solid #344e41;
  border-radius: 50px;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  z-index: 0;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background 0.2s ease;
}

.multi_gen_btn .btn_label,
.multi_new_btn .btn_label,
#count_multi_objects,
.count_multi_new{
  position: relative;
  z-index: 1;
}

.multi_gen_btn{
  background: #344e41;
  color: #FFFFFF;
}

.multi_new_btn{
  background: transparent;
  color: #344e41;
}

.multi_new_btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.multi_new_btn:not(:disabled):hover::before{
  transform: scaleX(1);
}

.multi_new_btn:not(:disabled):hover{
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.multi_gen_btn:not(:disabled):hover{
  background: #2c4237;
  letter-spacing: 0.14em;
}

.multi_gen_btn:disabled,
.multi_new_btn:disabled,
.multi_gen_btn:disabled:hover,
.multi_new_btn:disabled:hover{
  opacity: 0.45;
  cursor: not-allowed;
}

.multi_gen_btn.multi_copied{
  background: #344e41;
  color: #FFFFFF;
}

#count_multi_objects,
.count_multi_new{
  font-weight: 600;
}

.count_line_2_sort{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #344e41;
  border-radius: 50px;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.45s ease;
}

.count_line_2_sort::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.count_line_2_sort:hover,
.count_line_2_sort.is-active{
  border-color: #344e41;
}

.count_line_2_sort:hover::before,
.count_line_2_sort.is-active::before{
  transform: scaleX(1);
}

.count_line_2_sort.is-loading,
.count_line_2_sort.is-loading:hover,
.count_line_2_sort.is-disabled,
.count_line_2_sort.is-disabled:hover{
  cursor: not-allowed;
}

.count_line_2_sort .icon{
  position: relative;
  z-index: 1;
  height: 15px;
}

.count_line_2_sort:hover:not(.is-active) .icon{
  filter: brightness(0) invert(1);
}

.icon_btn_spinner{
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(52, 78, 65, 0.35);
  border-top-color: #344e41;
  border-radius: 50%;
  box-sizing: border-box;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, border-width 0.2s ease, border-color 0.45s ease;
}

.count_line_2_sort:hover .icon_btn_spinner,
.count_line_2_sort.is-active .icon_btn_spinner{
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
}

.count_line_2_sort.is-loading .icon{
  display: none;
}

.count_line_2_sort.is-loading .icon_btn_spinner{
  width: 13px;
  height: 13px;
  opacity: 1;
  border-width: 2px;
  animation: filter_button_spin 0.6s linear infinite;
}

.object_date_tip{
  cursor: help;
  white-space: nowrap;
}

.object_date_tip_box{
  position: fixed;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  background-color: #344e41;
  padding: 7px 14px;
  color: #FFFFFF;
  box-sizing: border-box;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.object_date_tip_box.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.object_date_tip_box.is-wrap{
  display: block;
  width: max-content;
  max-width: min(360px, calc(100vw - 16px));
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

#sort_popup{
  display: none;
  position: fixed;
  z-index: 9998;
  background: #FFFFFF;
  border: 1px solid #344e41;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(52, 78, 65, 0.12);
  overflow: hidden;
  transform-origin: top right;
  animation: sortPopupIn 0.18s ease;
}

#sort_popup.active{
  display: block;
}

#sort_popup.closing{
  animation: sortPopupOut 0.18s ease forwards;
}

@keyframes sortPopupIn{
  from{ opacity: 0; transform: scale(0.92) translateY(-6px); }
  to  { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes sortPopupOut{
  from{ opacity: 1; transform: scale(1) translateY(0); }
  to  { opacity: 0; transform: scale(0.92) translateY(-6px); }
}

.sort_popup_group_label{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #344e41;
  padding: 12px 20px 8px;
}

.sort_popup_item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: #1e272e;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.sort_popup_item:last-child{
  border-bottom: none;
}

.sort_popup_item:hover{
  background: rgba(52, 78, 65, 0.08);
}

.sort_popup_item.sort_active{
  background: #344e41;
  color: #FFFFFF;
  font-weight: 500;
}

.block_7{
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
  flex: 1 0 auto;
}

.block_7_inside{
  width: 100%;
}

.content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 20px 0;
  width: 100%;
}

.content.content_map_view{
  display: block;
}

.not_found_1{
  font-size: 20px;
  font-weight: 500;
  color: #344e41;
}

.not_found_2{
  font-size: 14px;
  font-weight: 400;
  color: #585858;
}
























.object{
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background-color: #F9F9F9;
  border: 1px solid #E3E8E5;
  transition: border-color 0.25s;
}

.object_pic{
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.object_absolute_up_left{
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  z-index: 9998;
  flex-wrap: wrap;
}

.current_deposit{
  background-color: #ee5253;
  padding: 5px 10px;
  color: #FFFFFF;
  border-radius: 7px;
  border: 2px solid #F9F9F9;
  white-space: nowrap;
}

.current_new{
  background-color: #344e41;
  padding: 5px 10px;
  color: #FFFFFF;
  border-radius: 7px;
  border: 2px solid #F9F9F9;
  white-space: nowrap;
}

.current_rent{
  background-color: #2d6a4f;
  padding: 5px 10px;
  color: #FFFFFF;
  border-radius: 7px;
  border: 2px solid #F9F9F9;
  white-space: nowrap;
}

.current_rent_expired{
  background-color: #ee5253;
}

.current_price{
  position: absolute;
  background-color: #344e41;
  padding: 5px 20px;
  font-size: 20px;
  font-weight: 600;
  left: 0;
  bottom: 10px;
  color: #FFFFFF;
  border-radius: 0 7px 7px 0;
  border-top: 2px solid #F9F9F9;
  border-bottom: 2px solid #F9F9F9;
  border-right: 2px solid #F9F9F9;
  display: flex;
  gap: 5px;
  z-index: 999;
}

.checkbox_multi{
  position: absolute;
  z-index: 9999;
  top: 10px;
  right: 20px;
}

.checkbox-wrapper-45{
  position: relative;
  border-radius: 50%;
}

.checkbox-wrapper-45 input[type="checkbox"]{
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-45 .cbx{
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.checkbox-wrapper-45 .box{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.checkbox-wrapper-45 .box::after{
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14'%3E%3Cpath d='M2 8.5L6 12.5L14 1.5' stroke='%23DDDDDD' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.2s;
}

.checkbox-wrapper-45 .cbx:hover .box{
  border-color: #344e41;
}

.checkbox-wrapper-45 .cbx:hover .box::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14'%3E%3Cpath d='M2 8.5L6 12.5L14 1.5' stroke='%23344e41' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx .box{
  background-color: #344e41;
  border-color: #344e41;
}

.checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx .box::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14'%3E%3Cpath d='M2 8.5L6 12.5L14 1.5' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.checkbox-wrapper-45 .ripple{
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 78, 65, 0.35);
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes ripple-out{
  0%   { width: 0;    height: 0;    opacity: 1; }
  100% { width: 90px; height: 90px; opacity: 0; }
}

.this_pic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.object_pic .swiper.object_pics_swiper{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  --swiper-navigation-color: #FFFFFF;
  --swiper-pagination-color: #FFFFFF;
}

.object_pic .object_pics_swiper .swiper-wrapper,
.object_pic .object_pics_swiper .swiper-slide{
  width: 100%;
  height: 100%;
}

.object_pic .object_pics_swiper .swiper-slide{
  position: relative;
  overflow: hidden;
}

.object_pic .object_pics_swiper .swiper-slide a{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.object_pic_no_photo{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #232323 0%, #333333 100%);
  color: #cfd6d9;
  font-weight: 400;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.4px;
}

.object_pics_swiper .swiper-button-prev,
.object_pics_swiper .swiper-button-next{
  width: 38px;
  height: 38px;
  margin-top: -19px;
  top: 50%;
  padding: 0;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(35, 35, 35, 0.8);
  color: #FFFFFF;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0;
  line-height: 0;
}

.object_pics_swiper .swiper-button-prev{
  left: 15px;
}

.object_pics_swiper .swiper-button-next{
  right: 15px;
}

.object_pics_swiper .swiper-button-prev:after,
.object_pics_swiper .swiper-button-next:after{
  content: "";
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.object_pics_swiper .swiper-button-prev:after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
  transform: translateX(-1px);
}

.object_pics_swiper .swiper-button-next:after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  transform: translateX(1px);
}

.object_pics_swiper .swiper-button-prev:hover,
.object_pics_swiper .swiper-button-next:hover{
  background: #344e41;
}

.object_pics_swiper .swiper-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  bottom: 12px;
  z-index: 5;
}

.object_pics_swiper .swiper-pagination-bullet{
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: #FFFFFF;
  opacity: 0.55;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.object_pics_swiper .swiper-pagination-bullet-active{
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #FFFFFF;
}

.object_pics_swiper_single .swiper-button-prev,
.object_pics_swiper_single .swiper-button-next,
.object_pics_swiper_single .swiper-pagination{
  display: none;
}

.object_owner{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #E3E8E5;
  font-size: 12px;
  font-weight: 500;
}

.object_title_3_owner{
  display: flex;
  flex-direction: row;
  color: #344e41;
}

.object_owner_an{
  color: #ee5253;
}

.object_date{
  color: #585858;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (hover: hover){
  .object:hover{
    border-color: #C9D8CE;
  }

  .object:hover .this_pic{
    transform: scale(1.04);
  }
}

.object:has(a:focus-visible){
  outline: 2px solid #2d6a4f;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  .object,
  .this_pic{
    transition: none;
  }

  .object:hover .this_pic{
    transform: none;
  }
}

.object_title{
  display: flex;
  flex-direction: column;
  padding: 16px 20px 14px 20px;
  border-bottom: 1px solid #E3E8E5;
  position: relative;
}

.object_title_1{
  font-size: 18px;
  font-weight: 600;
  color: #232323;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.object_title_2{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #6B716D;
  margin: 6px 0 0 0;
}

.object_params_new{
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 20px 16px 20px;
  color: #6B716D;
  gap: 8px;
}

.object_params_new_row{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.object_params_new_1{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

/* перший рядок параметрів (кімнати / поверх / площа) — головні характеристики */
.object_params_new_row:first-child .object_params_new_1{
  font-size: 14px;
  font-weight: 600;
  color: #232323;
  font-variant-numeric: tabular-nums;
  gap: 7px;
}

.object_params_new_1 > div:nth-child(2n){
  color: #B5BFB9;
  font-weight: 400;
}

.object_params_new_2{
  display: flex;
  flex-direction: row;
}

.object_reason_update{
  position: absolute;
  left: 20px;
  top: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #ee5253;
}

.price_per_metres{
  font-weight: 600;
  color: #344e41;
  white-space: nowrap;
}

.content > :nth-last-child(-n+2):not(.object) {
  grid-column: 1 / -1;
}

/* Пагінація каталогу */
.pagination_100{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  grid-column: 1 / -1;
  width: 100%;
}

.pagination_site_flex_1{
  flex: 1;
}

.pagination_site_flex_inside{
  flex: 1;
}

.pagination_site{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.back_site,
.front_site{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 42px;
  padding: 0 22px;
  border: 1px solid #344e41;
  border-radius: 50px;
  background: transparent;
  outline: none;
  color: #344e41;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.back_site::before,
.front_site::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #344e41;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.back_site::before{
  transform-origin: right center;
}

.front_site::before{
  transform-origin: left center;
}

.back_site:hover::before,
.front_site:hover::before{
  transform: scaleX(1);
}

.back_site:hover,
.front_site:hover{
  cursor: pointer;
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.pagination_pages{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #344e41;
  white-space: nowrap;
}

.text_dec{
  text-decoration: none;
  color: inherit;
}

.pagination_numbers{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.pagination_numbers > *{
  flex: 1;
}

.pagination_numbers > a.text_dec{
  display: flex;
  text-decoration: none;
}

.pag_num,
.pag_num_active{
  display: flex;
  width: 100%;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  box-sizing: border-box;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pag_num{
  background: transparent;
  border: 1px solid #344e41;
  color: #344e41;
}

.pag_num:hover{
  background: #344e41;
  color: #FFFFFF;
  cursor: pointer;
}

.pag_num_active,
.pag_num_active:hover{
  background: #344e41;
  border: 1px solid #344e41;
  color: #FFFFFF;
  cursor: default;
}

.pag_dots{
  display: flex;
  min-width: 32px;
  height: 32px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  background: transparent;
  color: rgba(52, 78, 65, 0.35);
}

@media (prefers-reduced-motion: reduce){
  .back_site,
  .front_site,
  .back_site::before,
  .front_site::before,
  .pag_num,
  .pag_num_active{
    transition: none;
  }
}

.block_8{
  display: flex;
  flex-direction: row;
  background-color: #344e41;
  height: 220px;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.block_8_inside{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.block_9{
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  padding: 0 0 20px 0;
}

.block_9_inside{
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
  align-items: flex-start;
  margin: -40px 0 0 0;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.block_9_left{
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.block_9_right{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 400px;
  flex-shrink: 0;
}

.block_pics{
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}

.no_current_pics{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  background-color: #EEEEEE;
  color: #666666;
  font-size: 14px;
}

.block_pics_main{
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #EEEEEE;
}

.block_pics_main_swiper{
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  --swiper-navigation-color: #FFFFFF;
  --swiper-pagination-color: #FFFFFF;
}

.block_pics_main_swiper .swiper-wrapper,
.block_pics_main_swiper .swiper-slide{
  width: 100%;
  height: 100%;
}

.block_pics_main_swiper .swiper-slide{
  position: relative;
  overflow: hidden;
}

.block_pics_main_swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.block_pics_main_swiper .swiper-button-prev,
.block_pics_main_swiper .swiper-button-next{
  width: 50px;
  height: 50px;
  margin-top: -25px;
  top: 50%;
  padding: 0;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(35, 35, 35, 0.8);
  color: #FFFFFF;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0;
  line-height: 0;
}

.block_pics_main_swiper .swiper-button-prev{
  left: 15px;
}

.block_pics_main_swiper .swiper-button-next{
  right: 15px;
}

.block_pics_main_swiper .swiper-button-prev:after,
.block_pics_main_swiper .swiper-button-next:after{
  content: "";
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.block_pics_main_swiper .swiper-button-prev:after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
  transform: translateX(-1px);
}

.block_pics_main_swiper .swiper-button-next:after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  transform: translateX(1px);
}

.block_pics_main_swiper .swiper-button-prev:hover,
.block_pics_main_swiper .swiper-button-next:hover{
  background: #344e41;
}

.block_pics_main_swiper .swiper-button-prev.swiper-button-disabled,
.block_pics_main_swiper .swiper-button-next.swiper-button-disabled,
.block_pics_main_swiper .swiper-button-prev.swiper-button-lock,
.block_pics_main_swiper .swiper-button-next.swiper-button-lock{
  pointer-events: auto;
  cursor: not-allowed;
  opacity: 0.4;
}

.block_pics_main_swiper .swiper-button-prev.swiper-button-disabled:hover,
.block_pics_main_swiper .swiper-button-next.swiper-button-disabled:hover,
.block_pics_main_swiper .swiper-button-prev.swiper-button-lock:hover,
.block_pics_main_swiper .swiper-button-next.swiper-button-lock:hover{
  background: rgba(35, 35, 35, 0.8);
}

.block_pics_main_swiper .swiper-pagination{
  top: 20px;
  left: 20px;
  bottom: auto;
  right: auto;
  width: auto;
  margin: 0;
  padding: 5px 20px;
  background-color: #344e41;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.block_pics_main_swiper_single .swiper-button-prev,
.block_pics_main_swiper_single .swiper-button-next,
.block_pics_main_swiper_single .swiper-pagination{
  display: none;
}

.block_pics_additionals_wrap{
  position: relative;
  width: 100%;
  min-width: 0;
}

.block_pics_additionals_wrap::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, #FFFFFF 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.block_pics_additionals_wrap.has-fade::after{
  opacity: 1;
}

.block_pics_additionals{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 10px;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;

  background-color: #EEE;
  border-radius: 10px;

  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.block_pics_additionals::-webkit-scrollbar{
  display: none;
}

.block_pics_additionals.is-dragging,
.block_pics_additionals.is-dragging .block_pics_additional{
  cursor: grabbing;
}

.block_pics_additional{
  display: flex;
  flex-direction: row;
  flex: 0 0 150px;
  width: 150px;
  box-sizing: border-box;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 10px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.block_pics_additional img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border-radius: 10px;
}

.block_pics_additional:hover{
  opacity: 1;
}

.block_pics_additional.is-active{
  opacity: 1;
  padding: 2px;
  background-color: #FFFFFF;
  border: 2px solid #344e41;
}

.block_price_etc{
  display: flex;
  flex-direction: column;
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;

  gap: 20px;
}

.block_price{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 24px;
  font-weight: 600;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #CCC;
}

.block_price_one{
  grid-template-columns: 1fr;
}

.block_price_with_favorite{
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.price_favorite{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.price_favorite_input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.price_favorite_icon{
  display: block;
  width: auto;
  height: 28px;
  aspect-ratio: 1;
  fill: none;
  stroke: #CCCCCC;
  stroke-width: 1.8;
  stroke-linejoin: round;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.price_favorite_input:checked + .price_favorite_icon{
  fill: #344e41;
  stroke: #344e41;
}

.price_favorite_input:focus-visible + .price_favorite_icon{
  outline: 2px solid #344e41;
  outline-offset: 2px;
}

.block_price_1{
  color: #344e41;
}

.block_price_2{
  color: #999999;
}

.block_params{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

.inside_params_other_1{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.params_flex_3{
  color: #6b7280;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.params_flex_4{
  color: #1e272e;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  word-break: break-word;
}

.params_flex_4 a{
  color: #344e41;
  text-decoration: none;
}

.params_flex_4 a:hover{
  color: #cba84d;
}

/* ===== desktop_manager.php ===== */
.inside_manager{
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;
}

.manager{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.manager_photo{
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background-color: #344e41;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}

div.photo{
  background: linear-gradient(135deg, #344e41 0%, #2d6a4f 100%);
}

img.photo{
  display: block;
}

.manager_info{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.manager_ups{
  color: #6b7280;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.manager_name{
  color: #1e272e;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  word-break: break-word;
}

.manager_phone{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
}

.manager_phone a{
  position: relative;
  display: inline-block;
  color: #344e41;
  text-decoration: none;
  width: fit-content;
}

.manager_phone a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.manager_phone a:hover::after{
  transform: scaleX(1);
}

.manager_phone a:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
  border-radius: 2px;
}

.create_private_link{
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #CCC;
}

#create_complex_link{
  border-top: 0;
}

.create_private_this_link_in{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.create_private_this_link{
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #6b7280;
  word-break: break-all;
}

.for_new_price{
  width: 88px;
  flex-shrink: 0;
  height: 42px;
  outline: none;
  border: 1px solid rgba(52, 78, 65, 0.18);
  border-radius: 10px;
  padding: 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #344e41;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.for_new_price::placeholder{
  color: rgba(52, 78, 65, 0.45);
}

.for_new_price:focus{
  border-color: #344e41;
  box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.12);
}

#copy_new_btns{
  display: none;
  flex-direction: row;
  gap: 10px;
}

#copy_new_btns .input_copy_btn{
  flex: 1;
  min-width: 0;
}

.input_copy_btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 42px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid #344e41;
  border-radius: 10px;
  background: transparent;
  color: #344e41;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  transition: border-color 0.45s ease;
}

.input_copy_btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease;
  z-index: -1;
  pointer-events: none;
}

.input_copy_btn_label{
  position: relative;
  z-index: 1;
  color: #344e41;
  font-weight: 500;
  letter-spacing: 0.09em;
  transition: color 0.45s ease, letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.input_copy_btn:hover::before,
.input_copy_btn.is-loading::before,
.input_copy_btn_primary::before{
  transform: scaleX(1);
}

.input_copy_btn:hover .input_copy_btn_label,
.input_copy_btn.is-loading .input_copy_btn_label,
.input_copy_btn_primary .input_copy_btn_label{
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

.input_copy_btn_primary:hover::before{
  background: #2d6a4f;
}

.input_copy_btn:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
}

.input_copy_btn:disabled{
  cursor: not-allowed;
  pointer-events: auto;
  opacity: 0.65;
}

.input_copy_btn.is-loading:disabled{
  opacity: 1;
}

.input_copy_btn_spinner{
  position: relative;
  z-index: 1;
  width: 0;
  height: 13px;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(52, 78, 65, 0.35);
  border-top-color: #344e41;
  border-radius: 50%;
  box-sizing: border-box;
  transition: width 0.25s ease, margin-left 0.25s ease, opacity 0.2s ease, border-width 0.25s ease, border-color 0.45s ease;
}

.input_copy_btn:hover .input_copy_btn_spinner,
.input_copy_btn.is-loading .input_copy_btn_spinner,
.input_copy_btn_primary .input_copy_btn_spinner{
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
}

.input_copy_btn.is-loading .input_copy_btn_spinner{
  width: 13px;
  margin-left: 8px;
  opacity: 1;
  border-width: 2px;
  animation: filter_button_spin 0.6s linear infinite;
}

.status-bad,
.status-error{
  color: #c0392b;
  font-weight: 600;
}

.status-sql{
  color: #8e44ad;
  font-weight: 600;
}

.status-good{
  color: #344e41;
  font-weight: 600;
}

.status-unknown{
  color: #6b7280;
  font-weight: 600;
}

/* ===== desktop_private.php ===== */
.inside_object_params{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;
}

.owners_private{
  grid-template-columns: 1fr;
  gap: 20px;
}

.owner_private_block{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

.owner_private_block--separated{
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}

.dfgd,
.dfgdd{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.confirm_overlay{
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

.confirm_overlay.active,
.confirm_overlay.closing{
  display: flex;
}

.confirm_overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 78, 65, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.22s ease;
}

.confirm_overlay.is-visible::before{
  opacity: 1;
}

.confirm_overlay.closing::before{
  opacity: 0;
  transition-duration: 0.2s;
}

.confirm_popup_sheet{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 20px;
  cursor: default;
}

.confirm_overlay.active .confirm_popup_sheet{
  animation: confirmPopupSheetIn 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.confirm_overlay.closing .confirm_popup_sheet{
  animation: confirmPopupSheetOut 0.2s ease forwards;
}

@keyframes confirmPopupSheetIn{
  from{ transform: translateY(100%); }
  to  { transform: translateY(0); }
}

@keyframes confirmPopupSheetOut{
  from{ transform: translateY(0); }
  to  { transform: translateY(100%); }
}

.confirm_popup_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.confirm_popup_item{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.confirm_popup_item_label{
  position: relative;
}

.confirm_popup_item_confirm{
  background: #344e41;
  color: #FFFFFF;
  border-color: #344e41;
}

.confirm_popup_item_confirm:hover{
  background: #2d6a4f;
  border-color: #2d6a4f;
}

.confirm_popup_item_confirm:disabled{
  background: #ddd;
  border-color: #ddd;
  cursor: default;
}

.confirm_popup_item_cancel{
  background: transparent;
  color: #344e41;
  border-color: #344e41;
}

.confirm_popup_item_cancel:hover{
  background: #344e41;
  color: #FFFFFF;
}

.confirm_popup_item:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
}

.inside_object_params a,
.zip_link,
.params_flex_3_a{
  position: relative;
  display: inline-block;
  color: #344e41;
  text-decoration: none;
  width: fit-content;
}

.inside_object_params a::after,
.zip_link::after,
.params_flex_3_a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #344e41;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.inside_object_params a:hover,
.inside_object_params .params_flex_4 a:hover,
.zip_link:hover,
.params_flex_3_a:hover,
.params_flex_4 a.zip_link:hover,
.params_flex_4 a.params_flex_3_a:hover{
  color: #344e41;
}

.inside_object_params a:hover::after,
.zip_link:hover::after,
.params_flex_3_a:hover::after{
  transform: scaleX(1);
}

.inside_object_params a:focus-visible,
.zip_link:focus-visible,
.params_flex_3_a:focus-visible{
  outline: 2px solid #344e41;
  outline-offset: 2px;
  border-radius: 2px;
}

.copy-id-btn{
  cursor: pointer;
}

.copy-id-btn:hover{
  color: #344e41;
}

.copy-id-label{
  display: none;
  font-size: 11px;
  color: #344e41;
}

/* ===== desktop_pic_documents.php ===== */
.pic_documents{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;
}

.pic_documents_photos{
  aspect-ratio: 1;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.pic_documents_photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.pic_documents_photo:hover{
  filter: brightness(0.9);
  transform: scale(1.05);
  cursor: pointer;
}

.description_managers_main{
  box-sizing: border-box;
  margin: -5px 0 0 0;
  line-height: 1.6;
  white-space: break-spaces;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  color: #1e272e;
}

/* ===== desktop_descriptions_private.php ===== */
.description_managers{
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.6;
  white-space: break-spaces;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  color: #1e272e;
}

/* ===== desktop_tabs.php ===== */
.object_tabs{
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.object_tabs .width{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #EEEEEE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding: 20px;
  box-sizing: border-box;
  min-width: 0;
}

.object_tabs .width_1{
  align-items: center;
  gap: 10px;
}

.object_tabs .width_1_table_title{
  font-size: 14px;
  font-weight: 600;
  color: #1e272e;
}

.object_tabs .width_1_buttons{
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-shrink: 0;
}

.object_tabs .width_1_button,
.object_tabs .width_1_button_active{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #344e41;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  user-select: none;
  cursor: pointer;
}

.object_tabs .width_1_button{
  color: #344e41;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.object_tabs .width_1_button:hover,
.object_tabs .width_1_button_active{
  color: #FFFFFF;
  background: #344e41;
}

.object_tabs .width_2,
.object_tabs .width_2:not(.drop_filter_menu_numbers){
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: none;
}

.object_tabs .width_2:focus-within{
  border: none;
  box-shadow: none;
}

.object_tabs #price_view_chart{
  padding: 16px 10px;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 10px;
}

.object_tabs #price_chart{
  width: 100%;
  height: 240px;
  display: block;
}

.object_tabs .object_tab_table{
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  color: #1e272e;
  font-size: 13px;
  text-align: left;
}

.object_tabs .object_tab_table th,
.object_tabs .object_tab_table td{
  border: none;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
}

.object_tabs .object_tab_table thead th{
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  border-bottom: 1px solid #CCC;
  padding: 0 12px 8px 0;
}

.object_tabs .object_tab_table tbody td{
  background: transparent;
  color: #1e272e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  border-bottom: 1px solid #DDD;
  padding: 10px 12px 10px 0;
}

.object_tabs .object_tab_table thead th:last-child,
.object_tabs .object_tab_table tbody td:last-child{
  padding-right: 0;
}

.object_tabs .object_tab_table tbody tr:last-child td{
  border-bottom: none;
  padding-bottom: 0;
}

.object_tabs .object_tab_table thead th:first-child,
.object_tabs .object_tab_table tbody td:first-child{
  width: 1%;
}

.object_tabs .object_tab_table tbody td:first-child{
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce){
  .manager_phone a::after,
  .inside_object_params a::after,
  .zip_link::after,
  .params_flex_3_a::after,
  .input_copy_btn,
  .input_copy_btn::before,
  .input_copy_btn_label,
  .input_copy_btn_spinner,
  .for_new_price,
  .pic_documents_photo,
  .object_tabs .width_1_button{
    transition: none;
  }

  .pic_documents_photo:hover{
    transform: none;
  }
}

.block_title{
  font-size: 24px;
  font-weight: 600;
  color: #344e41;
}

.block_10{
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  padding: 0 0 20px 0;
}

.block_10_inside{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.block_10_inside .filter_button{
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.block_10_inside .filter_button_label{
  white-space: nowrap;
}

#bk_sort_popup{
  display: none;
  position: fixed;
  z-index: 9998;
  background: #FFFFFF;
  border: 1px solid #344e41;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(52, 78, 65, 0.12);
  overflow: hidden;
  transform-origin: top right;
  animation: sortPopupIn 0.18s ease;
}

#bk_sort_popup.active{
  display: block;
}

#bk_sort_popup .sort_popup_item{
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
}

#bk_sort_popup .sort_popup_item:hover{
  background: rgba(52, 78, 65, 0.08);
}

#bk_sort_popup .sort_popup_item.sort_active{
  background: #344e41;
}

.multi_greeting{
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
}

/* Ширина однієї картки комплексу: .content — 3 колонки з gap 20px. */
.multi_greeting_inside{
  width: calc((100% - 40px) / 3);
}

.multi_greeting_quote{
  position: relative;
  padding: 10px 20px 10px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
}

.multi_greeting_quote::before{
  content: "";
  position: absolute;
  top: -7px;
  left: 42px;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  transform: rotate(45deg);
}

.multi_greeting_quote::after{
  content: "\201D";
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(52, 78, 65, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
}

.multi_greeting_quote_text{
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1e272e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  overflow-wrap: break-word;
}

.multi_greeting_quote_sign{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #344e41;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.multi_greeting_quote_sign::before{
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #344e41 0%, #2d6a4f 100%);
}

.block_11{
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
}

.block_11_inside{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.block_11_left{
  display: flex;
  align-items: center;
  gap: 14px;
}

.block_11_title{
  font-size: 24px;
  font-weight: 600;
  color: #344e41;
}

.block_11_dot{
  width: 8px;
  height: 8px;
  background: #999999;
  border-radius: 50%;
  font-size: 0;
}

.block_11_left .line5_gray{
  font-size: 18px;
  font-weight: 500;
  color: #999999;
}

.block_11_left .line5_gray::after{
  content: " обʼєктів";
}

body.bk-page .block_11_left .line5_gray::after{
  content: " комплексів";
}

.block_11_left .line5_gray:empty,
.block_11_left:has(.line5_gray:empty) .block_11_dot{
  display: none;
}

.block_11_right{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.bk_inside_pics{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk_inside_descriptions{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk_inside_pics_title{
  display: flex;
  align-items: center;
  gap: 14px;
}

.bk_inside_pics_pics{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.bk_inside_pic_item{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.bk_inside_pic{
  position: relative;
  aspect-ratio: 1;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.bk_inside_pic_link{
  display: block;
  width: 100%;
  height: 100%;
}

.bk_inside_pic_image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.bk_inside_pic_image:hover{
  filter: brightness(0.9);
  transform: scale(1.05);
  cursor: pointer;
}

.bk_inside_pic_note_mark{
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff9f1a;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  cursor: help;
}

.bk_pic_preview{
  position: fixed;
  z-index: 3800;
  box-sizing: border-box;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(52, 78, 65, 0.18);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: center center;
  transition: opacity 280ms cubic-bezier(0.33, 0, 0.2, 1), visibility 280ms cubic-bezier(0.33, 0, 0.2, 1), transform 280ms cubic-bezier(0.33, 0, 0.2, 1);
}

.bk_pic_preview.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.bk_pic_preview img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #FFFFFF;
}

.bk_inside_pic_note_mark svg{
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk_inside_pic_checkbox{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bk_inside_pic_checkbox_label{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #DCE3DE;
  background-color: transparent;
  color: #8A948E;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

@media (hover: hover){
  .bk_inside_pic_checkbox:not(:checked):not(:disabled) + .bk_inside_pic_checkbox_label:hover{
    border-color: #2d6a4f;
    color: #2d6a4f;
  }
}

.bk_inside_pic_checkbox:checked + .bk_inside_pic_checkbox_label{
  background-color: #2d6a4f;
  border-color: #2d6a4f;
  color: #FFFFFF;
  animation: bk_pic_label_tap 0.25s ease;
}

@keyframes bk_pic_label_tap{
  0%{ transform: scale(0.95); }
  100%{ transform: scale(1); }
}

.bk_inside_pic_checkbox:focus-visible + .bk_inside_pic_checkbox_label{
  outline: 2px solid #2d6a4f;
  outline-offset: 2px;
}

.bk_inside_pic_checkbox:disabled + .bk_inside_pic_checkbox_label{
  opacity: 0.6;
  cursor: default;
}

@media (prefers-reduced-motion: reduce){
  .bk_inside_pic_checkbox_label{
    transition: none;
    animation: none !important;
  }
}

.line6_gray{
  font-size: 18px;
  font-weight: 500;
  color: #999999;
}

.bk_inside_descriptions_text{
  box-sizing: border-box;
  line-height: 1.6;
  white-space: break-spaces;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  color: #1e272e;
}

.bk_inside_descriptions_hidden{
  color: #f53b57;
}

.info_complex{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
  height: 42px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #999999;
  text-align: right;
  white-space: nowrap;
}

.info_complex u{
  font-weight: 600;
  color: #344e41;
}

.info_complex[hidden]{
  display: none;
}

/* кнопка «Share» у картці обʼєкта (js/object_card_share.js);
   спінер — як .input_copy_btn_spinner у object/mobile_manager.php */
.object_share_btn{ display: inline-flex; align-items: center; color: #344e41; font-weight: 600; cursor: pointer; white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.object_share_btn_label{ text-decoration: underline; text-underline-offset: 2px; }
.object_share_btn.is-loading,
.object_share_btn.is-busy{ pointer-events: none; }
.object_share_btn.is-busy .object_share_btn_label{ text-decoration: none; }
.object_share_btn_spinner{
  width: 0;
  height: 13px;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(52, 78, 65, 0.35);
  border-top-color: #344e41;
  border-radius: 50%;
  box-sizing: border-box;
  transition: width 0.25s ease, margin-left 0.25s ease, opacity 0.2s ease, border-width 0.25s ease;
}
.object_share_btn.is-loading .object_share_btn_spinner{
  width: 13px;
  margin-left: 8px;
  opacity: 1;
  border-width: 2px;
  animation: object_share_spin 0.6s linear infinite;
}
@keyframes object_share_spin{ to{ transform: rotate(360deg); } }
