.red-virtual-page {
	--red-page-y-padding: 32px;
	--red-page-x-padding: 16px;
	--red-sticky-menu-offset: 70px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
}

.red-virtual-page--listing {
	width: 100%;
	max-width: 100%;
}

.red-search-form {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(6, minmax(120px, 1fr)) auto;
	gap: 10px;
	align-items: end;
	margin: 0 0 24px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.red-search-form *,
.red-search-form *::before,
.red-search-form *::after,
.red-results-order,
.red-results-order *,
.red-results-order *::before,
.red-results-order *::after {
	box-sizing: border-box;
}

.red-search-form--elementor {
	margin: 0;
}

.red-results-layout {
	--red-filter-min-width: 300px;
	--red-filter-max-width: 360px;
	--red-results-max-width: 860px;
	--red-map-min-width: 340px;
	--red-map-max-width: 620px;
	--red-results-layout-gap: 36px;
	--red-filter-content-width: min(var(--red-filter-max-width), 50%);
	--red-results-content-width: min(var(--red-results-max-width), 50%);
	--red-map-content-width: min(var(--red-map-max-width), 28vw);
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, var(--red-filter-content-width))
		var(--red-results-layout-gap)
		minmax(0, var(--red-results-content-width))
		minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	height: calc(100vh - var(--red-sticky-menu-offset, 70px));
	min-height: 0;
	overflow: hidden;
}

.red-results-layout--map {
	--red-results-content-width: min(var(--red-results-max-width), 42vw);
	grid-template-columns:
		var(--red-results-layout-gap)
		minmax(0, var(--red-filter-content-width))
		var(--red-results-layout-gap)
		minmax(0, var(--red-results-content-width))
		var(--red-results-layout-gap)
		minmax(var(--red-map-min-width), 1fr);
}

.red-results-layout--map .red-results-layout__filters {
	grid-column: 2 / 3;
}

.red-results-layout--map .red-results {
	grid-column: 4 / 5;
}

.red-results-layout--map .red-results-map {
	grid-column: 6 / 7;
}

