:root {
    --rs-sticky-header-height: 76px;
    --rs-page-gutter: 1.5rem;
    --rs-header-ink: #14201e;
    --rs-header-muted: #66726f;
    --rs-header-accent: #003568;
    --rs-header-accent-soft: #dff4ef;
    --rs-header-line: #e5e9e8;
    --rs-button-color: #003568;
    --rs-button-color-hover: #00264b;
    --rs-field-error: #d98b91;
    --rs-field-error-ring: rgba(201, 91, 101, .14);
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* One validation treatment for every public-facing form. */
.realtyserbia-site :where(
    input:not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
).rs-field-invalid,
.realtyserbia-site :where(
    input:not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
)[aria-invalid="true"],
.realtyserbia-site .rs-booking-option__trigger.rs-field-invalid,
.realtyserbia-site .rs-route-select__trigger.rs-field-invalid,
.realtyserbia-site .form-control.is-invalid,
.realtyserbia-site .form-select.is-invalid,
.realtyserbia-site .form-control-danger,
.realtyserbia-site .form-select-danger,
.realtyserbia-site .was-validated :where(input, select, textarea):invalid,
.realtyserbia-site .choices.is-invalid .choices__inner {
    border-color: var(--rs-field-error) !important;
    box-shadow: 0 0 0 3px var(--rs-field-error-ring) !important;
    outline: 0 !important;
}

.realtyserbia-site input[type="checkbox"].rs-field-invalid,
.realtyserbia-site input[type="radio"].rs-field-invalid,
.realtyserbia-site input[type="checkbox"][aria-invalid="true"],
.realtyserbia-site input[type="radio"][aria-invalid="true"] {
    outline: 2px solid var(--rs-field-error);
    outline-offset: 2px;
}

.realtyserbia-site .rs-field-error-message {
    color: #b85f68;
    display: block;
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.35;
    margin: .3rem 0 0;
}

.rs-password-field {
    min-width: 0;
    position: relative;
    width: 100%;
}

span.rs-password-field {
    display: block;
}

.rs-password-field.input-group {
    display: flex;
}

.rs-password-field > input[data-rs-password-enhanced="1"] {
    padding-inline-end: 3rem !important;
    width: 100%;
}

.rs-password-toggle,
.rs-password-field > .input-password-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #61706d;
    cursor: pointer;
    display: flex;
    height: 36px;
    inset-inline-end: .45rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .18s ease, color .18s ease;
    width: 36px;
    z-index: 2;
}

.rs-password-toggle:hover,
.rs-password-toggle:focus-visible,
.rs-password-field > .input-password-toggle:hover,
.rs-password-field > .input-password-toggle:focus-visible {
    background: #eef2f1;
    color: #263633;
    outline: 0;
}

.rs-password-toggle svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 20px;
}

.rs-password-toggle__slash {
    opacity: 0;
}

.rs-password-toggle.is-visible .rs-password-toggle__slash {
    opacity: 1;
}

body.realtyserbia-site {
    background: #fff;
    color: var(--rs-header-ink);
}

.rs-header-logout {
    margin: 0;
}

/* Joomla system messages as unobtrusive toast notifications. */
.realtyserbia-site #system-message-container {
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 0;
    max-height: calc(100dvh - 3rem);
    max-width: min(420px, calc(100vw - 2rem));
    overflow-y: auto;
    pointer-events: none;
    position: fixed;
    right: 1.5rem;
    width: 100%;
    z-index: 12000;
}

.realtyserbia-site #system-message-container:empty {
    display: none;
}

.realtyserbia-site #system-message-container joomla-alert {
    --rs-toast-accent: #003568;
    --rs-toast-background: rgba(214, 240, 245, .9);
    --rs-toast-ink: #105f70;
    animation: rs-toast-in .25s ease-out both;
    backdrop-filter: blur(10px);
    background: var(--rs-toast-background);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(20, 32, 30, .12);
    color: var(--rs-toast-ink);
    margin: 0;
    min-width: 0;
    overflow: hidden;
    pointer-events: auto;
    width: 100%;
}

.realtyserbia-site #system-message-container joomla-alert[type="success"],
.realtyserbia-site #system-message-container joomla-alert[type="message"] {
    --rs-toast-accent: #2f8f67;
    --rs-toast-background: rgba(218, 242, 231, .9);
    --rs-toast-ink: #225f49;
}

.realtyserbia-site #system-message-container joomla-alert[type="warning"] {
    --rs-toast-accent: #d69a2d;
    --rs-toast-background: rgba(255, 239, 202, .92);
    --rs-toast-ink: #765116;
}

.realtyserbia-site #system-message-container joomla-alert[type="error"],
.realtyserbia-site #system-message-container joomla-alert[type="danger"] {
    --rs-toast-accent: #cf5a5a;
    --rs-toast-background: rgba(250, 220, 220, .92);
    --rs-toast-ink: #7c3535;
}

.realtyserbia-site #system-message-container joomla-alert .alert-heading {
    display: none;
}

.realtyserbia-site #system-message-container joomla-alert .alert-wrapper {
    align-items: center;
    display: flex;
    min-height: 64px;
}

.realtyserbia-site #system-message-container joomla-alert .alert-message {
    line-height: 1.4;
    margin: 0;
    padding: 1rem 2.75rem 1rem 1.25rem;
}

.realtyserbia-site #system-message-container joomla-alert .joomla-alert--close,
.realtyserbia-site #system-message-container joomla-alert .joomla-alert-button--close {
    color: var(--rs-toast-ink);
    font-size: 1.55rem;
    line-height: 1;
    padding: .55rem .7rem;
    right: .2rem;
    top: .2rem;
}

.realtyserbia-site #system-message-container joomla-alert.rs-toast-leaving {
    animation: rs-toast-out .2s ease-in both;
}

