.mod-rentulator {
  --rt-bg: #f8fafc;
  --rt-panel: #ffffff;
  --rt-border: #dbe4f0;
  --rt-text: #0f172a;
  --rt-muted: #475569;
  --rt-primary: #1d4ed8;
  --rt-primary-soft: #dbeafe;
  --rt-accent: #f97316;
  --rt-success: #16a34a;
  --rt-results-toolbar-bg: var(--rt-panel);
  color: var(--rt-text);
  font-family: Arial, Helvetica, sans-serif;
}

.mod-rentulator *,
.mod-rentulator *::before,
.mod-rentulator *::after {
  box-sizing: border-box;
}

.mod-rentulator .rentulator-shell {
  display: grid;
  gap: 1rem;
  background: var(--rt-bg);
  border: 1px solid var(--rt-border);
  border-radius: 20px;
  padding: 1rem;
  width: min(100%, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  margin-inline: auto;
}

.mod-rentulator .rentulator-header,
.mod-rentulator .rentulator-panel,
.mod-rentulator .rentulator-results-layout,
.mod-rentulator .rentulator-map-col {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border);
  border-radius: 18px;
}

.mod-rentulator .rentulator-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  align-items: start;
  min-width: 0;
}

.mod-rentulator .rentulator-header--actions-only {
  justify-content: flex-end;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.mod-rentulator .rentulator-header--actions-only .rentulator-header-actions {
  margin-left: auto;
  width: 100%;
  justify-content: flex-end;
}

.mod-rentulator .rentulator-header--actions-only {
  display: none;
}

.mod-rentulator .rentulator-header > * {
  min-width: 0;
}

.mod-rentulator .rentulator-eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-primary);
}

.mod-rentulator .rentulator-title {
  margin: 0;
  font-size: 1.6rem;
}

.mod-rentulator .rentulator-subtitle {
  margin: 0.45rem 0 0;
  color: var(--rt-muted);
  max-width: 68ch;
}

.mod-rentulator .rentulator-header-actions,
.mod-rentulator .rentulator-toolbar,
.mod-rentulator .rentulator-status {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.mod-rentulator .rentulator-header-actions {
  justify-content: flex-end;
  min-width: 0;
}

.mod-rentulator .rentulator-status {
  padding: 0 0.25rem;
  justify-content: space-between;
}

.mod-rentulator .rentulator-status__count {
  font-weight: 700;
}

.mod-rentulator .rentulator-panel {
  padding: 1rem;
}

.mod-rentulator .rentulator-panel--results-toolbar {
  background: var(--rt-results-toolbar-bg);
}

.mod-rentulator .rentulator-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14px;
  padding: 0.1rem 0 0.2rem;
}

.mod-rentulator .rentulator-flow-arrow__line {
  display: none;
}

.mod-rentulator .rentulator-flow-arrow__tip {
  position: relative;
  display: block;
  width: clamp(44px, 6vw, 72px);
  height: 11px;
  background: #ef1b1b;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.18));
}

.mod-rentulator .rentulator-flow-arrow__tip::after {
  display: none;
}

.mod-rentulator .rentulator-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mod-rentulator .rentulator-panel__header h3,
.mod-rentulator .rentulator-panel__header p {
  margin: 0;
}


.mod-rentulator .rentulator-panel__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.mod-rentulator .rentulator-panel__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.mod-rentulator .rentulator-panel__actions--salary {
  flex-wrap: wrap;
  margin-left: auto;
}

.mod-rentulator .rentulator-start-here {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #dc2626;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.mod-rentulator .rentulator-start-here__text {
  line-height: 1;
}

.mod-rentulator .rentulator-start-here__arrow {
  position: relative;
  display: inline-block;
  width: 2.35rem;
  height: 0.24rem;
  background: #ef1b1b;
  border-radius: 999px;
  transform: translateY(1px);
}

.mod-rentulator .rentulator-start-here__arrow::after {
  content: '';
  position: absolute;
  right: -0.1rem;
  top: 50%;
  width: 0.95rem;
  height: 0.95rem;
  border-right: 0.28rem solid #ef1b1b;
  border-top: 0.28rem solid #ef1b1b;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 0 0.05rem 0 0;
}

.mod-rentulator .rentulator-grid {
  display: grid;
  gap: 0.9rem;
}

.mod-rentulator .rentulator-grid--basic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mod-rentulator .rentulator-grid--basic-bottom {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 0.9rem;
}

.mod-rentulator .rentulator-grid--advanced {
  grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
  margin-bottom: 1rem;
}

.mod-rentulator .rentulator-field {
  display: grid;
  gap: 0.35rem;
}

.mod-rentulator .rentulator-field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.mod-rentulator input,
.mod-rentulator select,
.mod-rentulator textarea,
.mod-rentulator button {
  font: inherit;
}

.mod-rentulator input,
.mod-rentulator select,
.mod-rentulator textarea {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--rt-border);
  border-radius: 12px;
  background: #fff;
}

.mod-rentulator input:focus,
.mod-rentulator select:focus,
.mod-rentulator textarea:focus {
  outline: 2px solid rgba(29, 78, 216, 0.18);
  border-color: var(--rt-primary);
}

.mod-rentulator .rentulator-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.mod-rentulator .rentulator-btn {
  border: 1px solid transparent;
  background: var(--rt-primary);
  color: #fff;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.mod-rentulator .rentulator-btn:hover {
  filter: brightness(0.97);
}

.mod-rentulator .rentulator-btn--ghost {
  background: #fff;
  color: var(--rt-text);
  border-color: var(--rt-border);
}

.mod-rentulator .rentulator-btn--small {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
}


.mod-rentulator .rentulator-btn--with-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mod-rentulator .rentulator-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--rt-primary-soft);
  color: var(--rt-primary);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.mod-rentulator .rentulator-btn__count[hidden] {
  display: none !important;
}
.mod-rentulator .rentulator-btn.is-active {
  background: var(--rt-primary-soft);
  color: var(--rt-primary);
  border-color: rgba(29, 78, 216, 0.22);
}

.mod-rentulator .rentulator-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mod-rentulator .rentulator-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  padding: 0.32rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.mod-rentulator .rentulator-chip--accent {
  background: #fff7ed;
  color: #9a3412;
}

.mod-rentulator .rentulator-place-list {
  display: grid;
  gap: 0.8rem;
}

.mod-rentulator .rentulator-place-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  align-items: end;
  padding: 0.9rem;
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  background: #f8fafc;
}

.mod-rentulator .rentulator-field--wide {
  grid-column: auto / span 1;
}

.mod-rentulator .rentulator-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.55rem;
}

.mod-rentulator .rentulator-check {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 62px;
  padding: 0.32rem 0.45rem;
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mod-rentulator .rentulator-check:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

.mod-rentulator .rentulator-check input {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
}

.mod-rentulator .rentulator-check__content {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
}

.mod-rentulator .rentulator-check__icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.mod-rentulator .rentulator-check__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.75rem;
}

.mod-rentulator .rentulator-check__text {
  min-width: 0;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.05;
  color: var(--rt-text);
}

.mod-rentulator .rentulator-check input:checked + .rentulator-check__content .rentulator-check__icon {
  transform: scale(1.03);
}

.mod-rentulator .rentulator-check input:checked + .rentulator-check__content .rentulator-check__text {
  color: #173072;
}

.mod-rentulator .rentulator-check--inline {
  align-self: center;
}

.mod-rentulator .rentulator-collapse {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0;
  list-style: none;
}

.mod-rentulator .rentulator-collapse::-webkit-details-marker {
  display: none;
}

.mod-rentulator .rentulator-collapse__icon {
  transition: transform 0.2s ease;
}

.mod-rentulator .rentulator-panel--advanced .rentulator-advanced-content {
  display: none;
  margin-top: 1rem;
}

.mod-rentulator .rentulator-panel--advanced[open] .rentulator-advanced-content,
.mod-rentulator .rentulator-panel--advanced.is-open .rentulator-advanced-content {
  display: block;
}

.mod-rentulator .rentulator-panel--advanced[open] .rentulator-collapse__icon,
.mod-rentulator .rentulator-panel--advanced.is-open .rentulator-collapse__icon {
  transform: rotate(180deg);
}

.mod-rentulator .rentulator-toolbar {
  justify-content: space-between;
}

.mod-rentulator .rentulator-toolbar--two-column {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: start;
}

.mod-rentulator .rentulator-toolbar__stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-toolbar__stack--left {
  align-items: flex-start;
  justify-self: start;
}

.mod-rentulator .rentulator-toolbar__stack--right {
  align-items: flex-end;
  justify-self: end;
}

