/*Custom dropdown*/

.w-100 {
  width: 100%;
}

/* Prevent layout shift for dynamic title */
.property-card-map > h3 {
  min-height: 2.5em;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* Prevent layout shift for images */
.property-card-map img {
  max-width: 100%;
  height: auto;
}

/* Prevent layout shift in property cards */
.property-card-map .card {
  min-height: 400px;
}

.property-card-map .slide img {
  aspect-ratio: 864 / 576;
  object-fit: cover;
  width: 100%;
}

.search-filter {
  padding: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

/* Wrapper to keep dropdowns in one line */
.dropdown-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.filter-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Dropdown Container */
.custom-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.custom-dropdown-toggle {
  color: #2a4089;
  padding: 11px 12px;
  height: 46px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
  gap: 3px;
}

.custom-dropdown-toggle:hover,
.custom-dropdown.open .custom-dropdown-toggle {
  border-color: #2a4089;
}

/* Dropdown Menu */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 8px;
  z-index: 99;
}

/* Show dropdown with fade effect */
.custom-dropdown.open .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Input fields */

/* Hide the up and down arrows in a number input */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

.priceFilter input[type="text"] {
  position: relative;
  padding-left: 25px;
}

.priceFilter input[type="text"]:before {
  content: "$";
  display: inline-block;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: red;
  height: 25px;
  width: 25px;
}

.priceFilter span.price-sign {
  position: absolute;
  left: 25px;
  top: 50px;
  z-index: 9;
}

.custom-dropdown-menu.Price-dropdown .priceFilter span.price-sign {
  top: 40px;
}

.dropdown-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* Dropdown Items */
.dropdown-item {
  padding: 8px;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  border-radius: 4px;
  background: #f8f9fa;
}

.dropdown-item:hover {
  background: #007bff;
  color: white;
}

/* Outline Caret Icon */
.custom-caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid #2a4089;
  border-bottom: 1.5px solid #2a4089;
  transform: rotate(-45deg);
  margin-left: 10px;
  transition: transform 0.3s ease;
  margin-top: -3px;
}

.custom-dropdown.saveSearchContainer .custom-caret {
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  margin-bottom: 2px;
}

.custom-dropdown.saveSearchContainer.open .custom-caret {
  transform: rotate(135deg);
  margin-bottom: -4px;
}

/* Rotate caret when open */
.custom-dropdown.open .custom-caret {
  transform: rotate(135deg);
  margin-bottom: -10px;
}

.dropdown-title {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 15px;
}

.search-filter .blue-button {
  padding: 6px 24px;
  font-size: 16px;
  text-align: center;
  flex: 0 0 144px;
}

.Price-dropdown {
  width: 384px;
}

.bed-bath {
  width: 594px;
}

.property-type {
  width: 260px;
}

.more-filter {
  width: 528px;
  max-height: 500px;
  overflow-y: scroll;
}

.saveSearchContainer .custom-dropdown-menu.more-filter {
    max-height: none;
    overflow-y: visible;
}

.filtered {
  width: 400px;
}

.form-control {
  height: 46px;
  padding: 11px 12px;
}

/* Container for radio buttons */
.radio-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Hide the default radio button */
.radio-group input[type="radio"] {
  display: none;
}

/* Label as a clickable block */
.radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  background: white;
  color: #2a4089;
  transition: all 0.3s ease;
  width: 87px;
  text-align: center;
  flex: 1 0 0;
  flex-wrap: wrap;
  overflow-x: unset !important;
}

/* Change background when selected */
.radio-group input[type="radio"]:checked + .radio-label {
  background: #2a4089;
  color: white;
  border-color: #0db3c5;
}

/* Hover effect */
.radio-label:hover {
  background: rgba(42, 64, 137, 0.1);
}

/* Container for checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Hide the default checkbox */
.checkbox-group input[type="checkbox"] {
  display: none;
}

/* Label as a clickable block */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

/* Checkbox Custom Square */
.checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #1c3880;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Icon Placeholder (Can be replaced with actual icons) */
.checkbox-icon {
  font-size: 18px;
  color: #555;
}

/* Change styles when checkbox is checked */
.cinput[type="checkbox"]:checked + .checkbox-label {
  background: #d0f0f3;
  border-color: #2a4089;
}

.checkbox-group
  input[type="checkbox"]:checked
  + .checkbox-label
  .checkbox-custom {
  background: #1c3880;
  border-color: #1c3880;
}

/* Checkmark inside the custom checkbox */
.checkbox-group
  input[type="checkbox"]:checked
  + .checkbox-label
  .checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.flex-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Radius dropdown: Firefox flex min-content width can overflow; keep same layout as Chrome */
.custom-dropdown.radius-filter-container {
  box-sizing: border-box;
  max-width: 100%;
}