@keyframes rs-toast-in {
    from {
        opacity: 0;
        transform: translate3d(24px, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rs-toast-out {
    to {
        opacity: 0;
        transform: translate3d(24px, 0, 0);
    }
}

.realtyserbia-site .btn-primary,
.realtyserbia-site .btn-outline-primary,
.realtyserbia-site .btn-secondary {
    background: var(--rs-button-color);
    border-color: var(--rs-button-color);
    color: #fff;
}

.realtyserbia-site .btn-primary:hover,
.realtyserbia-site .btn-primary:focus-visible,
.realtyserbia-site .btn-outline-primary:hover,
.realtyserbia-site .btn-outline-primary:focus-visible,
.realtyserbia-site .btn-secondary:hover,
.realtyserbia-site .btn-secondary:focus-visible {
    background: var(--rs-button-color-hover);
    border-color: var(--rs-button-color-hover);
    color: #fff;
}

.rs-site-header {
    background: #fff;
    border-bottom: 1px solid var(--rs-header-line);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rs-site-header__main {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 76px;
    padding-inline: var(--rs-page-gutter);
    width: min(1280px, 100%);
}

.rs-site-brand {
    align-items: center;
    color: #111816;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    gap: .55rem;
    letter-spacing: -.035em;
    text-decoration: none;
}

.rs-site-brand:hover,
.rs-site-brand:focus-visible {
    color: var(--rs-header-accent);
}

.rs-site-brand__name {
    color: #003568;
}

.rs-site-brand__mark {
    display: block;
    flex: 0 0 auto;
    height: 2.5rem;
    object-fit: contain;
    width: 2.5rem;
}

.rs-site-header__actions {
    align-items: center;
    display: flex;
    gap: clamp(.5rem, 2vw, 1.25rem);
    justify-content: flex-end;
}

.rs-menu-toggle {
    align-items: center;
    background: #f1f3f3;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    display: none;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
}

.rs-menu-toggle__icon {
    display: grid;
    gap: 4px;
    width: 20px;
}

.rs-menu-toggle__icon i {
    background: var(--rs-header-ink);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: opacity .2s ease, transform .2s ease;
}

.rs-site-header.is-menu-open .rs-menu-toggle__icon i:first-child {
    transform: translateY(6px) rotate(45deg);
}

.rs-site-header.is-menu-open .rs-menu-toggle__icon i:nth-child(2) {
    opacity: 0;
}

.rs-site-header.is-menu-open .rs-menu-toggle__icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.rs-site-menu .mod-menu {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: .35rem;
    margin: 0;
    padding: 0;
}

.rs-site-menu .mod-menu > li {
    display: block;
    list-style: none;
}

.rs-site-menu .mod-menu > .item-101 {
    display: none;
}

.rs-site-menu .mod-menu > li > a,
.rs-site-menu .mod-menu > li > span {
    border-radius: 10px;
    color: var(--rs-header-ink);
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    padding: .72rem .9rem;
    text-decoration: none;
    white-space: nowrap;
}

.rs-site-menu .mod-menu > li > a:hover,
.rs-site-menu .mod-menu > li > a:focus-visible {
    background: color-mix(in srgb, #4dc5df 12%, #fff);
    color: #111816;
}

.rs-site-menu .mod-menu > li.active > a,
.rs-site-menu .mod-menu > li.current > a {
    background: color-mix(in srgb, #4dc5df 18%, #fff);
    color: #111816;
}

.rs-login-trigger {
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--rs-header-ink);
    cursor: pointer;
    flex: 0 0 auto;
    font: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    padding: .72rem .9rem;
    transition: background-color .18s ease, color .18s ease;
}

.rs-login-trigger:hover,
.rs-login-trigger:focus-visible {
    background: color-mix(in srgb, #4dc5df 12%, #fff);
    color: #111816;
}

.rs-mobile-profile-title,
.rs-login-trigger__mobile {
    display: none;
}

.rs-management-bar {
    background: #f6faf9;
    border-top: 1px solid var(--rs-header-line);
}

.rs-management-bar__inner {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 1.2rem;
    margin: 0 auto;
    min-height: 48px;
    overflow-x: auto;
    padding: .45rem var(--rs-page-gutter);
    scrollbar-width: thin;
    width: min(1280px, 100%);
}

.rs-management-bar__label {
    color: var(--rs-header-muted);
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rs-management-bar .mod-realtyserbia-manager {
    display: flex !important;
    flex: 0 0 auto;
    flex-direction: row;
    gap: .45rem !important;
}

.rs-management-bar .mod-realtyserbia-manager .btn {
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--rs-header-accent);
    font-size: .9rem;
    font-weight: 700;
    padding: .45rem .65rem;
    white-space: nowrap;
}

.rs-management-bar .mod-realtyserbia-manager .btn:hover,
.rs-management-bar .mod-realtyserbia-manager .btn:focus-visible {
    background: #e2f1ee;
    color: #0f514d;
}

.realtyserbia-site .site-grid {
    display: block;
    transition: padding-top .32s cubic-bezier(.2, .8, .2, 1);
}

.realtyserbia-site .container-banner,
.realtyserbia-site .container-component,
.realtyserbia-site .container-top-a,
.realtyserbia-site .container-top-b,
.realtyserbia-site .container-bottom-a,
.realtyserbia-site .container-bottom-b,
.realtyserbia-site .container-footer > .grid-child {
    box-sizing: border-box;
    grid-column: 1;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--rs-page-gutter);
    padding-right: var(--rs-page-gutter);
    width: min(1280px, 100%);
}

.realtyserbia-site .container-component {
    padding-top: 0;
}

.realtyserbia-site .container-component > main {
    margin-top: 0;
}

.realtyserbia-site.rs-editorial-section .container-component {
    padding-top: 1.5rem;
}

.realtyserbia-site.rs-services-page .container-component {
    padding-top: 1.5rem;
}

.realtyserbia-site h1,
.realtyserbia-site .page-header h2 {
    font-size: 36px !important;
}

.realtyserbia-site .container-top-a,
.realtyserbia-site .container-top-b,
.realtyserbia-site .container-bottom-a,
.realtyserbia-site .container-bottom-b {
    padding-top: 1rem;
}

.realtyserbia-site.rs-buyer-information-page.com_content .container-component {
    max-width: 980px;
    padding-bottom: 4rem;
}

.rs-buyer-information-article__back {
    color: #003568;
    display: inline-flex;
    font-weight: 700;
    text-decoration: none;
}

.rs-material-toolbar {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    min-height: 56px;
    padding: .35rem 0;
    position: sticky;
    top: 0;
    z-index: 900;
}

.rs-material-toolbar.is-stuck {
    background: transparent;
}

.rs-material-toolbar.is-stuck::before {
    background: #fff;
    border-bottom: 1px solid #e1e5e8;
    box-shadow: 0 5px 16px rgba(22, 35, 43, .08);
    content: "";
    inset-block: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: var(--rs-document-width, 100%);
    z-index: -1;
}

.rs-material-toolbar .rs-property__back,
.rs-material-toolbar .rs-news-article__back,
.rs-material-toolbar .rs-buyer-information-article__back {
    margin: 0;
}

.rs-material-toolbar__share {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: #5f6870;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font: inherit;
    font-weight: 600;
    gap: .5rem;
    height: 42px;
    justify-content: center;
    padding: 0 .7rem;
}

.rs-material-toolbar__share:hover,
.rs-material-toolbar__share:focus-visible {
    background: #edf3f8;
    color: #003568;
    outline: 0;
}

.rs-material-toolbar__share svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.rs-share-dialog {
    background: transparent;
    border: 0;
    color: #252a2d;
    margin: auto;
    max-height: calc(100dvh - 2rem);
    max-width: min(540px, calc(100vw - 2rem));
    padding: 0;
    width: 100%;
}

.rs-share-dialog::backdrop {
    background: rgba(21, 29, 34, .48);
}

.rs-share-dialog__panel {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(15, 25, 31, .24);
    padding: 2.15rem 1.6rem 1.55rem;
    position: relative;
}

.rs-share-dialog__close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #252a2d;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.65rem;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: .8rem;
    width: 42px;
}

.rs-share-dialog h2 {
    color: #252a2d;
    font-size: 1.65rem !important;
    line-height: 1.2;
    margin: 0 3rem 1.5rem 0;
}

.rs-share-dialog__copy {
    align-items: center;
    background: #fff;
    border: 1px solid #d8dde1;
    border-radius: 13px;
    color: #252a2d;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 700;
    gap: .85rem;
    min-height: 52px;
    padding: .75rem 1rem;
    text-align: left;
    width: 100%;
}

.rs-share-dialog__copy:hover,
.rs-share-dialog__copy:focus-visible {
    background: #f4f7f9;
    border-color: #b8c3ca;
    outline: 0;
}

.rs-share-dialog__copy svg {
    fill: none;
    flex: 0 0 22px;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.rs-share-dialog__status {
    color: #24603c;
    font-size: .9rem;
    margin: .7rem 0 0;
    min-height: 1.35em;
}

.rs-buyer-information-page .page-header h1,
.rs-buyer-information-page .page-header h2,
.rs-buyer-information-page .item-page > h1,
.rs-buyer-information-page .item-page > h2 {
    color: #17211f;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-bottom: 1.75rem;
}

.rs-buyer-information-page .com-content-article__body,
.rs-buyer-information-page .item-page {
    color: #303a43;
    font-size: 1.04rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.rs-buyer-information-page .com-content-article__body h2,
.rs-buyer-information-page .com-content-article__body h3,
.rs-buyer-information-page .com-content-article__body h4,
.rs-buyer-information-page .item-page h2,
.rs-buyer-information-page .item-page h3,
.rs-buyer-information-page .item-page h4 {
    color: #17211f;
    line-height: 1.3;
    margin-top: 2rem;
}

.rs-buyer-information-page .com-content-article__body a,
.rs-buyer-information-page .item-page a {
    color: #003568;
}

.rs-buyer-information-page .com-content-article__body span,
.rs-buyer-information-page .item-page span {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

@media (max-width: 720px) {
    .realtyserbia-site.rs-buyer-information-page.com_content .container-component {
        padding-bottom: 2.5rem;
    }
}

.rs-login-dialog {
    background: transparent;
    border: 0;
    max-height: calc(100dvh - 2rem);
    max-width: min(430px, calc(100vw - 2rem));
    padding: 0;
    width: 100%;
}

.rs-login-dialog::backdrop {
    backdrop-filter: blur(4px);
    background: rgba(14, 25, 23, .55);
}

.rs-login-dialog__panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(13, 35, 31, .24);
    padding: 2rem;
    position: relative;
}

.rs-login-dialog__close {
    align-items: center;
    background: #f1f4f3;
    border: 0;
    border-radius: 50%;
    color: #34413e;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 2.25rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.25rem;
}

.rs-login-dialog h2 {
    color: var(--rs-header-ink);
    font-size: 1.35rem;
    margin: 0 2.5rem 1.4rem 0;
}

.rs-login-dialog .form-group {
    margin-bottom: 1rem;
}

.rs-login-dialog label {
    color: #34413e;
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.rs-login-dialog .form-control,
.rs-login-dialog .input-group-text,
.rs-login-dialog .input-password-toggle {
    min-height: 48px;
}

.rs-login-dialog .rs-login-form__submit {
    background: var(--rs-button-color);
    border: 0;
    border-radius: 999px;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-inline: auto;
    min-height: 44px;
    padding: .65rem 1.4rem;
}

.rs-login-dialog .rs-login-form__submit:hover,
.rs-login-dialog .rs-login-form__submit:focus-visible {
    background: var(--rs-button-color-hover);
}

.rs-login-form__registration {
    background: none;
    border: 0;
    color: var(--rs-button-color);
    cursor: pointer;
    display: block;
    font-size: .95rem;
    font-weight: 700;
    margin: .85rem auto 0;
    text-align: center;
    width: max-content;
}

.rs-login-form__registration:hover,
.rs-login-form__registration:focus-visible {
    color: var(--rs-button-color-hover);
}

.rs-login-dialog .mod-login__options {
    font-size: .9rem;
    margin: 1rem 0 0;
}

.rs-login-form__status {
    color: #5b6966;
    font-size: .9rem;
    margin: 0 0 .8rem;
}

.rs-login-form__status:empty {
    display: none;
}

.rs-login-form__status.is-error {
    color: #b33d45;
}

.rs-login-form button:disabled {
    cursor: wait;
    opacity: .65;
}

.rs-registration-dialog {
    -webkit-text-size-adjust: 100%;
    background: transparent;
    border: 0;
    max-height: calc(100dvh - 2rem);
    max-width: min(460px, calc(100vw - 2rem));
    padding: 0;
    width: 100%;
}

.rs-registration-dialog::backdrop {
    backdrop-filter: blur(4px);
    background: rgba(14, 25, 23, .55);
}

.rs-registration-dialog__panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(13, 35, 31, .24);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.rs-registration-dialog__close {
    align-items: center;
    background: #f1f4f3;
    border: 0;
    border-radius: 50%;
    color: #34413e;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 2.25rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.25rem;
}

.rs-registration-dialog h2 {
    color: var(--rs-header-ink);
    font-size: 1.5rem;
    margin: 0 2.5rem 1.25rem 0;
}

.rs-registration-dialog__form > label {
    color: #34413e;
    display: grid;
    font-size: .9rem;
    font-weight: 700;
    gap: .4rem;
    margin-bottom: .85rem;
}

.rs-registration-dialog input:not([type="hidden"]) {
    background: #fff;
    border: 1px solid #ccd7d4;
    border-radius: 10px;
    box-sizing: border-box;
    color: #17211f;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    min-height: 46px;
    padding: .72rem .8rem;
    width: 100%;
}

.rs-registration-dialog input:focus {
    border-color: var(--rs-button-color);
    box-shadow: 0 0 0 3px rgba(21, 141, 167, .14);
    outline: 0;
}

.rs-registration-dialog__phone {
    display: grid;
    gap: .4rem;
    margin-bottom: .85rem;
}

.rs-registration-dialog__phone[hidden] {
    display: none;
}

.rs-registration-dialog__phone > label {
    color: #34413e;
    font-size: .9rem;
    font-weight: 700;
}

.rs-phone-input {
    align-items: stretch;
    border: 1px solid #ccd7d4;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    position: relative;
}

.rs-phone-input__country {
    align-items: center;
    background: #f4f7f6;
    border: 0;
    border-radius: 10px 0 0 10px;
    color: #34413e;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    gap: .38rem;
    min-height: 46px;
    padding: .72rem .65rem .72rem .75rem;
}

.rs-phone-input__country:focus-visible {
    outline: 2px solid var(--rs-button-color);
    outline-offset: -2px;
}

.rs-phone-input__chevron {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    height: 7px;
    margin: -.2rem .12rem 0 .08rem;
    transform: rotate(45deg);
    width: 7px;
}

.rs-phone-input__country[aria-expanded="true"] .rs-phone-input__chevron {
    margin-top: .2rem;
    transform: rotate(225deg);
}

.rs-phone-input > input[data-rs-phone-number] {
    background: #fff;
    border: 0;
    border-left: 1px solid #ccd7d4;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    color: #17211f;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    min-height: 46px;
    min-width: 0;
    padding: .72rem .8rem;
    width: 100%;
}

.rs-phone-input:focus-within {
    border-color: var(--rs-button-color);
    box-shadow: 0 0 0 3px rgba(21, 141, 167, .14);
}

.rs-phone-input:focus-within > input {
    border-left-color: var(--rs-button-color);
}

.rs-phone-country-panel {
    background: #fff;
    border: 1px solid #ccd7d4;
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(23, 33, 31, .18);
    left: 0;
    padding: .55rem;
    position: absolute;
    right: 0;
    top: calc(100% + .45rem);
    z-index: 20;
}

.rs-phone-country-panel[hidden] {
    display: none;
}

.rs-phone-country-panel__search {
    border-radius: 8px;
    min-height: 42px;
    padding-block: .55rem;
}

.rs-phone-country-panel__list {
    max-height: min(240px, 38vh);
    margin-top: .4rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.rs-phone-country-option {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #17211f;
    cursor: pointer;
    display: grid;
    font-family: inherit;
    font-size: .92rem;
    gap: .55rem;
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
    min-height: 40px;
    padding: .5rem .55rem;
    text-align: left;
    width: 100%;
}

.rs-phone-country-option:hover,
.rs-phone-country-option:focus-visible {
    background: #eef6f5;
    outline: 0;
}

.rs-phone-country-option[aria-selected="true"] {
    background: #e3f1ef;
    color: #075e6e;
    font-weight: 700;
}

.rs-phone-country-option__code {
    color: #687773;
    font-variant-numeric: tabular-nums;
}

.rs-phone-country-panel__empty {
    color: #687773;
    font-size: .9rem;
    margin: .8rem .55rem;
    text-align: center;
}

.rs-registration-dialog__phone-hint {
    color: #687773;
    font-size: .82rem;
    line-height: 1.35;
}

.rs-registration-dialog__hint {
    color: #687773;
    font-size: .84rem;
    margin: -.3rem 0 .9rem;
}

.rs-registration-dialog__status {
    color: #5b6966;
    font-size: .9rem;
    margin: 0 0 .75rem;
}

.rs-registration-dialog__status:empty { display: none; }
.rs-registration-dialog__status.is-success { color: #147052; }
.rs-registration-dialog__status.is-error { color: #b33d45; }
.rs-registration-dialog__honeypot { left: -10000px; position: fixed; }

.rs-registration-dialog__submit {
    background: var(--rs-button-color);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto;
    min-height: 44px;
    padding: .65rem 1.4rem;
}

.rs-registration-dialog__submit:hover,
.rs-registration-dialog__submit:focus-visible { background: var(--rs-button-color-hover); }
.rs-registration-dialog__submit:disabled { cursor: wait; opacity: .65; }

.rs-registration-dialog__login {
    background: none;
    border: 0;
    color: var(--rs-button-color);
    cursor: pointer;
    display: block;
    font-size: .95rem;
    font-weight: 700;
    margin: .85rem auto 0;
    padding: 0;
}

.rs-registration-dialog__login:hover,
.rs-registration-dialog__login:focus-visible { color: var(--rs-button-color-hover); }

.rs-request-dialog {
    -webkit-text-size-adjust: 100%;
    background: transparent;
    border: 0;
    max-height: calc(100dvh - 2rem);
    max-width: min(560px, calc(100vw - 2rem));
    padding: 0;
    width: 100%;
}

.rs-request-dialog::backdrop {
    backdrop-filter: blur(4px);
    background: rgba(14, 25, 23, .55);
}

.rs-request-dialog__panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(13, 35, 31, .24);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.rs-request-dialog__close {
    align-items: center;
    background: #f1f4f3;
    border: 0;
    border-radius: 50%;
    color: #34413e;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 2.25rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.25rem;
}

.rs-request-dialog__eyebrow {
    color: var(--rs-header-accent);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 .35rem;
    text-transform: uppercase;
}

.rs-request-dialog h2 {
    color: var(--rs-header-ink);
    font-size: 1.7rem;
    margin: 0 2.5rem 1.1rem 0;
}

.rs-request-dialog__summary {
    background: #f5f8f8;
    border-radius: 14px;
    display: grid;
    gap: .55rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.rs-request-dialog__summary > div {
    display: grid;
    gap: .25rem;
    grid-template-columns: minmax(110px, .7fr) minmax(0, 1.3fr);
}

.rs-request-dialog__summary span {
    color: #687773;
    font-size: .86rem;
}

.rs-request-dialog__summary strong {
    color: #17211f;
    font-size: .92rem;
    font-weight: 650;
}

.rs-request-dialog__account {
    align-items: center;
    border-bottom: 1px solid #dfe6e4;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .8rem;
    margin-bottom: 1rem;
    padding: 0 0 1rem;
}

.rs-request-dialog__account span { color: #586763; }
.rs-request-dialog__account button { color: var(--rs-button-color); font-weight: 700; }
.rs-request-dialog__account button { background: none; border: 0; cursor: pointer; padding: 0; }

.rs-request-dialog form > label:not(.rs-request-dialog__copy) {
    color: #34413e;
    display: grid;
    font-size: .9rem;
    font-weight: 700;
    gap: .4rem;
    margin-bottom: .85rem;
}

.rs-request-dialog input[type="text"],
.rs-request-dialog input[type="email"],
.rs-request-dialog input[type="search"],
.rs-request-dialog textarea {
    background: #fff;
    border: 1px solid #ccd7d4;
    border-radius: 10px;
    box-sizing: border-box;
    color: #17211f;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    padding: .72rem .8rem;
    touch-action: manipulation;
    width: 100%;
}

.rs-request-dialog input:not([data-rs-phone-number]):focus,
.rs-request-dialog textarea:focus {
    border-color: var(--rs-button-color);
    box-shadow: 0 0 0 3px rgba(21, 141, 167, .14);
    outline: 0;
}

.rs-request-dialog__copy {
    align-items: center;
    display: flex;
    gap: .55rem;
    margin: .2rem 0 1rem;
}

.rs-request-dialog__copy input { height: 1.1rem; width: 1.1rem; }
.rs-request-dialog__honeypot { left: -10000px; position: fixed; }
.rs-request-dialog__status { margin: 0 0 .75rem; min-height: 0; }
.rs-request-dialog__status:empty { display: none; }
.rs-request-dialog__status.is-success { color: #147052; }
.rs-request-dialog__status.is-error { color: #b33d45; }

.rs-request-dialog__submit {
    background: var(--rs-button-color);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    min-height: 44px;
    padding: .65rem 1.4rem;
    width: fit-content;
}

.rs-request-dialog__submit:hover,
.rs-request-dialog__submit:focus-visible { background: var(--rs-button-color-hover); }
.rs-request-dialog__submit:disabled { cursor: wait; opacity: .65; }

.rs-request-success-dialog {
    background: transparent;
    border: 0;
    max-width: min(440px, calc(100vw - 2rem));
    padding: 0;
    width: 100%;
}

.rs-request-success-dialog::backdrop {
    backdrop-filter: blur(4px);
    background: rgba(14, 25, 23, .55);
}

.rs-request-success-dialog__panel {
    align-items: center;
    background: #f1f9f7;
    border: 1px solid #d7ebe6;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(13, 35, 31, .24);
    color: #155f50;
    display: flex;
    justify-content: center;
    min-height: 152px;
    padding: 2.75rem 2.5rem 2.35rem;
    position: relative;
}

.rs-request-success-dialog__panel p {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    color: #155f50;
    font-size: 1.12rem;
    font-weight: 700;
}

.rs-request-success-dialog__panel p span:first-child {
    color: #155f50;
    font-size: 1.12rem;
    font-weight: 700;
}

.rs-request-success-dialog__panel p span:last-child {
    color: #426e66;
    font-size: .98rem;
}

.rs-request-success-dialog__close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #4d8277;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 2.25rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: .85rem;
    top: .75rem;
    width: 2.25rem;
}

.rs-request-success-dialog__close:hover,
.rs-request-success-dialog__close:focus-visible {
    background: rgba(21, 95, 80, .08);
    outline: 0;
}

/* Consistent close control for every site dialog. */
:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
) {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 0;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    transition: background-color .18s ease;
    width: 42px;
}

:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
)::before,
:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
)::after {
    background: currentColor;
    content: '';
    height: 2px;
    left: 12px;
    position: absolute;
    top: 20px;
    width: 18px;
}

:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
)::before {
    transform: rotate(45deg);
}

:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
)::after {
    transform: rotate(-45deg);
}

:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
):hover,
:is(
    .rs-login-dialog__close,
    .rs-registration-dialog__close,
    .rs-request-dialog__close,
    .rs-request-success-dialog__close
):focus-visible {
    background: #f0f2f4;
    outline: 0;
}

.rs-registration {
    display: flex;
    justify-content: center;
    padding: 2rem 0 4rem;
}

.rs-registration__card {
    background: #fff;
    border: 1px solid #dfe6e4;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(28, 52, 51, .1);
    max-width: 480px;
    padding: 2rem;
    width: 100%;
}

.rs-registration h1 {
    color: var(--rs-header-ink);
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.rs-registration__form .control-group {
    margin-bottom: 1rem;
}

.rs-registration__form label {
    color: #34413e;
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.rs-registration__form input[type="text"],
.rs-registration__form input[type="email"],
.rs-registration__form input[type="password"] {
    border: 1px solid #ccd7d4;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
    min-height: 48px;
    padding: .7rem .8rem;
    width: 100%;
}

.rs-registration__form input:focus {
    border-color: var(--rs-button-color);
    box-shadow: 0 0 0 3px rgba(21, 141, 167, .14);
    outline: 0;
}

.rs-registration__form .input-group,
.rs-registration__form .password-group {
    width: 100%;
}

.rs-registration__submit {
    background: var(--rs-button-color);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-top: .25rem;
    min-height: 46px;
    padding: .7rem 1.4rem;
}

.rs-registration__submit:hover,
.rs-registration__submit:focus-visible {
    background: var(--rs-button-color-hover);
}

.rs-registration-page #seblod_form {
    background: #fff;
    border: 1px solid #dfe6e4;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(28, 52, 51, .1);
    margin: 1rem auto 4rem;
    max-width: 480px;
    padding: 2rem;
}

.rs-registration-page #seblod_form .rs-registration__title {
    color: var(--rs-header-ink);
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.rs-registration-page #seblod_form .cck_forms {
    display: grid;
    gap: .4rem;
    margin: 0 0 1rem;
    width: 100%;
}

.rs-registration-page #seblod_form .cck_forms[hidden] {
    display: none;
}

.rs-registration-page #seblod_form .cck_label,
.rs-registration-page #seblod_form .cck_form {
    float: none;
    margin: 0;
    width: 100%;
}

.rs-registration-page #seblod_form label {
    color: #34413e;
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin: 0;
}

.rs-registration-page #seblod_form input[type="text"],
.rs-registration-page #seblod_form input[type="email"],
.rs-registration-page #seblod_form input[type="password"] {
    border: 1px solid #ccd7d4;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
    min-height: 48px;
    padding: .7rem .8rem;
    width: 100%;
}

.rs-registration-page #seblod_form input:focus {
    border-color: var(--rs-button-color);
    box-shadow: 0 0 0 3px rgba(21, 141, 167, .14);
    outline: 0;
}

.rs-registration-page #seblod_form .btn-toolbar {
    margin: .25rem 0 0;
}

.rs-registration-page #seblod_form #button_save_close {
    background: var(--rs-button-color);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    min-height: 46px;
    padding: .7rem 1.4rem;
}