.mod-rentulator .rentulator-toolbar__stack--right .rentulator-field--inline,
.mod-rentulator .rentulator-toolbar__stack--right .rentulator-toolbar__toggles {
  justify-content: flex-end;
}




.mod-rentulator .rentulator-toolbar__step-label {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--rentulator-text, #0a1f44);
}

.mod-rentulator .rentulator-toolbar__primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.mod-rentulator .rentulator-toolbar__result-count {
  min-width: max-content;
  margin-inline-end: 0.25rem;
}

.mod-rentulator .rentulator-field--inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-field--inline label {
  min-width: max-content;
}

.mod-rentulator .rentulator-field--inline select {
  min-width: 140px;
}

.mod-rentulator .rentulator-toolbar__toggles {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}


.mod-rentulator .rentulator-toolbar__toggles--results-view {
  align-items: center;
}

.mod-rentulator .rentulator-toolbar__label {
  font-weight: 700;
  color: var(--rt-muted);
  margin-inline-end: 0.15rem;
}

.mod-rentulator .rentulator-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.mod-rentulator .rentulator-workspace.is-list-only,
.mod-rentulator .rentulator-workspace.is-view-list {
  grid-template-columns: 1fr;
}

.mod-rentulator .rentulator-workspace.is-list-only .rentulator-map-col,
.mod-rentulator .rentulator-workspace.is-view-list .rentulator-map-col {
  display: none;
}

.mod-rentulator .rentulator-workspace.is-view-map {
  grid-template-columns: 1fr;
}

.mod-rentulator .rentulator-workspace.is-view-map .rentulator-main-col {
  display: none;
}

.mod-rentulator .rentulator-main-col {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
  order: 1;
}

.mod-rentulator .rentulator-results-layout {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  align-items: start;
}