.custom-dropdown-menu.radius-dropdown,
.custom-dropdown-menu.radius-dropdown .radiusFilter,
.custom-dropdown-menu.radius-dropdown .flex-btn {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.custom-dropdown-menu.radius-dropdown {
  width: 260px;
  max-width: calc(100vw - 24px);
  overflow: hidden;
}

.custom-dropdown-menu.radius-dropdown .radiusFilter {
  width: 100%;
}

.custom-dropdown-menu.radius-dropdown .flex-btn {
  display: block;
}

.custom-dropdown-menu.radius-dropdown .blue-button {
  display: block;
  width: 100%;
  max-width: 100%;
  flex: none;
  margin: 0;
}

/* Search Box Container */
.search-box {
  position: relative;
  width: 320px;
  /* Adjust width as needed */
  float: left;
  padding: 24px 0;
}

/* Search Input */
.search-input {
  width: 100%;
  height: 46px;
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  outline: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Search Icon */
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
}

button.search-icon {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  line-height: 0;
}

.search-icon svg {
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #0db3c5;
  /* Icon color */
}

.navbar-collapse {
  float: right;
}

.navbar-default .search-box + .navbar-collapse .navbar-nav > li > a {
  padding: 36px 24px;
}

.navbar-default .search-box + .navbar-collapse .navbar-right li > a {
  padding: 10px 24px;
}

.filtered .radio-label {
  width: 110px;
}

.bx-wrapper img {
  width: 100% !important;
  height: 190px !important;
}

.bx-wrapper {
  margin-bottom: 0px !important;
}

.bx-controls-direction {
  display: none !important;
}

/*
* Row with equal height columns
* --------------------------------------------------
*/
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* [class*="col-"] {
    padding-top: 10px;
    padding-bottom: 10px;
} */

.more-filter [class*="col-"] {
  padding-top: 0;
  padding-bottom: 0;
}

/*
* Callout styles copied from Bootstrap's main docs.
*/
/* Common styles for all types */
.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border-left: 3px solid #eee;
}

.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

.bs-callout p:last-child {
  margin-bottom: 0;
}

.bs-callout code {
  background-color: #fff;
  border-radius: 3px;
}

/* Variations */
.bs-callout-danger {
  background-color: #fdf7f7;
  border-color: #d9534f;
}

.bs-callout-danger h4 {
  color: #d9534f;
}

.bs-callout-warning {
  background-color: #fcf8f2;
  border-color: #f0ad4e;
}

.bs-callout-warning h4 {
  color: #f0ad4e;
}

.bs-callout-info {
  background-color: #f4f8fa;
  border-color: #5bc0de;
}

.bs-callout-info h4 {
  color: #5bc0de;
}

.img-logo {
  max-width: 100%;
  height: 40px;
}

.top-bar {
  width: 100%;
}

#searchResults #map {
  height: 130vh !important;
}

#pollSlider-button {
  position: fixed;
  width: 100px;
  height: 50px;
  right: 0px;
  background: black;
  top: 300px;
  z-index: 9999;
}

.app {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.sidebar {
  flex-basis: 50%;
  flex-shrink: 0;
  height: 100%;
  overflow: auto;
  padding: 10px;
}

.sidebar2 {
  flex-basis: 100%;
  flex-shrink: 0;
  height: 100%;
  overflow: auto;
  padding: 10px;
}

.map-area {
  flex-basis: 50%;
  background-size: cover;
}

.wrap {
  display: flex;
}

.left {
  flex-basis: 60%;

  height: 100vh;
  overflow: auto;
  overflow-x: hidden;
}

.right {
  flex-basis: 40%;
}

.checkbox-container {
  width: 180px;
  height: 150px;
  overflow-y: scroll;
}

.search-container {
  padding: 10px;
}

@media (min-width: 900px) {
  .hide-from-desktop {
    display: none;
  }
}

@media (max-width: 800px) {
  .hide-from-mobile {
    display: none;
  }
}

.title-header {
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
}

.primary-color {
  background-color: #23326a !important;
  width: 144px;
  height: 42px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
}

.details {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: normal;
  color: #000000;
}

.bottom-text {
  text-align: center;
  padding-top: 3px;
  padding-top: 3px;
  font-size: 10px;
}

#property-icon {
  text-align: center;
}

