

/* Start:/local/templates/ipotekatmpl/components/bitrix/catalog.section.list/sections_tabs_variable/style.css?1776296133398*/
/* TABS */
    .deposits-tab-nav {
        display: inline-flex;
    }
	.deposits-tab-nav .tab-button{
        display: inline-flex;
    }

    .deposits-tab-nav .tab-nav {
        background-color: var(--container-high);
    }
    .product-card-list {
        display: flex;
        flex-direction: column;
        padding: var(--space-3x) 0;
        gap: var(--space-3x);
    }
	
/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html/zalog_filter/style.css?17762961334058*/
span[type="button"] {
    cursor: pointer;
    text-decoration: underline;
}

.property-filter {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-bottom: 5rem;
}

.filter-buttons {
    display: flex;
    background-color: var(--container-high);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    align-items: center;
    gap: 1rem;
}

.filter-buttons .button {
    flex-grow: 1;
    order: -1;
}

.apply-filter-button {
    display: flex;
    padding: 1rem 2rem;
    border-radius: var(--radius-999);
    background-color: var(--primary);
    color: var(--on-primary);
    font-size: 1rem;
    font-weight: 700;
    height: 3rem;
    align-items: center;
}

.apply-filter-button::after {
    content: '';
    position: absolute;
    --width: 1rem;
    width: var(--width);
    height: var(--width);
    background-color: inherit;
    border-radius: 0 0 0 var(--radius-4);
    inset: 0 auto 0 calc(0rem - var(--width)/2);
    /* top, right, bottom, left */
    margin: auto 0;
    /* Vertical auto margin centers it */
    transform: rotate(45deg);
    display: none;
}

.apply-filter-button.show-indicator {
    opacity: 1;
    visibility: visible;
}


@media (min-width: 768px) {

    .filter-buttons {
        padding: 0;
        position: static;
    }

    .apply-filter-button::after {
        display: block;
    }

    .apply-filter-button {
        position: absolute;
        top: var(--after-top, 0);
        transform: translate(100%, -50%);
        bottom: unset;
        right: 0;
        left: unset;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        height: auto;
        border-radius: var(--radius-8);
    }

}

.filter-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-2x);
}

.filter-block .filter-block__title {
    font-size: var(--headline-3-font-size);
    line-height: var(--headline-3-line-height);
    font-weight: var(--headline-3-font-weight);
}

.filter-block .filter-block__input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-filter-card {
    display: none;
    padding: 1.25rem;
    border-radius: var(--radius-24);
    background-color: var(--container-high);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.property-filter-card.is-open {
    display: block;
    z-index: 2048;
}

.filter-collapser-btn svg {
    transition: .2s transform ease-in-out;
}

.filter-collapser-btn.is-open svg {
    transform: rotate(180deg);
    transition: .2s transform ease-in-out;
}

.property-filter-header {
    display: flex;
    justify-content: flex-end;
}

.property-filter-header .button.button--secondary {
    padding: .5rem;
    background-color: transparent;
}

.filter-mobile-trigger {
    width: 100%;
}

.filter-block .filter-range-input {
    display: flex;
    flex-direction: column;
    gap: var(--space-base);
}

.filter-block .filter-range-input .filter-range-input__item {
    flex: 1 1 0;
    width: 100%;
}

.filter-block .filter-range-input .divider-line {
    height: 1px;
    background-color: var(--container-low);
    width: 1rem;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 768px) {
    .property-filter {
        padding-bottom: 0;
    }

    .property-filter-header {
        display: none;
    }

    .property-filter-card {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: unset;
        height: unset;
        overflow-y: visible;
    }

    .button.filter-mobile-trigger {
        display: none;
    }

    .filter-block .filter-range-input {
        flex-direction: row;
        align-items: center;
    }

    .filter-block .filter-range-input .divider-line {
        display: block;
    }
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/bitrix/system.pagenavigation/default/style.css?17762961331558*/
.pagination-navs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.pagination-navs a,
.pagination-navs span,
.pagination-navs .active,
.pagination-navs .disabled {
    display: flex;
    justify-content: center;
    padding: .5rem .75rem;
    background: var(--container-higher);
    text-decoration: none;
    border-radius: var(--radius-12);
    --font-size: var(--body-font-size);
    --line-height: var(--body-line-height);
    --font-weight: var(--body--highlighted-font-weight);
    --font-family: var(--body-font-family);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
    line-height: var(--line-height);
    min-width: calc(1rem * var(--line-height) + 1rem);
    transition: all .2s ease-in-out;

}

.pagination-navs .active,
.pagination-navs span.active,
.pagination-navs a:hover,
.pagination-navs span:hover {
    background: var(--primary);
    color: var(--on-primary);
    transition: all .2s ease-in-out;
}

.pagination-navs .disabled,
.pagination-navs span.disabled {
    background: var(--container-high);
    color: var(--on-surface-variant);

}

.page-nums {
    --font-size: var(--lead-font-size);
    --line-height: var(--lead-line-height);
    --font-weight: var(--lead-font-weight);
    --font-family: var(--lead-font-family);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
    line-height: var(--line-height);
    margin-bottom: var(--space-2x);
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/bitrix/news.list/zalog/style.css?17762961335036*/
.property-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3x);
}

.property-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-16);
    background-color: var(--container-high);
}