.mod-rentulator .rentulator-results,
.mod-rentulator .rentulator-results-col {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.mod-rentulator .rentulator-map-col {
  align-self: start;
  position: sticky;
  top: 1rem;
  overflow: hidden;
  order: 2;
}


.mod-rentulator .rentulator-results.is-results-cards {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.mod-rentulator .rentulator-results.is-results-rows {
  grid-template-columns: 1fr;
}

.mod-rentulator .rentulator-results.is-results-icons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mod-rentulator .rentulator-card {
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mod-rentulator .rentulator-card:hover,
.mod-rentulator .rentulator-card.is-selected {
  border-color: rgba(29, 78, 216, 0.32);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}


.mod-rentulator .rentulator-results.is-results-rows .rentulator-card {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  grid-template-areas:
    'media head'
    'media meta'
    'media desc'
    'media actions';
  gap: 0.8rem 1rem;
  align-items: start;
}

.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__media {
  grid-area: media;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--rt-border);
}

.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__head { grid-area: head; }
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__meta { grid-area: meta; margin: 0; }
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__description,
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__distance,
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__reasons { grid-column: 2; }
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__actions { grid-area: actions; }

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card {
  grid-template-areas:
    'media head'
    'media meta'
    'media actions';
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__description {
  display: none;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card {
  position: relative;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #cbd5e1;
  min-height: 0;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.18) 38%, rgba(15, 23, 42, 0.84) 100%);
  pointer-events: none;
  z-index: 1;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border: 0;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 3.1rem;
  z-index: 2;
  display: block;
  color: #fff;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head h3 {
  font-size: 0.95rem !important;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.42);
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.94);
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row {
  position: absolute;
  top: 0.7rem;
  inset-inline-end: 0.7rem;
  margin-top: 0;
  z-index: 2;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score {
  display: inline-flex;
  background: rgba(219, 234, 254, 0.94);
  color: var(--rt-primary);
  border-radius: 999px;
  padding: 0.26rem 0.52rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__description,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__distance,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__reasons,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions {
  display: none;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__meta {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  gap: 0.28rem;
  z-index: 2;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__meta span {
  font-size: 0.72rem;
  padding: 0.22rem 0.42rem;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__flag {
  position: absolute;
  top: 0.7rem;
  inset-inline-end: 0.7rem;
  inset-inline-start: auto;
  margin: 0;
  z-index: 2;
  font-size: 0.7rem;
  padding: 0.28rem 0.56rem;
  backdrop-filter: blur(3px);
}


.mod-rentulator .rentulator-card__media {
  margin: -1rem -1rem 1rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #dbeafe 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--rt-border);
}

.mod-rentulator .rentulator-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mod-rentulator .rentulator-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.8rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  width: fit-content;
  max-width: 100%;
}

.mod-rentulator .rentulator-card__flag-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: currentColor;
}

.mod-rentulator .rentulator-card__flag.is-affordable-high {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.mod-rentulator .rentulator-card__flag.is-affordable-range {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
}

.mod-rentulator .rentulator-card__flag.is-affordable-perfect {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__flag {
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  padding: 0.35rem 0.62rem;
}

.mod-rentulator .rentulator-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.mod-rentulator .rentulator-card__head h3,
.mod-rentulator .rentulator-card__head p,
.mod-rentulator .rentulator-card__distance,
.mod-rentulator .rentulator-card__description {
  margin: 0;
}

.mod-rentulator .rentulator-card__head p {
  color: var(--rt-muted);
  margin-top: 0.25rem;
}

.mod-rentulator .rentulator-card__location {
  color: var(--rt-muted);
  margin-top: 0.3rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem;
}

.mod-rentulator .rentulator-card__location-separator {
  opacity: 0.72;
}

.mod-rentulator .rentulator-card__city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  white-space: nowrap;
}

.mod-rentulator .rentulator-card__city-name {
  line-height: 1.15;
}

.mod-rentulator .rentulator-card__city-emblem {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mod-rentulator .rentulator-card__city-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__location {
  margin-top: 0.22rem;
  font-size: 0.76rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__city-chip {
  padding: 0.12rem 0.34rem;
  gap: 0.26rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__city-emblem {
  width: 1.05rem;
  height: 1.05rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__location {
  color: rgba(255, 255, 255, 0.96);
  margin-top: 0.28rem;
  font-size: 0.76rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__city-chip {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.14rem 0.36rem;
  gap: 0.28rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__city-name {
  color: #fff;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__city-emblem {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 0.08rem;
}

.mod-rentulator .rentulator-card__head h3 {
  font-size: 1.05rem !important;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head h3 {
  font-size: 0.84rem !important;
  line-height: 1.16;
}

.mod-rentulator .rentulator-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-width: auto;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  border-radius: 10px;
  background: var(--rt-primary-soft);
  color: var(--rt-primary);
  padding: 0.3rem 0.6rem;
}

.mod-rentulator .rentulator-card__score span {
  display: inline;
  font-size: 0.72rem;
  line-height: 1;
}

.mod-rentulator .rentulator-card__score strong {
  font-size: 1rem;
  line-height: 1;
}

.mod-rentulator .rentulator-card__score-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.mod-rentulator .rentulator-card__score-row .rentulator-card__score {
  min-width: auto;
}

.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__score-row {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.mod-rentulator .rentulator-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 0.7rem;
}

.mod-rentulator .rentulator-card__meta span {
  display: inline-flex;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}

.mod-rentulator .rentulator-card__description {
  color: var(--rt-muted);
  line-height: 1.5;
}

.mod-rentulator .rentulator-card__distance {
  color: var(--rt-success);
  font-weight: 700;
  margin-top: 0.7rem;
}

.mod-rentulator .rentulator-card__reasons {
  margin: 0.8rem 0 0;
  padding-inline-start: 1.15rem;
  color: var(--rt-text);
}

.mod-rentulator .rentulator-card__reasons li + li {
  margin-top: 0.3rem;
}

.mod-rentulator .rentulator-card__actions {
  margin-top: 0.8rem;
}

.mod-rentulator .rentulator-map-col {
  min-width: 0;
}

.mod-rentulator .rentulator-map {
  width: 100%;
  height: min(calc(var(--rt-map-height, 540px) * 2), 86vh);
  min-height: 640px;
  max-height: 1200px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rt-border);
  background: #e2e8f0;
}

.mod-rentulator .rentulator-map-ad-slot {
  margin-top: 1px;
  min-height: auto;
  border: 1px dashed var(--rt-border);
  border-radius: 16px;
  background: #fff;
  padding: 1px;
  display: grid;
  align-items: start;
  overflow: hidden;
}

.mod-rentulator .rentulator-map-ad-code {
  width: 100%;
  min-width: 0;
}

.mod-rentulator .rentulator-map-ad-code script {
  max-width: 100%;
}


.mod-rentulator .rentulator-map-ad-image-wrap {
  width: 100%;
  min-width: 0;
}

.mod-rentulator .rentulator-map-ad-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.mod-rentulator .rentulator-map-ad-placeholder {
  min-height: auto;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--rt-muted);
  background: #f8fafc;
  border-radius: 12px;
  padding: 1px;
  font-weight: 700;
}

.mod-rentulator .rentulator-map__fallback,
.mod-rentulator .rentulator-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  text-align: center;
  border-radius: 16px;
  border: 1px dashed var(--rt-border);
  background: #fff;
  color: var(--rt-muted);
  padding: 1rem;
}

.mod-rentulator .leaflet-popup-content {
  margin: 0.8rem 0.9rem;
}

.mod-rentulator .rentulator-map__status {
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.mod-rentulator .rentulator-map__status.is-hidden {
  display: none;
}

.mod-rentulator .rentulator-map__status.is-error {
  background: rgba(127, 29, 29, 0.92);
}

.mod-rentulator .rentulator-map__status.is-hint {
  background: rgba(55, 65, 81, 0.88);
}

.mod-rentulator .rentulator-map .leaflet-control-layers {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.mod-rentulator .rentulator-bus-stop-marker-icon {
  background: transparent;
  border: 0;
}

.mod-rentulator .rentulator-bus-stop-marker {
  display: block;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.28));
}

.mod-rentulator .rentulator-bus-stop-marker.is-station {
  width: 24px;
  height: 24px;
}

.mod-rentulator .rentulator-bus-stop-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mod-rentulator .rentulator-shell,
.mod-rentulator .rentulator-main-col,
.mod-rentulator .rentulator-panel,
.mod-rentulator .rentulator-results-layout,
.mod-rentulator .rentulator-workspace,
.mod-rentulator .rentulator-place-list,
.mod-rentulator .rentulator-place-row {
  min-width: 0;
}

.mod-rentulator .rentulator-place-row > * {
  min-width: 0;
}

.mod-rentulator .rentulator-field--wide {
  grid-column: span 2;
}

@media (max-width: 1280px) {
  .mod-rentulator .rentulator-workspace {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 1199px) {
  .mod-rentulator .rentulator-place-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .mod-rentulator .rentulator-header,
  .mod-rentulator .rentulator-toolbar,
  .mod-rentulator .rentulator-panel__header {
    flex-direction: column;
    align-items: stretch;
  }

  
.mod-rentulator .rentulator-panel__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.mod-rentulator .rentulator-panel__actions {
    justify-content: space-between;
  }

  .mod-rentulator .rentulator-flow-arrow__tip {
    width: clamp(40px, 14vw, 64px);
  }

  .mod-rentulator .rentulator-toolbar--two-column {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-toolbar__stack--right {
    justify-self: stretch;
    align-items: stretch;
  }

  .mod-rentulator .rentulator-toolbar__stack--right .rentulator-field--inline,
  .mod-rentulator .rentulator-toolbar__stack--right .rentulator-toolbar__toggles {
    justify-content: flex-start;
  }

  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-map-col {
    position: static;
    top: auto;
  }

  .mod-rentulator .rentulator-map {
    height: min(calc(var(--rt-map-height, 540px) * 2), 62vh);
    min-height: 420px;
    max-height: 720px;
  }
}


@media (max-height: 820px) {
  .mod-rentulator .rentulator-map-col {
    position: static;
    top: auto;
  }

  .mod-rentulator .rentulator-map {
    height: min(calc(var(--rt-map-height, 540px) * 2), 68vh);
    min-height: 460px;
    max-height: 820px;
  }
}

@media (max-width: 640px) {
  .mod-rentulator .rentulator-shell {
    padding: 0.75rem;
  }

  .mod-rentulator .rentulator-panel,
  .mod-rentulator .rentulator-header,
  .mod-rentulator .rentulator-results-layout {
    padding: 0.85rem;
  }

  .mod-rentulator .rentulator-range,
  .mod-rentulator .rentulator-place-row,
  .mod-rentulator .rentulator-grid--basic,
  .mod-rentulator .rentulator-grid--advanced {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-grid--basic-bottom {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-card__head {
    flex-direction: column;
  }
}


.mod-rentulator .rentulator-panel--advanced-static .rentulator-advanced-content {
  display: block;
  margin-top: 1rem;
}

.mod-rentulator .rentulator-panel__header--static {
  padding-bottom: 0;
}

.mod-rentulator .rentulator-panel--advanced-static .rentulator-collapse,
.mod-rentulator .rentulator-panel--advanced-static .rentulator-collapse__icon {
  display: none;
}


.mod-rentulator .rentulator-card:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.mod-rentulator .rentulator-route-hint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--rt-text-soft);
}

.mod-rentulator .rentulator-route-hint strong {
  color: var(--rt-primary);
}


.mod-rentulator .rentulator-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}


.mod-rentulator .rentulator-modal[data-role="assetModal"] {
  z-index: 10000;
}

.mod-rentulator .rentulator-modal[data-role="favoritesModal"] {
  z-index: 10010;
}

.mod-rentulator .rentulator-modal[data-role="listingModal"] {
  z-index: 10020;
}

.mod-rentulator .rentulator-modal[data-role="photoModal"] {
  z-index: 10030;
}

.mod-rentulator .rentulator-modal[hidden] {
  display: none;
}

.mod-rentulator .rentulator-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.mod-rentulator .rentulator-modal__dialog {
  position: relative;
  width: min(720px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
}

.mod-rentulator .rentulator-modal__header,
.mod-rentulator .rentulator-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--rt-border);
}

.mod-rentulator .rentulator-modal__actions {
  border-bottom: 0;
  border-top: 1px solid var(--rt-border);
}

.mod-rentulator .rentulator-modal__actions--favorites {
  justify-content: flex-end;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-modal__actions--favorites .rentulator-btn {
  flex: 0 0 auto;
}

.mod-rentulator .rentulator-modal__header h3 {
  margin: 0;
}

.mod-rentulator .rentulator-modal__header p {
  margin: 0.2rem 0 0;
  color: var(--rt-text-soft);
}

.mod-rentulator .rentulator-modal__body {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.mod-rentulator .rentulator-grid--asset-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mod-rentulator .rentulator-field--span-2 {
  grid-column: span 2;
}

.mod-rentulator .rentulator-check-grid--asset-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mod-rentulator .rentulator-modal__note {
  margin: 0;
  color: var(--rt-text-soft);
  font-size: 0.92rem;
}


.mod-rentulator .rentulator-modal__dialog--details {
  width: min(860px, calc(100vw - 2rem));
}

.mod-rentulator .rentulator-modal__body--details {
  gap: 1.25rem;
}

.mod-rentulator .rentulator-detail-hero {
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
}

.mod-rentulator .rentulator-detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: zoom-in;
}


.mod-rentulator .rentulator-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mod-rentulator .rentulator-detail-gallery__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e8f0;
}

.mod-rentulator .rentulator-detail-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.mod-rentulator .rentulator-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mod-rentulator .rentulator-detail-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.mod-rentulator .rentulator-detail-header p {
  margin: 0.35rem 0 0;
  color: var(--rt-text-soft);
}

.mod-rentulator .rentulator-detail-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--rt-primary);
  white-space: nowrap;
}

.mod-rentulator .rentulator-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.mod-rentulator .rentulator-detail-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.3rem;
  min-height: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--rt-border);
  border-radius: 14px;
  background: #f8fafc;
  text-align: right;
}

.mod-rentulator .rentulator-detail-row dt {
  width: 100%;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rt-text-soft);
  line-height: 1.35;
}

.mod-rentulator .rentulator-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mod-rentulator .rentulator-contact-label__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--rt-text-soft);
  flex: 0 0 auto;
}

.mod-rentulator .rentulator-contact-label__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mod-rentulator .rentulator-contact-label__icon--whatsapp {
  color: #25d366;
}

.mod-rentulator .rentulator-contact-label__icon--email {
  color: #2563eb;
}

.mod-rentulator .rentulator-contact-label__icon--phone {
  color: #0f766e;
}

.mod-rentulator .rentulator-detail-row dd {
  width: 100%;
  margin: 0;
  font-weight: 700;
  color: var(--rt-text);
  line-height: 1.45;
}

.mod-rentulator .rentulator-detail-section {
  display: grid;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-detail-section--contact-toggle {
  align-items: flex-start;
}

.mod-rentulator .rentulator-contact-toggle {
  align-self: flex-start;
}

.mod-rentulator .rentulator-contact-details[hidden] {
  display: none !important;
}

.mod-rentulator .rentulator-contact-captcha[hidden] {
  display: none !important;
}

.mod-rentulator .rentulator-contact-captcha {
  display: grid;
  gap: 0.75rem;
  max-width: 24rem;
  padding: 0.9rem 1rem;
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  background: #eef2ff;
}

.mod-rentulator .rentulator-contact-captcha__prompt {
  margin: 0;
  font-weight: 700;
  color: var(--rt-text);
}

.mod-rentulator .rentulator-contact-captcha__form {
  display: grid;
  gap: 0.7rem;
}

.mod-rentulator .rentulator-contact-captcha__challenge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--rt-text);
}