.rs-registration-page #seblod_form #button_save_close:hover,
.rs-registration-page #seblod_form #button_save_close:focus-visible {
    background: var(--rs-button-color-hover);
}

@media (hover: none) and (pointer: coarse) {
    .rs-request-dialog input[type="text"],
    .rs-request-dialog input[type="email"],
    .rs-request-dialog input[type="tel"],
    .rs-request-dialog textarea {
        font-size: 16px !important;
        transform: none;
    }
}

.rs-popular-directions {
    margin: 1.5rem 0 3.5rem;
}

.rs-popular-directions__heading {
    margin-bottom: 1.6rem;
}

.rs-popular-directions__heading h2 {
    color: #182b35;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.15;
    margin: 0 0 .45rem;
}

.rs-popular-directions__heading p {
    color: var(--rs-header-muted);
    font-size: 1rem;
    margin: 0;
}

.rs-popular-directions__grid {
    display: grid;
    gap: 1.4rem .7rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rs-popular-directions__card {
    color: var(--rs-header-ink);
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-decoration: none;
}

.rs-popular-directions__image {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #e8efed;
    border-radius: 16px;
    color: var(--rs-header-accent);
    display: flex;
    font-size: 3rem;
    font-weight: 850;
    justify-content: center;
    margin-bottom: .6rem;
    overflow: hidden;
}

.rs-popular-directions__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    width: 100%;
}

