.fl_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  backdrop-filter: blur(8px);
  display: none;
}

.fl_drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  z-index: 10000 !important;
  color: #374151;
  transform: translateX(450px);
  transition: 0.3s;
}

.fl_header {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.fl_title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.fl_active {
  font-size: 12px;
  color: #2563eb;
}

.fl_actions button {
  margin-left: 8px;
  cursor: pointer;
}

.fl_body {
  overflow-y: auto;
  padding: 0;
  height: calc(100dvh - 160px);
}

.fl_section {
  margin-bottom: 0;
}

.fl_section_title {
  font-weight: bold;
  margin-bottom: 10px;
}
.fl_section_title img {
    aspect-ratio: 1;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(23%) sepia(86%) saturate(7495%) hue-rotate(256deg) brightness(94%) contrast(109%);
}
.fl_section .fl_input {
  width: 100% !important;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd !important;
  border-radius: 6px;
  margin: 0;
  box-shadow: none !important;
}

.fl_price_inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 7px;
}

.fl_range {
  width: 100%;
}

.fl_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fl_pill {
  padding: 6px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.fl_pill:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.fl_check {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.fl_footer {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #eee;
}

.fl_btn {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.fl_btn_outline {
  border: 1px solid #ddd;
  background: #fff;
}

.fl_btn_primary {
  background: #5721FA;
  color: #fff;
  border: none;
}
.fl_section {
  border-bottom: 1px solid #eee;
}
.fl_section_title {
    cursor: pointer;
    position: relative;
    padding: 14px 25px;
    margin: 0;
    display: flex;
    justify-content: start;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    padding-right: 50px;
    transition: 0.3s;
}
.fl_section_title:hover {
    background: #f8f8f8;
}
.fl_section_title::after {content: "⌄";transition: transform 0.2s ease;margin-left: 0;width: 20px;height: 20px;background-image: url('/images/filter-icons/chevron-down.svg');background-size: contain;font-size: 0;position: absolute;right: 23px;top: 17px;transform: rotate(180deg);}

.fl_section.active .fl_section_title::after {
  transform: rotate(0deg);
}

.fl_section_body {
  padding: 2px 25px 16px 25px;
}
.fl_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* hide native radio */
.fl_pills input[type="radio"], .fl_check_card input[type="checkbox"], .fl_radio_card input[type="radio"]{
  display: none !important;
}

.fl_pill {
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
    font-weight: 600;
}

.fl_pill:hover {
  border-color: #9072eb;
  color: #9072eb;
}

/* checked state */
.fl_pills input[type="radio"]:checked + .fl_pill {
  background: #5721fa;
  border-color: #5721fa;
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

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

.fl_radio_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #9072eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fl_radio_card:hover {
  border-color: #9072eb;
  background: #9072eb2e;
}

.fl_radio_content {
  flex: 1;
}

.fl_radio_title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.fl_radio_desc {
  font-size: 14px;
  color: #414141;
  margin-top: 2px;
}

/* radio circle */
.fl_radio_circle {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* checked state */
.fl_radio_card input:checked ~ .fl_radio_circle {
  border-color: #5721FA;
  background: #5721FA;
}

.fl_radio_card input:checked ~ .fl_radio_circle::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.fl_radio_card input:checked ~ .fl_radio_content .fl_radio_title {
  color: #5721fa;
}

/* highlight card */
.fl_radio_card:has(input:checked) {
  border-color: #9072eb;
  background: #5721fa14;
}
.fl_section_body .bootstrap-select {
    width: 100% !important;
    padding: 0;
}

.fl_section_body .bootstrap-select .btn.dropdown-toggle {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    border-color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 10px;
}

.fl_body::-webkit-scrollbar-track, .amenities_cards::-webkit-scrollbar-track, .dropdown-menu .inner::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.fl_body::-webkit-scrollbar, .amenities_cards::-webkit-scrollbar, .dropdown-menu .inner::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}
.fl_body::-webkit-scrollbar-thumb, .amenities_cards::-webkit-scrollbar-thumb, .dropdown-menu .inner::-webkit-scrollbar-thumb{
	background-color: #636363;
}
.fl_title_wrap span {
    font-size: 14px;
    color: #5721FA;
}
span.fl_reset_filters {
    display: flex;
    line-height: 1;
    gap: 5px;
    padding: 5px;
    border: 1px solid #fb2c36;
    background: #fb2c3614;
    color: #fb2c36;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.fl_crs_wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}
span.fl_reset_filters img {
    display: block;
    width: 15px;
    height: 15px;
}
span.fl_reset_filters img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(59%) saturate(3065%) hue-rotate(339deg) brightness(95%) contrast(107%);
}
span.fl_close {
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}
span.fl_close:hover {
    background: #00000014;
}
.fl_drawer.fl_drawer_active {
    transform: none;
}
header.fixed-top.nav-up {
    top: 0 !important;
}
.search-section {
    padding: 0;
}
.search_bar_sec {
    padding-bottom: 20px;
}
body:has(.search_bar_sec){
    background-color: #fff;
}
.map_grid_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    padding-top: 30px;
    align-items: flex-start;
}

.search-map-section .container-fluid {
    padding: 0 30px;
}

.map-sticky {
    position: sticky !important;
    top: 140px;
}
.marker_info_modal .card-title a {
    font-size: 23px;
    font-weight: 500;
    padding-right: 10px;
}
.gm-style-iw-ch {
    padding: 0 !important;
}
.gm-ui-hover-effect {
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    justify-content: center !important;
    padding-top: 4px !important;
    position: absolute !important;
    right: 0;
}
.gm-ui-hover-effect span {
    margin: 0 !important;
}


/* Product Card */
/* card */
.fl_card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #f1f1f1;
  text-decoration: none;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fl_card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: #e5e7eb;
}

/* image */
.fl_card_img_wrap {
  position: relative;
  /* height: 180px; */
  overflow: hidden;
  aspect-ratio: 1.8/1;
}

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

.fl_card:hover .fl_card_img {
  transform: scale(1.05);
}

/* badges */
.fl_badge {
  /* position: absolute; */
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl_badge_primary {
  /* top: 10px; */
  /* left: 10px; */
  background: #fe9a00;
  color: #fff;
}

.fl_badge_light {
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  color: #5721fa;
}

/* body */
.fl_card_body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* tags */
.fl_card_tags {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.fl_tag {
  font-size: 13px;
  padding: 6px 9px;
  background: #f3f4f6;
  border-radius: 999px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
  font-weight: 500;
}

.fl_tag_primary {
  background: #f0ebff;
  color: #5721fa;
}
.fl_tag.fl_tag_primary:has(.term_long) {
    color: #009966;
    background: #00996617;
}

/* title */
.fl_card_title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

/* location */
.fl_card_location,.fl_card_calendar {
  font-size: 14px;
  color: #414141;
  margin-bottom: 5px;
}
.fl_card_calendar {
    margin-bottom: 8px;
}

/* amenities */
.fl_card_amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.fl_chip {
  font-size: 12px;
  padding: 3px 8px;
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 999px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fl_chip img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.fl_chip_primary {
  background: #f0ebff;
  color: #5721fa;
  border-color: #e0d7ff;
}

/* footer */
.fl_card_footer {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}

.fl_card_meta {
  display: flex;
  gap: 3px 10px;
  font-size: 12px;
  color: #414141;
  flex-wrap: wrap;
}

.fl_card_price strong {
  color: #5721fa;
  font-size: 16px;
}

.fl_card_price span {
  font-size: 11px;
  color: #414141;
}
.fl_card_meta span img {
    width: 15px;
}

.fl_card_meta span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}
.fl_badge.fl_badge_black {
    background: #1e2939;
    color: #fff;
}

.fl_badge_wrapper {
    gap: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
}
.fl_badge svg {
    width: 14px;
    margin-right: 3px;
    height: 14px;
}

.fl_badge.fl_rating {
    position: absolute;
    width: max-content;
    right: 10px;
    top: 10px;
    background: #fff;
    color: #364153;
}
.fl_badge.fl_rating svg {
    fill: #ffb900;
    stroke: #ffb900;
}
.fl_tag svg {
    width: 14px;
    height: 14px;
}
.fl_card_title:first-letter {
    text-transform: capitalize;
}
.property_list_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.marker_info_modal .rent_price {
    font-size: 18px;
    font-weight: 600;
    margin-top: 7px;
}

.marker_info_modal {
    font-family: 'Muli',sans-serif;
}
section#grid_section {
    padding-bottom: 30px;
}
.full_width_grid_inner:not(:has(div)) {
    min-height: 60vh;
}
.full_width_grid_listing.container-fluid{
    padding: 0 30px;
}
.propety_right_wrp_td .no_rental_request_img {
    grid-column: 1/-1;
}
.gm-style .gm-style-iw-d {
    padding-top: 10px;
}
.fl_check_cards.amenities_cards {
    padding-right: 10px;
    max-height: 250px;
    overflow: auto;
    gap: 3px 9px;
    display: flex;
    flex-wrap: wrap;
}
.bootstrap-select .dropdown-menu li a {
    font-size: 16px;
    color: #313131;
}
.fl_footer button.fl_btn {
    font-size: 16px;
    font-weight: 600;
}
.bootstrap-select .dropdown-menu li a {
    font-size: 16px;
    color: #313131;
}
.fl_check_icon {
    align-self: self-start;
    margin-top: 2px;
}
#resetbtn .ladda-spinner * {
    background: #000 !important;
}
.fl_footer .ladda-button[data-style=expand-right][data-loading] {
    padding-right: 10px;
}
.ui-tooltip {
    border-radius: 11px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-family: Muli, sans-serif;
}
@media (max-width:1400px) {
    .map_grid_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .search-map-section .container-fluid.container_map_fluid {
        padding: 0 30px;
    }
}
@media (max-width:1200px) {
    .map_grid_wrapper {
        grid-template-columns: 1fr;
    }
    .property_list_wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }
    div#map-sticky {
        position: relative !important;
        top: 0;
    }
}

