.property--with-map-container {
    margin-top: 60px;
}
.property--with-map {
    position: relative;
    font-family: "Manrope", Sans-serif;
}
.property--with-map .property--with-map-part {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: width .3s ease;
    width: calc(100% - 50%);
}
.property--with-map #map-holder {
    height: 100%;
}

.property--with-map-filter-wrap {
    position: relative;
    display: inline-block;
    width: 50%;
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: 20px;
    transition: width .3s ease;
    vertical-align: top;
    margin-bottom: 22px;
}

.property--with-map-filter-wrap-inner {
    position: relative;
}
.pwm-filter-taxonomy {
    display: flex;
    gap: 20px;
    width: 100%;
}
.pwm-filter-taxonomy > * {
    width: 100%;
}

.property--bath-bed-room {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.property--bath-bed-room .pwm-filter-item-inner {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    background: #F6F6F6;
    padding: 5px 20px;
}
.property--bath-bed-room .pwm-filter-item-inner .text-label {
    margin-right: 10px;
}
.property--bath-bed-room .pwm-filter-item-inner input[type] {
    width: 70px;
    border-color: #DFDFDF;
}

.property--price-range {
    margin-top: 16px;
}
.pwm-price-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    width: 100%;
}
.pwm-price-heading .pwm-price-info-min,
.pwm-price-heading .pwm-price-info-max {
    font-weight: bold;
    color: #0F60D4;
}
.pwm-price-range-slider {
    background: #e8e8e8;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 3px;
}
.pwm-price-range-slider .noUi-connects {
    border-radius: 0;
}
.pwm-price-range-slider .noUi-connect {
    background: #0F60D4;
}
.pwm-price-range-slider .noUi-handle {
    background: #0F60D4;
    border: none;
    border-radius: 100%;
    box-shadow: none;
    cursor: pointer;
    height: 9px;
    top: -3px;
    width: 9px;
}
.pwm-price-range-slider .noUi-handle.noUi-handle-lower {
    right: -8px;
}
.pwm-price-range-slider .noUi-handle.noUi-handle-upper {
    right: 0;
}
.pwm-price-range-slider .noUi-handle:after, .pwm-price-range-slider .noUi-handle:before {
    display: none;
}