.rs-popular-directions__card:hover,
.rs-popular-directions__card:focus-visible {
    color: var(--rs-header-accent);
}

.rs-popular-directions__card:hover .rs-popular-directions__image img,
.rs-popular-directions__card:focus-visible .rs-popular-directions__image img {
    transform: scale(1.035);
}

.rs-popular-directions__card strong {
    font-size: 1rem;
    line-height: 1.2;
}

.rs-popular-directions__card small {
    color: var(--rs-header-muted);
    font-size: .88rem;
    line-height: 1.25;
    margin-top: .12rem;
}

.rs-logout-form__greeting {
    color: var(--rs-header-muted);
    margin: 0 0 1.25rem;
}

@media (max-width: 700px) {
    :root {
        --rs-page-gutter: 1rem;
    }

    body.rs-mobile-menu-open {
        overflow: hidden;
    }

    .realtyserbia-site #system-message-container {
        bottom: 1rem;
        max-width: none;
        right: 1rem;
        width: calc(100vw - 2rem);
    }

    .rs-site-header__main {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .65rem;
        min-height: 64px;
    }

    .rs-site-brand {
        font-size: 1.35rem;
    }

    .rs-popular-directions__heading h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .rs-popular-directions__heading p {
        font-size: .95rem;
    }

    .rs-popular-directions__card strong {
        font-size: .95rem;
    }

    .rs-popular-directions__card small {
        font-size: .82rem;
    }

    .rs-login-dialog h2 {
        font-size: 1.25rem;
    }

    .rs-login-dialog input,
    .rs-login-dialog button {
        font-size: 16px;
    }

    .rs-site-brand__mark {
        height: 2.125rem;
        width: 2.125rem;
    }

    .rs-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .rs-site-header__actions {
        align-items: flex-start;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 0;
        height: 100dvh;
        inset: 0;
        justify-content: flex-start;
        opacity: 0;
        overflow-y: auto;
        padding: 5.25rem 0 2rem;
        pointer-events: none;
        position: fixed;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        visibility: hidden;
        width: auto;
        z-index: 1;
    }

    .rs-site-header.is-menu-open .rs-site-header__actions {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .rs-site-header.is-menu-open .rs-site-header__actions,
    .rs-site-header.is-menu-open .rs-site-menu,
    .rs-site-header.is-menu-open .rs-site-menu .mod-menu {
        display: flex;
    }

    .rs-site-menu {
        box-sizing: border-box;
        order: 2;
        padding-inline: 0;
        width: 100%;
    }

    .rs-site-menu > *,
    .rs-site-menu .mod-menu {
        width: 100%;
    }

    .rs-site-menu .mod-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .rs-site-menu .mod-menu > li {
        align-items: stretch;
        width: 100%;
    }

    .rs-site-menu .mod-menu > li > a,
    .rs-site-menu .mod-menu > li > span {
        align-items: center;
        align-self: stretch;
        background: transparent;
        border-radius: 0;
        box-sizing: border-box;
        color: var(--rs-header-ink);
        display: flex;
        flex: 1 1 100%;
        font-size: 1.05rem;
        gap: 1rem;
        justify-content: flex-start;
        min-height: 3.75rem;
        padding: .65rem var(--rs-page-gutter) .65rem calc(var(--rs-page-gutter) + .75rem);
        width: 100%;
    }

    .rs-site-menu .mod-menu > li > a::before {
        color: var(--rs-header-ink);
        content: "\f3c5";
        flex: 0 0 2rem;
        font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome, sans-serif;
        font-size: 1.45rem;
        font-weight: 900;
        line-height: 1;
        text-align: center;
    }

    .rs-site-menu .mod-menu > li > a[href*="properties"]::before {
        content: "\f5a0";
    }

    .rs-site-menu .mod-menu > li > a::after {
        border-right: 3px solid currentColor;
        border-top: 3px solid currentColor;
        content: "";
        flex: 0 0 auto;
        height: .65rem;
        margin-left: auto;
        transform: rotate(45deg);
        width: .65rem;
    }

    .rs-site-menu .mod-menu > li > a:hover,
    .rs-site-menu .mod-menu > li > a:focus-visible {
        background: color-mix(in srgb, #4dc5df 12%, #fff);
    }

    .rs-site-menu .mod-menu > li.active > a,
    .rs-site-menu .mod-menu > li.current > a {
        background: transparent;
        font-weight: 400;
    }

    .rs-mobile-profile-title {
        border-top: 1px solid var(--rs-header-line);
        box-sizing: border-box;
        color: var(--rs-header-ink);
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin: .4rem 0 0;
        order: 3;
        padding: 1.9rem calc(var(--rs-page-gutter) + .75rem) .7rem;
        width: 100%;
    }

    .rs-login-trigger {
        align-items: center;
        align-self: stretch;
        background: transparent;
        border-radius: 0;
        display: flex;
        font-size: 1.05rem;
        gap: 1rem;
        justify-content: flex-start;
        margin-bottom: 0;
        min-height: 3.75rem;
        min-width: 0;
        order: 4;
        padding: .65rem var(--rs-page-gutter) .65rem calc(var(--rs-page-gutter) + .75rem);
        width: 100%;
    }

    .rs-login-trigger::before {
        color: var(--rs-header-ink);
        content: "\f2f6";
        flex: 0 0 2rem;
        font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome, sans-serif;
        font-size: 1.45rem;
        font-weight: 900;
        line-height: 1;
        text-align: center;
    }

    .rs-login-trigger::after {
        border-right: 3px solid currentColor;
        border-top: 3px solid currentColor;
        content: "";
        flex: 0 0 auto;
        height: .65rem;
        margin-left: auto;
        transform: rotate(45deg);
        width: .65rem;
    }

    .rs-login-trigger__desktop {
        display: none;
    }

    .rs-login-trigger__mobile {
        display: inline;
    }

    .rs-header-logout {
        align-self: stretch;
        order: 4;
        width: 100%;
    }

    .rs-header-logout .rs-login-trigger {
        width: 100%;
    }

    .rs-management-bar__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: .25rem;
        padding: .55rem var(--rs-page-gutter);
    }

    .rs-login-dialog,
    .rs-registration-dialog {
        height: 100dvh;
        inset: 0;
        margin: 0;
        max-height: none;
        max-width: none;
        width: 100vw;
    }

    .rs-login-dialog::backdrop,
    .rs-registration-dialog::backdrop {
        backdrop-filter: none;
        background: #fff;
    }

    .rs-login-dialog__panel,
    .rs-registration-dialog__panel {
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
        min-height: 100dvh;
        max-height: none;
        overflow-y: auto;
        padding: 1.25rem var(--rs-page-gutter) 2rem;
    }

    .rs-login-dialog__close,
    .rs-registration-dialog__close {
        right: var(--rs-page-gutter);
        top: 1rem;
    }

    .rs-registration-dialog h2 {
        font-size: 1.5rem;
        line-height: 1.18;
        margin-bottom: 1rem;
    }

    .rs-registration-dialog input,
    .rs-registration-dialog button {
        font-size: 16px;
    }

    .rs-request-dialog__panel {
        border-radius: 0;
        box-shadow: none;
        min-height: 100dvh;
        max-height: none;
        padding: 1.25rem var(--rs-page-gutter) 2rem;
    }

    .rs-request-dialog {
        height: 100dvh;
        inset: 0;
        margin: 0;
        max-height: none;
        max-width: none;
        width: 100vw;
    }

    .rs-request-dialog::backdrop {
        backdrop-filter: none;
        background: #fff;
    }

    .rs-request-dialog h2 {
        font-size: 1.5rem;
        line-height: 1.18;
        margin-bottom: 1rem;
        overflow-wrap: normal;
        word-break: normal;
    }

    .rs-request-dialog__close {
        right: var(--rs-page-gutter);
        top: .7rem;
    }

    .rs-request-dialog__summary > div {
        grid-template-columns: 1fr;
        gap: .1rem;
    }

    .rs-request-dialog__summary span,
    .rs-request-dialog__summary strong,
    .rs-request-dialog__account,
    .rs-request-dialog form > label {
        overflow-wrap: normal;
        word-break: normal;
    }

    .rs-request-dialog__summary strong {
        font-size: .95rem;
        line-height: 1.35;
    }

    .rs-request-dialog input,
    .rs-request-dialog textarea,
    .rs-request-dialog button {
        font-size: 16px;
    }

    .rs-registration {
        padding: .5rem 0 2rem;
    }

    .rs-registration__card {
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 1rem 0;
    }

    .rs-registration h1 {
        font-size: 1.7rem;
        margin-bottom: 1.25rem;
    }

    .rs-registration-page #seblod_form {
        border: 0;
        border-radius: 0;
        box-shadow: none;
        margin: 0 auto 2rem;
        padding: 1rem 0;
    }

    .rs-registration-page #seblod_form .rs-registration__title {
        font-size: 1.7rem;
        margin-bottom: 1.25rem;
    }

    .rs-popular-directions {
        margin: 1.1rem 0 2.5rem;
    }

    .rs-popular-directions__heading {
        margin-bottom: 1.1rem;
    }

    .rs-popular-directions__grid {
        display: flex;
        gap: .75rem;
        margin-right: -1rem;
        overflow-x: auto;
        padding: 0 1rem .4rem 0;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .rs-popular-directions__grid::-webkit-scrollbar {
        display: none;
    }

    .rs-popular-directions__card {
        flex: 0 0 min(68vw, 220px);
        scroll-snap-align: start;
    }

    .rs-popular-directions__image {
        border-radius: 14px;
    }
}

