<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.pageMapSearch #wrapper, .pageSearchPropertiesLocation #wrapper {
    padding-top: 155px;
}

.listing-item-container {
    padding-bottom: 0px !important;
}

.mapsearch-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: calc(var(--real-vh) - 155px);
}

.pageRealEstateAgent .mapsearch-wrapper, .pageTestImportResults .mapsearch-wrapper {
    height: calc(var(--real-vh) - 70px);
}

.map-container {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    filter: saturate(50%);
}

.right-panel {
    width: 850px;
    flex: 0 0 850px;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    overflow-y: auto;
}

.mob-map-search-buttons {
    display: none;
    justify-content: space-between;
    gap: 1rem;
    padding-left: 10px;
    padding-right: 10px;
}

.right-panel-header {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    display: flex;
    width: 100%;
}


.search-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.search-results-count {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.search-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-sort-select {
    min-width: 200px;
}

.search-save-button {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    cursor: pointer;
    min-width: 200px;
    box-shadow: none !important;
    border: 1px solid var(--bs-gray-300) !important;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.search-save-button:hover {

}

.create-landing-page-button {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    cursor: pointer;
    min-width: 200px;
    box-shadow: none !important;
    border: 1px solid var(--bs-gray-300) !important;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.create-landing-page-button:hover {

}

.objects-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.objects-list.fadeout-enabled {
    mask-image: linear-gradient(to top,
    rgba(0, 0, 0, 1) 96%,
    rgba(0, 0, 0, 0.25) 98%,
    rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top,
    rgba(0, 0, 0, 1) 96%,
    rgba(0, 0, 0, 0.25) 98%,
    rgba(0, 0, 0, 0) 100%);
}

.right-panel-header h1 {
    color: var(--primary-text-color);
    font-size: 1.25rem;
}


#filtersButton {
    cursor: pointer;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    gap: 0.5rem;
}

.show-list-button {
    display: none;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-standard);
    z-index: 999;
    cursor: pointer;
    width: 18rem !important;
    font-size: 1rem;
    font-family: var(--font-family-standard);
    margin-left: 1rem;
    flex-direction: row !important;
}

.show-map-button {
    display: none;
    cursor: pointer;
    flex: 1rem;
}

.show-filters-button {
    display: none;
    cursor: pointer;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-size: 1rem;
    flex: 1rem;
    justify-content: center;
}

.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.active {
    display: flex !important;
    flex-direction: column;
    opacity: 1;
    pointer-events: auto;
    /*position: relative;*/
    visibility: visible;
}

.objects-list .pagination {
    padding-bottom: 2.5rem;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 85px;
    background-image: linear-gradient(rgb(237, 237, 233) 0%, rgb(255, 255, 255) 100%);
}

.modal .filters-holder {
    max-width: 800px;
}

.filter-tag-buttons {
    margin-top: 0.5rem;
}

.filter-tag-buttons ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.filter-tag-buttons li {
    list-style: none;
}

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

.filter-tag-buttons label {
    display: inline-block;
    padding: 0.75rem 1rem 0.75rem 1rem !important;
    background-color: var(--dropdown-button-bg-color);
    border: 1px solid var(--bs-gray-400);
    border-radius: var(--border-radius-standard);
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: var(--font-family-medium);
    margin-bottom: 0;
    color: var(--grey-text-color);
}

.filter-tag-buttons label:hover {
    background-color: var(--dropdown-button-hover-bg-color);
    border-color: var(--bs-gray-600);
    font-family: var(--font-family-medium);
    ccolor: var(--primary-text-color);
}

.filter-tag-buttons input[type="checkbox"]:checked + label {
    background-color: var(--dropdown-button-selected-bg-color);
    color: var(--primary-text-color);
    border-color: var(--bs-gray-600);
    font-family: var(--font-family-medium);
}

.filter-tag-buttons input[type="checkbox"]:checked + label::before {
    opacity: 1;
}

#advancedSearchFilters {
    padding-bottom: 0px !important;
    display: flex;
    flex-direction: column;
}