@media (max-width:1024px) {
    .full_width_grid_inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .map_grid_wrapper {
        grid-template-columns: 1fr;

    }
    .property_list_wrap {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width:767px) and (max-width:991px) {
    .submit_wrap button span span {
        display: none;
    }
}
@media (max-width:767px) {
    .search-map-section .container-fluid.container_map_fluid, .full_width_grid_listing.container-fluid{
        padding: 0 20px;
    }
    .fl_wrap_search {
        flex-wrap: wrap;
        gap: 10px 0px;
        margin-bottom: 20px;
    }
    .search_bar_sec #tabs-nav {
        width: 100%;
        order: 1;
    }
    .fl_drawer {
        width: 100%;
        max-width: 360px;
    }
    .full_width_grid_inner {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }
    .property_list_wrap {
        grid-template-columns: 1fr;
    }
    .marker_info_modal .card-title a {
        font-size: 18px;
    }
    .marker_info_modal .btn_view_property {
        flex-wrap: wrap;
    }
    .marker_info_modal h6.mb-0 {
        font-size: 14px;
    }
    .search_bar_sec {
        padding-top: 80px;
    }
}


.fl_property_card_skeleton {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

/* Base skeleton */
.fl_skeleton {
    position: relative;
    overflow: hidden;
    background: #f1f1f1;
    border-radius: 8px;
}

/* Shimmer */
.fl_skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(87, 33, 250, 0.15),
        transparent
    );
    animation: fl_shimmer 1.4s infinite;
}