/* Property search hero on the catalogue landing page. */
.rs-property-search-hero {
    background-image: url("../images/property-search-hero.webp");
    background-position: center 52%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 510px;
}

@media (min-width: 901px) {
    .realtyserbia-site.rs-properties-home .rs-site-header__search {
        height: 0;
        padding-block: 0;
    }

    .realtyserbia-site.rs-properties-home .rs-site-header__search .rs-home-search {
        top: 122px;
    }
}

@media (max-width: 900px) {
    .rs-property-search-hero {
        display: none;
    }

    .realtyserbia-site.rs-properties-home .rs-site-header__search {
        height: auto;
        padding: 0 var(--rs-page-gutter) 22px;
    }
}

@media (max-width: 420px) {
    .rs-popular-directions__heading h2 {
        font-size: 25px;
    }
}
.mod-breadcrumbs {
    background: transparent;
    padding-inline: 0 !important;
}

.rs-property-page .pagenavigation {
    display: none;
}

/* RealtySerbia marketplace header. */
.realtyserbia-site .rs-site-header {
    overflow: visible;
    transition: box-shadow .22s ease;
}

.realtyserbia-site .rs-site-header__main {
    min-height: 72px;
    padding-inline: var(--rs-page-gutter);
    width: min(1280px, 100%);
}

