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

@view-transition {
  navigation: auto;
}

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

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

button{
  font-family: "Manrope", 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;
  align-items: center;
  margin: 0 auto;
  max-width: 1500px;
  width: 90%;
}

.block_1{
  display: flex;
  flex-direction: row;
  background-color: #202020;
  padding: 20px 0;
  color: #EEEEEE;
  border-bottom: 2px solid #333;
}

.block_2{
  display: flex;
  flex-direction: column;
  background-color: #232323;
  padding: 20px 0;
  color: #EEEEEE;
}

.block_2_1{
  display: flex;
  flex-direction: row;
  gap: 30px;
  height: 70px;
}

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

.block_2_2_left{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.block_2_2_right{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.block_2_3{

}

.block_2_4{

}

.logo{
  height: 70px;
}

.block_2_1_line{
  width: 2px;
  background-color: #FFFFFF;
  height: 70px;
}

.block_2_1_up{
  display: flex;
}

.block_2_1_down{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.block_2_1_down_1{
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.block_2_1_down_2{
  font-size: 35px;
  font-weight: 700;
  text-indent: -1px;
  margin: 0 0 -8px 0;
}

.crumbs{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.crumbs_left{
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-weight: 100;
  font-size: 13px;
  font-style: italic;
}

.crumbs_right{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: 100;
  font-size: 13px;
}

.auth_btn{
  transition: all 0.2s ease;
}

.auth_btn:hover{
  cursor: pointer;
  background-color: #227093;
  color: #FFFFFF;
  padding: 0 5px;
  border-radius: 2px;
}

.exit_btn{
  transition: all 0.2s ease;
}

.exit_btn:hover{
  cursor: pointer;
  background-color: #eb3b5a;
  padding: 0 5px;
  border-radius: 2px;
}

#modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-auth {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 32px 32px 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 40px rgba(29, 54, 82, 0.25);
  border-top: 3px solid #227093;
  font-family: "Manrope", sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

#modal-overlay.active .modal-auth {
  transform: translateY(0);
}

.modal-auth__title {
  grid-column: 1 / -1;
  font-size: 22px;
  font-weight: 800;
  color: #227093;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.modal-auth__field {
  margin-bottom: 16px;
}

.modal-auth__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.modal-auth__field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #232323;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.modal-auth__field input:focus {
  border-color: #227093;
  box-shadow: 0 0 0 3px rgba(29, 54, 82, 0.12);
}

.modal-auth__btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 13px;
  margin-top: 4px;
  background: #227093;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-auth__btn:hover   { background: #2A4D73; }
.modal-auth__btn:disabled { background: #BBBBBB; cursor: default; }

.modal-auth__message { grid-column: 1 / -1; }

.crumbs a{
  color: #FFFFFF;
  text-decoration: none;
}

.crumbs a:hover{
  text-decoration: underline;
}

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

  width: 100%;
}

.menu_button{
  display: flex;
  flex-direction: row;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #999999;
  transition: all 0.3s;
  text-decoration: none;
  color: #FFFFFF;
}

.menu_button_active{
  display: flex;
  flex-direction: row;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #1e272e;
  font-weight: 700;
  text-decoration: none;
}

.menu_button:hover{
  transition: all 0.3s;
  padding: 10px 25px;
  border: 2px solid #FFFFFF;
}

/* Дворядкова кнопка (ТАУНХАУСИ / ДУПЛЕКСИ): інлайн padding блокував hover */
.menu_button_twoline{
  font-size: 12px;
  padding: 4px 20px;
  text-align: center;
}

.menu_button.menu_button_twoline:hover{
  padding: 4px 25px;
}

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

.block_3_inside{
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 20px;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.block_4_inside{
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 20px;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.block_3_left{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  width: 290px;
}

.block_3_right{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  flex: 1;
  min-width: 0;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.content_map{
  display: flex;
  flex-direction: row;
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  background-color: #EEE;
  border-radius: 20px;
  overflow: hidden;
}

#map{
  flex: 1;
}

.popup_title{
  font-weight: 700;
  margin-bottom: 4px;
}

.popup_link{
  color: #232323;
  text-decoration: none;
  font-weight: 600;
}

.popup_link:hover{
  text-decoration: underline;
}

.popup_pic{
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 8px;
}

.maplibregl-popup-content{
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #1e272e;
  border-radius: 10px;
  padding: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.maplibregl-popup-close-button{
  font-size: 18px;
  padding: 4px 8px;
  color: #999999;
}

.maplibregl-ctrl-group{
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

#map_left_panel{
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

#content_map.map_filter_open #map_left_panel{
  width: 290px;
  max-height: calc(100% - 40px);
  overflow-y: auto;
}

#map_toolbar{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map_toolbar_btn{
  background-color: #232323;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.map_toolbar_btn:hover{
  background-color: #FFFFFF;
  color: #232323;
}

.map_toolbar_btn.map_btn_active{
  background-color: #444444;
}

.map_toolbar_btn.map_btn_active:hover{
  background-color: #FFFFFF;
  color: #232323;
}

.map_toolbar_btn.map_btn_drawing{
  background-color: #444444;
}

.map_toolbar_btn.map_btn_drawing:hover{
  background-color: #FFFFFF;
  color: #232323;
}

.map_toolbar_btn_cancel{
  background-color: #FFFFFF;
  color: #999999;
  border: 2px solid #999999;
}

.map_toolbar_btn_cancel:hover{
  background-color: #FFFFFF;
  border-color: #232323;
  color: #232323;
}

#measure_label,
#map_counts{
  background-color: #FFFFFF;
  color: #232323;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.locate_marker{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #232323;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #232323, 0 2px 6px rgba(0, 0, 0, 0.35);
}

#map_loader{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEE;
  opacity: 1;
  transition: opacity 0.4s;
}

#map_loader.map_loader_hidden{
  opacity: 0;
  pointer-events: none;
}

.map_loader_spinner{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #E8E8E8;
  border-top-color: #232323;
  animation: map_loader_spin 0.8s linear infinite;
}

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

#content_map.map_filter_open #map_filter_panel{
  width: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

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

.object{
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  gap: 10px;
  padding: 0 0 20px 0;
  transition: all 0.2s;
}

.object:hover{

  transition: all 0.2s;
}

.object_absolute_up_left{
  display: flex;
  flex-direction: row;
  gap: 10px;

  position: absolute;
  top: 10px;
  left: 15px;
  overflow: hidden;
  z-index: 9998;

  font-size: 12px;
  font-weight: 600;

  flex-wrap: wrap;
}

.object_absolute_bottom_right{
  display: flex;
  flex-direction: row;
  gap: 10px;

  position: absolute;
  bottom: 10px;
  right: 15px;
  overflow: hidden;
  z-index: 9997;

  font-size: 12px;
  font-weight: 600;

  flex-wrap: wrap;
}

.object_km{
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #227093;
  color: #FFFFFF;
}

.object_new{
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #227093;
  color: #FFFFFF;
}

.object_deposit{
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #ee5253;
  color: #FFFFFF;
}

.object_rent{
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #ee5253;
  color: #FFFFFF;
}

.object_pics{
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.object_pic{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.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: 100;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.4px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.object_pics .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_pics .object_pics_swiper .swiper-wrapper,
.object_pics .object_pics_swiper .swiper-slide{
  width: 100%;
  height: 100%;
}

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

.object_pics .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_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: #227093;
}

.object_pics_swiper .swiper-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  bottom: 8%;
  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_price{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 10px;
  margin: -20px 0 0 0;
  position: relative;
  z-index: 999;
}

.object_price_1{
  display: flex;
  flex-direction: row;
  font-weight: 700;
  color: #FFFFFF;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 20px;
  background-color: #232323;
  border: 2px solid #FFFFFF;
}

.object_price_2{
  display: flex;
  flex-direction: column;
  font-size: 13px;
  justify-content: space-evenly;
  align-items: end;
  font-weight: 400;
}

.object_price_2_down{
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.object_title{
  display: flex;
  flex-direction: row;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.object_location{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  padding: 0 20px;
}

.object_location_icon{
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
}

.object_line{
  display: flex;
  flex-direction: row;
  width: 22%;
  height: 1px;
  background-color: #CCCCCC;
}

.object_price_2_down_mill{
  font-weight: 700;
}

.object_params{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px;
}

.object_param{
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #232323;
  border-radius: 50px;
  padding: 4px 10px;
  white-space: nowrap;
}

.object_private{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 13px;
  padding: 0 20px 0 20px;
  color: #1e272e;
}

.object_private_left{

}

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

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

.object_date_tip_box{
  position: fixed;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  background-color: #232323;
  padding: 4px 10px;
  color: #FFFFFF;
  box-sizing: border-box;
  border-radius: 50px;
  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_private_archive{
  color: #ee5253;
  font-weight: 600;
}

.block_4{
  display: flex;
  flex-direction: row;
  background-color: #202020;
  padding: 20px 0;
  color: #EEEEEE;
  border-top: 2px solid #333;
}

.block_4_left{
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  gap: 20px;
  width: 290px;
}

.text_button{
  font-size: 26px;
  font-weight: 100;
  color: #999999;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all 0.3s;
  cursor: pointer;
}

.text_button:hover{
  color: #FFFFFF;
  text-decoration-color: currentColor;
}

.text_button_active{
  font-size: 26px;
  font-weight: 100;
  color: #FFFFFF;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.block_4_right{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.block_4_right_1{
  display: flex;
  flex-direction: row;
  gap: 7px;
  font-size: 26px;
  font-weight: 100;
}

.block_4_right_2{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.count_line_2_sort{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 25px;
  box-sizing: border-box;
  border: 2px solid #999999;
  transition: all 0.3s;
}

.count_line_2_sort:hover{
  transition: all 0.3s;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-color: #FFFFFF;
  cursor: pointer;
  box-shadow: none;
}

.count_line_2_sort.is-active{
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: none;
}

.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;
}

.icon_btn_spinner {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  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;
}

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

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

.count_line_2_sort.is-active.is-loading .icon_btn_spinner {
  border-color: rgba(30, 39, 46, 0.3);
  border-top-color: #1e272e;
}

.icon{
  height: 15px;
}

.counts{
  display: none;
}

.filter_counts{
  display: none;
}

.not_found_1{
  font-size: 26px;
  font-weight: 700;
}

.not_found_2{
  font-weight: 100;
  font-size: 20px;
}

.subfilter{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.build_numbers {
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
}

.width_1 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.width_2 {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.drop_filter_menu_numbers {
  display: none;
  width: 100%;
  max-height: 180px;
  background-color: #FFFFFF;
  margin: 0;
  box-sizing: border-box;
  border: 2px solid #1e272e;
  border-top: none;
  border-radius: 0 0 22px 22px;
  overflow: auto;
}

.inputs_filter_investors {
  width: 100%;
  height: 44px;
  border: 2px solid #999999;
  border-radius: 50px;
  padding: 0 20px;
  outline: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1e272e;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.inputs_filter_investors:focus {
  border-color: #1e272e;
}

.inputs_filter {
  width: 100%;
  height: 44px;
  border: 2px solid #999999;
  border-radius: 50px;
  padding: 0 20px;
  outline: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1e272e;
  background-color: #FFFFFF;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/panel/pic/panel_filter_arrow.png');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  transition: border-color 0.2s ease;
}
.inputs_filter:focus {
  border-color: #1e272e;
  border-radius: 22px 22px 0 0;
}

.inputs_filter_left {
  width: 100%;
  height: 44px;
  border: 2px solid #999999;
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 0 20px;
  outline: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1e272e;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.inputs_filter_left:focus {
  border-color: #1e272e;
  border-right: none;
}

.inputs_filter_right {
  width: 100%;
  height: 44px;
  border: 2px solid #999999;
  border-radius: 0 50px 50px 0;
  padding: 0 20px;
  outline: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1e272e;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.inputs_filter_right:focus {
  border-color: #1e272e;
}

.inputs_filter::placeholder,
.inputs_filter_left::placeholder,
.inputs_filter_right::placeholder,
.inputs_filter_investors::placeholder {
  color: #A2A2A2;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
}

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

.checkbox_filter input[type="checkbox"] {
  display: none;
}
.checkbox_filter label {
  float: left;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  outline: none;
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px 14px;
  white-space: nowrap;
  color: #1e272e;
  transition: background-color 0.12s ease;
}
.checkbox_filter label:hover {
  background-color: #F4F4F4;
  cursor: pointer;
}
.checkbox_filter input[type="checkbox"]:checked + label {
  font-weight: 700;
  background-color: #1e272e;
  color: #FFFFFF;
}

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

.selected-value {
  background-color: #1e272e;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.selected-value:hover {
  background-color: #b33939;
  color: #FFFFFF;
}

.remove-button {
  font-weight: 400;
  opacity: 0.7;
}

.filter_button {
  border: 2px solid #1e272e;
  border-radius: 50px;
  padding: 10px 20px;
  outline: none;
  color: #FFFFFF;
  background-color: #1e272e;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.filter_button:hover {
  background-color: #FFFFFF;
  color: #1e272e;
  border: 2px solid #1e272e;
  padding: 10px 25px;
}

.filter_button_spinner {
  width: 0;
  height: 13px;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
  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;
}

.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;
  animation: filter_button_spin 0.6s linear infinite;
}

.filter_button.is-loading:hover .filter_button_spinner {
  border-color: rgba(30, 39, 46, 0.3);
  border-top-color: #1e272e;
}

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

.filter_reset_mobile {
  border: 2px solid #999999;
  border-radius: 50px;
  padding: 10px 20px;
  outline: none;
  color: #999999;
  background-color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.filter_reset_mobile:hover {
  padding: 10px 25px;
  border: 2px solid #1e272e;
  color: #1e272e;
}

.filter_reset_mobile .filter_button_spinner {
  border-color: rgba(153, 153, 153, 0.35);
  border-top-color: #999999;
}

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

.filter_more {
  border: 2px solid #999999;
  border-radius: 50px;
  padding: 10px 20px;
  outline: none;
  color: #999999;
  background-color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
}

.filter_more:hover {
  padding: 10px 25px;
  border: 2px solid #1e272e;
  color: #1e272e;
}

.for_filter_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.filter_hidden {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

/* ===== Мульти-лінк блок ===== */
.multi_block { display: flex; align-items: center; gap: 10px; }
.multi_done_btns { display: flex; gap: 10px; }

/* головна дія (ЗГЕНЕРУВАТИ / КОПІЮВАТИ) — фірмова зелена пігулка сайту */
.multi_gen_btn {
  box-sizing: border-box;
  height: 36px;
  padding: 0 18px;
  border: 2px solid transparent;
  background-color: #227093;
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.multi_gen_btn:not(:disabled):hover {
  background-color: #4D9A8A;
}

.multi_gen_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* друга дія (НОВИЙ ЛІНК) — контурна кнопка: сіра → біла, як решта бару */
.multi_new_btn {
  box-sizing: border-box;
  height: 36px;
  padding: 0 18px;
  border: 2px solid #999999;
  background-color: transparent;
  color: #999999;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.multi_new_btn:not(:disabled):hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.multi_new_btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* стан «скопійовано» — лишаємось у фірмовій зеленій */
.multi_gen_btn.multi_copied {
  background-color: #227093;
  color: #FFFFFF;
}

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

/* ===== Попап сортування ===== */
#sort_popup {
  display: none;
  position: fixed;
  z-index: 9998;
  background: #FFFFFF;
  color: #232323;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #999999;
  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;
  font-style: italic;
  color: #999999;
  padding: 10px 20px;
  border-bottom: 1px solid #E8E8E8;
}
.sort_popup_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  cursor: pointer;
  transition: all 0.3s;
}
.sort_popup_item:last-child { border-bottom: none; }
.sort_popup_item:hover {
  background-color: #F4F4F4;
}
.sort_popup_item.sort_active {
  background-color: #232323;
  color: #FFFFFF;
}






















.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 .cbx:hover .front::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='%231D3652' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.checkbox-wrapper-45 .box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx .box {
  background-color: #227093;
  border-color: #227093;
}
.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 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 .cbx:hover .box {
  border-color: #227093;
}

/* Ripple */
.checkbox-wrapper-45 .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(88, 177, 159, 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; }
}








.object_params_km{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
}

.object_params_km_object{
  display: flex;
  gap: 5px;
  text-decoration: none;

  background-color: #227093;
  border-radius: 50px;
  padding: 4px 10px;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.object_params_km_object:hover{
  background-color: #2A4D73;
}

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

.object_params_km_object_more{
  background-color: #227093;
  border-radius: 53px;
  padding: 4px 10px;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
}

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

.block_5_inside{
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 20px;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.block_5_left{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  flex: 1;
  min-width: 0;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.block_5_left_pics_inside{
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  gap: 20px;
  min-width: 0;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.block_5_right{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  width: 600px;
}

.block_5_left_1{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 480px;
  background-color: #DEDEDE;
  border-radius: 20px;
  align-self: stretch;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.block_5_left_2{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  width: 200px;
  position: relative;
  z-index: 1;
  height: 480px;
}

.inside_main_pic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: filter 0.2s ease;
}

.block_5_left_2_pic{
  display: flex;
  flex-direction: row;
  flex: 1;
  background-color: #DEDEDE;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.block_5_pic_link{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.block_5_pic_link:hover .inside_main_pic{
  filter: brightness(0.9);
  cursor: pointer;
}

.block_5_pic_last{
  filter: brightness(0.55);
}

.block_5_pic_link:hover .block_5_pic_last{
  filter: brightness(0.75);
}

.block_5_view_more{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.block_5_view_more b{
  font-weight: 700;
  margin-right: 4px;
}

.block_5_left_2_pic_no_pic{
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #999;
  align-items: center;
  justify-content: center;
  font-style: italic;
}

/* VARIANT 1 — табличні рядки, золота смуга зверху, hover зліва
.inside_object_params{
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 10px 0;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: inset 0 3px 0 #cba84d;
}
.inside_params_other_1{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-bottom: 1px solid #E8E8E8;
  border-left: 3px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.inside_params_other_1:last-child{
  border-bottom: none;
}
.inside_params_other_1:hover{
  background-color: #F7F3E8;
  border-left-color: #cba84d;
}
.params_flex_3{
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #888888;
  flex: 0 0 42%;
}
.params_flex_4{
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #232323;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.params_flex_4 a{
  color: #227093;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.params_flex_4 a:hover{
  color: #cba84d;
  border-bottom-color: #cba84d;
}
*/

/* VARIANT 2 — плитки 2 колонки, підпис над значенням */
.inside_object_params{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.inside_params_other_1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  background-color: #F2F2F2;
  border-radius: 10px;
  border: 2px solid transparent;
  box-sizing: border-box;
  min-width: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.inside_params_other_1:last-child:nth-child(3n+1){
  grid-column: 1 / -1;
}

.inside_params_other_1:hover{
  background-color: #FFFFFF;
  border-color: #232323;
}

.params_flex_3{
  display: block;
  font-size: 13px;
  color: #999999;
}

.params_flex_4{
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #232323;
  width: 100%;
  min-width: 0;
  word-break: break-word;
  line-height: 1.3;
}

.params_flex_4 a{
  color: #227093;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.params_flex_4 a:hover{
  color: #16283f;
  border-bottom-color: #16283f;
}

/*
 * Зібрані стилі для унікальних class="" з файлу /object/desktop_descriptions.php
 * Джерело правил: /home/admin/web/format.if.ua/public_html/style/desktop.css
 */

.desc_gap{
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.block_line_3_desc_title{
  display: flex;
  flex-direction: row;
  color: #227093;
  font-family: "Manrope", sans-serif;
}

.block_line_3_desc_title_background{
  font-size: 35px;
  font-weight: 700;
  color: #232323;
}

.block_line_3_desc_text{
  display: flex;
  flex-direction: row;
  color: #232323;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  white-space: break-spaces;
  text-align: justify;
  font-size: 15px;
  letter-spacing: 0.01em;
}


/*
 * Зібрані стилі для унікальних class="" з файлу /object/desktop_maps.php
 * Джерело правил: /home/admin/web/format.if.ua/public_html/style/desktop.css
 */

.block_line_3_desc_title_gmaps{
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 0 18px;
  border: 1px solid #E8E8E8;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #227093;
  transition: all 0.15s;
}

.block_line_3_desc_title_gmaps:hover{
  background-color: #227093;
  border-color: #227093;
  color: #FFFFFF;
}


/*
 * Зібрані стилі для унікальних class="" з файлу /object/desktop_manager.php
 * Джерело правил: /home/admin/web/mdgroup.if.ua/public_html/style/desktop.css
 */

.inside_manager {
  display: flex;
  flex-direction: column;
}

/* Контакт-картка менеджера: суцільний графіт #232323, портрет —
   повновисотна панель праворуч, текст ліворуч. Без золота. */
.manager {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  min-height: 130px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #232323;
  position: relative;
}

.manager_photo {
  width: 90px;
  height: 90px;
  margin: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  overflow: hidden;
  background-color: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.manager_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manager_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  padding: 20px;
  box-sizing: border-box;
}

.manager_ups {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.manager_name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.manager_phone a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.manager_phone a:hover {
  background-color: #FFFFFF;
  color: #232323;
  border-color: #FFFFFF;
}

/* Генератор особистого лінка — окрема світла картка під консьєрж-карткою */
#generate_link {
  display: none;
}

.create_private_link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  margin-top: 20px;
  padding: 20px;
}

.create_private_this_link_in {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #999999;
}

.create_private_this_link {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: #227093;
  word-break: break-all;
}

/* Кнопки в стилі .menu_button — світлий варіант (батьківська картка
   генератора світла): outline-пігулка з темним текстом, заливка на hover. */
.input_copy_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #999999;
  background-color: transparent;
  color: #232323;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

.input_copy_btn:hover{
  cursor: pointer;
  background-color: #232323;
  border-color: #232323;
  color: #FFFFFF;
}

.input_copy_btn:disabled {
  background-color: transparent;
  border-color: #E0E0E0;
  color: #BBBBBB;
  cursor: not-allowed;
}

.input_copy_btn_spinner {
  width: 0;
  height: 12px;
  margin-left: 0;
  margin-top: -1px;
  opacity: 0;
  overflow: hidden;
  border: 0px solid rgba(35, 35, 35, 0.3);
  border-top-color: #232323;
  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;
}

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

/* Поле ціни у стилі .menu_button — світлий варіант (outline-пігулка) */
.for_new_price{
  width: 90px;
  flex-shrink: 0;
  outline: none;
  border: 2px solid #999999;
  background-color: transparent;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #232323;
  padding: 10px 16px;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.for_new_price:focus{
  border-color: #232323;
}

.for_new_price::placeholder{
  color: #999999;
  font-weight: 400;
}

/* статуси відповіді генератора лінка (класи призначає JS у desktop_manager.php) */
.status-good {
  color: #10ac84;
  font-weight: 600;
}

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

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


/*
 * Зібрані стилі для унікальних class="" з файлів
 * /object/desktop_pic_documents.php та /object/desktop_descriptions_private.php
 * Джерело правил: /home/admin/web/format.if.ua/public_html/style/desktop.css
 */

.pic_documents{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

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

.pic_documents_photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
}

.pic_documents_photo:hover{
  filter: brightness(1.08) saturate(1.1);
  transform: scale(1.12);
  cursor: pointer;
}

.description_managers{
  display: flex;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  color: #232323;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  white-space: break-spaces;
  text-align: justify;
}


/*
 * Зібрані стилі для унікальних class="" з файлу /object/desktop_tabs.php
 * Джерело: /home/admin/web/format.if.ua (+ mdgroup для width_1_table_title),
 * кнопки-перемикачі адаптовано під палітру zhytlolux.
 */

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

/* Кожна секція історії — біла картка в одну мову з рештою сторінки */
.width{
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.width_1_table_title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: #227093;
}

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

.width_1_button,
.width_1_button_active{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  padding: 4px 12px;
  box-sizing: border-box;
  transition: all 0.3s;
}

.width_1_button{
  color: #999999;
  border: 1px solid #E8E8E8;
  background-color: transparent;
}

.width_1_button:hover{
  cursor: pointer;
  color: #FFFFFF;
  background-color: #227093;
  border: 1px solid #227093;
}

.width_1_button_active{
  color: #FFFFFF;
  background-color: #227093;
  border: 1px solid #227093;
}

/* Таблиці історії — у чистій мові desktop_params.php: без золота, без важких
   рамок; сірі uppercase-заголовки (як params_flex_3), рядки-роздільники (як
   inside_params_other_1) з підсвіткою на hover. */
.width table{
  background-color: transparent;
  font-size: 13px;
}

.width th{
  background-color: transparent;
  color: #999999;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #E8E8E8;
  padding: 0 10px 10px 10px;
  white-space: nowrap;
}

.width td{
  border: none;
  border-bottom: 1px solid #E8E8E8;
  padding: 10px;
  color: #232323;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.width tbody tr:last-child td{
  border-bottom: none;
}

.width tbody tr:hover td{
  background-color: #F7F7F7;
}

/* Блок ціни обʼєкта (object/desktop_price.php).
   Відмінність від mdgroup: не суцільна заливка-акцент, а темна панель
   з акцентною смугою збоку; ціна — герой, ціна за одиницю — вторинна
   за розділювачем; спокійний hover-lift замість пульсуючого кільця. */
.block_price{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #232323;
  color: #FFFFFF;
}

.block_price_1{
  display: flex;
  flex-direction: column;
  flex: 1.4;
  gap: 2px;
  min-width: 0;
}

.block_price_2{
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.block_price_1_up{
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.block_price_1_down{
  font-size: 35px;
  font-weight: 700;
  line-height: 1.05;
}

/* Ціна за одиницю — вторинний показник: дрібніша й приглушена */
.block_price_2 .block_price_1_down{
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