.type_checkbox {
  text-align: center;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

/* Point-zoom Container */
.img-hover-zoom--point-zoom img {
  transform-origin: 65% 75%;
  transition: transform 1s, filter 0.5s ease-out;
}

/* The Transformation */
.img-hover-zoom--point-zoom:hover img {
  transform: scale(1.2);
}

.kNBbhi {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.lcNNgu {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  color: #666666;
}

.image-container {
  position: relative;
  width: 100%;
}

.top-left {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(6, 66, 136, 0.5);
  color: white;
  padding: 5px;
}

.form-control {
  margin-bottom: 0;
  padding: 0 30px 0 10px;
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-weight: 700;
  color: #2a4089;
}

.form-control::-webkit-input-placeholder,
.form-control::placeholder {
  color: #666;
  font-weight: 400;
}

label {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #000000;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}

.bottom-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  color: #5b5a5a;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

.btn-solid {
  border-radius: 60px;
  width: 251px;
  height: 68px;
}

.mkdf-btn.mkdf-btn-outline {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #25357f;
}

.mkdf-btn {
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  width: auto;
  outline: 0;
  font-size: 11px;
  line-height: 2em;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  box-sizing: border-box;
  margin: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  padding: 11px 53px 7px;
  cursor: pointer;
}

.mkdf-btn,
.mkdf-btn.mkdf-btn-simple .mkdf-btn-text {
  display: inline-block;
  vertical-align: middle;
}

button {
  -webkit-appearance: button;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: buttontext;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  background-color: buttonface;
  box-sizing: border-box;
  margin: 0em;
  font: 400 13.3333px Arial;
  padding: 1px 6px;
  border-width: 2px;
  border-style: outset;
  border-color: buttonface;
  border-image: initial;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  display: block;
  padding: 0 15px;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container--default .select2-selection--single {
  display: block;
  height: 42px;
  line-height: 42px;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container--default {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  text-align: initial;
  box-sizing: border-box;
}

.nopadding {
  padding: 2px !important;
  margin: 0 !important;
}

div.parent {
  position: relative;
  height: 98%;
  width: 98%;
  border: 1px solid #cccccc;
}

div.absolute {
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
}

.card {
  flex: 1 10 23%;
}

.alignleft {
  float: left;
  padding-left: 5px;
}

.alignright {
  float: right;
  padding-right: 15px;
}

.js-click-store {
  cursor: pointer;
}

.modern-save-indicator {
  background: rgba(6, 66, 136, 0.4);
  color: #fff;
  font-size: 12px;
  top: 0px;
  padding: 4px;
  position: absolute;
  right: 0;
  z-index: 9;
}

.modern-img-indicator {
  background: rgba(6, 66, 136, 0.4);
  color: #fff;
  font-size: 12px;
  margin-top: -30px;
  padding: 4px;
  position: absolute;
  right: 0;
}

.property-type .blue-button {
  margin-top: 10px;
  width: 100%;
}

#searchResults {
  min-height: 600px;
}

.more-filter .btn-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.more-filter .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3sease;
  width: 87px;
  text-align: center;
  flex: 1 0 0;
  flex-wrap: wrap;
  overflow-x: unset !important;
  background: #fff;
  border-color: #2a4089;
  color: #2a4089;
  font-weight: 600;
}

.more-filter .btn.selected {
  background: #2a4089;
  color: #fff;
  border-color: #2a4089;
}

.more-filter input[type="checkbox"] {
  display: none;
}

.more-filter .checkbox-group.first .checkbox-label {
  border: 0;
  padding: 20px 0;
}

.more-filter .checkbox-group.others .checkbox-label {
  border: 0;
  padding: 0;
  font-weight: 400;
  color: #666666;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.more-filter .checkbox-group.others .checkbox-custom {
  margin: 2px 0 0;
  display: inline-block;
  max-width: 20px;
  width: 100%;
}

.more-filter
  .checkbox-group.others
  input[type="checkbox"]:checked
  + .checkbox-label
  .checkbox-custom:after {
  margin: 0 3px;
  padding: 0;
  position: relative;
  top: -3px;
}

.more-filter
  .checkbox-group.first
  .cinput[type="checkbox"]:checked
  + .checkbox-label,
.more-filter
  .checkbox-group.others
  .cinput[type="checkbox"]:checked
  + .checkbox-label {
  background: transparent;
  overflow: hidden;
}

/* search result */
.property-card-map .card {
  flex: 0 50%;
  margin-bottom: 35px;
}

.property-card-map div.parent {
  border: none;
}

h3.property-price {
  font-size: 24px;
  font-weight: 800;
  line-height: 48px;
  color: #2a4089;
  margin: 0;
  padding-left: 10px;
}

.family-capicity {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.inline-details {
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px; */
  align-items: center;
  justify-content: space-between;
}

.property-info {
  display: flex;
}

.inline-property-details .property-info {
  flex-wrap: wrap;
  gap: 5px 0;
  align-content: flex-start;
}

.additional-info {
  color: #9a9a9a;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  padding: 0 10px;
}

.inline-details.sub-details {
  align-items: end;
  margin-top: 5px;
}

.inline-details.sub-details .additional-info {
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
  text-align: right;
  width: 38%;
}

.inline-details.sub-details .additional-info:before {
  display: none;
}

.inline-details.sub-details .additional-info.address-info {
  color: #2a4089;
  max-width: 60%;
  width: 100%;
  text-align: left;
}

.additional-info .info-value {
  color: #2a4089;
  font-weight: 600;
}

.additional-info > p {
  margin-bottom: 0;
}

.modern-save-indicator {
  background: none;
  top: 12px;
  padding: 0px;
  right: 12px;
}

.record-filter-block {
  display: flex;
  justify-content: space-between;
}

.total-result {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.sort-block {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2a4089;
}

.sort-block .form-control {
  color: #0db3c5;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  display: inline-block;
  width: auto;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 7px;
}

.inline-details .family-capicity,
.inline-details .additional-info {
  position: relative;
}

.additional-info:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  border-radius: 50%;
  background: #db4d44;
  left: 0;
  top: 10px;
}

.additional-info:first-of-type:before {
  display: none;
}

/* Slides Wrapper */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.property-card-map .slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.property-card-map .slide img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 432 / 288;
  object-fit: cover;
}

/* Navigation Buttons */
.property-card-map .slide-prev,
.property-card-map .slide-next {
  position: absolute;
  top: 45%;
  background: rgb(217 217 217 / 80%);
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.property-card-map .slide-prev {
  left: 10px;
  transform: rotate(180deg);
  top: 42%;
}

.property-card-map .slide-next {
  right: 10px;
}

.property-card-map .slide-prev:hover,
.property-card-map .slide-next:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-container:hover .slide-prev,
.slider-container:hover .slide-next {
  display: block;
}

/* Dots Navigation */
.slider-bottom {
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}

.slider-bottom > a {
  pointer-events: visible;
  color: #fff;
}

.save_as_favorite {
  pointer-events: visible;
}

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

.owner-info {
  text-align: left;
  margin-left: 10px;
}

.owner-info h4 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.owner-info p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.img-container {
  position: relative;
  display: inline-block;
}

.owner-image {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.owner-company {
  position: absolute;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  top: 44px;
  left: 48px;
  border-radius: 100%;
  background: #fff;
}

.owner-image img,
.owner-company img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.img-list:first-of-type {
  margin-left: 0;
}

.property-type-details {
  position: relative;
  text-align: right;
}

.slider-bottom .property-type-details img {
  position: relative;
  bottom: -15px;
  z-index: 1;
}

.open-house {
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #021a47;
  box-shadow: 0px 4px 4px 0px rgba(13, 179, 197, 0.25);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 1px 10px 0;
  position: relative;
  z-index: 2;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 3px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #ffffff;
}

.property-card-map #paginationLinks nav {
  text-align: center;
}

.property-card-map .pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.property-card-map .pagination > li > a,
.property-card-map .pagination > li > span {
  margin-left: 0;
  color: #000;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 8px;
  padding: 0;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-card-map .pagination > .active > a,
.property-card-map .pagination > .active > span,
.property-card-map .pagination > .active > a:hover,
.property-card-map .pagination > .active > span:hover,
.property-card-map .pagination > .active > a:focus,
.property-card-map .pagination > .active > span:focus {
  color: #fff;
  background-color: #2a4089;
  border-color: #2a4089;
}

/* property detail slider */
.custom-banner-slider-container {
  position: relative;
  margin-bottom: 10px;
}

/* --- Banner Slider --- */
.custom-banner-slider-container .banner-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0px auto;
  overflow: hidden;
}

.custom-banner-slider-container .banner-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-banner-slider-container .slide {
  flex: 0 0 calc(100% / 3);
  margin: 1.5px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease;
  position: relative;
  height: 474px;
}

.custom-banner-slider-container .slide iframe {
  width: 100%;
  height: 100%;
}

/* .custom-banner-slider-container .video-thumbnail iframe.instagram-media,
.lightbox-custom .lightbox-content iframe.instagram-media {
  width: auto !important;
  height: 100% !important;
  margin: 0 auto !important;
} */

.custom-banner-slider-container .slide img,
.custom-banner-slider-container .slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 475px;
}

.professional-tab-section .custom-banner-slider-container .slide img,
.professional-tab-section .custom-banner-slider-container .slide video {
    max-height: 498px;
}

/* --- Play Button Overlay --- */
.custom-banner-slider-container .video-thumbnail {
  position: relative;
  cursor: pointer;
  height: 100%;
  /* background: #000; */
}
.professional-tab-section .custom-banner-slider-container .video-thumbnail {
    height: 422px;
}

.custom-banner-slider-container .video-thumbnail img {
  width: 100%;
  display: block;
}

.custom-banner-slider-container .video-thumbnail .play-button,
.lightbox-custom .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-banner-slider-container .slider-bottom {
  background: no-repeat;
  border-radius: 0;
  justify-content: flex-end;
}

/* --- Lightbox Popup --- */

.lightbox-custom {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox-custom .lightbox-content {
  position: relative;
  width: 900px;
  min-height: 600px;
  height: 600px;
  max-height: 80%;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-custom img,
.lightbox-custom video {
  width: auto;
  max-height: 100%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0px 10px 5px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(217, 217, 217, 0.8);
  height: 40px;
  width: 40px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 10%;
  border: none;
  z-index: 9999;
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

.lightbox-custom .video-thumbnail {
  width: 100%;
}

.lightbox-custom .lightbox-content iframe {
  width: 90%;
  height: 100%;
  min-height: 445px;
}

/* --- Navigation Buttons --- */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background: rgba(217, 217, 217, 0.8);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
  border-radius: 10px;
}

.custom-banner-slider-container .slide-prev {
  left: 10px;
}

.custom-banner-slider-container .slide-next {
  right: 10px;
}

/* property detail content */
.property-details .inline-property-details {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.property-details .inline-property-details h3.property-price,
.property-details .inline-property-details .additional-info {
  padding-left: 0;
}

/* .property-details .inline-property-details h3.property-price,
.property-details .inline-property-details .additional-info .info-value {
    font-size: 24px;
    line-height: 36px;
    font-weight: 800;
}*/

.property-details .inline-property-details h3.property-price {
  font-size: 36px;
  line-height: 48px;
  font-weight: 800;
  margin-top: -5px;
}

.property-details .inline-property-details .additional-info .info-value {
  font-size: 20px;
  font-weight: 600;
}

.property-details .inline-property-details .additional-info p {
  font-size: 20px;
  font-weight: 400;
}

.property-details
  .inline-property-details
  .property-info-left
  .additional-info {
  text-align: left;
  padding-left: 0;
}

.property-details
  .inline-property-details
  .property-info-left
  .additional-info.address-info {
  width: 100%;
  margin-top: 5px;
  align-items: flex-start;
}

.property-details .inline-property-details .additional-info {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.property-details .inline-property-details .additional-info:before {
  top: 35%;
  left: -10px;
}

.property-details .inline-property-details .top-row {
  display: flex;
  gap: 50px;
}

.property-details .inline-property-details .top-row .property-info {
  gap: 5px;
  align-content: center;
}

.property-details .prop-right-icons {
  display: flex;
  gap: 14px;
}

/* Figma: 44×60 badge vertically centered with stats row;  16px gap before icons */
.property-details .property-detail-header-trailing {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  column-gap: 16px;
  align-self: center;
}

.property-details .property-header-cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px 0 8px;
  margin: 0 2px 0 0;
}

.property-details .property-listing-cert-badge {
  margin: 0 0 0 14px;
  padding: 0;
  align-self: flex-start;
}

.property-details .property-agent-with-badge {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.property-details .property-agent-with-badge .right-item {
  margin-left: auto;
}

.property-details .bottom-user-details .property-agent-with-badge {
  align-items: flex-start;
  column-gap: 12px;
}

.property-details .bottom-user-details .property-agent-with-badge .right-item {
  margin-left: auto;
}

.property-details .prop-right-icons > div {
  position: relative;
  display: inline-block;
  width: 36px;
}

.tooltip {
  cursor: pointer;
  opacity: 1;
  z-index: 1;
}

.tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: #021a47;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 115%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.property-details .prop-right-icons > div:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.property-details .owner-image {
  height: 140px;
  width: 140px;
}

.property-details .owner-company {
  height: 75px;
  width: 75px;
  top: 78px;
  left: 86px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.property-details .user-details {
  display: flex;
  gap: 35px;
}

.btn.btn-small.btn-primary-bordered {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 16px 8px;
  margin-top: 10px;
}

.firm-address .btn.btn-small.btn-primary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 16px 8px;
  color: #fff;
  font-weight: 500;
}

.firm-address .btn.btn-small.btn-primary:hover, 
.firm-address .btn.btn-small.btn-primary:focus {
  border: 1px solid #0db3c5;
  background: #2a4089;
}

.property-details .agent-section p {
  font-size: 13px;
  line-height: 16px;
  color: #2a4089;
  margin: 0 0;
}

.property-details .agent-section {
  margin-top: 12px;
}

.property-details .agent-section p:first-child {
  text-transform: uppercase;
}

.property-details .agent-section h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #2a4089;
  margin: 0 0;
}

.property-details .agent-section .btn.btn-small.btn-primary-bordered {
  font-size: 12px;
  line-height: 18px;
  padding: 9px 10px 8px;
}

.property-details h3, .professional-bottom-section h3 {
  font-size: 24px;
  line-height: 36px;
  color: #2a4089;
  font-weight: 800;
}

.prop-detail-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prop-detail-box {
  padding: 5px 10px;
  box-sizing: border-box;
  background: rgba(128, 128, 128, 0.05);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #000000;
}

.prop-detail-box.w-100 {
  flex: 1 1 100%;
  /* First box takes full width */
}

.prop-detail-box.w-50 {
  flex: 1 1 calc(50% - 10px);
  /* Default: half width */
}
.hours .prop-detail-box.w-50{
  flex: 0 0 calc(50% - 10px);
}
.prop-detail-box.w-25 {
  /* flex: 1 1 calc(25% - 10px); */
  width: calc(25% - 10px);
  /* Default: half width */
}

.prop-detail-boxes.property-feature .prop-detail-box {
  background: transparent;
  position: relative;
  padding-left: 15px;
}

.prop-detail-boxes.property-feature .prop-detail-box:before {
  background: #2a4089;
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  left: 0;
  border-radius: 100%;
  top: 44%;
}

.unit-info {
  padding: 30px;
  background: #f9f9f9;
  margin-top: 50px;
  margin-bottom: 50px;
}

.unit-info h3,
.included-appliances h3 {
  padding: 0;
  margin: 0;
}
.unit-info h3{
  margin-bottom: 20px;
}

.unit-info .unit-box {
  background: #fff;
  padding: 12px 16px;
}

.unit-info .unit-box h3 {
  margin: 0;
  font-size: 20px;
  color: #db443d;
}

.unit-info .unit-box p,
.included-appliances p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #2a4089;
}
.unit-info .unit-box p{
  color: #000000;
}

.included-appliances {
  padding: 10px;
  background: #f9f9f9;
}

.included-appliances p {
  margin: 3px 0 0;
  color: #000000;
}

.additional-attachments-section .col-md-12 {
  /* background-color: #f9f9f9;
  padding: 24px 30px;
  margin: 0 15px; */
  margin-bottom: 30px;
  width: calc(100% - 30px);
}

.additional-attachments-section h3 {
  margin: 0 0 15px;
}

.attachments-list {
  display: flex;
  gap: 16px;
}

.attachments-list a.btn {
  color: #000;
}

.attachments-list a img {
  margin: -5px 8px 0 0;
}

.research-container {
  background: #f9f9f9;
  border-radius: 30px;
  border: 1px solid #021a47;
}

.right-pane {
  padding-top: 0px;
  padding-bottom: 10px;
}

.right-pane h3 {
  padding: 15px 0;
  margin: 0;
  background: #032644;
  text-align: center;
  color: #ffffff;
  border-radius: 20px 20px 0 0;
  margin-bottom: 23px;
}

.prof-services {
  margin: 0 20px 23px;
}

.right-pane .prof-services a {
  padding: 7px 10px 7px 60px;
  box-sizing: border-box;
  background: #032644;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 15px;
}

.right-pane .prof-services a:hover,
.right-pane .prof-services a:focus {
  background: #0db3c5;
}

.right-pane .prof-services a img {
  position: absolute;
  left: -10px;
}

.contact-form .btn {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}

.bottom-flex {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.flex-item {
  width: 100%;
}

.flex-item.mortgage-calculator {
  width: 100%;
  flex: 0 0 33%;
}

.mortgage-container {
  background: #f9f9f9;
  border-radius: 30px;
  border: 1px solid #021a47;
  padding: 9px 30px 25px;
  color: #2a4089;
}

.mortgage-container h3 {
  margin: 0;
  text-align: center;
}

.mortgage-container p {
  font-size: 12px;
}

.mortgage-container .form-group {
  margin-bottom: 0;
}

.mortgage-container .form-group label {
  font-size: 20px;
  line-height: 30px;
  color: #2a4089;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}

.mortgage-container .radio-inline {
  padding-left: 15px;
  font-size: 12px;
}

.mortgage-container .radio-inline input[type="radio"] {
  margin-left: -15px;
  margin-top: 6px;
}

.btn-dark-blue {
  background: #021a47;
  border: 2px solid #2a4089;
}

.property-details .bottom-user-details .agent-section h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}

.property-details .bottom-user-details .owner-image {
  height: 243px;
  width: 243px;
}

.property-details .bottom-user-details .owner-company {
  height: 127px;
  width: 127px;
  top: 134px;
  left: 148px;
}

.property-details .bottom-user-details .agent-section p {
  font-size: 20px;
  line-height: 30px;
}

.agent-section .dflex {
  display: flex;
  justify-content: space-between;
}

.professional-bottom-section .agent-section-container .agent-section .dflex {
  flex-direction: column;
}

.agent-section .dflex .right-item {
  display: flex;
  flex-direction: column;
}

.social-media {
  margin-top: 16px;
  text-align: center;
}

.share-on-social .social-media {
  text-align: left;
}

.more-additional-details {
  font-size: 10px;
  color: #2a4089;
}

/* --- Responsive Styles --- */

@media (max-width: 1400px) {
  .right-pane .prof-services a {
    padding: 7px 10px 7px 50px;
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .right-pane .prof-services a {
    padding: 7px 5px 7px 50px;
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(100% / 2);
    /* Show 2 slides on tablets */
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    /* Show 1 slide on mobile */
  }

  .slide-prev,
  .slide-next {
    padding: 8px 12px;
    font-size: 18px;
  }
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(100% / 2);
    /* Show 2 slides on tablets */
  }

  .custom-banner-slider-container .slide {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    /* Show 1 slide on mobile */
  }

  .slide-prev,
  .slide-next {
    padding: 8px 12px;
    font-size: 18px;
  }

  .custom-banner-slider-container .slide {
    flex: 0 0 100%;
  }
}

@media only screen and (max-width: 1650px) {
  .search-box {
    width: 305px;
  }
}

@media only screen and (max-width: 1620px) {
  .navbar-default .search-box + .navbar-collapse .navbar-nav > li > a {
    padding: 36px 18px;
  }

  .navbar-default .search-box + .navbar-collapse .navbar-right li > a {
    padding: 10px 18px;
  }
}

@media only screen and (max-width: 1520px) {
  .navbar-default .search-box + .navbar-collapse .navbar-nav > li > a {
    padding: 36px 14px;
  }

  .navbar-default .search-box + .navbar-collapse .navbar-right li > a {
    padding: 10px 14px;
  }

  .search-box {
    width: 270px;
  }
}

@media only screen and (max-width: 1439px) {
  .search-box {
    width: 190px;
  }

  .navbar-default .search-box + .navbar-collapse .navbar-nav > li > a {
    padding: 36px 10px;
  }

  .navbar-default .search-box + .navbar-collapse .navbar-right li > a {
    padding: 10px 16px;
  }
}
@media only screen and (max-width: 1366px) {
  .prop-detail-boxes .prop-detail-box.w-25{
    width: calc(33.33% - 10px);
  }
}
@media only screen and (max-width: 1350px) {
  .property-details .inline-property-details h3.property-price {
    font-size: 32px;
  }

  .property-details .inline-property-details .top-row {
    gap: 30px;
  }

  .property-details .inline-property-details .additional-info .info-value,
  .property-details .inline-property-details .additional-info p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  h3.property-price {
    font-size: 22px;
  }

  .additional-info {
    font-size: 18px;
  }

  .property-details .inline-property-details {
    gap: 20px;
  }

  .property-details .prop-right-icons {
    gap: 12px;
  }

  .property-details .inline-property-details .additional-info {
    padding: 0 12px;
  }
  .prop-detail-boxes{
    width: 100%;
    margin-top: 20px;
  }
  .unit-info .col-md-3 {
    width: 33.333333%;
  }
  .bottom-flex{
    flex-direction: column;
  }
}

@media only screen and (max-width: 1169px) {
  .more-filter {
    left: unset;
    right: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .property-details .inline-property-details h3.property-price {
    font-size: 28px;
  }

  .property-details .inline-property-details .top-row {
    gap: 20px;
  }

  .property-details .inline-property-details .additional-info .info-value,
  .property-details .inline-property-details .additional-info p {
    font-size: 14px;
  }

  .property-details .inline-property-details {
    gap: 0;
  }

  .property-details .prop-right-icons > div {
    width: 30px;
  }

  .property-details .prop-right-icons > div img {
    width: 25px;
    height: auto;
  }

  .property-details .prop-right-icons {
    gap: 5px;
  }
}
@media only screen and (max-width: 992px) {
  .research-container{
    margin-top: 20px;
  }
  .prop-detail-boxes .prop-detail-box.w-25{
    width: calc(50% - 10px);
  }
  .unit-info .col-md-3 {
    width: 50%;
  }
  .unit-info{
    padding: 20px 0 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 870px) {
  .filter-container {
    position: relative;
    justify-content: flex-end;
  }

  .custom-dropdown {
    position: unset;
  }

  .custom-dropdown-menu {
    width: 100%;
    min-width: unset;
  }
  .filter-container{
    gap: 7px;
  }
  .custom-dropdown-toggle{
    padding: 11px 8px;
  }
}

@media screen and (max-width: 767px) {
  .bx-wrapper img {
    width: 300px !important;
    height: 200px !important;
  }

  .property-card-map .slide {
    min-width: 100%;
  }

  .property-card-map .cards {
    display: block;
  }

  .property-details .inline-property-details {
    flex-direction: column;
    gap: 10px;
  }

  .property-details .inline-property-details .additional-info:first-child {
    padding-left: 0;
  }

  .property-details .prop-right-icons {
    margin-top: 0;
  }

  .property-details .property-detail-header-trailing {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 4px;
    column-gap: 12px;
    align-self: stretch;
  }

  .property-details .property-header-cert-badge {
    padding: 0;
    margin: 0;
  }

  .property-details .property-agent-with-badge {
    flex-wrap: wrap;
  }

  .property-details .property-listing-cert-badge {
    order: 3;
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
    align-self: center;
  }

  .property-details .property-agent-with-badge .right-item {
    margin-left: 0;
    width: 100%;
  }

  .property-details .bottom-user-details .property-agent-with-badge .right-item {
    margin-left: 0;
    width: 100%;
  }

  .property-details .user-details {
    margin: 30px 0 15px 0;
  }

  .prop-detail-box.w-25,
  .prop-detail-box.w-50 {
    flex: 1 1 100%;
  }

  .attachments-list {
    flex-direction: column;
  }

  #searchResults #map {
    height: 70vh !important;
    display: block;
    clear: both;
  }

  .bottom-flex,
  .agent-section .dflex {
    flex-direction: column;
  }
  .unit-info .col-md-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .property-details .user-details{
    flex-direction: column;
  }
  .mortgage-container .btn{
    text-wrap:wrap;
  }
}

.no-result-found {
  margin: 100px auto;
  text-align: center;
  max-width: 500px;
}

.no-result-found img {
  margin-bottom: 20px;
}

.no-result-found h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  margin-bottom: 8px;
}

.no-result-found p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #666666;
}

@media only screen and (max-width: 600px) {
  .dropdown-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .search-filter .blue-button {
    flex: auto;
  }
}

.modal-header .close {
  color: #000;
  opacity: 1;
  font-weight: 500;
  font-size: 25px;
  /* margin: 10px; */
}

.contact-agent .modal-content,
.modal-content {
  border-radius: 20px;
  padding: 0;
}

.w-75 .modal-dialog {
  max-width: 700px;
  width: 100%;
}

.contact-agent h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  line-height: 42px;
}

.agent-details-popup .img-container .owner-image {
  width: 140px;
  height: 140px;
}

.agent-details-popup .owner-company {
  height: 75px;
  width: 75px;
  top: 78px;
  left: 86px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.agent-details-popup .agent-details {
  margin-bottom: 25px;
  flex-direction: column;
}

.agent-details-popup .agent-details label {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}

.agent-details-popup .agent-details p {
  margin-bottom: 0;
  color: #2a4089;
}

.agent-details-popup .agent-details p.name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.agent-details-popup .agent-details p.number {
  font-size: 18px;
}

.agent-details-popup .agent-details p.office {
  color: #000000;
  font-size: 18px;
}

.contact-agent form {
  border: 1px solid #0000002e;
  border-radius: 20px;
  padding: 25px;
  margin-top: 30px;
}

.contact-agent form h3 {
  font-size: 24px;
  font-weight: 800;
  padding: 0 0 10px;
  margin: 0;
}

.contact-agent form .rowfirst {
  flex-direction: column;
}

.contact-agent form .rowfirst .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.contact-agent form p {
  font-size: 20px;
}

.contact-agent form p.terms {
  color: #666666;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-agent form .btn-primary.btn {
  font-size: 18px;
  padding: 12px 18px;
}

/* .blue-button {
    background-color: #120044;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.custom-dropdown-menu.modal-style {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    position: absolute;
    top: 60px;
    z-index: 1000;
}

.form-group {
    margin-bottom: 15px;
}

.search-criteria-summary {
    margin: 10px 0;
    font-weight: bold;
    color: #333;
}

input.form-control, select.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
} */


@media only screen and (max-width: 1366px) {
  .modal {
    z-index: 99999;
  }
}

@media only screen and (max-width: 992px) {
  .prof-services {
    margin: 0 12px 23px 20px;
  }

  .right-pane .prof-services a {
    padding: 7px 10px 7px 60px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .w-75 .modal-dialog {
    max-width: 80%;
    margin: 30px auto;
  }

  .contact-agent form .rowfirst {
    gap: 0;
    flex-direction: column;
  }
}

@media only screen and (max-width: 500px) {
  .property-details .inline-property-details .additional-info .info-value,
  .property-details .inline-property-details .additional-info p {
    font-size: 12px;
  }

  .property-details .inline-property-details h3.property-price {
    font-size: 24px;
  }

  .property-details .inline-property-details .additional-info {
    padding: 0 10px;
  }

  .prof-services {
    margin: 0 10px 23px 20px;
  }

  .right-pane .prof-services a {
    font-size: 18px;
    padding: 7px 8px 7px 52px;
  }
}

@media only screen and (max-width: 375px) {
    .right-pane .prof-services a {
        font-size: 16px;
    }
}

#saveSearchToggle {
    background-color: #0b0033;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    border: 2px solid #00e0ff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  #saveSearchToggle:hover {
    background-color: #1a045e;
  }