.rs-site-header__search {
    align-items: flex-start;
    display: flex;
    height: 100px;
    justify-content: center;
    padding: 0 var(--rs-page-gutter) 22px;
    transition: height .32s cubic-bezier(.2, .8, .2, 1), padding .32s cubic-bezier(.2, .8, .2, 1);
}

.rs-site-header__filters {
    align-items: center;
    display: flex;
    height: 0;
    min-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 var(--rs-page-gutter);
    pointer-events: none;
    transition: height .32s cubic-bezier(.2, .8, .2, 1), min-height .32s cubic-bezier(.2, .8, .2, 1), opacity .2s ease;
}

.rs-site-header__filters.is-visible {
    height: 58px;
    min-height: 58px;
    opacity: 1;
    pointer-events: auto;
}

.rs-site-header.is-search-compact {
    box-shadow: 0 2px 12px rgba(20, 38, 55, .08);
}

@media (min-width: 901px) {
    .rs-site-header.is-search-compact .rs-site-header__search {
        height: 0;
        padding-block: 0;
    }

    .rs-site-header.is-search-scroll-compact + .site-grid {
        padding-top: 100px;
    }
}

.realtyserbia-site .rs-site-brand {
    font-size: clamp(1.45rem, 2vw, 1.75rem);
}

.realtyserbia-site .rs-site-header__actions {
    align-items: center;
    background: transparent;
    display: flex;
    flex-direction: row;
    gap: .65rem;
    height: auto;
    inset: auto;
    opacity: 1;
    overflow: visible;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: auto;
}

.rs-desktop-nav {
    align-items: center;
    display: flex;
    gap: .25rem;
}

.rs-desktop-nav a,
.rs-desktop-nav button {
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: #17211f;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    padding: .72rem .9rem;
    text-decoration: none;
    white-space: nowrap;
}

.rs-desktop-nav a:hover,
.rs-desktop-nav a:focus-visible,
.rs-desktop-nav button:hover,
.rs-desktop-nav button:focus-visible {
    background: color-mix(in srgb, #4dc5df 12%, #fff);
    color: #003568;
    outline: 0;
}

.rs-desktop-nav .rs-header-logout {
    width: auto;
}

.rs-language-toggle,
.realtyserbia-site .rs-menu-toggle {
    align-items: center;
    background: #f2f4f5;
    border: 0;
    border-radius: 50%;
    color: #17211f;
    cursor: pointer;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: static;
    transition: background-color .18s ease, box-shadow .18s ease;
    width: 44px;
}

.rs-language-toggle:hover,
.rs-language-toggle:focus-visible,
.realtyserbia-site .rs-menu-toggle:hover,
.realtyserbia-site .rs-menu-toggle:focus-visible {
    background: #e8edf1;
    box-shadow: 0 0 0 3px rgba(0, 53, 104, .1);
    outline: 0;
}

.rs-language-toggle svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 19px;
}

.realtyserbia-site .rs-menu-toggle__icon {
    gap: 3px;
    width: 17px;
}

.realtyserbia-site .rs-menu-toggle__icon i {
    height: 1.7px;
}

.realtyserbia-site .rs-site-header.is-menu-open .rs-menu-toggle__icon i {
    opacity: 1;
    transform: none;
}

.rs-header-menu {
    display: none;
    position: relative;
}

@media (min-width: 701px) {
    .realtyserbia-site .rs-menu-toggle {
        display: none;
    }
}

.rs-header-menu__panel {
    background: #fff;
    border: 1px solid #e3e6e8;
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(19, 35, 52, .18);
    min-width: 250px;
    padding: .55rem 0;
    position: absolute;
    right: 0;
    top: calc(100% + .75rem);
    z-index: 1100;
}