#advancedSearchFilters .listsearch-input-item .field-wrapper {
    padding-right: 75px;
}

#advancedSearchFilters .listsearch-input-item .field-wrapper label:first-child {
}

#advancedSearchFilters .listsearch-input-item .field-wrapper label {
    position: relative;
    margin-bottom: 0px !important;
    padding-bottom: 0 !important;
    color: #D30D45;
}

#advancedSearchFilters .field-wrapper input {
    padding: 15px 20px 13px 185px;
    font-size: var(--font-size-standard);
    background: var(--input-bg-color);
    margin-bottom: 0;
}

#advancedSearchFilters .listsearch-input-item .field-wrapper label .dec-icon {
    margin-top: 0px !important;
    line-height: 50px;
    width: 170px;
    font-size: var(--font-size-standard);
    color: var(--primary-text-color);
    height: 48px;
    text-align: left;
    padding-left: 15px;
}

#advancedFiltersWrapper {
    /*max-width: 800px;*/
    /*height: 600px;*/
    scrollbar-color: rgba(185, 189, 209, .5) #f0f3f8;
    scrollbar-width: thin;
    overflow: overlay;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: clip;
}

#advancedFiltersWrapper.fadeout-enabled {
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.5) 95%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.5) 95%, rgba(0, 0, 0, 0) 100%);
}

#advancedFiltersWrapper .listsearch-input-item h3 {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#advancedFiltersWrapper .listsearch-input-item label {
    margin-bottom: 0;
}

#advancedFiltersWrapper .listsearch-input-item label span {
    display: flex;
    gap: 0.3rem;
}

#advancedFiltersWrapper .listsearch-input-item img {
    width: 1.5rem;
}

#advancedFiltersWrapper .listsearch-input-item label {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.2rem;
}

.filters-holder .tabs-container {
    padding: 0 2.5rem 0 3rem !important;
}

.filters-holder .modal-header {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-container.hidden {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.map-container.active {
    position: relative;
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}


.right-panel.active {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#btnApplyFiltersAndShowMapSearchResults {
    margin-right: 10px;
}


#mapSearchLocationColumn .location-pr {
    text-align: left;
    position: relative;
}

#mapSearchLocationColumn_mob .location-pr {
    text-align: left;
    position: relative;
}

#mapSearchLocationColumn .tagify {
    width: 100%;
    padding: 4px 4px 3px;
    font-size: var(--font-size-standard);
    background: var(--input-bg-color) !important;
    text-align: left;
    border-radius: var(--border-radius-standard);
}

#mapSearchLocationColumn_mob .tagify {
    width: 100%;
    padding: 4px 4px 3px;
    font-size: var(--font-size-standard);
    background: var(--input-bg-color) !important;
    text-align: left;
    border-radius: var(--border-radius-standard);
}

#mapSearchLocationColumn {
    width: 530px;
}

#mapSearchLocationColumn_mob {
    width: 300px;
}

#mapSearchFilter_offerType_wrapper .nice-select {
    width: 250px;
}

#mapSearchFilter_propertyType_wrapper .nice-select {
    width: 150px;
}

#filters-primary-part {
    display: none;
}

#mapSearchFilter_location {
    box-shadow: none !important;
}

#mapSearchFilter_location_label {
    color: var(--primary-text-color);
}

#location-placeholderText {
    top: 14px;
    left: 20px;
    position: absolute;
    z-index: 99;
    font-size: 0.7rem;
    color: var(--bs-gray-500);
    font-family: var(--font-family-medium);
    display: none;
    pointer-events: none;
}

div.location-pr:has(&gt; .tagify--empty) #location-placeholderText {
    display: block;
}

div.location-pr:has(&gt; .tagify--focus) #location-placeholderText {
    display: none;
}

#location-placeholderIcon {
    top: -22px;
    left: 10px;
    position: absolute;
    z-index: 99;
}

.cluster-icon {
    background-color: rgba(241, 211, 87, 0.6);
    filter: saturate(250%);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 0 0 2px var(--bs-gray-600);
    width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-bold);
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-text-color);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cluster-icon:hover {
    transform: scale(1.1);
}