.mod-rentulator .rentulator-contact-captcha__challenge {
  direction: ltr;
  unicode-bidi: isolate;
}

.mod-rentulator .rentulator-contact-captcha__controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mod-rentulator .rentulator-contact-captcha__input {
  min-width: 9rem;
  flex: 1 1 9rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--rt-border);
  border-radius: 10px;
  background: #fff;
  color: var(--rt-text);
}

.mod-rentulator .rentulator-contact-captcha__message {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b91c1c;
}

.mod-rentulator .rentulator-detail-section h4 {
  margin: 0;
  font-size: 0.95rem;
}

.mod-rentulator .rentulator-detail-section p {
  margin: 0;
  color: var(--rt-text);
  line-height: 1.6;
}

.mod-rentulator .rentulator-detail-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.55rem;
}

.mod-rentulator .rentulator-detail-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.32rem;
  min-height: 62px;
  padding: 0.32rem 0.45rem;
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  background: #fff;
  direction: rtl;
  text-align: right;
}

.mod-rentulator .rentulator-detail-badge__content {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
}

.mod-rentulator .rentulator-detail-badge__icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.mod-rentulator .rentulator-detail-badge__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.75rem;
}

.mod-rentulator .rentulator-detail-badge__text {
  min-width: 0;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.05;
  color: var(--rt-text);
}

@media (max-width: 720px) {
  .mod-rentulator .rentulator-detail-gallery {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-detail-header {
    flex-direction: column;
  }

  .mod-rentulator .rentulator-detail-grid {
    grid-template-columns: 1fr;
  }
}

body.has-rentulator-modal {
  overflow: hidden;
}

@media (max-width: 720px) {
  .mod-rentulator .rentulator-grid--asset-form {
    grid-template-columns: 1fr;
  }

  .mod-rentulator .rentulator-field--span-2 {
    grid-column: span 1;
  }

  .mod-rentulator .rentulator-modal__header,
  .mod-rentulator .rentulator-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }
}


.mod-rentulator .rentulator-modal__dialog--photo {
  width: min(1080px, calc(100vw - 2rem));
}

.mod-rentulator .rentulator-modal__body--photo {
  padding-top: 0.75rem;
}

.mod-rentulator .rentulator-photo-viewer {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.mod-rentulator .rentulator-photo-viewer__stage {
  position: relative;
}

.mod-rentulator .rentulator-photo-viewer img {
  display: block;
  width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  border-radius: 18px;
  background: #0f172a;
}

.mod-rentulator .rentulator-photo-viewer__nav {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(calc(-50% - 20px));
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.mod-rentulator .rentulator-photo-viewer__nav:hover {
  background: rgba(15, 23, 42, 0.92);
}

.mod-rentulator .rentulator-photo-viewer__nav:disabled,
.mod-rentulator .rentulator-photo-viewer__nav[hidden] {
  display: none;
}

.mod-rentulator .rentulator-photo-viewer__nav--prev {
  left: 1rem;
}

.mod-rentulator .rentulator-photo-viewer__nav--next {
  right: 1rem;
}

.mod-rentulator .rentulator-photo-viewer__caption {
  color: var(--rt-text-soft);
  text-align: center;
  font-size: 0.95rem;
}


.rentulator-asset-photos {
  display: grid;
  gap: 0.75rem;
}

.rentulator-asset-photos__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.rentulator-asset-photos__row input {
  min-width: 0;
}

.rentulator-asset-photos__actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-start;
}


.mod-rentulator .rentulator-field__hint {
  margin: 0.5rem 0 0;
  color: var(--rt-text-soft);
  font-size: 0.92rem;
}

.rentulator-asset-photos__empty {
  margin: 0;
  color: var(--rt-text-soft);
}

.rentulator-asset-photos__row {
  grid-template-columns: 5rem minmax(0, 1fr) auto;
  align-items: center;
}

.rentulator-asset-photos__thumb {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--rt-border);
  background: #f3f6fb;
}

.rentulator-asset-photos__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rentulator-asset-photos__meta {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.rentulator-asset-photos__meta strong,
.rentulator-asset-photos__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rentulator-asset-photos__meta span {
  color: var(--rt-text-soft);
  font-size: 0.9rem;
}

.rentulator-asset-photos__row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .rentulator-asset-photos__row {
    grid-template-columns: 1fr;
  }

  .rentulator-asset-photos__row-actions {
    justify-content: flex-start;
  }
}

.mod-rentulator .rentulator-grid--salary {
  gap: 0.75rem;
}

.mod-rentulator .rentulator-salary-list {
  display: grid;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-salary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.mod-rentulator .rentulator-salary-remove {
  white-space: nowrap;
}

.mod-rentulator .rentulator-salary-total {
  font-weight: 700;
  color: var(--rt-primary);
}

@media (max-width: 640px) {
  .mod-rentulator .rentulator-salary-row {
    grid-template-columns: 1fr;
  }
}

.mod-rentulator .rentulator-field.is-required label::after {
  content: ' *';
  color: #dc2626;
}

.mod-rentulator .rentulator-field.is-invalid label {
  color: #b91c1c;
}

.mod-rentulator .rentulator-field.is-invalid input,
.mod-rentulator .rentulator-field.is-invalid select,
.mod-rentulator .rentulator-field.is-invalid textarea {
  border-color: #dc2626;
  background: #fef2f2;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.08);
}


.rentulator-field--custom-checkbox .rentulator-checkbox-inline {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: #fff;
}

.rentulator-field--custom-checkbox .rentulator-checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.rentulator-field--custom-checkbox .rentulator-checkbox-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.rentulator-field--custom-checkbox .rentulator-checkbox-inline .rentulator-consent-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}

.rentulator-field--custom-checkbox .rentulator-checkbox-inline .rentulator-consent-link--static {
  color: inherit;
  text-decoration: underline;
}


.mod-rentulator .rentulator-light-rail-marker-icon {
  background: transparent;
  border: 0;
}

.mod-rentulator .rentulator-light-rail-marker {
  display: block;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.28));
}

.mod-rentulator .rentulator-light-rail-marker.is-interchange {
  width: 24px;
  height: 24px;
}

.mod-rentulator .rentulator-light-rail-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}


.mod-rentulator .rentulator-train-marker-icon {
  background: transparent;
  border: 0;
}

.mod-rentulator .rentulator-train-marker {
  display: block;
  width: 24px;
  height: 22px;
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.28));
}

.mod-rentulator .rentulator-train-marker.is-interchange {
  width: 28px;
  height: 26px;
}

.mod-rentulator .rentulator-train-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}


.mod-rentulator .rentulator-important-place-marker-icon {
  background: transparent;
  border: 0;
}

.mod-rentulator .rentulator-important-place-marker {
  display: inline-flex;
  width: 28px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.mod-rentulator .rentulator-important-place-marker svg {
  display: block;
  width: 28px;
  height: 42px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.22));
}


.mod-rentulator .rentulator-place-autocomplete {
  position: relative;
}

.mod-rentulator .rentulator-place-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  max-height: 260px;
  overflow-y: auto;
}

.mod-rentulator .rentulator-place-suggestions[hidden] {
  display: none;
}

.mod-rentulator .rentulator-place-suggestions__item {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: #f8fafc;
  text-align: right;
  cursor: pointer;
}

.mod-rentulator .rentulator-place-suggestions__item:hover,
.mod-rentulator .rentulator-place-suggestions__item:focus {
  background: #e9efff;
}

.mod-rentulator .rentulator-place-suggestions__item strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.mod-rentulator .rentulator-place-suggestions__item span {
  font-size: 0.82rem;
  color: #475569;
}

.mod-rentulator .rentulator-place-suggestions__empty {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 0.9rem;
  color: #475569;
}


/* RTL layout refinements for Hebrew UI */
.mod-rentulator {
  direction: rtl;
}

.mod-rentulator .rentulator-shell,
.mod-rentulator .rentulator-panel,
.mod-rentulator .rentulator-results-layout,
.mod-rentulator .rentulator-header,
.mod-rentulator .rentulator-status,
.mod-rentulator .rentulator-toolbar,
.mod-rentulator .rentulator-place-row,
.mod-rentulator .rentulator-card,
.mod-rentulator .rentulator-modal__dialog,
.mod-rentulator .rentulator-map-ad-slot {
  direction: rtl;
  text-align: right;
}