.property-card .property-card__photo {
    margin-bottom: .75rem;
}

.property-card .property-card__photo img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-16);
}

.property-card .property-card__gallery {
    display: flex;
    gap: var(--space-base);
    overflow: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE и Edge */
}

.property-card .property-card__gallery::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.property-card .property-card__gallery-item {
    display: flex;
    flex-shrink: 0;
}

.property-card .property-card__gallery-item img {
    height: 4rem;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-16);
    object-fit: cover;
}

.property-card .button {
    width: 100%;
}

.property-card .button.button--secondary {
    background-color: var(--container-higher);
}

.property-card .button.button--secondary:hover {
    background-color: var(--container-low);
}

.property-card__row {
    row-gap: 1.25rem;
}

.property-card .property-card__title {
    font-size: var(--hero-subtitle-font-size);
    font-family: var(--hero-font-family);
    font-weight: 700;
    line-height: var(--hero-subtitle-line-height);
    margin-bottom: var(--space-3x);
    color: var(--on-surface);
    text-decoration: none;
    display: block;
}

.property-card .property-card__content {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.property-card .property__dl {
    display: flex;
    flex-direction: column;
}

.property-card .property__dt {
    color: var(--on-surface-variant);
}

.property-card .property__dd {
    font-size: var(--lead-font-size);
    line-height: var(--lead-line-height);
}

.property-card__content .row {
    row-gap: .75rem;
}

.property-card .property-card__mobile-contacts {
    display: flex;
    flex-direction: column;
    padding-top: 1.25rem;
    border-top: 1px solid var(--outline-variant);
    margin-bottom: 1.25rem;
}

.property-card .property-card__mobile-contacts-title {
    font-size: var(--headline-3-font-size);
    line-height: var(--headline-3-line-height);
    font-weight: var(--headline-3-font-weight);
    margin-bottom: 1.25rem;
}

.property-card .property-card__mobile-contacts .property__dl {
    flex-direction: row;
    justify-content: space-between;
}

.property-card .property-card__mobile-contacts .property__dl:not(:last-child) {
    margin-bottom: .75rem;
}

.property-card .property-card__mobile-contacts .property__dt,
.property-card .property-card__mobile-contacts .property__dd {
    font-size: var(--body-normal-font-size);
    line-height: var(--body-normal-line-height);
    color: var(--on-surface);
}

.row.property-card__desktop-contacts {
    display: none;
}

.zalog-modal .autocredit-form {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}

.zalog-modal .autocredit-form .row {
    --bs-gutter-y: 1.5rem;
}

.zalog-modal .autocredit-form .input {
    background-color: var(--container-high);
}

.zalog-modal .autocredit-form .headline-1 {
    text-align: left;
    margin-bottom: 0;
}

@media (min-width: 768px) {


    .property-card .property-card__mobile-contacts {
        display: none;
    }
}

@media (min-width: 1400px) {

    .property-card {
        padding: 2rem 2.5rem;
        border-radius: var(--radius-24);
    }

    .property-card__row {
        row-gap: .75rem;
    }

    .row.property-card__desktop-contacts {
        display: flex;
    }
}




.default-modal-content.modal-content {
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.default-modal {
    position: relative;
    border-radius: var(--radius-32);
    padding: var(--space-x);
    background-color: var(--container-higher);
    box-shadow: 10px 5px 48px 10px rgba(166, 173, 186, 0.2);
}

.default-modal__close-btn {
    position: absolute;
    top: var(--space-2x);
    right: var(--space-2x);
    padding: var(--space-base);
    width: var(--dimension-8);
    height: var(--dimension-8);
    color: var(--on-surface-variant);
}



@media (max-width: 768px) {

    .modal-dialog:has(.default-modal) {
        display: flex;
        height: 100%;
        align-items: end;
        margin: 0;
    }

    .default-modal {
        border-radius: var(--radius-32) var(--radius-32) 0 0;
        padding: var(--space-2x);
    }

    .default-modal .modal-message {
        max-height: 85vh;
        overflow-y: auto;
    }

    .default-modal .modal-message>* {
        flex-shrink: 0;
    }
}
/* End */
/* /local/templates/ipotekatmpl/components/bitrix/catalog.section.list/sections_tabs_variable/style.css?1776296133398 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html/zalog_filter/style.css?17762961334058 */
/* /local/templates/ipotekatmpl/components/bitrix/system.pagenavigation/default/style.css?17762961331558 */
/* /local/templates/ipotekatmpl/components/bitrix/news.list/zalog/style.css?17762961335036 */