.pwm-filter-specification {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}
.pwm-filter-specification .pwm-filter-item {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex: 1;
}
.pwm-filter-specification .pwm-filter-item.pwm-search {
    width: 100%;
}
.pwm-filter-specification .pwm-filter-item input[type="text"],
.pwm-filter-specification .pwm-filter-item input[type="number"] {
    background: #F6F6F6;
    border-color: #f6f6f6;
    padding: 12px 20px;
}
.pwm-search .pwm-button {
    position: relative;
    border: none;
    background-image: linear-gradient(to right, #0F60D4 0%, #14C1CC  51%, #0F60D4  100%);
    transition: 0.5s;
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pwm-search .pwm-button:hover {
    background-position: right center;
}

.pwm-search .pwm-button .pwm-icon {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
}
.pwm-search .pwm-button .pwm-text {
    color: #fff;
}
.pwm-search .pwm-filter--search {
    width: 100%;
}

.pwm-grid-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 50%;
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: 20px;
    transition: width .3s ease;
    vertical-align: top;
	margin-bottom: 20px;
}
.pwm-grid-inner > * {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pwm-pagination {
    width: 50%;
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: 20px;
    transition: width .3s ease;
	margin-bottom: 20px;
}
.pwm-pagination .pwm-pagination-items {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pwm-pagination .pwm-pagination-items .pwm-pagination-item {
    color: #fff;
	position: relative;
    border: none;
    background: #0CCCD6;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 14px;
	padding: 4px 10px;
}
.pwm-pagination .pwm-pagination-items .pwm-pagination-item.pwm--active,
.pwm-pagination .pwm-pagination-items .pwm-pagination-item:hover {
	background: #0F60D4;
}

.pwm-grid-inner.loading {
    position: relative;
}
.pwm-grid-inner.loading > *:not(.loader-overlay) {
    visibility: hidden;
}
.pwm-grid-inner .loader-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 47, 59, 0.85);
    z-index: 3;
}
.pwm-grid-inner .loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
}
.pwm-grid-inner .loader::before,
.pwm-grid-inner .loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
.pwm-grid-inner .loader::before {
    border-color: #14C1CC #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}
.pwm-grid-inner .loader::after {
    margin: 8px;
}
@keyframes l16 {
    100% { transform: rotate(1turn) }
}

.pwm-image-holder {
    position: relative;
}
.pwm-media-slider {
    visibility: visible;
}
.pwm-media-slider img {
    display: block;
    min-height: 184px;
    max-height: 184px;
}
/*.pwm-image-holder .pwm-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -150%);
    opacity: 0;
    z-index: 2;
    transition: .3s cubic-bezier(.45, 0, .55, 1);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.pwm-image-holder:hover .pwm-actions {
    opacity: 1;
    transform: translate(-50%, -75%);
}*/
.bg-cut-corner {
    background: linear-gradient(90deg, #0F60D4 0.04%, #14C1CC 93.5%);
    width: calc(100% - 20px);
    clip-path: polygon(
            0 0,
            calc(100% - 60px) 0,
            100% 60px,
            100% 100%,
            0 100%
    );
    padding: 10px 60px 10px 20px;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
}
.pwm-image-holder .pwm-actions .pwm-button {
    border: none;
    background-image: linear-gradient(to right, #0F60D4 0%, #14C1CC  51%, #0F60D4  100%);
    transition: 0.5s;
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 140px;
    padding: 10px 20px;
    font-size: 14px;
}
/*.pwm-image-holder:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    background: rgba(36, 47, 59, 0.85);
    transition: 0.5s;
}*/
.pwm-image-holder:hover:after {
    z-index: 1;
}
.pwm-image-holder .pwm-actions .pwm-button:hover {
    background-position: right center;
}
.pwm-image-holder .pwm-actions .pwm-button.pwm-button-outline {
    background-image: none;
    border: 1px solid #3173CA;
}
.pwm-image-holder:hover .bg-cut-corner {
    z-index: 2;
}

.pwm-info-window {
    position: relative;
}
.pwm-info-window-inner .pwm-info-window-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.pwm-filter-advanced {
    display: none;
    opacity: 0;
    padding: 30px 0 5px;
    transition: opacity .2s ease-out;
}
.pwm-filter-advanced.pwm--opened {
    opacity: 1;
    display: block;
    transition-delay: .1s;
}
.pwm-filter-advanced .pwm-checkbox-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    width: 100%;
}
.pwm-filter-advanced .pwm-checkbox-items > * {
    width: calc(25% + 20px / 4 - 20px);
    align-items: center;
    display: flex;
}
.pwm-filter-advanced .pwm-checkbox-item input[type=checkbox] {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    height: 10px;
    margin: 0 11px 0 0;
    position: relative;
    width: 10px;
}
.pwm-filter-advanced .pwm-checkbox-item label {
    font-size: 14px;
}

.select2-selection--single .select2-selection__clear {
	background-color: #FFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 4px;
    font-size: 22px !important;
	z-index: 1;
}

@media only screen and (min-width: 768px) {
	.property--with-map.fixed-map .property--with-map-part {
		position: fixed;
	}
	.property--with-map #map-holder {
		height: 100%;
	}
	.property-grid-item,
	.property-grid-item .property-content {
		height: 100%;
	}
}

@media only screen and (max-width: 1280px) {
	body {
		overflow-x: hidden;
	}
    .property--with-map-filter-wrap,
    .pwm-grid-inner {
        padding-left: 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .property--with-map .property--with-map-part {
        position: relative;
        width: 100%;
    }
    .property--with-map-filter-wrap {
        margin-top: 24px;
    }
    .property--with-map #map-holder {
        height: 500px;
    }
    .property--with-map-filter-wrap,
    .pwm-grid-inner {
        width: 100%;
    }
    .pwm-grid-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .pwm-media-slider img {
        width: 100%;
    }
}
@media only screen and (max-width: 1024px) {
    .pwm-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 767px) {
	.pwm-pagination {
		width: 100%;
		padding-left: 20px;
	}
}
@media only screen and (max-width: 440px) {
    .pwm-grid-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .pwm-filter-specification{
        display: block;
        margin-top: 0;
    }

    .pwm-filter-specification .pwm-filter-item{
        margin-bottom: 20px;
    }

    .pwm-filter-taxonomy{
        display: block;
    }
}