.mod-rentulator .rentulator-panel__title-wrap,
.mod-rentulator .rentulator-field,
.mod-rentulator .rentulator-field label,
.mod-rentulator .rentulator-field__hint,
.mod-rentulator .rentulator-check,
.mod-rentulator .rentulator-check__content,
.mod-rentulator .rentulator-check__text,
.mod-rentulator .rentulator-card__head,
.mod-rentulator .rentulator-card__meta,
.mod-rentulator .rentulator-card__description,
.mod-rentulator .rentulator-card__distance,
.mod-rentulator .rentulator-card__reasons,
.mod-rentulator .rentulator-card__actions,
.mod-rentulator .rentulator-chips,
.mod-rentulator .rentulator-chip,
.mod-rentulator .rentulator-status__count,
.mod-rentulator .rentulator-place-list,
.mod-rentulator .rentulator-map-ad-placeholder {
  text-align: right;
}

.mod-rentulator input,
.mod-rentulator select,
.mod-rentulator textarea,
.mod-rentulator option,
.mod-rentulator .rentulator-chip,
.mod-rentulator .rentulator-btn,
.mod-rentulator .rentulator-check {
  direction: rtl;
  text-align: right;
}

.mod-rentulator .rentulator-header-actions,
.mod-rentulator .rentulator-panel__actions,
.mod-rentulator .rentulator-panel__actions--salary,
.mod-rentulator .rentulator-toolbar__stack--left,
.mod-rentulator .rentulator-toolbar__stack--right {
  direction: rtl;
}

.mod-rentulator .rentulator-toolbar__stack--left,
.mod-rentulator .rentulator-toolbar__stack--right {
  align-items: flex-start;
}

.mod-rentulator .rentulator-toolbar__stack--right {
  justify-self: start;
}

.mod-rentulator .rentulator-panel__actions--salary {
  margin-left: 0;
  margin-right: auto;
}

.mod-rentulator .rentulator-check {
  justify-content: flex-start;
}

.mod-rentulator .rentulator-check input {
  order: 2;
}

.mod-rentulator .rentulator-check__content {
  order: 1;
}

.mod-rentulator .rentulator-card__meta,
.mod-rentulator .rentulator-card__head,
.mod-rentulator .rentulator-card__actions,
.mod-rentulator .rentulator-status {
  justify-content: flex-start;
}

.mod-rentulator .rentulator-card__reasons {
  padding-inline-start: 0;
  padding-inline-end: 1.15rem;
}

.mod-rentulator .rentulator-map,
.mod-rentulator .leaflet-container,
.mod-rentulator .leaflet-popup-content,
.mod-rentulator .leaflet-control-container {
  direction: ltr;
}

.mod-rentulator .leaflet-control-layers,
.mod-rentulator .leaflet-popup-content-wrapper {
  direction: rtl;
  text-align: right;
}


/* v1.10.56 tighter spacing for salary/basic/important places panels */
.mod-rentulator .rentulator-panel--salary,
.mod-rentulator .rentulator-panel--search,
.mod-rentulator .rentulator-panel--places {
  padding: 0.75rem;
}