.rs-header-menu__panel[hidden] {
    display: none;
}

.rs-header-menu__item {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    color: #17211f;
    cursor: pointer;
    display: block;
    font: inherit;
    padding: .8rem 1.15rem;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.rs-header-menu__item:hover,
.rs-header-menu__item:focus-visible {
    background: #f4f7f9;
    color: #003568;
    outline: 0;
}

.rs-header-menu__divider {
    background: #e2e5e7;
    height: 1px;
    margin: .35rem 1.15rem;
}

.rs-header-menu .rs-header-logout {
    width: 100%;
}

@media (max-width: 700px) {
    .realtyserbia-site .rs-site-header__main {
        flex-wrap: nowrap;
        min-height: 70px;
        padding-inline: 1rem;
    }

    .realtyserbia-site .rs-site-brand {
        font-size: 1.35rem;
    }

    .rs-desktop-nav {
        display: none;
    }

    .realtyserbia-site .rs-header-menu {
        display: block;
    }

    .rs-language-toggle,
    .realtyserbia-site .rs-menu-toggle {
        height: 40px;
        width: 40px;
    }

    .rs-header-menu__panel {
        max-width: calc(100vw - 2rem);
        min-width: 230px;
    }

    .rs-site-header__search {
        height: auto;
        padding: 0 1rem .75rem;
    }
}

.rs-header-menu__icon,
.rs-header-menu__chevron {
    display: none;
}

@media (max-width: 700px) {
    body.rs-mobile-menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.rs-mobile-menu-open .rs-site-header__search {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .realtyserbia-site .rs-site-brand,
    .realtyserbia-site .rs-menu-toggle {
        position: relative;
        z-index: 10002;
    }

    .realtyserbia-site .rs-site-header__actions,
    .realtyserbia-site .rs-site-header.is-menu-open .rs-site-header__actions {
        opacity: 1;
        position: static;
        transform: none !important;
        transition: none;
        visibility: visible;
    }

    .realtyserbia-site .rs-header-menu {
        position: static;
    }

    .realtyserbia-site .rs-header-menu__panel,
    .realtyserbia-site .rs-header-menu__panel[hidden] {
        align-items: stretch;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        height: 100dvh;
        inset: 0;
        max-width: none;
        min-width: 0;
        opacity: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: calc(5.25rem + env(safe-area-inset-top)) 0 max(2rem, env(safe-area-inset-bottom));
        pointer-events: none;
        position: fixed;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        visibility: hidden;
        width: 100vw;
        z-index: 10000;
    }

    .realtyserbia-site .rs-site-header.is-menu-open .rs-header-menu__panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .realtyserbia-site .rs-header-menu__item {
        align-items: center;
        background: transparent;
        border-radius: 0;
        color: #17211f;
        display: flex;
        flex: 0 0 auto;
        font-size: 1.08rem;
        gap: 1rem;
        justify-content: flex-start;
        min-height: 4.25rem;
        padding: .7rem 1.25rem;
        text-align: left;
        width: 100%;
    }

    .realtyserbia-site .rs-header-menu__item:hover,
    .realtyserbia-site .rs-header-menu__item:focus-visible {
        background: color-mix(in srgb, #003568 8%, #fff);
        color: #003568;
    }

    .realtyserbia-site .rs-header-menu__icon {
        align-items: center;
        background: #edf3f8;
        border-radius: 13px;
        color: #003568;
        display: inline-flex;
        flex: 0 0 44px;
        height: 44px;
        justify-content: center;
        width: 44px;
    }

    .realtyserbia-site .rs-header-menu__icon svg {
        fill: none;
        height: 24px;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.7;
        width: 24px;
    }

    .realtyserbia-site .rs-header-menu__label {
        flex: 1 1 auto;
        min-width: 0;
    }

    .realtyserbia-site .rs-header-menu__chevron {
        border-right: 2px solid currentColor;
        border-top: 2px solid currentColor;
        display: block;
        flex: 0 0 auto;
        height: .6rem;
        margin-right: .25rem;
        transform: rotate(45deg);
        width: .6rem;
    }

    .realtyserbia-site .rs-header-menu__divider {
        background: #e5e9ec;
        flex: 0 0 1px;
        margin: .5rem 1.25rem;
    }

    .realtyserbia-site .rs-header-menu .rs-header-logout {
        display: block;
        width: 100%;
    }

    .realtyserbia-site .rs-site-header.is-menu-open .rs-menu-toggle__icon i:first-child {
        opacity: 1;
        transform: translateY(4.7px) rotate(45deg);
    }

    .realtyserbia-site .rs-site-header.is-menu-open .rs-menu-toggle__icon i:nth-child(2) {
        opacity: 0;
    }

    .realtyserbia-site .rs-site-header.is-menu-open .rs-menu-toggle__icon i:last-child {
        opacity: 1;
        transform: translateY(-4.7px) rotate(-45deg);
    }
}

.realtyserbia-site.rs-material-page .rs-site-header {
    position: relative;
    top: auto;
}

/* Services pricing page */
.rs-services-page .com-content-article__body,
.rs-services-page .item-page {
    width: 100%;
}

.rs-services {
    color: #17211f;
    padding: 0 0 4rem;
}

.rs-services__header {
    margin: 0 0 2rem;
    width: 100%;
}

.rs-services__header h1 {
    color: #17211f;
    font-size: 36px;
    font-weight: 750;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin: 0 0 .75rem;
    overflow-wrap: anywhere;
}

.rs-services__header p {
    color: #59636d;
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
    max-width: 760px;
}

.rs-services__grid {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-service-card {
    background: #fff;
    border: 1px solid #dfe5e9;
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(0, 53, 104, .07);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    position: relative;
}

.rs-service-card--featured {
    border-color: #003568;
    box-shadow: 0 18px 46px rgba(0, 53, 104, .14);
}

.rs-service-card__badge {
    align-self: flex-start;
    background: #eaf2f7;
    border-radius: 999px;
    color: #003568;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .04em;
    margin: 0 0 1.15rem;
    padding: .42rem .72rem;
    text-transform: uppercase;
}

.rs-service-card--featured .rs-service-card__badge {
    background: #003568;
    color: #fff;
}

.rs-service-card h2 {
    color: #17211f;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -.025em;
    line-height: 1.22;
    margin: 0 0 1rem;
}

.rs-service-card__price {
    align-items: baseline;
    color: #003568;
    display: flex;
    flex-wrap: wrap;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    gap: .35rem;
    letter-spacing: -.045em;
    line-height: 1;
    margin: 0 0 .8rem;
}

.rs-service-card__price small {
    color: #59636d;
    font-size: .94rem;
    font-weight: 500;
    letter-spacing: 0;
}

.rs-service-card__note {
    color: #59636d;
    line-height: 1.5;
    margin: 0 0 1.35rem;
    min-height: 3em;
}

.rs-service-card__features {
    border-top: 1px solid #e7ebee;
    list-style: none;
    margin: auto 0 0;
    padding: 1.25rem 0 0;
}

.rs-service-card__features li {
    color: #34404a;
    line-height: 1.45;
    margin: 0;
    padding: .42rem 0 .42rem 1.75rem;
    position: relative;
}

.rs-service-card__features li::before {
    align-items: center;
    background: #e7f3ed;
    border-radius: 50%;
    color: #087443;
    content: "✓";
    display: flex;
    font-size: .72rem;
    font-weight: 800;
    height: 1.15rem;
    justify-content: center;
    left: 0;
    position: absolute;
    top: .52rem;
    width: 1.15rem;
}

.rs-services__details {
    background: #f1f5f7;
    border-radius: 18px;
    color: #46525c;
    line-height: 1.6;
    margin-top: 1.25rem;
    padding: 1.15rem 1.3rem;
}

.rs-services__details strong {
    color: #17211f;
}

.rs-services__details p {
    margin: 0;
}

.rs-services__details p + p {
    margin-top: .45rem;
}

.rs-services__empty {
    background: #f4f7fa;
    border-radius: 18px;
    color: #59636d;
    padding: 1.25rem;
}

@media (max-width: 920px) {
    .rs-services__grid {
        grid-template-columns: 1fr;
    }

    .rs-service-card__note {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .rs-services {
        padding-bottom: 2.5rem;
    }

    .rs-services__header p {
        font-size: 1rem;
    }

    .rs-service-card {
        border-radius: 18px;
    }
}

/* Compact site footer with breadcrumbs. */
.rs-site-footer {
    background: #f7f7f7;
    border-top: 1px solid #e1e1e1;
    color: #222;
    margin-top: 2rem;
    width: 100%;
}

.rs-site-footer__breadcrumbs {
    border-bottom: 0;
}

.rs-site-footer__inner {
    box-sizing: border-box;
    margin: 0 auto;
    padding-inline: var(--rs-page-gutter);
    width: min(1280px, 100%);
}

.rs-site-footer__breadcrumbs .mod-breadcrumbs__wrapper {
    margin: 0;
    overflow-x: visible;
}

.rs-site-footer__breadcrumbs .mod-breadcrumbs {
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    min-height: 62px;
    padding: .85rem 0 !important;
    white-space: normal;
}

.rs-site-footer__breadcrumbs .breadcrumb-item {
    color: #303030;
    flex: 0 0 auto;
    font-size: .9rem;
    line-height: 1.35;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 0;
}

.rs-site-footer__breadcrumbs .breadcrumb-item + .breadcrumb-item {
    padding-left: .7rem;
}

.rs-site-footer__breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    color: #717171;
    content: "\203A";
    padding-right: .7rem;
}

.rs-site-footer__breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.rs-site-footer__breadcrumbs a:hover,
.rs-site-footer__breadcrumbs a:focus-visible {
    color: #003568;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.rs-site-footer__main {
    display: grid;
    gap: 2.5rem clamp(2rem, 4vw, 4.5rem);
    grid-template-columns: minmax(240px, 1.35fr) minmax(180px, .8fr) minmax(220px, 1fr) auto;
    padding-block: 2.5rem 2rem;
}

.rs-site-footer__about,
.rs-site-footer__links,
.rs-site-footer__coverage,
.rs-site-footer__social-block {
    min-width: 0;
}

.rs-site-footer__brand {
    align-items: center;
    color: #003568;
    display: inline-flex;
    font-size: 1.7rem;
    font-weight: 800;
    gap: .75rem;
    letter-spacing: -.035em;
    text-decoration: none;
}

.rs-site-footer__brand img {
    display: block;
    flex: 0 0 52px;
    height: 52px;
    object-fit: contain;
    width: 52px;
}

.rs-site-footer__about p,
.rs-site-footer__coverage p {
    color: #747b80;
    font-size: .9rem;
    line-height: 1.55;
    margin: .8rem 0 0;
    max-width: 290px;
}

.rs-site-footer__about p strong {
    color: #003568;
    font-weight: 750;
}

.rs-site-footer__phone {
    color: #17211f;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.rs-site-footer__phone::before {
    content: "🇷🇸";
    font-size: 1rem;
    margin-right: .45rem;
}

.rs-site-footer__phone:hover,
.rs-site-footer__phone:focus-visible {
    color: #003568;
}

.rs-site-footer__links,
.rs-site-footer__coverage,
.rs-site-footer__social-block {
    padding-top: .55rem;
}

.rs-site-footer__links > strong,
.rs-site-footer__coverage > strong,
.rs-site-footer__social-block > strong {
    color: #17211f;
    display: block;
    font-size: .92rem;
    margin-bottom: .85rem;
}

.rs-site-footer__links a {
    color: #687076;
    display: block;
    font-size: .9rem;
    margin-top: .45rem;
    text-decoration: none;
}

.rs-site-footer__links a:hover,
.rs-site-footer__links a:focus-visible {
    color: #003568;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.rs-site-footer__socials--desktop {
    gap: .65rem;
}

.rs-site-footer__socials--desktop .rs-site-footer__social {
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(20, 38, 55, .05);
    box-sizing: border-box;
    height: 56px;
    justify-content: center;
    padding: 16px;
    width: 56px;
}

.rs-site-footer__bottom {
    border-top: 1px solid #e6e8e9;
    min-height: 58px;
}

.rs-site-footer__bottom .rs-site-footer__inner {
    align-items: center;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    min-height: 58px;
}

.rs-site-footer__legal {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: .88rem;
    gap: .38rem;
    line-height: 1.45;
}

.rs-site-footer__socials {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 1rem;
}

.rs-site-footer__social {
    color: #222;
    display: inline-flex;
    height: 20px;
    width: 20px;
}

.rs-site-footer__social svg {
    fill: none;
    height: 100%;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
    width: 100%;
}

.rs-site-footer__social-bg {
    fill: currentColor;
    stroke: none;
}

.rs-site-footer__social-mark {
    fill: #f7f7f7;
    stroke: none;
}

.rs-site-footer__social-dot {
    fill: currentColor;
    stroke: none;
}

.rs-site-footer__bottom .rs-site-footer__socials {
    display: none;
}

@media (min-width: 701px) and (max-width: 1050px) {
    .rs-site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-site-footer__social-block {
        align-self: end;
    }
}

@media (max-width: 700px) {
    .rs-site-footer {
        margin-top: 1.25rem;
    }

    .rs-site-footer__breadcrumbs .mod-breadcrumbs {
        min-height: 54px;
        padding-block: .7rem !important;
    }

    .realtyserbia-site.view-article .rs-site-footer__breadcrumbs .breadcrumb-item:nth-last-child(2)::after {
        color: #717171;
        content: "\203A";
        padding-left: .7rem;
    }

    .realtyserbia-site.view-article .rs-site-footer__breadcrumbs .breadcrumb-item.active {
        flex-basis: 100%;
        padding-left: 0;
    }

    .realtyserbia-site.view-article .rs-site-footer__breadcrumbs .breadcrumb-item.active::before {
        display: none;
    }

    .rs-site-footer__bottom,
    .rs-site-footer__bottom .rs-site-footer__inner {
        min-height: 0;
    }

    .rs-site-footer__main {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        padding-block: 1.5rem;
    }

    .rs-site-footer__about {
        order: 1;
    }

    .rs-site-footer__brand {
        font-size: 1.45rem;
        gap: .65rem;
    }

    .rs-site-footer__brand img {
        flex-basis: 44px;
        height: 44px;
        width: 44px;
    }

    .rs-site-footer__about p {
        font-size: .86rem;
        margin-top: .65rem;
        max-width: 310px;
    }

    .rs-site-footer__coverage {
        order: 2;
        padding: 0;
    }

    .rs-site-footer__phone {
        font-size: 1.25rem;
    }

    .rs-site-footer__coverage p {
        font-size: .84rem;
        margin-top: .4rem;
    }

    .rs-site-footer__links {
        display: flex;
        flex-direction: column;
        gap: .4rem;
        order: 3;
        padding-top: 0;
    }

    .rs-site-footer__links > strong {
        flex-basis: 100%;
        margin-bottom: .2rem;
    }

    .rs-site-footer__links a {
        color: #39434a;
        font-size: .86rem;
        margin: 0;
        padding: 0;
    }

    .rs-site-footer__social-block {
        order: 4;
        padding-top: 0;
    }

    .rs-site-footer__social-block > strong {
        margin-bottom: .65rem;
    }

    .rs-site-footer__socials--desktop {
        gap: .55rem;
    }

    .rs-site-footer__socials--desktop .rs-site-footer__social {
        border-radius: 13px;
        height: 50px;
        padding: 14px;
        width: 50px;
    }

    .rs-site-footer__bottom .rs-site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 1rem;
    }

    .rs-site-footer__legal {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: .82rem;
        gap: .35rem .7rem;
        text-align: left;
        width: 100%;
    }

    .rs-site-footer__legal > span[aria-hidden="true"] {
        display: none;
    }

    .rs-site-footer__legal > span:first-child {
        flex-basis: 100%;
    }

    .rs-site-footer__socials {
        gap: .55rem;
    }

    .rs-site-footer__bottom .rs-site-footer__socials {
        display: none;
    }
}