.red-results-layout__filters {
	box-sizing: border-box;
	grid-column: 2 / 3;
	position: relative;
	top: auto;
	height: 100%;
	max-height: none;
	min-width: 0;
	min-height: 0;
	width: 100%;
	justify-self: stretch;
	margin-left: auto;
	padding: 12px 0 var(--red-page-y-padding, 32px);
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.red-results {
	box-sizing: border-box;
	grid-column: 4 / 5;
	width: 100%;
	max-width: none;
	min-width: 0;
	height: 100%;
	min-height: 0;
	padding: var(--red-page-y-padding, 32px) 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.red-results-map {
	box-sizing: border-box;
	grid-column: 6 / 7;
	width: 100%;
	min-width: 0;
	height: 100%;
	min-height: 0;
	padding: 0;
}

.red-results-map__inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.red-results-map__canvas {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-height: 420px;
	overflow: hidden;
	border: 1px solid #dddddd;
	border-radius: 0;
	background: #e5e7eb;
}

.red-results-map__canvas .red-results-map__carto-voyager-tiles {
	filter: saturate(.98) contrast(.98) brightness(1.02);
}

.red-results-map__canvas .red-results-map__maptiler-tiles {
	filter: saturate(.96) contrast(.98) brightness(1.02);
}

.red-results-map__canvas .leaflet-control-zoom {
	border: 0;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
}

.red-results-map__canvas .leaflet-control-zoom a {
	border-color: #e5e7eb;
	color: #2a2a2f;
	font-weight: 500;
}

.red-results-map__canvas .leaflet-control-attribution {
	background: rgba(255, 255, 255, .84);
	color: #5f6368;
	font-size: 10px;
}

.red-results-map__empty {
	position: absolute;
	z-index: 450;
	top: 16px;
	right: 16px;
	left: 16px;
	padding: 12px 14px;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #ffffff;
	color: #2a2a2f;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
	pointer-events: none;
}

.leaflet-marker-icon.red-results-map-cluster {
	background: transparent;
	border: 0;
}

.red-results-map-cluster span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid #ffffff;
	border-radius: 999px;
	background: var(--e-global-color-primary, #0d6efd);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.red-results-map-popup {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	width: min(280px, 72vw);
	color: #2a2a2f;
}

.red-results-map-popup__thumb {
	width: 72px;
	height: 58px;
	border-radius: 6px;
	object-fit: cover;
	background: #f4f5f7;
}

.red-results-map-popup__body {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.red-results-map-popup__title,
.red-results-map-popup__price {
	font-weight: 700;
	line-height: 1.2;
}

.red-results-map-popup__title,
.red-results-map-popup__location {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-results-map-popup__location {
	color: #717169;
	font-size: 12px;
}

.red-property-card.is-map-active,
.red-property-template-card.is-map-active {
	outline: 2px solid var(--e-global-color-primary, #0d6efd);
	outline-offset: 2px;
}

.red-results-layout__filters::-webkit-scrollbar,
.red-results::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.red-results-layout__filters.is-type-panel-open {
	overflow: hidden;
}

.red-results-layout__filters.is-type-panel-open .red-active-filters {
	display: none;
}

.red-results-layout__filters .red-search-form {
	--red-results-filter-padding: 24px;
	width: 100%;
	max-width: var(--red-filter-max-width);
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 0 0 0 auto;
	padding: var(--red-results-filter-padding);
	border: 1px solid #dddddd;
	border-radius: 12px;
	background-color: #fff;
}

.red-results-layout__filters .red-active-filters {
	--red-active-filter-color: var(--e-global-color-primary, #0d6efd);
	display: contents;
	width: 100%;
	min-width: 0;
}

.red-results-layout__filters .red-active-filters__top {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	max-width: var(--red-filter-max-width);
	min-height: 24px;
	margin: 0 0 10px auto;
	color: #2a2a2f;
}

.red-results-layout__filters .red-active-filters__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.red-results-layout__filters .red-active-filters__title .fas {
	font-size: 14px;
	line-height: 1;
}

.red-results-layout__filters .red-active-filters__clear-all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--red-active-filter-color);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
}

.red-results-layout__filters .red-active-filters__clear-all[hidden] {
	display: none;
}

.red-results-layout__filters .red-active-filters__clear-all:hover,
.red-results-layout__filters .red-active-filters__clear-all:focus {
	background: transparent;
	color: var(--red-active-filter-color);
	text-decoration: underline;
}

.red-results-layout__filters .red-active-filters__clear-all:disabled,
.red-results-layout__filters .red-active-filters__clear-all[aria-disabled="true"] {
	color: #a7aaad;
	cursor: default;
	text-decoration: none;
}

.red-results-layout__filters .red-active-filters__panel {
	box-sizing: border-box;
	position: sticky;
	top: -6px;
	z-index: 5;
	overflow: hidden;
	width: 100%;
	max-width: var(--red-filter-max-width);
	margin: 0 0 12px auto;
	border: 1px solid #b8d5ff;
	border-radius: 10px;
	background: #f4f8ff;
	border-color: color-mix(in srgb, var(--red-active-filter-color) 34%, #ffffff);
	background: color-mix(in srgb, var(--red-active-filter-color) 8%, #ffffff);
}

.red-results-layout__filters .red-active-filters__summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 18px;
	list-style: none;
	color: #2a2a2f;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.red-results-layout__filters .red-active-filters__summary::-webkit-details-marker {
	display: none;
}

.red-results-layout__filters .red-active-filters__summary [data-red-active-filter-count] {
	justify-self: start;
	font-size: 14px;
	font-weight: 600;
}

.red-results-layout__filters .red-active-filters__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	font-size: 11px;
	line-height: 1;
	transition: transform .16s ease;
}

.red-results-layout__filters .red-active-filters__panel[open] .red-active-filters__chevron {
	transform: rotate(180deg);
}

.red-results-layout__filters .red-active-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 18px 18px;
}

.red-results-layout__filters .red-active-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid var(--red-active-filter-color);
	border-radius: 999px;
	background: #ffffff;
	color: var(--red-active-filter-color);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.red-results-layout__filters .red-active-filter-chip span:first-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-results-layout__filters .red-active-filter-chip:hover,
.red-results-layout__filters .red-active-filter-chip:focus {
	background: #ffffff;
	border-color: var(--red-active-filter-color);
	color: var(--red-active-filter-color);
	text-decoration: none;
}

.red-active-filters__apply.red-button,
.red-results-filter-modal__clear {
	display: none;
}

.red-results > .red-results__header,
.red-results > [data-red-results-empty],
.red-results > .red-property-grid,
.red-results > .red-infinite-status,
.red-results > .red-infinite-sentinel {
	width: 100%;
	max-width: var(--red-results-max-width);
}

.red-results-layout__filters .red-search-form__field--range {
	grid-column: auto;
}

.red-results-layout__filters .red-search-form__field--price-range {
	margin-top: 4px;
	margin-bottom: 4px;
	margin-right: calc(var(--red-results-filter-padding) * -1);
	margin-left: calc(var(--red-results-filter-padding) * -1);
	padding: 18px var(--red-results-filter-padding) 24px;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}

.red-results-layout__filters .red-search-form__field--offers,
.red-results-layout__filters .red-search-form__field--pet-friendly {
	margin-right: calc(var(--red-results-filter-padding) * -1);
	margin-left: calc(var(--red-results-filter-padding) * -1);
	padding: 4px var(--red-results-filter-padding) 0;
}

.red-results-layout__filters .red-search-form__field--offers {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid #dddddd;
}

.red-results-layout__filters .red-search-form__field--bedrooms {
	margin-top: 4px;
	margin-right: calc(var(--red-results-filter-padding) * -1);
	margin-left: calc(var(--red-results-filter-padding) * -1);
	padding: 18px var(--red-results-filter-padding) 0;
	border-top: 1px solid #dddddd;
}

.red-results-layout__filters .red-button {
	width: 100%;
}

.red-search-form__field {
	position: relative;
	min-width: 0;
}

.red-search-form__field > label,
.red-search-form__label {
	display: grid;
	gap: 5px;
	font-weight: 600;
}

.red-results-layout__filters .red-search-form__field > label,
.red-results-layout__filters .red-search-form__label {
	color: #2a2a2f;
}

.red-results-layout__filters .red-switch-check {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	color: #2a2a2f;
	font-weight: 600;
	cursor: pointer;
}

.red-results-layout__filters .red-switch-check__control {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.red-results-layout__filters .switch-check-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.red-results-layout__filters .red-switch-check__track {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 46px;
	height: 26px;
	border: 1px solid #dddddd;
	border-radius: 999px;
	background: #f4f5f7;
	transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.red-results-layout__filters .red-switch-check__thumb {
	position: absolute;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .2);
	transition: transform .16s ease;
}

.red-results-layout__filters .switch-check-input:checked + .red-switch-check__track {
	border-color: var(--e-global-color-primary);
	background: var(--e-global-color-primary);
}

.red-results-layout__filters .switch-check-input:checked + .red-switch-check__track .red-switch-check__thumb {
	transform: translateX(20px);
}

.red-results-layout__filters .switch-check-input:focus-visible + .red-switch-check__track {
	box-shadow: 0 0 0 3px rgba(42, 42, 47, .18);
}

.red-operation-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 8px;
}

.red-operation-segments {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid #dddddd;
	border-radius: 8px 8px 0 0;
	background: #f4f5f7;
}

.red-results-layout__filters .red-search-form__field--operation-segmented {
	margin: calc(var(--red-results-filter-padding) * -1)
		calc(var(--red-results-filter-padding) * -1)
		-19px;
}

.red-results-layout__filters .red-active-filters + .red-search-form__field--operation-segmented {
	margin: 0;
}

.red-results-layout__filters .red-operation-segments {
	border: 0;
	border-bottom: 1px solid #dddddd;
	border-radius: 12px 12px 0 0;
}

.red-results-layout__filters .red-active-filters + .red-search-form__field--operation-segmented .red-operation-segments {
	border: 1px solid #dddddd;
	border-radius: 8px 8px 0 0;
}

.red-operation-option {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}

.red-operation-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.red-operation-option__body {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid transparent;
	border-radius: 4px;
	font: inherit;
	font-weight: 600;
	text-align: center;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.red-operation-segments .red-operation-option__body {
	position: relative;
	min-height: 48px;
	border: 0;
	border-radius: 0;
	background: #f4f5f7;
	color: #717169;
	font-weight: 700;
}

.red-operation-option--segment + .red-operation-option--segment .red-operation-option__body {
	border-left: 1px solid #dddddd;
}

.red-results-layout__filters .red-operation-option__body {
	background: #f4f5f7;
	border-color: #dddddd;
	color: #717169;
}

.red-operation-option__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 1;
	flex: 0 0 auto;
}

.red-operation-option__text {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1;
	transform: translateY(1px);
}

.red-operation-option input:focus-visible + .red-operation-option__body {
	outline: 2px solid #0d6efd;
	outline-offset: 2px;
}

.red-operation-option input:checked + .red-operation-option__body {
	box-shadow: none;
}

.red-results-layout__filters .red-operation-option input[type="radio"]:checked + .red-operation-option__body {
	background: #dceaff;
	border-color: #dceaff;
	color: var(--e-global-color-primary);
}

.red-results-layout__filters .red-operation-segments .red-operation-option input[type="radio"]:checked + .red-operation-option__body,
.red-operation-segments .red-operation-option input[type="radio"]:checked + .red-operation-option__body {
	background: #ffffff;
	color: var(--e-global-color-primary, #0d6efd);
}

.red-results-layout__filters .red-operation-segments .red-operation-option input[type="radio"]:checked + .red-operation-option__body::after,
.red-operation-segments .red-operation-option input[type="radio"]:checked + .red-operation-option__body::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 2;
	height: 4px;
	background: var(--e-global-color-primary, #0d6efd);
	content: "";
}

.red-operation-option:hover input:not(:checked) + .red-operation-option__body,
.red-operation-option:focus-within input:not(:checked) + .red-operation-option__body {
	box-shadow: none;
}

.red-results-layout__filters .red-operation-option:hover input[type="radio"]:not(:checked) + .red-operation-option__body,
.red-results-layout__filters .red-operation-option:focus-within input[type="radio"]:not(:checked) + .red-operation-option__body {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-results-layout__filters .red-operation-segments .red-operation-option:hover input[type="radio"]:not(:checked) + .red-operation-option__body,
.red-results-layout__filters .red-operation-segments .red-operation-option:focus-within input[type="radio"]:not(:checked) + .red-operation-option__body,
.red-operation-segments .red-operation-option:hover input[type="radio"]:not(:checked) + .red-operation-option__body,
.red-operation-segments .red-operation-option:focus-within input[type="radio"]:not(:checked) + .red-operation-option__body {
	background: #ffffff;
	border-color: #dddddd;
	color: #2a2a2f;
}

.red-search-form select,
.red-results-order select,
.red-search-form input[type="text"],
.red-search-form .red-multiselect__button {
	width: 100%;
	min-height: 46px;
	min-width: 0;
	border: 1px solid transparent;
	border-radius: 6px;
}

.red-search-form select,
.red-results-order select,
.red-search-form input[type="text"],
.red-search-form .red-multiselect__button {
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.red-results-layout__filters .red-search-form select,
.red-results-layout__filters .red-search-form input[type="text"],
.red-results-layout__filters .red-search-form .red-multiselect__button,
.red-results-order select {
	color: #717169;
	background: #f4f5f7;
	border-color: #dddddd;
}

.red-contact-box input,
.red-contact-box textarea {
	width: 100%;
	min-height: 46px;
	min-width: 0;
	border: 1px solid #dddddd;
	border-radius: 6px;
}

.red-search-form input[type="text"] {
	padding: 0 12px;
	text-align: center;
}

.red-search-form__field--property-code {
	display: block;
}

.red-search-form__field--property-code.is-loading input {
	cursor: progress;
}

.red-property-code-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 52px;
	list-style: none;
	color: #2a2a2f;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.red-property-code-accordion__summary::-webkit-details-marker {
	display: none;
}

.red-property-code-accordion__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	color: #2a2a2f;
	font-size: 12px;
	line-height: 1;
	transition: transform .16s ease;
}

.red-property-code-accordion[open] .red-property-code-accordion__chevron {
	transform: rotate(180deg);
}

.red-property-code-accordion__body {
	padding-bottom: 4px;
}

.red-property-code-control {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	gap: 0;
	align-items: stretch;
	width: 100%;
}

.red-search-form .red-property-code-control input[type="text"] {
	min-height: 46px;
	border-right: 0;
	border-radius: 6px 0 0 6px;
	text-align: left;
}

.red-search-form .red-property-code-submit,
.red-results-layout__filters .red-search-form .red-property-code-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	min-width: 46px;
	min-height: 46px;
	padding: 0;
	border-radius: 0 6px 6px 0;
	background: var(--e-global-color-primary, #0d6efd);
	border-color: var(--e-global-color-primary, #0d6efd);
	color: #fff;
}

.red-search-form .red-property-code-submit:hover,
.red-search-form .red-property-code-submit:focus {
	background: var(--e-global-color-primary, #0d6efd);
	border-color: var(--e-global-color-primary, #0d6efd);
	color: #fff;
}

.red-property-code-status {
	display: block;
	margin-top: 6px;
	min-height: 16px;
	color: #717169;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
}

.red-property-code-status[hidden] {
	display: none;
}

.red-search-form__field--property-code.is-error .red-property-code-status {
	color: #b42318;
}

.red-search-form__field--property-code.is-success .red-property-code-status {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-code-overlay-open {
	overflow: hidden;
}

.red-property-code-overlay {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(42, 42, 47, .62);
	backdrop-filter: blur(2px);
}

.red-property-code-overlay[hidden] {
	display: none;
}

.red-property-code-overlay__dialog {
	display: grid;
	justify-items: center;
	gap: 14px;
	width: min(100%, 360px);
	padding: 28px 24px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
	text-align: center;
}

.red-property-code-overlay__indicator {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.red-property-code-overlay.is-loading .red-property-code-overlay__indicator {
	border: 4px solid #dceaff;
	border-top-color: var(--e-global-color-primary, #0d6efd);
	animation: red-property-code-spin .8s linear infinite;
}

.red-property-code-overlay.is-error .red-property-code-overlay__indicator,
.red-property-code-overlay.is-success .red-property-code-overlay__indicator {
	border: 2px solid currentColor;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
}

.red-property-code-overlay.is-error .red-property-code-overlay__indicator {
	color: #b42318;
	background: #fff2f1;
}

.red-property-code-overlay.is-success .red-property-code-overlay__indicator {
	color: var(--e-global-color-primary, #0d6efd);
	background: #dceaff;
}

.red-property-code-overlay.is-error .red-property-code-overlay__indicator::before {
	content: "!";
}

.red-property-code-overlay.is-success .red-property-code-overlay__indicator::before {
	content: "\2713";
}

.red-property-code-overlay__message {
	color: #2a2a2f;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

@keyframes red-property-code-spin {
	to {
		transform: rotate(360deg);
	}
}

.red-search-form__field--range {
	grid-column: span 2;
}

.red-filter-range {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.red-dual-range {
	position: relative;
	height: 28px;
	margin-top: 14px;
}

.red-dual-range__track {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 4px;
	border-radius: 999px;
	background: #dddddd;
	transform: translateY(-50%);
}

.red-dual-range__fill {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: inherit;
	background: var(--e-global-color-primary, #0d6efd);
}

.red-dual-range__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	appearance: none;
	pointer-events: none;
}

.red-dual-range__input--min {
	z-index: 2;
}

.red-dual-range__input--max {
	z-index: 3;
}

.red-dual-range__input::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
}

.red-dual-range__input::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	margin-top: -6px;
	border: 2px solid var(--e-global-color-primary, #0d6efd);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(42, 42, 47, .16);
	appearance: none;
	cursor: pointer;
	pointer-events: auto;
}

.red-dual-range__input::-moz-range-track {
	height: 4px;
	background: transparent;
}

.red-dual-range__input::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 2px solid var(--e-global-color-primary, #0d6efd);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(42, 42, 47, .16);
	cursor: pointer;
	pointer-events: auto;
}

.red-dual-range__input:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px rgba(13, 110, 253, .18), 0 2px 6px rgba(42, 42, 47, .16);
}

.red-dual-range__input:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 3px rgba(13, 110, 253, .18), 0 2px 6px rgba(42, 42, 47, .16);
}

.red-filter-range label {
	display: grid;
	gap: 5px;
	font-weight: 600;
	min-width: 0;
}

.red-results-layout__filters .red-filter-range label,
.red-results-layout__filters .red-filter-range label > span {
	color: #2a2a2f;
}

.red-filter-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
}

.red-filter-option {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}

.red-filter-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.red-filter-option__body {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid transparent;
	border-radius: 4px;
	font: inherit;
	font-weight: 600;
	text-align: center;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.red-results-layout__filters .red-filter-option__body {
	background: #f4f5f7;
	border-color: #dddddd;
	color: #717169;
}

.red-filter-option input:focus-visible + .red-filter-option__body {
	outline: 2px solid #0d6efd;
	outline-offset: 2px;
}

.red-filter-option input:checked + .red-filter-option__body {
	box-shadow: none;
}

.red-results-layout__filters .red-filter-option input[type="radio"]:checked + .red-filter-option__body {
	background: #dceaff;
	border-color: #dceaff;
	color: var(--e-global-color-primary);
}

.red-results-layout__filters .red-feature-option input[type="checkbox"]:checked + .red-filter-option__body {
	background: #dceaff;
	border-color: #dceaff;
	color: var(--e-global-color-primary);
}

.red-filter-option:hover input:not(:checked) + .red-filter-option__body,
.red-filter-option:focus-within input:not(:checked) + .red-filter-option__body {
	box-shadow: none;
}

.red-results-layout__filters .red-filter-option:hover input[type="radio"]:not(:checked) + .red-filter-option__body,
.red-results-layout__filters .red-filter-option:focus-within input[type="radio"]:not(:checked) + .red-filter-option__body {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-results-layout__filters .red-feature-option:hover input[type="checkbox"]:not(:checked) + .red-filter-option__body,
.red-results-layout__filters .red-feature-option:focus-within input[type="checkbox"]:not(:checked) + .red-filter-option__body {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-results-layout__filters .red-feature-option input[type="checkbox"]:disabled + .red-filter-option__body,
.red-results-layout__filters .red-feature-option:hover input[type="checkbox"]:disabled + .red-filter-option__body,
.red-results-layout__filters .red-feature-option:focus-within input[type="checkbox"]:disabled + .red-filter-option__body {
	background: #ebebeb;
	border-color: #ebebeb;
	color: #cbcbcb;
	cursor: not-allowed;
}

.red-results-layout__filters .red-search-form__field--features {
	margin-right: calc(var(--red-results-filter-padding) * -1);
	margin-left: calc(var(--red-results-filter-padding) * -1);
}

.red-feature-accordion {
	border-top: 1px solid #dddddd;
}

.red-feature-group {
	position: relative;
	border-bottom: 1px solid #dddddd;
}

.red-feature-group__summary {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 var(--red-results-filter-padding);
	list-style: none;
	cursor: pointer;
}

.red-feature-group__summary::-webkit-details-marker {
	display: none;
}

.red-feature-group__title {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 96px;
	color: #2a2a2f;
	font-weight: 700;
	line-height: 1.2;
}

.red-feature-group__clear {
	position: absolute;
	top: 0;
	right: calc(var(--red-results-filter-padding) + 24px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	min-height: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--e-global-color-primary, #0d6efd);
	font: inherit;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.red-feature-group__clear[hidden] {
	display: none;
}

.red-feature-group__clear:hover,
.red-feature-group__clear:focus {
	color: var(--e-global-color-primary, #0d6efd);
	background: transparent;
}

.red-feature-group__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	color: #2a2a2f;
	font-size: 12px;
	line-height: 1;
	transition: transform .16s ease;
}

.red-feature-group[open] .red-feature-group__chevron {
	transform: rotate(180deg);
}

.red-feature-options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 var(--red-results-filter-padding) 16px;
}

.red-feature-option {
	width: auto;
	flex: 0 0 auto;
}

.red-feature-option .red-filter-option__body {
	width: auto;
	min-height: 40px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.red-search-form__field--type-tiles {
	display: grid;
	gap: 10px;
	position: static;
}

.red-results-layout__filters .red-search-form__field--type-tiles {
	margin-top: 4px;
	margin-bottom: 4px;
	margin-right: calc(var(--red-results-filter-padding) * -1);
	margin-left: calc(var(--red-results-filter-padding) * -1);
	padding: 18px var(--red-results-filter-padding) 20px;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}

.red-results-layout__filters .red-search-form--single-operation .red-search-form__field--type-tiles {
	padding: 0 var(--red-results-filter-padding) 20px;
	border-top: none;
}

.red-type-filter__label {
	color: #2a2a2f;
	font-weight: 700;
	line-height: 1.2;
}

.red-type-filter__compact,
.red-type-panel__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.red-type-card {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}

.red-type-card[hidden],
.red-type-panel__group[hidden],
.red-type-filter__selected-badge[hidden],
.red-type-filter__more[hidden] {
	display: none !important;
}

.red-type-card input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.red-type-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 96px;
	padding: 10px 6px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: #f4f5f7;
	color: #717169;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.16;
	text-align: center;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.red-type-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 1;
}

.red-type-card__label {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.red-type-card input:focus-visible + .red-type-card__body {
	outline: 2px solid var(--e-global-color-primary, #0d6efd);
	outline-offset: 2px;
}

.red-type-card input:checked + .red-type-card__body {
	border-color: var(--e-global-color-primary, #0d6efd);
	background: #fff;
	color: var(--e-global-color-primary, #0d6efd);
}

.red-type-card:hover input:not(:checked) + .red-type-card__body,
.red-type-card:focus-within input:not(:checked) + .red-type-card__body {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-type-filter__selected-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: flex-start;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #dceaff;
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.red-type-filter__more {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	width: 100%;
	min-height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #2a2a2f;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: right;
	text-decoration: none;
	cursor: pointer;
}

.red-type-filter__more:hover,
.red-type-filter__more:focus {
	background: transparent;
	color: #2a2a2f;
}

.red-type-filter__more span:first-child {
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

.red-type-filter__more span:last-child {
	text-decoration: underline;
}

.red-type-panel {
	position: absolute;
	z-index: 1;
	inset: 0;
	min-height: 100%;
	padding: 14px 12px 24px;
	overflow-y: auto;
	background: #fff;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.red-type-panel::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.red-type-panel[hidden] {
	display: none;
}

.red-search-form.is-type-panel-open > :not(.red-search-form__field--type-tiles),
.red-search-form.is-type-panel-open .red-search-form__field--type-tiles > :not(.red-type-panel) {
	display: none;
}

.red-type-panel__header {
	display: grid;
	grid-template-columns: 32px 1fr 32px;
	align-items: center;
	min-height: 36px;
	margin-bottom: 12px;
	color: #2a2a2f;
}

.red-type-panel__header strong {
	grid-column: 2;
	justify-self: center;
	font-size: 15px;
	line-height: 1.2;
}

.red-type-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.red-type-panel__close:hover,
.red-type-panel__close:focus {
	background: transparent;
	color: var(--e-global-color-primary, #0d6efd);
}

.red-type-panel__group + .red-type-panel__group {
	margin-top: 26px;
}

.red-type-panel__group h3 {
	margin: 0 0 10px;
	color: #717169;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.red-select {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
}

.red-select select {
	padding: 0 34px 0 12px !important;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: none;
}

.red-multiselect__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 34px 0 12px;
	text-align: left;
	cursor: pointer;
}

.red-select::after,
.red-multiselect__button::after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-65%) rotate(45deg);
	opacity: .72;
}

.red-select::after {
	pointer-events: none;
}

.red-search-form .red-multiselect__button:disabled {
	cursor: not-allowed;
	opacity: .68;
}

.red-results-layout__filters .red-search-form .red-multiselect__button:disabled {
	background: #f4f5f7;
}

.red-multiselect__panel {
	position: absolute;
	z-index: 20;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	max-height: 280px;
	overflow: auto;
	padding: 10px;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, .16);
}

.red-multiselect__panel[hidden] {
	display: none;
}

.red-search-form__field--location-combo {
	position: relative;
	min-width: 0;
}

.red-location-combo__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.red-location-combo__header label {
	margin: 0;
	color: #2a2a2f;
	font-weight: 600;
	line-height: 1.2;
}

.red-location-combo__nearby {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--e-global-color-primary, #0d6efd);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
}

.red-location-combo__nearby:hover,
.red-location-combo__nearby:focus {
	color: var(--e-global-color-primary, #0d6efd);
	text-decoration: none;
}

.red-location-combo__control {
	position: relative;
	display: flex;
	align-items: center;
}

.red-location-combo__icon {
	position: absolute;
	left: 15px;
	z-index: 1;
	color: #8f949b;
	font-size: 15px;
	pointer-events: none;
}

.red-search-form input.red-location-combo__input[type="text"] {
	padding-right: 42px;
	padding-left: 42px;
	text-align: left;
}

.red-location-combo__clear {
	position: absolute;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #58708e;
	cursor: pointer;
}

.red-location-combo__clear[hidden] {
	display: none;
}

.red-location-combo__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.red-location-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid var(--e-global-color-primary, #0d6efd);
	border-radius: 999px;
	background: #fff;
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.red-location-chip > span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-location-chip button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
}

.red-location-map-notice {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid #dddddd;
	border-radius: 999px;
	background: #f4f5f7;
	color: #717169;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.red-location-map-notice .fas {
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 12px;
	line-height: 1;
}

.red-location-map-notice span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-location-combo__panel {
	position: absolute;
	z-index: 20;
	top: 100%;
	right: 0;
	left: 0;
	max-height: min(420px, calc(100vh - 220px));
	padding: 16px 28px 12px;
	border: 1px solid #dddddd;
	border-radius: 0 0 10px 10px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, .16);
	overflow: auto;
	scrollbar-width: none;
}

.red-location-combo__panel::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.red-location-combo__panel[hidden] {
	display: none;
}

.red-location-combo__group + .red-location-combo__group {
	margin-top: 18px;
}

.red-location-combo__group > strong {
	display: block;
	margin: 0 0 12px;
	color: #717169;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.red-location-combo__option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 12px;
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 6px 0;
	border-bottom: 1px solid #dddddd;
	color: #111827;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}

.red-location-combo__option:last-child {
	border-bottom: 0;
}

.red-location-combo__option input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--e-global-color-primary, #0d6efd);
	cursor: pointer;
}

.red-location-combo__option:has(input:checked) {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-location-combo__option-label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.red-location-combo__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 6px;
	background: #dceaff;
	color: var(--e-global-color-primary, #0d6efd);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.red-location-combo__empty {
	margin: 0;
	color: #717169;
	font-size: 14px;
	font-weight: 500;
}

.red-location-combo.is-loading .red-location-combo__control::after {
	position: absolute;
	right: 13px;
	width: 16px;
	height: 16px;
	border: 2px solid #d5d7dc;
	border-top-color: var(--e-global-color-primary, #0d6efd);
	border-radius: 50%;
	content: "";
	animation: redSpin .7s linear infinite;
}

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

.red-multiselect__group[hidden],
.red-search-form__field .red-multiselect__option[hidden] {
	display: none !important;
}

.red-multiselect__group + .red-multiselect__group {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #edf0f3;
}

.red-multiselect__group strong {
	display: block;
	margin-bottom: 6px;
	color: #646970;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.red-search-form__field .red-multiselect__option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 4px;
	border-radius: 4px;
	font-weight: 400;
	line-height: 1.25;
	cursor: pointer;
}

.red-search-form__field .red-multiselect__option:hover {
	background: #f6f7f7;
}

.red-search-form__field .red-multiselect__option input {
	flex: 0 0 auto;
	width: 16px;
	min-width: 16px;
	height: 16px;
	min-height: 16px;
	margin: 0;
}

.red-search-form__field .red-multiselect__option span {
	display: block;
	min-width: 0;
}

.red-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 4px;
	background: #1d2327;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.red-results-layout__filters .red-button {
	background: var(--e-global-color-primary, #0d6efd);
	border-color: var(--e-global-color-primary, #0d6efd);
	color: #fff;
}

.red-button__icon,
.red-button__text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.red-button__icon {
	width: 16px;
	height: 16px;
	font-size: 14px;
	flex: 0 0 auto;
}

.red-results__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
	grid-template-areas:
		"intro actions"
		"rail rail";
	column-gap: 24px;
	row-gap: 12px;
	align-items: start;
	margin-bottom: 16px;
}

.red-results__actions {
	grid-area: actions;
	align-self: end;
	justify-self: stretch;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.red-results-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid var(--e-global-color-primary, #0d6efd);
	border-radius: 6px;
	background: var(--e-global-color-primary, #0d6efd);
	color: #fff;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.red-results-filter-toggle:hover,
.red-results-filter-toggle:focus {
	border-color: var(--e-global-color-primary, #0d6efd);
	background: var(--e-global-color-primary, #0d6efd);
	color: #fff;
}

.red-results-filter-modal__header {
	display: none;
}

.red-results-filter-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	color: #2a2a2f;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}

.red-virtual-page--brokers {
	max-width: 1180px;
	padding: 32px 16px;
}

.red-brokers-page__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.red-brokers-page__header h1 {
	margin: 0;
	color: #2a2a2f;
	font-size: 36px;
	line-height: 1.1;
}

.red-brokers-page__header p {
	margin: 8px 0 0;
	color: #646970;
	font-weight: 500;
}

.red-broker-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.red-broker-card,
.red-broker-template-card {
	min-width: 0;
}

.red-broker-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 18px;
	padding: 18px;
	background: #fff;
	border: 1px solid #dddddd;
	border-radius: 8px;
}

.red-broker-card__media img,
.red-broker-card__placeholder,
.red-broker-image img,
.red-broker-image__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	background: #f4f5f7;
}

.red-broker-card__placeholder,
.red-broker-image__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #717169;
	font-size: 34px;
}

.red-broker-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.red-broker-card__body h2 {
	margin: 0;
	color: #2a2a2f;
	font-size: 22px;
	line-height: 1.15;
}

.red-broker-card__body p {
	margin: 6px 0 0;
	color: #646970;
	font-weight: 500;
}

.red-broker-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: #646970;
	font-size: 13px;
	font-weight: 600;
}

.red-broker-card__button,
.red-broker-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 6px;
	background: var(--e-global-color-primary, #0d6efd);
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.red-broker-card__button:hover,
.red-broker-card__button:focus,
.red-broker-button:hover,
.red-broker-button:focus {
	background: var(--e-global-color-primary, #0d6efd);
	color: #fff;
	text-decoration: none;
}

.red-broker-button__icon,
.red-broker-button__text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.red-results-filter-modal__close:hover,
.red-results-filter-modal__close:focus {
	border-color: #2a2a2f;
	background: #fff;
	color: #2a2a2f;
}

html.red-results-filter-modal-open,
body.red-results-filter-modal-open {
	overflow: hidden;
}

.red-results__summary h1,
.red-results__summary p {
	margin: 0;
}

.red-results__summary {
	display: contents;
	min-width: 0;
}

.red-results__summary p {
	grid-column: 1 / -1;
	grid-row: 4;
	margin-top: 4px;
	color: #646970;
}

.red-results__header .red-results-refinements {
	display: contents;
}

.red-results-refinements {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.red-results-refinements__intro {
	grid-area: intro;
	align-self: end;
	display: grid;
	gap: 6px;
	min-width: 0;
}

.red-results-refinements__intro h1 {
	margin: 0;
	min-width: 0;
	font-size: 1.2em;
	font-weight: 600;
}

.red-results-refinements__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	min-width: 0;
	color: #717169;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	white-space: nowrap;
}

.red-results-refinements__breadcrumb-item {
	flex: 0 0 auto;
	min-width: 0;
	overflow: visible;
	text-overflow: clip;
}

.red-results-refinements__breadcrumbs a,
.red-results-refinements__breadcrumb-toggle {
	color: inherit;
	text-decoration: none;
}

.red-results-refinements__breadcrumbs a:hover,
.red-results-refinements__breadcrumbs a:focus,
.red-results-refinements__breadcrumb-toggle:hover,
.red-results-refinements__breadcrumb-toggle:focus {
	color: var(--e-global-color-primary);
	text-decoration: none;
}

.red-results-refinements__breadcrumb-separator {
	flex: 0 0 auto;
	color: #9ca3af;
}

.red-results-refinements__breadcrumb-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.red-results-refinements__breadcrumb-toggle[hidden] {
	display: none;
}

.red-results-refinements__breadcrumbs.is-collapsed .red-results-refinements__breadcrumb-item.is-middle,
.red-results-refinements__breadcrumbs.is-collapsed .red-results-refinements__breadcrumb-separator:not(.is-after-first):not(.is-before-last) {
	display: none;
}

.red-results-refinements__breadcrumbs.is-collapsed .red-results-refinements__breadcrumb-item.is-last {
	flex: 0 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-results-refinements__breadcrumbs.is-expanded {
	flex-wrap: wrap;
	white-space: normal;
}

.red-results-refinements__breadcrumbs.is-expanded .red-results-refinements__breadcrumb-item {
	white-space: nowrap;
}

.red-results-refinements__breadcrumbs.is-expanded .red-results-refinements__breadcrumb-toggle {
	display: none;
}

.red-results-refinements__rail-wrap {
	grid-area: rail;
	position: relative;
	min-width: 0;
}

.red-results-refinements__rail-wrap::before,
.red-results-refinements__rail-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 72px;
	pointer-events: none;
}

.red-results-refinements__rail-wrap::before {
	left: 0;
	background: linear-gradient(90deg, #f7f7f7 32%, rgba(247, 247, 247, 0));
}

.red-results-refinements__rail-wrap::after {
	right: 0;
	background: linear-gradient(90deg, rgba(247, 247, 247, 0), #f7f7f7 68%);
}

.red-results-refinements__rail-wrap:not(.is-scrollable)::before,
.red-results-refinements__rail-wrap.is-at-start::before,
.red-results-refinements__rail-wrap:not(.is-scrollable)::after,
.red-results-refinements__rail-wrap.is-at-end::after {
	display: none;
}

.red-results-refinements__rail {
	display: flex;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 48px 4px 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.red-results-refinements__rail-wrap:not(.is-scrollable) .red-results-refinements__rail,
.red-results-refinements__rail-wrap.is-at-end .red-results-refinements__rail {
	padding-right: 0;
}

.red-results-refinements__scroll {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
	color: #2a2a2f;
	font-size: 14px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.red-results-refinements__scroll--prev {
	left: 2px;
}

.red-results-refinements__scroll:not(.red-results-refinements__scroll--prev) {
	right: 2px;
}

.red-results-refinements__scroll:hover,
.red-results-refinements__scroll:focus {
	border-color: #2a2a2f;
	background: #ffffff;
	color: #2a2a2f;
}

.red-results-refinements__scroll[hidden],
.red-results-refinements__scroll:disabled {
	display: none;
}

.red-results-refinements__rail::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.red-results-refinement-chip {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 140px;
	min-height: 54px;
	padding: 10px 18px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #ffffff;
	color: #2a2a2f;
	text-decoration: none;
	transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}

.red-results-refinement-chip:hover,
.red-results-refinement-chip:focus {
	border-color: #2a2a2f;
	background: #ffffff;
	color: #2a2a2f;
	text-decoration: none;
}

.red-results-refinement-chip.is-active {
	border-color: var(--e-global-color-primary, #0d6efd);
	background: color-mix(in srgb, var(--e-global-color-primary, #0d6efd) 8%, #ffffff);
	color: var(--e-global-color-primary, #0d6efd);
}

.red-results-refinement-chip__icon {
	flex: 0 0 auto;
	width: 26px;
	color: #717169;
	font-size: 22px;
	text-align: center;
	line-height: 1;
}

.red-results-refinement-chip.is-active .red-results-refinement-chip__icon {
	color: currentColor;
}

.red-results-refinement-chip__body {
	display: grid;
	gap: 3px;
	min-width: 0;
	line-height: 1.15;
}

.red-results-refinement-chip__body strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	color: inherit;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.red-results-refinement-chip__body span {
	color: #717169;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.red-results-order {
	display: grid;
	gap: 6px;
	flex: 0 0 220px;
	width: 100%;
	min-width: 180px;
}

.red-results-order label {
	font-weight: 600;
}

.red-results-order select {
	width: 100%;
	min-height: 46px;
	border: 1px solid #dddddd;
	border-radius: 6px;
}

.red-property-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	transition: opacity .16s ease;
}

.red-results.is-refreshing .red-property-grid {
	opacity: .45;
	pointer-events: none;
}

.red-property-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 6px;
}

.red-property-template-card {
	min-width: 0;
}

.red-property-template-card[data-red-property-url] {
	cursor: pointer;
}

.red-listing-card,
.red-listing-card * {
	box-sizing: border-box;
}

.red-listing-card {
	width: 100%;
}

.red-listing-card__content,
.red-listing-card__top,
.red-listing-card__bottom,
.red-listing-card__price-stack,
.red-listing-card__address,
.red-listing-card__address-location,
.red-property-template-card .elementor-widget-red_property_field,
.red-property-template-card .elementor-widget-red_property_field .elementor-widget-container {
	min-width: 0;
}

.red-listing-card__top,
.red-listing-card__bottom {
	width: 100%;
}

.red-listing-card__cta {
	flex: 0 0 auto;
}

.red-listing-card__bottom > .red-listing-card__price-stack {
	flex: 1 1 auto !important;
}

.red-listing-card__bottom > .elementor-widget-red_property_button {
	flex: 0 0 auto !important;
}

.red-listing-card__address .red-property-field,
.red-listing-card__address .red-property-field-link,
.red-listing-card__address-location .red-property-field,
.red-listing-card__address-location .red-property-field-link,
.red-property-template-card .red-property-field--address_line_1,
.red-property-template-card .red-property-field--address_line_2 {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-property-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	border: 0;
	line-height: 1;
	white-space: nowrap;
}

.red-property-grid--template {
	grid-template-columns: 1fr;
	gap: 16px;
}

.e-loop-template-canvas:has(.red-listing-card) {
	align-items: flex-start;
	box-sizing: border-box;
	padding: 32px 24px;
}

.e-loop-template-canvas [data-elementor-type="loop-item"].e-loop-item:has(.red-listing-card) {
	--preview-width: min(1180px, calc(100vw - 48px));
}

.red-property-image,
.red-property-image a {
	display: block;
	width: 100%;
}

.red-property-image img,
.red-property-image__placeholder {
	display: block;
	width: 100%;
	background: #f0f0f1;
}

.red-property-gallery {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f0f0f1;
}

.red-property-gallery__viewport,
.red-property-gallery__track,
.red-property-gallery__slide {
	width: 100%;
	height: 100%;
}

.red-property-gallery__viewport {
	overflow: hidden;
}

.red-property-gallery__track {
	display: flex;
	transition: transform .24s ease;
	will-change: transform;
}

.red-property-gallery__slide {
	position: relative;
	display: block;
	flex: 0 0 100%;
	min-width: 100%;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.red-property-gallery__slide img,
.red-property-gallery__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #f0f0f1;
}

.red-property-gallery__summary::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .62);
	content: "";
}

.red-property-gallery__summary-content {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	text-align: center;
}

.red-property-gallery__summary-icon {
	font-size: 42px;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.red-property-gallery__summary-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.red-property-gallery__nav {
	position: absolute;
	z-index: 3;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	gap: 8px;
}

.red-property-gallery__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: #fff;
	color: #2a2a2f;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.red-property-gallery__button:hover,
.red-property-gallery__button:focus {
	color: #2a2a2f;
	background: #fff;
}

.red-property-gallery__button:disabled,
.red-property-gallery__button[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: .48;
	box-shadow: none;
}

.red-favorite-button-wrap {
	display: flex;
}

.red-favorite-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	color: #2a2a2f;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: border-color .16s ease, color .16s ease, background-color .16s ease;
}

.red-favorite-button:hover,
.red-favorite-button:focus {
	border-color: #2a2a2f;
	color: #2a2a2f;
	background: #fff;
}

.red-favorite-button.is-favorited {
	border-color: currentColor;
	color: var(--e-global-color-primary, #0d6efd);
}

.red-favorite-button__icon {
	line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
	.red-property-template-card .red-property-gallery__nav {
		opacity: 0;
		pointer-events: none;
		transform: translateY(4px);
		transition: opacity .16s ease, transform .16s ease;
	}

	.red-property-template-card:hover .red-property-gallery__nav,
	.red-property-template-card.is-gallery-hovered .red-property-gallery__nav,
	.red-property-template-card:focus-within .red-property-gallery__nav,
	.elementor-editor-active .red-property-gallery__nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
}

.red-elementor-empty {
	padding: 12px;
	border: 1px dashed #c3c4c7;
	color: #646970;
	font-size: 13px;
}

.red-property-card a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.red-property-card img,
.red-property-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f0f0f1;
}

.red-property-card__body {
	display: grid;
	gap: 6px;
	padding: 12px;
}

.red-property-card__body span {
	color: #646970;
}

.red-property-card__body b,
.red-price {
	color: #135e96;
}

.red-favorites-page__status {
	padding: 18px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	color: #646970;
}

.red-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.red-pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	text-decoration: none;
}

.red-pagination a.is-current {
	background: #1d2327;
	color: #fff;
}

.red-infinite-status {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 18px;
	color: #646970;
	font-size: 14px;
	text-align: center;
	min-height: 48px;
}

.red-infinite-status.is-error {
	color: #b32d2e;
}

.red-infinite-status[hidden] {
	display: none;
}

.red-infinite-status .spinner-grow {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	animation: red-spinner-grow .75s linear infinite;
}

.red-infinite-status .visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@keyframes red-spinner-grow {
	0% {
		transform: scale(0);
	}

	50% {
		opacity: 1;
		transform: none;
	}
}

.red-infinite-sentinel {
	width: 100%;
	height: 1px;
	margin-top: 1px;
}

.red-property-detail__header {
	margin-bottom: 20px;
}

.red-property-detail--property {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px 48px;
	color: #2a2a2f;
}

.red-property-detail__nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0 0 22px;
	padding: 14px 0;
	border-bottom: 1px solid #e5e7eb;
	overflow-x: auto;
	scrollbar-width: none;
}

.red-property-detail__nav::-webkit-scrollbar {
	display: none;
}

.red-property-detail__nav a,
.red-property-detail__nav button {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #717169;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.red-property-detail__nav a:first-child {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-detail__nav a:first-child::after {
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	height: 3px;
	background: var(--e-global-color-primary, #0d6efd);
	content: "";
}

.red-property-detail__nav button:hover,
.red-property-detail__nav button:focus-visible,
.red-property-detail__nav a:hover,
.red-property-detail__nav a:focus-visible {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-hero-gallery {
	margin: 0 0 28px;
}

.red-property-hero-gallery__mosaic {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2px;
	height: clamp(360px, 36vw, 520px);
	background: #fff;
}

.red-property-hero-gallery--single .red-property-hero-gallery__mosaic {
	display: block;
}

.red-property-hero-gallery__tile {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	background: #f4f5f7;
	color: inherit;
	cursor: pointer;
}

.red-property-hero-gallery__side {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 2px;
	min-width: 0;
	min-height: 0;
}

.red-property-hero-gallery__tile img,
.red-property-hero-gallery__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.red-property-hero-gallery__tile::after {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	content: "";
	transition: background .2s ease;
}

.red-property-hero-gallery__tile:hover::after,
.red-property-hero-gallery__tile:focus-visible::after {
	background: rgba(0, 0, 0, .08);
}

.red-property-hero-gallery__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	background: #f4f5f7;
	color: #9ca3af;
	font-size: 34px;
}

.red-property-hero-gallery__open-label {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 4px;
	background: #fff;
	color: #2a2a2f;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
}

.red-property-hero-gallery__open-label--mobile {
	display: none;
}

.red-property-hero-gallery--single .red-property-hero-gallery__open-label--mobile {
	display: inline-flex;
}

.red-detail-gallery-modal {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	background: #000000;
}

.red-detail-gallery-modal[hidden] {
	display: none;
}

.red-detail-gallery-modal__content {
	position: relative;
	width: 100vw;
	height: 100dvh;
	display: grid;
	grid-template-rows: 58px minmax(0, 1fr) auto;
	gap: 0;
}

.red-detail-gallery-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
	padding: 0 24px;
	background: #000000;
	color: #fff;
}

.red-detail-gallery-modal__counter {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

.red-detail-gallery-modal .red-detail-gallery__main {
	width: 100%;
	height: 100%;
	border-radius: 0;
	background: #000000;
}

.red-detail-gallery-modal .red-detail-gallery__main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: auto;
	background: #000000;
}

.red-detail-gallery-modal .red-detail-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.red-detail-gallery-modal .red-detail-gallery__thumbs {
	max-width: 100%;
	margin: 0;
	padding: 16px 0 20px 8px;
}

.red-detail-gallery-modal .red-detail-gallery__thumbs .swiper-slide {
	width: 118px;
	aspect-ratio: 4 / 3;
	border: 2px solid #fff;
	background: #000000;
}

.red-detail-gallery-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	background: #000000;
	color: #fff;
	cursor: pointer;
}

.red-detail-media-modal {
	position: fixed;
	z-index: 100001;
	inset: 0;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	margin: 0;
	padding: 0;
	background: #000000;
}

.red-detail-media-modal[hidden] {
	display: none;
}

.red-detail-media-modal__content {
	position: relative;
	width: 100vw;
	height: 100dvh;
	display: grid;
	grid-template-rows: 58px minmax(0, 1fr);
	gap: 0;
	background: #000000;
}

.red-detail-media-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
	padding: 0 24px;
	background: #000000;
	color: #ffffff;
}

.red-detail-media-modal__title {
	min-width: 0;
	margin: 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.red-detail-media-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	background: #000000;
	color: #fff;
	cursor: pointer;
}

.red-detail-media-modal__body {
	min-width: 0;
	min-height: 0;
	background: #000000;
}

.red-detail-media-modal__frame {
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	background: #000000;
}

.red-detail-media-modal__body iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000000;
}

.red-detail-media-modal__body iframe[hidden] {
	display: none;
}

.red-detail-gallery-modal-open,
.red-detail-gallery-modal-open body,
.red-detail-media-modal-open,
.red-detail-media-modal-open body {
	overflow: hidden;
}

.red-property-detail__body--property {
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 32px;
}

.red-property-detail__main {
	min-width: 0;
}

.red-property-detail__sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
	max-height: calc(100dvh - 48px);
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;
}

.red-property-detail__sidebar::-webkit-scrollbar {
	display: none;
}

.red-property-detail--property .red-property-detail__header {
	margin-bottom: 20px;
}

.red-property-detail--property .red-property-detail__header h1 {
	max-width: 820px;
	margin: 0 0 14px;
	color: #2a2a2f;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.08;
	letter-spacing: 0;
}

.red-property-detail__address {
	display: grid;
	gap: 4px;
	color: #2a2a2f;
	font-size: 16px;
	line-height: 1.45;
}

.red-property-detail__address span {
	color: #717169;
}

.red-property-highlights {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 28px;
}

.red-property-highlight {
	display: grid;
	gap: 6px;
	align-content: center;
	min-height: 104px;
	padding: 16px;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #fff;
	color: #717169;
}

.red-property-highlight__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #717169;
	font-size: 20px;
}

.red-property-highlight strong {
	color: #2a2a2f;
	font-size: 20px;
	line-height: 1;
}

.red-property-highlight span:last-child {
	font-size: 13px;
	font-weight: 600;
}

.red-detail-section {
	padding: 28px 0;
	border-top: 1px solid #dddddd;
}

.red-detail-section h2 {
	margin: 0 0 18px;
	color: #2a2a2f;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0;
}

.red-detail-section--description {
	padding-bottom: 28px;
}

.red-property-description {
	display: grid;
	gap: 16px;
	color: #111827;
}

.red-property-description__badge {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 28px;
	padding: 5px 14px;
	border-radius: 999px;
	background: #f4f5f7;
	color: #2a2a2f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.red-property-description__badge span:first-child {
	font-size: 13px;
}

.red-property-description__title {
	max-width: 820px;
	margin: 0;
	color: #111827;
	font-size: 28px;
	line-height: 1.28;
	letter-spacing: 0;
}

.red-property-description__subtitle {
	margin: 0;
	color: #111827;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0;
}

.red-property-description__meta {
	margin: 0;
	color: #111827;
	font-size: 16px;
	line-height: 1.55;
}

.red-description {
	max-width: 860px;
	color: #111827;
	font-size: 16px;
	line-height: 1.55;
}

.red-description p {
	margin: 0 0 18px;
}

.red-description p:last-child {
	margin-bottom: 0;
}

.red-property-description__condominium {
	display: grid;
	gap: 14px;
	max-width: 860px;
	margin-top: 2px;
	padding-top: 18px;
	border-top: 1px solid #dddddd;
	color: #111827;
	font-size: 16px;
	line-height: 1.55;
}

.red-property-description__condominium p {
	margin: 0;
}

.red-property-description__condominium a:not(.red-property-description__condominium-button) {
	color: var(--e-global-color-primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.red-property-description__condominium-button {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--e-global-color-primary);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.red-property-description__condominium-button:hover,
.red-property-description__condominium-button:focus {
	color: #ffffff;
	text-decoration: none;
}

.red-detail-section--amenities {
	padding-top: 28px;
}

.red-detail-section--amenities .red-property-amenities {
	margin-top: 0;
}

.red-property-side-stack {
	display: grid;
	gap: 12px;
}

.red-property-side-card,
.red-property-side-summary {
	display: grid;
	gap: 18px;
	box-sizing: border-box;
	width: 100%;
	padding: 30px 36px;
	border: 1px solid #dddddd;
	border-radius: 12px;
	background: #fff;
	box-shadow: none;
}

.red-property-side-summary {
	padding: 22px 24px;
}

.red-property-costs {
	display: grid;
	gap: 13px;
	width: 100%;
	color: #5f6368;
	font-size: 16px;
	line-height: 1.2;
}

.red-property-costs [hidden] {
	display: none !important;
}

.red-property-costs__operation-toggle {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 0;
	margin-bottom: 4px;
	border-bottom: 1px solid #dddddd;
}

.red-property-costs__operation {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 6px 10px 14px;
	border: 0;
	background: transparent;
	color: #717169;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color .16s ease, color .16s ease;
}

.red-property-costs__operation.is-active {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-costs__operation.is-active::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--e-global-color-primary, #0d6efd);
	content: "";
}

.red-property-costs__operation:hover:not(.is-active),
.red-property-costs__operation:focus-visible:not(.is-active) {
	color: #2a2a2f;
}

.red-property-costs__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.red-property-costs__row > strong {
	color: #2a2a2f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
}

.red-property-costs__value {
	white-space: nowrap;
}

.red-property-costs__row--primary {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	margin-bottom: 2px;
}

.red-property-costs__row--primary .red-property-costs__label {
	font-weight: 800;
}

.red-property-costs__row--primary > strong {
	color: #2a2a2f;
	font-size: 32px;
	line-height: 1.1;
}

.red-property-costs__previous-price {
	width: max-content;
	color: #2a2a2f;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: currentColor;
	white-space: nowrap;
}

.red-property-costs__current-price--promo {
	color: var(--e-global-color-primary, #0d6efd) !important;
}

.red-property-costs__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	color: #5f6368;
}

.red-property-costs__hint {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #717169;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
}

.red-property-costs__hint:hover,
.red-property-costs__hint:focus-visible {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-costs__divider {
	height: 1px;
	margin: 4px 0 0;
	background: #dddddd;
}

.red-property-costs__row--total {
	padding-top: 2px;
}

.red-property-costs__row--total strong {
	color: #111827;
	font-size: 20px;
}

.red-property-costs__row--total > strong:first-child {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.red-property-detail__actions {
	display: flex;
	gap: 8px;
}

.red-property-detail__icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #fff;
	color: #717169;
	font-size: 18px;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.red-property-detail__icon-button:hover,
.red-property-detail__icon-button:focus {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-property-detail__icon-button.is-favorited {
	border-color: var(--e-global-color-primary, #0d6efd);
	background: rgba(13, 110, 253, .08);
	color: var(--e-global-color-primary, #0d6efd);
}

.red-cost-info-modal {
	position: fixed;
	z-index: 100002;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .56);
}

.red-cost-info-modal[hidden] {
	display: none;
}

.red-cost-info-modal__dialog {
	box-sizing: border-box;
	width: min(100%, 460px);
	padding: 24px;
	border-radius: 12px;
	background: #ffffff;
	color: #2a2a2f;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.red-cost-info-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.red-cost-info-modal__header h2 {
	margin: 0;
	color: #2a2a2f;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

.red-cost-info-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #ffffff;
	color: #2a2a2f;
	cursor: pointer;
}

.red-cost-info-modal__dialog p {
	margin: 0;
	color: #5f6368;
	font-size: 15px;
	line-height: 1.55;
}

.red-cost-info-modal-open,
.red-cost-info-modal-open body {
	overflow: hidden;
}

.red-property-detail__icon-button.is-copied {
	border-color: var(--e-global-color-primary, #0d6efd);
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-lead-box {
	display: grid;
	gap: 12px;
}

.red-property-lead-box h2 {
	margin: 0 0 8px;
	color: #2a2a2f;
	font-size: 20px;
	line-height: 1.2;
}

.red-property-lead-box__tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-bottom: 4px;
	border-bottom: 1px solid #dddddd;
}

.red-property-lead-box__tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 6px 10px 14px;
	border: 0;
	background: transparent;
	color: #717169;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.red-property-lead-box__tab.is-active {
	color: var(--e-global-color-primary, #0d6efd);
}

.red-property-lead-box__tab.is-active::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--e-global-color-primary, #0d6efd);
	content: "";
}

.red-property-lead-box form {
	display: grid;
	gap: 8px;
}

.red-property-lead-box__control {
	position: relative;
	display: block;
	margin: 0;
}

.red-property-lead-box__control > span {
	position: absolute;
	top: 50%;
	left: 18px;
	z-index: 1;
	transform: translateY(-50%);
	color: #8e8e8e;
	font-size: 14px;
}

.red-property-lead-box input {
	box-sizing: border-box;
	width: 100%;
	height: 46px;
	min-height: 46px;
	padding: 0 16px 0 48px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #f4f5f7;
	color: #2a2a2f;
	font-size: 15px;
	font-weight: 600;
}

.red-property-lead-box input::placeholder,
.red-property-lead-box textarea::placeholder {
	color: #8e8e8e;
	opacity: 1;
}

.red-property-lead-box__message {
	display: grid;
	gap: 6px;
	margin: 0;
	color: #717169;
	font-size: 14px;
	font-weight: 700;
}

.red-property-lead-box textarea {
	box-sizing: border-box;
	width: 100%;
	height: 78px;
	min-height: 78px;
	max-height: 120px;
	padding: 14px 16px;
	border: 1px solid #717169;
	border-radius: 6px;
	background: #fff;
	color: #2a2a2f;
	font-size: 15px;
	line-height: 1.45;
	resize: vertical;
}

.red-property-lead-box__counter {
	justify-self: end;
	margin-top: -4px;
	color: #717169;
	font-size: 13px;
	font-weight: 700;
}

.red-property-lead-box .red-button {
	box-sizing: border-box;
	width: 100%;
	min-height: 48px;
	margin-top: 6px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 800;
}

.red-property-lead-box__terms {
	margin: 10px 0 0;
	padding: 0 18px;
	color: #717169;
	text-align: center;
	font-size: 13px;
	line-height: 1.45;
}

.red-property-lead-box__terms a {
	color: #717169;
	font-weight: 800;
	text-decoration: underline;
}

.red-property-lead-box__quick-actions {
	display: grid;
	gap: 18px;
	padding-top: 4px;
}

.red-property-lead-box__whatsapp {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 50px;
	padding: 10px 16px;
	border-radius: 0;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.red-property-lead-box__or {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	color: #717169;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.red-property-lead-box__or::before,
.red-property-lead-box__or::after {
	height: 1px;
	background: #dddddd;
	content: "";
}

.red-property-lead-box__whatsapp {
	border: 1px solid #35bd4b;
	background: #35bd4b;
	color: #fff;
}

.red-property-advertiser-card {
	gap: 20px;
	padding-top: 38px;
	padding-bottom: 34px;
}

.red-property-advertiser-card__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
}

.red-property-advertiser-card__body > div {
	display: grid;
	gap: 4px;
}

.red-property-advertiser-card__label {
	color: #717169;
	font-size: 13px;
	font-weight: 800;
}

.red-property-advertiser-card strong {
	color: #111827;
	font-size: 18px;
	line-height: 1.25;
}

.red-property-advertiser-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background: #fff;
	color: var(--e-global-color-primary, #0d6efd);
	object-fit: contain;
	font-size: 14px;
	font-weight: 800;
}

.red-property-advertiser-card__meta {
	display: grid;
	gap: 8px;
	color: #717169;
	font-size: 15px;
}

.red-property-advertiser-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.red-property-advertiser-card__meta .fa-shield-alt {
	color: #098a20;
}

.red-property-advertiser-card__meta strong {
	justify-self: start;
	border-bottom: 1px solid currentColor;
	font-size: 15px;
}

.red-eyebrow {
	margin: 0 0 4px;
	color: #646970;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.red-detail-gallery {
	margin-bottom: 0;
}

.red-detail-gallery__main {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #f6f7f7;
}

.red-detail-gallery__main .swiper-slide {
	aspect-ratio: 16 / 9;
	background: #f6f7f7;
}

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

.red-detail-gallery__button {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: #fff;
	color: #2a2a2f;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
	cursor: pointer;
	transform: translateY(-50%);
}

.red-detail-gallery__button--prev {
	left: 18px;
}

.red-detail-gallery__button--next {
	right: 18px;
}

.red-detail-gallery__button.swiper-button-disabled {
	opacity: .45;
	cursor: default;
}

.red-detail-gallery__thumbs {
	margin-top: 10px;
	overflow: hidden;
}

.red-detail-gallery__thumbs .swiper-slide {
	width: 116px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 6px;
	opacity: .58;
	cursor: pointer;
	transition: opacity .2s ease, border-color .2s ease;
}

.red-detail-gallery__thumbs .swiper-slide-thumb-active {
	border: 2px solid var(--e-global-color-primary) !important;
	opacity: 1;
}

.red-property-detail__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
}

.red-property-detail__body.red-property-detail__body--property {
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 32px;
}

.red-property-similar {
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid #dddddd;
}

.red-property-similar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
}

.red-property-similar__header h2 {
	margin: 0;
	color: #2a2a2f;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0;
}

.red-property-similar__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.red-property-similar__controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #fff;
	color: #2a2a2f;
	cursor: pointer;
	transition: border-color .16s ease, color .16s ease, opacity .16s ease;
}

.red-property-similar__controls button:hover:not(:disabled),
.red-property-similar__controls button:focus-visible:not(:disabled) {
	border-color: #2a2a2f;
	color: #2a2a2f;
}

.red-property-similar__controls button:disabled {
	opacity: .38;
	cursor: default;
}

.red-property-similar__viewport {
	position: relative;
	margin: 0 -2px;
	overflow: hidden;
}

.red-property-similar__track {
	display: flex;
	gap: 16px;
	min-width: 0;
	padding: 2px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.red-property-similar__track::-webkit-scrollbar {
	display: none;
}

.red-property-similar__item {
	flex: 0 0 min(620px, calc(100vw - 48px));
	min-width: 0;
	scroll-snap-align: start;
}

.red-property-similar__item > .red-property-template-card,
.red-property-similar__item > .red-property-card {
	height: 100%;
}

.red-condominium-units {
	margin-top: 32px;
}

.red-condominium-units__header {
	margin-bottom: 16px;
}

.red-condominium-units__header h2,
.red-condominium-units__header p {
	margin: 0;
}

.red-condominium-units__header p {
	margin-top: 4px;
	color: #646970;
}

.red-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(100px, 1fr));
	gap: 10px;
	margin: 0 0 20px;
}

.red-features div {
	padding: 10px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 4px;
}

.red-features dt {
	color: #646970;
	font-size: 12px;
}

.red-features dd {
	margin: 3px 0 0;
	font-weight: 700;
}

.red-property-amenities {
	display: grid;
	gap: 34px;
	margin-top: 28px;
}

.red-property-amenities__group h3 {
	margin: 0 0 14px;
	color: #2a2a2f;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: 0;
}

.red-property-amenities__group ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 42px;
	row-gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.red-property-amenities__group li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	color: #111827;
	font-size: 15px;
	line-height: 1.35;
}

.red-property-amenities__check {
	flex: 0 0 auto;
	margin-top: 3px;
	color: #159a2f;
	font-size: 13px;
	line-height: 1;
}

.red-contact-box {
	padding: 16px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 6px;
}

.red-contact-box form,
.red-contact-box label {
	display: grid;
	gap: 8px;
}

.red-contact-box form {
	gap: 12px;
}

.red-property-json {
	margin-top: 28px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
}

.red-property-json summary {
	padding: 14px 16px;
	border-bottom: 1px solid #dcdcde;
	font-weight: 700;
	cursor: pointer;
}

.red-property-json pre {
	max-height: 640px;
	margin: 0;
	padding: 16px;
	overflow: auto;
	background: #111827;
	color: #e5e7eb;
	font-size: 13px;
	line-height: 1.55;
	white-space: pre;
}

.red-property-json code {
	font-family: Consolas, Monaco, monospace;
}

@media (max-width: 1439px) {
	.red-results-layout--map {
		--red-results-content-width: min(var(--red-results-max-width), 50%);
		grid-template-columns:
			minmax(0, 1fr)
			minmax(0, var(--red-filter-content-width))
			var(--red-results-layout-gap)
			minmax(0, var(--red-results-content-width))
			minmax(0, 1fr);
	}

	.red-results-layout--map .red-results-layout__filters {
		grid-column: 2 / 3;
	}

	.red-results-layout--map .red-results {
		grid-column: 4 / 5;
	}

	.red-results-layout--map .red-results-map {
		display: none;
	}
}

@media (max-width: 1000px) {
	.red-results-layout {
		display: block;
		height: auto;
		overflow: visible;
	}

	.red-results-layout__filters {
		position: fixed;
		z-index: 99999;
		inset: 0;
		display: none;
		width: 100%;
		height: 100dvh;
		max-height: none;
		padding: 0;
		background: #fff;
		overflow-y: auto;
		scrollbar-gutter: auto;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters {
		display: block;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters::after {
		position: fixed;
		z-index: 49;
		right: 0;
		bottom: 0;
		left: 0;
		height: calc(144px + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid #dddddd;
		background: #ffffff;
		box-shadow: 0 -10px 24px rgba(15, 23, 42, .08);
		pointer-events: none;
		content: "";
	}

	.red-results-layout.is-filter-open .red-results-layout__filters.is-type-panel-open::after {
		display: none;
	}

	.red-results-filter-modal__header {
		position: sticky;
		z-index: 60;
		top: 0;
		display: grid;
		grid-template-columns: 36px minmax(0, 1fr) auto;
		align-items: center;
		gap: 10px;
		min-height: 50px;
		padding: 4px 24px;
		background: #fff;
		border-bottom: 1px solid #dddddd;
		color: #2a2a2f;
	}

	.red-results-filter-modal__header strong {
		grid-column: 2;
		justify-self: center;
		font-size: 16px;
		line-height: 1.2;
	}

	.red-results-filter-modal__close {
		grid-column: 1;
		width: 36px;
		height: 36px;
		border: 0;
		background: transparent;
		color: var(--e-global-color-primary, #0d6efd);
		font-size: 18px;
	}

	.red-results-filter-modal__clear {
		grid-column: 3;
		display: inline-flex;
		align-items: center;
		gap: 7px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--e-global-color-primary, #0d6efd);
		font: inherit;
		font-size: 14px;
		font-weight: 500;
		line-height: 1;
		text-decoration: none;
		cursor: pointer;
	}

	.red-results-filter-modal__clear:hover,
	.red-results-filter-modal__clear:focus,
	.red-results-filter-modal__close:hover,
	.red-results-filter-modal__close:focus {
		background: transparent;
		color: var(--e-global-color-primary, #0d6efd);
	}

	.red-results-filter-modal__clear:hover,
	.red-results-filter-modal__clear:focus {
		text-decoration: underline;
	}

	.red-results-filter-modal__clear:disabled,
	.red-results-filter-modal__clear[aria-disabled="true"] {
		color: #a7aaad;
		cursor: default;
		text-decoration: none;
	}

	.red-results-layout__filters .red-active-filters__top {
		display: none;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters .red-active-filters {
		position: fixed;
		z-index: 50;
		right: 24px;
		bottom: 0;
		left: 24px;
		display: grid;
		gap: 12px;
		width: auto;
		max-width: none;
		padding: 0px 0px calc(16px + env(safe-area-inset-bottom, 0px));
		background: #ffffff;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters.is-type-panel-open .red-active-filters {
		display: none;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters .red-active-filters__panel {
		position: static;
		z-index: auto;
		width: 100%;
		max-width: none;
		max-height: min(42dvh, 360px);
		margin: 0;
		overflow-y: auto;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters .red-active-filters__apply {
		position: static;
		z-index: auto;
		display: inline-flex;
		width: 100%;
		min-height: 52px;
		border-radius: 6px;
		background: #1d2327;
		border-color: #1d2327;
		color: #ffffff;
	}

	.red-results-layout.is-filter-open .red-results-layout__filters .red-active-filters__apply:hover,
	.red-results-layout.is-filter-open .red-results-layout__filters .red-active-filters__apply:focus {
		background: #1d2327;
		border-color: #1d2327;
		color: #ffffff;
	}

	.red-results-layout__filters .red-multiselect__panel,
	.red-results-layout__filters .red-location-combo__panel {
		z-index: 10;
	}

	.red-results-layout__filters .red-search-form {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 24px 24px calc(160px + env(safe-area-inset-bottom, 0px));
		border: 0;
		border-radius: 0;
	}

	.red-results {
		max-width: none;
		height: auto;
		padding: 0 var(--red-page-x-padding, 16px) var(--red-page-y-padding, 32px);
		overflow: visible;
		scrollbar-gutter: auto;
	}

	.red-results__header {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"actions"
			"rail";
		gap: 14px;
	}

	.red-results__actions {
		grid-area: actions;
		align-self: stretch;
		align-items: stretch;
		justify-content: space-between;
		width: 100%;
	}

	.red-results-refinements__intro {
		grid-area: intro;
	}

	.red-results-refinements__rail-wrap {
		grid-area: rail;
	}

	.red-results__summary p {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.red-results-order {
		flex: 1 1 auto;
		min-width: 0;
	}

	.red-results-refinements__rail-wrap {
		max-width: calc(100vw - (var(--red-page-x-padding, 16px) * 2));
	}

	.red-results-refinement-chip {
		min-width: 118px;
		padding-right: 14px;
		padding-left: 14px;
	}

	.red-results-filter-toggle {
		display: inline-flex;
	}
}

@media (max-width: 900px) {
	.red-search-form:not(.red-search-form--elementor),
	.red-results-layout,
	.red-property-grid,
	.red-property-detail__body {
		grid-template-columns: 1fr;
	}

	.red-search-form__field--range {
		grid-column: auto;
	}

	.red-property-hero-gallery__mosaic {
		display: block;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.red-property-hero-gallery__side {
		display: none;
	}

	.red-property-hero-gallery__open-label--mobile {
		display: inline-flex;
	}

	.red-property-detail__sidebar {
		position: static;
		max-height: none;
		overflow: visible;
	}

	.red-property-highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.red-results__header {
		align-items: flex-start;
	}

	.red-results__actions {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
	}

	.red-results-filter-toggle {
		width: 100%;
	}

	.red-results-order {
		width: 100%;
	}

	.red-features {
		grid-template-columns: 1fr;
	}

	.red-property-amenities__group ul {
		grid-template-columns: 1fr;
	}

	.red-property-hero-gallery {
		margin-right: -12px;
		margin-left: -12px;
	}

	.red-property-hero-gallery__open-label {
		right: 12px;
		bottom: 12px;
		min-height: 40px;
		padding: 9px 14px;
		font-size: 13px;
	}

	.red-detail-gallery__button {
		width: 38px;
		height: 38px;
	}

	.red-detail-gallery__button--prev {
		left: 10px;
	}

	.red-detail-gallery__button--next {
		right: 10px;
	}

	.red-detail-gallery__thumbs .swiper-slide {
		width: 88px;
	}

	.red-detail-gallery-modal {
		align-items: stretch;
		padding: 0;
	}

	.red-detail-gallery-modal__content {
		height: 100%;
		gap: 0;
	}

	.red-detail-gallery-modal .red-detail-gallery__main {
		min-height: 0;
	}

	.red-property-detail--property {
		padding-right: 12px;
		padding-left: 12px;
	}

	.red-property-detail__nav {
		gap: 18px;
	}

	.red-property-highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.red-property-highlight {
		min-height: 92px;
		padding: 14px;
	}

	.red-property-side-card {
		padding: 18px;
	}

	.red-property-side-card .red-price {
		font-size: 28px;
	}

	.red-property-similar {
		margin-top: 32px;
		padding-top: 24px;
	}

	.red-property-similar__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.red-property-similar__controls {
		align-self: flex-end;
	}

	.red-property-similar__item {
		flex-basis: min(88vw, 420px);
	}
}

@media (max-width: 1024px) {
	.red-broker-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.red-brokers-page__header {
		flex-direction: column;
	}

	.red-brokers-page__header h1 {
		font-size: 30px;
	}

	.red-broker-grid {
		grid-template-columns: 1fr;
	}

	.red-broker-card {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 14px;
		padding: 14px;
	}

	.red-broker-card__body h2 {
		font-size: 20px;
	}
}