.cluster-icon.small {
    background-color: rgba(241, 211, 87, 0.6);
}

.cluster-icon.medium {
    background-color: rgba(241, 211, 87, 0.6);
}

.cluster-icon.large {
    background-color: rgba(241, 211, 87, 0.6);
}

.listings-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    padding: 1rem;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0 !important;
    width: auto !important;
}

.airbnb-style-popup {
    width: 260px;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    color: #222;
}

.popup-card-link {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background-color: white;
}

.popup-card-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f0f0f0;
}

.popup-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-card-body {
    padding: 10px 12px;
}

.popup-card-title {
    font-family: var(--font-family-bold);
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--primary-text-color);
}

.popup-card-subtitle {
    font-size: 0.75rem;
    color: var(--bs-gray-600);
    margin-bottom: 6px;
}

.popup-card-price {
    font-family: var(--font-family-bold);
    font-size: 0.85rem;
    color: var(--primary-text-color);
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--primary-text-color) !important;
    font-family: var(--font-family-bold) !important;
    font-size: 1.5rem !important;
}

.popup-swiper-container {
    width: 100%;
    height: 160px;
    position: relative;
}

.popup-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.dot-pulse {
    display: flex;
    gap: 6px;
}

.dot-pulse span {
    width: 10px;
    height: 10px;
    background-color: var(--primary-text-color);
    border-radius: 50%;
    animation: pulse 0.6s infinite ease-in-out;
}

.dot-pulse span:nth-child(2) {
    animation-delay: 0.2s;
}

.dot-pulse span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1270px) {
    .search-save-button {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .search-save-button {
        min-width: 185px !important;
    }
    
    .search-sort-select {
        min-width: 145px !important;
    }

    #filters-primary-part {
        display: block;
    }
    
    #advancedFiltersWrapper {
        /*height: 440px;*/
        /*max-height: 440px;*/
        max-height: calc(100vh - 300px);
        overflow-y: auto;
    }

    #advancedSearchFilters .listsearch-input-item .field-wrapper {
        padding-right: 0;
    }
    
    .filters-holder .tabs-container {
        padding: 0 0.5rem 0 1rem !important;
    }
    
    
    .pageMapSearch #wrapper, .pageSearchPropertiesLocation #wrapper {
        padding-top: 70px;
    }

    .mapsearch-wrapper {
        display: flex;
        height: auto !important;
        overflow: visible !important;
    }

    .mob-map-search-buttons {
        display: flex;
    }
    
    .filter-bar {
        display: none; /* ŃĐşŃ€Ń‹Đ˛Đ°ĐµĐĽ Đ˝Đ° ĐĽĐľĐ±Đ¸Đ»ŃŚĐ˝Ń‹Ń… */
    }

    /*.listing-item-container {*/
    /*    padding: 30px 15px 30px 30px;*/
    /*}*/
    .objects-list {
        margin-bottom: 1rem;
        flex: none !important;
        min-height: auto !important;
        overflow-y: visible !important;
    }

    .mapsearch-wrapper {
        flex-direction: column;
    }

    .map-container {
        flex: none;
        height: 100vh;
        width: 100%;
    }

    .right-panel {
        display: none;
        width: 100%;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        height: calc(var(--real-vh) - 70px);
        max-height: none !important;
    }

    .show-list-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .show-map-button {
        display: block;
    }
    
    .show-filters-button {
        display: flex;
        gap: 0.5rem;
    }

    .right-panel-header {
        padding: 1rem;
    }

    #mapSearchLocationColumn_mob {
        width: 95%;
    }

    #mapSearchFilter_location_mob {
        padding-left: 15px !important;   
    }
    
    
    #mapSearchLocationColumn_mob .tagify {
        width: 100%;
    }

    #mapSearchLocationColumn_mob .location-pr {
        width: 100%;
    }

    #mapSearchFilter_offerType_wrapper_mob {
        width: 95%;
    }

    #mapSearchFilter_propertyType_wrapper_mob {
        width: 95%;
    }
}
</pre></body></html>