@keyframes fl_shimmer {
    100% {
        left: 100%;
    }
}

/* Image */
.fl_skeleton_img {
    /* height: 180px; */
    border-radius: 0;
    aspect-ratio: 1.8/1;
}
/* Body */
.fl_skeleton_body {
    padding: 16px;
}

/* Row */
.fl_skeleton_row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* Title */
.fl_skeleton_title {
    height: 16px;
    width: 70%;
    margin-bottom: 10px;
}

/* Text */
.fl_skeleton_text {
    height: 12px;
    width: 60%;
    margin-bottom: 12px;
}

.fl_short {
    width: 40%;
}

.fl_tiny {
    width: 80px;
    height: 12px;
}

/* Tags */
.fl_skeleton_tag {
    height: 20px;
    width: 80px;
    border-radius: 20px;
}

.fl_skeleton_tag.fl_small {
    width: 100px;
}

/* Chips */
.fl_skeleton_chip {
    height: 22px;
    width: 90px;
    border-radius: 20px;
}

.fl_skeleton_chip.fl_small {
    width: 70px;
}

/* Footer */
.fl_skeleton_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* Price */
.fl_skeleton_price {
    width: 80px;
    height: 16px;
}

/* Optional fade-in */
.fl_property_card_skeleton {
    animation: fl_fadeIn 0.3s ease;
}

@keyframes fl_fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Container */
.fl_map_skeleton {
    position: relative;
    width: 100%;
    height: 80vh;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Base shimmer */
.fl_map_shimmer {
    width: 100%;
    height: 100%;
    background: #eaeaea;
    position: relative;
    overflow: hidden;
}

/* Shimmer animation */
.fl_map_shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(87, 33, 250, 0.12),
        transparent
    );
    animation: fl_map_shimmer_anim 1.6s infinite;
}

@keyframes fl_map_shimmer_anim {
    100% {
        left: 100%;
    }
}

/* Optional fake pins */
.fl_map_pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fl_map_pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #5721fa;
    border-radius: 50%;
    opacity: 0.6;
    animation: fl_pin_pulse 1.5s infinite;
}

/* Random placement */
.fl_map_pin:nth-child(1) { top: 30%; left: 40%; }
.fl_map_pin:nth-child(2) { top: 55%; left: 60%; }
.fl_map_pin:nth-child(3) { top: 45%; left: 25%; }

@keyframes fl_pin_pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}


@media (max-width:767px) {
    .search-map-section #map
    .fl_map_skeleton {
        height: 100%;
    }
}

.fl_load_more {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px !important;
}

.sort_by_wrap button.btn.dropdown-toggle {
    border: solid 1px #ced4da;
    border-radius: 7px;
    color: #000;
    font-weight: 600;
    padding: 8px;
}