.mod-rentulator .rentulator-panel--salary .rentulator-panel__header,
.mod-rentulator .rentulator-panel--search .rentulator-panel__header,
.mod-rentulator .rentulator-panel--places .rentulator-panel__header {
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.mod-rentulator .rentulator-panel--salary .rentulator-grid,
.mod-rentulator .rentulator-panel--search .rentulator-grid,
.mod-rentulator .rentulator-panel--places .rentulator-grid {
  gap: 0.7rem;
}

.mod-rentulator .rentulator-panel--search .rentulator-grid--basic-bottom,
.mod-rentulator .rentulator-panel--places .rentulator-grid--basic-bottom {
  margin-top: 0.65rem;
}

.mod-rentulator .rentulator-panel--salary .rentulator-field,
.mod-rentulator .rentulator-panel--search .rentulator-field,
.mod-rentulator .rentulator-panel--places .rentulator-field {
  gap: 0.25rem;
}

.mod-rentulator .rentulator-panel--salary input,
.mod-rentulator .rentulator-panel--salary select,
.mod-rentulator .rentulator-panel--salary textarea,
.mod-rentulator .rentulator-panel--search input,
.mod-rentulator .rentulator-panel--search select,
.mod-rentulator .rentulator-panel--search textarea,
.mod-rentulator .rentulator-panel--places input,
.mod-rentulator .rentulator-panel--places select,
.mod-rentulator .rentulator-panel--places textarea {
  padding: 0.62rem 0.75rem;
}

.mod-rentulator .rentulator-panel--salary .rentulator-btn,
.mod-rentulator .rentulator-panel--places .rentulator-btn,
.mod-rentulator .rentulator-panel--search .rentulator-btn {
  padding: 0.62rem 0.9rem;
}

.mod-rentulator .rentulator-panel--salary .rentulator-start-here {
  gap: 0.3rem;
}


.mod-rentulator .rentulator-card__head > div > .rentulator-card__location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.mod-rentulator .rentulator-card__location .rentulator-card__city-chip {
  display: inline-flex;
  align-items: center;
}


/* v1.10.97 move layer selector rows fully to the right */
.mod-rentulator .leaflet-control-layers-list,
.mod-rentulator .leaflet-control-layers-overlays,
.mod-rentulator .leaflet-control-layers-base {
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-overlays,
.mod-rentulator .leaflet-control-layers-base {
  padding-inline-start: 0;
  padding-inline-end: 0.35rem;
}

.mod-rentulator .leaflet-control-layers-overlays label,
.mod-rentulator .leaflet-control-layers-base label {
  display: block;
  width: 100%;
  margin: 0;
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-overlays label > span,
.mod-rentulator .leaflet-control-layers-base label > span {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-overlays label > span > span,
.mod-rentulator .leaflet-control-layers-base label > span > span {
  flex: 1 1 auto;
  display: block;
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-selector {
  flex: 0 0 auto;
  order: 2;
  margin: 0;
}


/* v1.11.00 layer selector in two compact columns */
.mod-rentulator .leaflet-control-layers-expanded {
  width: 244px;
  max-width: min(244px, calc(100vw - 2rem));
}

.mod-rentulator .leaflet-control-layers-list,
.mod-rentulator .leaflet-control-layers-overlays,
.mod-rentulator .leaflet-control-layers-base {
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-overlays,
.mod-rentulator .leaflet-control-layers-base {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
}

.mod-rentulator .leaflet-control-layers-overlays label,
.mod-rentulator .leaflet-control-layers-base label {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1px;
  width: 100%;
  min-height: 42px;
  margin: 1px;
  padding: 1px;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(241, 245, 249, 0.9);
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-overlays label > span,
.mod-rentulator .leaflet-control-layers-base label > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.14;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: right;
}

.mod-rentulator .leaflet-control-layers-selector {
  flex: 0 0 auto;
  margin: 0;
  transform: scale(0.92);
  transform-origin: center;
}

@media (max-width: 640px) {
  .mod-rentulator .leaflet-control-layers-expanded {
    width: min(244px, calc(100vw - 2rem));
  }

  .mod-rentulator .leaflet-control-layers-overlays,
  .mod-rentulator .leaflet-control-layers-base {
    grid-template-columns: 1fr;
  }
}


/* v1.11.01 move score badge under title */
.mod-rentulator .rentulator-card__score-row--under-title {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
}

.mod-rentulator .rentulator-card__head > div {
  width: 100%;
}

.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__score-row,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row--under-title .rentulator-card__score,
.mod-rentulator .rentulator-results.is-results-rows .rentulator-card__score-row--under-title .rentulator-card__score {
  display: inline-flex;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row--under-title {
  display: flex;
}


/* v1.11.02 keep score under title in cubicle cards */
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head {
  display: block;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head > div {
  width: 100%;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row--under-title {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
  margin-bottom: 0.3rem;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head .rentulator-card__score {
  display: inline-flex;
}


/* v1.11.04 move icon-view score badge to top-right overlay */
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row--under-title {
  position: absolute !important;
  top: 0.7rem !important;
  inset-inline-start: 0.7rem !important;
  inset-inline-end: auto !important;
  margin: 0 !important;
  z-index: 3 !important;
  width: auto !important;
  display: flex !important;
  justify-content: flex-start !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head .rentulator-card__score {
  display: inline-flex !important;
}


/* v1.11.05 keep icon-view score badge at the very top of the photo */
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head {
  position: absolute !important;
  inset-inline: 0.75rem !important;
  top: 0.75rem !important;
  bottom: 3.1rem !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head > div {
  width: 100% !important;
  padding-top: 2.4rem !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__score-row--under-title {
  position: absolute !important;
  top: 0 !important;
  inset-inline-start: 0 !important;
  inset-inline-end: auto !important;
  margin: 0 !important;
  z-index: 4 !important;
  width: auto !important;
  display: flex !important;
  justify-content: flex-start !important;
}


/* v1.11.06 show details and favorites buttons in icon results */
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head {
  bottom: 5.35rem !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions {
  position: absolute !important;
  inset-inline: 0.75rem !important;
  bottom: 3.05rem !important;
  z-index: 4 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.4rem !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-btn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  border-radius: 999px !important;
  padding: 0.42rem 0.7rem !important;
  font-size: 0.76rem !important;
  line-height: 1.15 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2) !important;
  backdrop-filter: blur(4px) !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-btn:hover,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-btn:focus-visible {
  background: rgba(255, 255, 255, 0.98) !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-btn--ghost {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #1e293b !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-card__favorite-btn[disabled],
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions .rentulator-card__favorite-btn[aria-disabled="true"] {
  opacity: 0.78 !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__actions [data-action="select-listing"] {
  display: none !important;
}

/* v1.11.82 cards view: hide select button */
.mod-rentulator .rentulator-results:not(.is-results-rows):not(.is-results-icons) .rentulator-card__description {
  display: none;
}

.mod-rentulator .rentulator-results.is-results-cards:not(.rentulator-results--favorites) .rentulator-card__actions [data-action="select-listing"] {
  display: none !important;
}


/* v1.11.61 desktop split layout: 50/50 split, stationary map, page/browser scroll on the right */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    height: auto;
    min-height: 0;
    align-items: start;
    overflow: visible;
    border-radius: 1.5rem;
  }

  .mod-rentulator .rentulator-map-col,
  .mod-rentulator .rentulator-main-col {
    min-width: 0;
    min-height: 0;
    align-self: start;
  }

  .mod-rentulator .rentulator-map-col {
    position: sticky;
    top: 1rem;
    height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-inline-end: 0.5rem;
    border-inline-end: 1px solid rgba(70, 90, 140, 0.14);
    background: rgba(255, 255, 255, 0.16);
  }

  .mod-rentulator .rentulator-map {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .mod-rentulator .rentulator-main-col {
    position: relative;
    max-height: none;
    overflow: visible;
    align-content: start;
    padding-inline: 0.75rem 0.25rem;
    background: rgba(255, 255, 255, 0.12);
  }
}


/* v1.11.57 right-pane scroll-to-top button */
.mod-rentulator .rentulator-scroll-top-wrap {
  position: sticky;
  bottom: 1rem;
  display: flex;
  direction: ltr;
  justify-content: flex-start;
  padding: 0 1rem 1rem;
  z-index: 12;
  pointer-events: none;
}

.mod-rentulator .rentulator-scroll-top-btn {
  pointer-events: auto;
  direction: rtl;
  box-shadow: 0 12px 30px rgba(36, 66, 120, 0.18);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mod-rentulator .rentulator-scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .mod-rentulator .rentulator-scroll-top-wrap {
    display: none !important;
  }
}


/* v1.11.58 shrink right-side search rectangles by ~25% on desktop */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-main-col .rentulator-panel {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .mod-rentulator .rentulator-main-col .rentulator-panel__header {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-grid,
  .mod-rentulator .rentulator-main-col .rentulator-place-list,
  .mod-rentulator .rentulator-main-col .rentulator-check-grid,
  .mod-rentulator .rentulator-main-col .rentulator-toolbar,
  .mod-rentulator .rentulator-main-col .rentulator-status,
  .mod-rentulator .rentulator-main-col .rentulator-header-actions,
  .mod-rentulator .rentulator-main-col .rentulator-panel__actions,
  .mod-rentulator .rentulator-main-col .rentulator-panel__title-wrap {
    gap: 0.55rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-grid--basic-bottom {
    margin-top: 0.65rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-grid--advanced {
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    margin-bottom: 0.75rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-field {
    gap: 0.25rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-field label {
    font-size: 0.78rem;
  }

  .mod-rentulator .rentulator-main-col input,
  .mod-rentulator .rentulator-main-col select,
  .mod-rentulator .rentulator-main-col textarea {
    padding: 0.54rem 0.6rem;
    border-radius: 9px;
  }

  .mod-rentulator .rentulator-main-col .rentulator-range {
    gap: 0.34rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-btn {
    padding: 0.54rem 0.75rem;
    border-radius: 9px;
  }

  .mod-rentulator .rentulator-main-col .rentulator-btn--small {
    padding: 0.4rem 0.56rem;
    font-size: 0.78rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-btn__count {
    min-width: 1.2rem;
    height: 1.2rem;
    font-size: 0.72rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-chip {
    padding: 0.24rem 0.5rem;
    font-size: 0.72rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-place-row {
    gap: 0.56rem;
    grid-template-columns: repeat(auto-fit, minmax(99px, 1fr));
    padding: 0.68rem;
    border-radius: 12px;
  }

  .mod-rentulator .rentulator-main-col .rentulator-check-grid {
    grid-template-columns: repeat(auto-fit, minmax(99px, 1fr));
    gap: 0.42rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-check {
    min-height: 46px;
    padding: 0.24rem 0.34rem;
    border-radius: 12px;
    gap: 0.24rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-check__content {
    gap: 0.24rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-check__icon {
    width: 1.28rem;
    height: 1.28rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-panel h3 {
    font-size: 1.35rem;
  }

  .mod-rentulator .rentulator-main-col .rentulator-panel p,
  .mod-rentulator .rentulator-main-col .rentulator-status,
  .mod-rentulator .rentulator-main-col .rentulator-start-here {
    font-size: 0.88rem;
  }
}


/* v1.11.59 keep step title separate and place the rest of the results toolbar on one row */
.mod-rentulator .rentulator-toolbar--single-row-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.mod-rentulator .rentulator-toolbar__step-line {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.mod-rentulator .rentulator-toolbar__control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: nowrap;
  width: 100%;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--right,
.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--left-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--right {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--left-inline {
  order: 1;
  flex: 0 0 auto;
  justify-content: flex-end;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--right .rentulator-field--inline,
.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--right .rentulator-toolbar__toggles,
.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__primary-actions {
  margin: 0;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__result-count {
  white-space: nowrap;
}

.mod-rentulator .rentulator-toolbar__result-line {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__result-line {
  margin-top: 0.1rem;
}

@media (max-width: 960px) {
  .mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__control-row {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--right,
  .mod-rentulator .rentulator-toolbar--single-row-controls .rentulator-toolbar__stack--left-inline {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 960px) {
  .mod-rentulator .rentulator-toolbar__result-line {
    justify-content: flex-start;
  }
}


/* v1.11.63 shrink the 3 results-view rectangles by another 10% */
.mod-rentulator .rentulator-toolbar__toggles--results-view .rentulator-btn--small {
  padding: 0.32rem 0.45rem;
  font-size: 0.63rem;
  min-height: 1.8rem;
}



/* v1.11.87 enlarge the 3 results-view rectangles a little more and keep them on one row */
.mod-rentulator .rentulator-toolbar__toggles--results-view {
  gap: 0.4rem;
  flex-wrap: nowrap;
}

.mod-rentulator .rentulator-toolbar__toggles--results-view .rentulator-btn,
.mod-rentulator .rentulator-toolbar__toggles--results-view .rentulator-btn--small {
  padding: 0.35rem 0.56rem !important;
  font-size: 0.72rem !important;
  line-height: 1.1;
  min-height: 1.82rem !important;
  border-radius: 11px !important;
  white-space: nowrap;
}

/* v1.11.65 hide selected-filter chips/status bar at top */
.mod-rentulator .rentulator-status {
  display: none !important;
}


/* v1.11.67 right-side ad/image slots */
.mod-rentulator .rentulator-side-ad-slot {
  margin-bottom: 1rem;
  border: 1px dashed var(--rt-border);
  border-radius: 16px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.75rem;
  overflow: hidden;
}

.mod-rentulator .rentulator-side-ad-slot--bottom {
  margin-top: 1rem;
}

.mod-rentulator .rentulator-main-col .rentulator-side-ad-slot .rentulator-map-ad-image {
  border-radius: 12px;
}

/* v1.11.70 rows view: hide select button and pin action buttons to the upper-left corner */
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card {
  position: relative;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions [data-action="select-listing"] {
  display: none !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions {
  position: absolute !important;
  top: 0.9rem !important;
  left: 0.9rem !important;
  right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.34rem !important;
  width: min(135px, calc(100% - 1.8rem)) !important;
  margin: 0 !important;
  z-index: 4 !important;
  align-items: stretch !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions .rentulator-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 0.38rem 0.56rem !important;
  font-size: 0.66rem !important;
  line-height: 1.15 !important;
  border-radius: 9px !important;
}


/* v1.11.73 rows view: place the two action buttons on the same row as score and city */
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card {
  position: relative;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__head {
  padding-top: 0 !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions {
  position: absolute !important;
  top: 3rem !important;
  left: calc(clamp(140px, 28%, 200px) + 1rem) !important;
  right: auto !important;
  width: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.35rem !important;
  margin: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions [data-action="select-listing"] {
  display: none !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions .rentulator-btn {
  width: auto !important;
  min-width: 0 !important;
  pointer-events: auto !important;
}

@media (max-width: 900px) {
  .mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__head {
    padding-top: 0 !important;
  }

  .mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions {
    position: static !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 0.34rem !important;
    pointer-events: auto !important;
  }
}


/* v1.11.74 rows view: keep action buttons on the same row as the score and city/emblem */
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__subline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.42rem;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline .rentulator-card__score-row {
  margin: 0 !important;
  grid-column: auto !important;
  justify-content: flex-start !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline .rentulator-card__location {
  margin: 0 !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  inset: auto !important;
  width: auto !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.35rem !important;
  margin: 0 !important;
  z-index: auto !important;
  pointer-events: auto !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions .rentulator-btn {
  width: auto !important;
  min-width: 0 !important;
  pointer-events: auto !important;
}

@media (max-width: 900px) {
  .mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__subline {
    align-items: flex-start;
  }
}


/* v1.11.75 rows view: reduce inner margins/padding as much as possible */
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) {
  gap: 0.42rem;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card {
  padding: 0.35rem !important;
  border-radius: 10px !important;
  gap: 0.22rem 0.4rem !important;
  grid-template-columns: minmax(118px, 176px) minmax(0, 1fr) !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__media {
  border-radius: 10px !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__head {
  gap: 0.35rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__head h3 {
  line-height: 1.05 !important;
  margin: 0 !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__subline {
  margin-top: 0.08rem !important;
  gap: 0.25rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline {
  gap: 0.22rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline .rentulator-card__score-row,
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__summary-inline .rentulator-card__location,
.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__score-row {
  margin: 0 !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__location {
  gap: 0.18rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__city-chip {
  padding: 0.08rem 0.24rem !important;
  gap: 0.18rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__city-emblem {
  width: 1rem !important;
  height: 1rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__score {
  padding: 0.18rem 0.42rem !important;
  border-radius: 8px !important;
  gap: 0.22rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__score strong {
  font-size: 0.9rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__meta {
  margin: 0.14rem 0 0 !important;
  gap: 0.18rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__meta span {
  padding: 0.16rem 0.34rem !important;
  font-size: 0.82rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions {
  gap: 0.18rem !important;
}

.mod-rentulator .rentulator-results.is-results-rows:not(.rentulator-results--favorites) .rentulator-card__actions .rentulator-btn {
  padding: 0.28rem 0.46rem !important;
}


/* v1.11.78 icon cards: make inline photo switching arrows clearly visible and 10px higher */
.mod-rentulator .rentulator-card__media {
  position: relative;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__media {
  position: relative;
}

.mod-rentulator .rentulator-card__photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 2.4rem;
  height: 2.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  appearance: none;
  -webkit-appearance: none;
}

.mod-rentulator .rentulator-card__photo-nav span {
  display: inline-block;
  line-height: 1;
  font-size: 1.18rem;
  font-weight: 800;
  color: inherit;
}

.mod-rentulator .rentulator-card__photo-nav--prev {
  left: 0.5rem;
  right: auto;
  inset-inline-start: 0.5rem;
  inset-inline-end: auto;
}

.mod-rentulator .rentulator-card__photo-nav--next {
  right: 0.5rem;
  left: auto;
  inset-inline-end: 0.5rem;
  inset-inline-start: auto;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__photo-nav {
  display: inline-flex !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__photo-nav:hover,
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__photo-nav:focus-visible {
  background: rgba(15, 23, 42, 0.88);
}

/* v1.11.80 keep icon-view arrows above and clear of the overlay title */
.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__photo-nav {
  top: calc(50% - 34px) !important;
  transform: translateY(-50%) !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head {
  align-items: flex-end !important;
}

.mod-rentulator .rentulator-results.is-results-icons .rentulator-card__head > div {
  width: auto !important;
  max-width: calc(100% - 4.75rem) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding-right: 0.15rem !important;
  padding-left: 3.1rem !important;
  text-align: right !important;
}


.mod-rentulator .rentulator-upload-picker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-height: 3.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rt-border);
  border-radius: 1rem;
  background: #fff;
}

.mod-rentulator .rentulator-upload-picker__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mod-rentulator .rentulator-upload-picker__status {
  color: var(--rt-text-soft);
  font-size: 0.98rem;
  min-width: 0;
  flex: 1 1 14rem;
  word-break: break-word;
}

.mod-rentulator .rentulator-upload-picker__trigger {
  flex: 0 0 auto;
}

/* v1.12.30: lock the map vertically on desktop split view.
   The right/search side scrolls with the page while the left map remains pinned. */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    align-items: start;
    overflow: visible;
  }

  .mod-rentulator .rentulator-map-col {
    position: sticky !important;
    top: 0 !important;
    align-self: start !important;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    z-index: 4;
    overscroll-behavior: contain;
  }

  .mod-rentulator .rentulator-map {
    flex: 1 1 auto;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .mod-rentulator .rentulator-main-col {
    overflow: visible;
    min-height: 100dvh;
  }
}

@supports not (height: 100dvh) {
  @media (min-width: 961px) {
    .mod-rentulator .rentulator-map-col {
      height: 100vh;
      max-height: 100vh;
    }

    .mod-rentulator .rentulator-main-col {
      min-height: 100vh;
    }
  }
}


/* v1.12.30: split-page scroll lock.
   Desktop only: keep the left map side visually stationary while the right/search side
   continues to move through the page. The side is released naturally when the right
   side has reached the end of the module. */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-shell {
    overflow: visible !important;
  }

  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    align-items: start !important;
    overflow: visible !important;
    contain: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    position: sticky !important;
    top: 0 !important;
    inset-block-start: 0 !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 0 !important;
    align-self: start !important;
    overflow: hidden !important;
    overscroll-behavior: contain;
    z-index: 15;
    transform: translateZ(0);
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map {
    flex: 1 1 auto;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
    overflow: visible !important;
    min-height: calc(100dvh + 1px);
  }
}

@supports not (height: 100dvh) {
  @media (min-width: 961px) {
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
      height: 100vh !important;
      max-height: 100vh !important;
    }

    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
      min-height: calc(100vh + 1px);
    }
  }
}


/* v1.12.30: strict split lock using a dedicated stationary map panel.
   The left/module map side remains pinned while the right side continues scrolling.
   The panel is released only when the right column reaches the end of the module. */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    align-items: start !important;
    overflow: visible !important;
    contain: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    position: relative !important;
    top: auto !important;
    inset-block-start: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: var(--rt-map-lock-holder-height, 100dvh) !important;
    overflow: visible !important;
    align-self: stretch !important;
    z-index: 15;
    transform: none !important;
    padding-inline-end: 0.5rem;
    border-inline-end: 1px solid rgba(70, 90, 140, 0.14);
    background: rgba(255, 255, 255, 0.16);
  }

  .mod-rentulator .rentulator-map-stationary-panel {
    position: sticky;
    top: var(--rt-map-lock-top, 0px);
    inset-block-start: var(--rt-map-lock-top, 0px);
    width: 100%;
    height: calc(100dvh - var(--rt-map-lock-top, 0px));
    max-height: calc(100dvh - var(--rt-map-lock-top, 0px));
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
    z-index: 25;
    transform: translateZ(0);
  }

  .mod-rentulator .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel {
    position: fixed !important;
    top: var(--rt-map-lock-top, 0px) !important;
    left: var(--rt-map-lock-left, 0px) !important;
    right: auto !important;
    width: var(--rt-map-lock-width, 50vw) !important;
    height: var(--rt-map-lock-height, 100dvh) !important;
    max-height: var(--rt-map-lock-height, 100dvh) !important;
  }

  .mod-rentulator .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, 100dvh) !important;
    max-height: var(--rt-map-lock-height, 100dvh) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map {
    flex: 1 1 auto;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
    overflow: visible !important;
    min-height: calc(100dvh + 1px);
  }
}

@supports not (height: 100dvh) {
  @media (min-width: 961px) {
    .mod-rentulator .rentulator-map-stationary-panel {
      height: calc(100vh - var(--rt-map-lock-top, 0px));
      max-height: calc(100vh - var(--rt-map-lock-top, 0px));
    }

    .mod-rentulator .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel,
    .mod-rentulator .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
      height: var(--rt-map-lock-height, 100vh) !important;
      max-height: var(--rt-map-lock-height, 100vh) !important;
    }

    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
      min-height: var(--rt-map-lock-holder-height, 100vh) !important;
    }

    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
      min-height: calc(100vh + 1px);
    }
  }
}

/* v1.12.30: no top offset for the stationary left/map side. */
@media (min-width: 961px) {
  .mod-rentulator {
    --rt-map-lock-top: 0px !important;
  }
}


/* v1.12.30: hard lock the left/map side until the right side reaches the module bottom.
   Desktop only.  The left placeholder keeps the full scroll range; the visible map panel
   is fixed at the viewport top offset while the right column is still scrolling, then
   becomes absolutely positioned at the bottom of the left column so it can scroll away
   with the rest of the module. */
@media (min-width: 961px) {
  .mod-rentulator {
    --rt-map-lock-top: 0px !important;
  }

  .mod-rentulator .rentulator-shell,
  .mod-rentulator .rentulator-workspace,
  .mod-rentulator .rentulator-workspace.is-view-split {
    overflow: visible !important;
    contain: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split {
    position: relative !important;
    align-items: start !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    position: relative !important;
    top: auto !important;
    inset-block-start: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: var(--rt-map-lock-holder-height, 100dvh) !important;
    overflow: visible !important;
    align-self: stretch !important;
    transform: none !important;
    z-index: 15 !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-stationary-panel {
    position: sticky !important;
    top: var(--rt-map-lock-top, 0px) !important;
    inset-block-start: var(--rt-map-lock-top, 0px) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    min-height: 240px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    overscroll-behavior: contain !important;
    z-index: 25 !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel {
    position: fixed !important;
    top: var(--rt-map-lock-top, 0px) !important;
    inset-block-start: var(--rt-map-lock-top, 0px) !important;
    left: var(--rt-map-lock-left, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--rt-map-lock-width, 50vw) !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
    position: absolute !important;
    top: var(--rt-map-release-top, 0px) !important;
    inset-block-start: var(--rt-map-release-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
    overflow: visible !important;
    min-height: calc(100dvh + 1px) !important;
  }
}

@supports not (height: 100dvh) {
  @media (min-width: 961px) {
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-stationary-panel,
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel,
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
      height: var(--rt-map-lock-height, calc(100vh - var(--rt-map-lock-top, 0px))) !important;
      max-height: var(--rt-map-lock-height, calc(100vh - var(--rt-map-lock-top, 0px))) !important;
    }
  }
}


/* v1.12.30: strict no-offset map lock.
   Keeps the left/map panel fixed at the viewport top while the right column scrolls,
   then releases it only after the right column reaches the module bottom. */
@media (min-width: 961px) {
  .mod-rentulator {
    --rt-map-lock-top: 0px !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    position: relative !important;
    top: auto !important;
    inset-block-start: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: var(--rt-map-lock-holder-height, 100dvh) !important;
    overflow: visible !important;
    align-self: stretch !important;
    transform: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-stationary-panel {
    top: 0 !important;
    inset-block-start: 0 !important;
    height: var(--rt-map-lock-height, 100dvh) !important;
    max-height: var(--rt-map-lock-height, 100dvh) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel {
    position: fixed !important;
    top: 0 !important;
    inset-block-start: 0 !important;
    left: var(--rt-map-lock-left, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--rt-map-lock-width, 50vw) !important;
    height: var(--rt-map-lock-height, 100dvh) !important;
    max-height: var(--rt-map-lock-height, 100dvh) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
    position: absolute !important;
    top: var(--rt-map-release-top, 0px) !important;
    inset-block-start: var(--rt-map-release-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, 100dvh) !important;
    max-height: var(--rt-map-lock-height, 100dvh) !important;
  }
}


/* v1.12.30: viewport-pinned split map lock.
   The map no longer waits until it reaches viewport top. JS writes the map's natural
   visible top into --rt-map-lock-top, so the left side stays exactly where it first
   appears while the right side scrolls. No artificial 20px offset is used. */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-workspace.is-view-split {
    position: relative !important;
    align-items: start !important;
    overflow: visible !important;
    contain: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    position: relative !important;
    top: auto !important;
    inset-block-start: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: var(--rt-map-lock-holder-height, 100dvh) !important;
    overflow: visible !important;
    align-self: stretch !important;
    transform: none !important;
    z-index: 15 !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-stationary-panel {
    position: sticky !important;
    top: var(--rt-map-lock-top, 0px) !important;
    inset-block-start: var(--rt-map-lock-top, 0px) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    min-height: 240px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    overscroll-behavior: contain !important;
    z-index: 25 !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel {
    position: fixed !important;
    top: var(--rt-map-lock-top, 0px) !important;
    inset-block-start: var(--rt-map-lock-top, 0px) !important;
    left: var(--rt-map-lock-left, 0px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--rt-map-lock-width, 50vw) !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
    position: absolute !important;
    top: var(--rt-map-release-top, 0px) !important;
    inset-block-start: var(--rt-map-release-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
    max-height: var(--rt-map-lock-height, calc(100dvh - var(--rt-map-lock-top, 0px))) !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-main-col {
    overflow: visible !important;
    min-height: calc(100dvh + 1px) !important;
  }
}

@supports not (height: 100dvh) {
  @media (min-width: 961px) {
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-stationary-panel,
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel,
    .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-ended .rentulator-map-stationary-panel {
      height: var(--rt-map-lock-height, calc(100vh - var(--rt-map-lock-top, 0px))) !important;
      max-height: var(--rt-map-lock-height, calc(100vh - var(--rt-map-lock-top, 0px))) !important;
    }
  }
}

/* v1.12.31: hide the always-open map layer menu under a compact "שכבות" button.
   Applied directly on top of the v1.12.30 stable map-lock baseline. */
.mod-rentulator .rentulator-map .leaflet-control-layers.rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) {
  border: 0 !important;
  border-radius: 13px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.mod-rentulator .rentulator-map .leaflet-control-layers.rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) .leaflet-control-layers-list {
  display: none !important;
}

.mod-rentulator .rentulator-map .rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) .leaflet-control-layers-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 78px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0.45rem 0.8rem !important;
  border-radius: 13px !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  background-image: none !important;
  color: #111827 !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  text-decoration: none !important;
  direction: rtl !important;
  text-align: center !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16) !important;
}

.mod-rentulator .rentulator-map .rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) .leaflet-control-layers-toggle::before {
  content: "שכבות";
}

.mod-rentulator .rentulator-map .rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) .leaflet-control-layers-toggle:hover,
.mod-rentulator .rentulator-map .rentulator-layers-toggle-control:not(.leaflet-control-layers-expanded) .leaflet-control-layers-toggle:focus {
  background: #ffffff !important;
  color: #0f172a !important;
  outline: 2px solid rgba(37, 99, 235, 0.25) !important;
  outline-offset: 2px !important;
}


/* v1.12.32: Basic Search no longer displays the Area/אזור field; four visible top fields fill the row. */

/* v1.12.37: Neighborhood AJAX suggestions use the existing Rentulator autocomplete dropdown styling. */

/* v1.12.37: regression guard for the stable v1.12.30 map lock.
   Keep the left/map side from drifting before the JS lock class is applied. */
@media (min-width: 961px) {
  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col {
    align-self: flex-start !important;
    position: relative !important;
    overflow: visible !important;
  }

  .mod-rentulator .rentulator-workspace.is-view-split .rentulator-map-col.is-rt-map-fixed .rentulator-map-stationary-panel {
    margin-block-start: 0 !important;
    transform: none !important;
    will-change: auto !important;
  }
}


/* v1.12.38: selected asset highlight.
   When an asset is chosen, its result card receives a thick 10px blue frame without changing the layout size. */
.mod-rentulator .rentulator-card.is-selected {
  position: relative;
  border-color: #1d4ed8 !important;
  box-shadow:
    inset 0 0 0 10px #1d4ed8,
    0 18px 38px rgba(29, 78, 216, 0.18) !important;
  transform: none !important;
}

.mod-rentulator .rentulator-card.is-selected:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.55);
  outline-offset: 4px;
}

.mod-rentulator .rentulator-card.is-selected .rentulator-card__media {
  border-color: rgba(29, 78, 216, 0.45);
}
