.atomix-objects {
    width: 100%;
}

.atomix-objects__tabs {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin: 0 0 48px;
}

.atomix-objects__tab {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-width: 120px;
    margin: 0;
    padding: 0 0 14px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #46556e;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: color 0.25s ease;
}

.atomix-objects__tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 999px;
    background-color: #d6dff2;
    transition: background-color 0.25s ease;
}

.atomix-objects__tab:hover,
.atomix-objects__tab.is-active {
    color: #0089cf;
}

.atomix-objects__tab.is-active::after {
    background-color: #0089cf;
}

.atomix-objects__tab-icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
}

.elementor .atomix-objects__tab-icon > img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
}

.atomix-objects__tab-title {
    display: block;
    line-height: 1.2;
}

.atomix-objects__panel[hidden],
.atomix-objects__card[hidden],
.atomix-objects__load-wrap[hidden] {
    display: none !important;
}

.atomix-objects__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.atomix-objects__card {
    position: relative;
    display: block;
    height: 300px;
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #dfe7ef;
    isolation: isolate;
}

.elementor .atomix-objects__card > img.atomix-objects__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: var(--atomix-objects-image-fit, cover);
    object-position: var(--atomix-objects-image-position, center center);
    transform: scale(1);
    transition: transform 0.45s ease;
}

.elementor .atomix-objects__card:hover > img.atomix-objects__image {
    transform: scale(1.045);
}

.atomix-objects__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: linear-gradient(
        180deg,
        rgba(7, 20, 35, 0) 35%,
        rgba(7, 20, 35, 0.82) 100%
    );
    pointer-events: none;
}

.atomix-objects__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    min-width: 0;
    padding: 20px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.atomix-objects__meta {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.atomix-objects__title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.atomix-objects__address {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.atomix-objects__address-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.atomix-objects__address-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.atomix-objects__address-text {
    min-width: 0;
    overflow-wrap: anywhere;
}

.atomix-objects__button {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    background-color: transparent;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.atomix-objects__button:hover,
.atomix-objects__button:focus-visible {
    border-color: #fff;
    background-color: #fff;
    color: #0089cf;
}

.atomix-objects__empty {
    padding: 30px 0;
    text-align: center;
}

.atomix-objects__load-wrap {
    display: flex;
    margin-top: 48px;
    justify-content: center;
}

.atomix-objects__load-button {
    display: inline-flex;
    min-width: 0;
    margin: 0;
    padding: 16px 28px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid #0089cf;
    border-radius: 5px;
    outline: 0;
    background-color: #fff;
    color: #0089cf;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.atomix-objects__load-button:hover,
.atomix-objects__load-button:focus-visible {
    border-color: #0089cf;
    background-color: #0089cf;
    color: #fff;
}

.atomix-objects__load-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.atomix-objects__load-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

.atomix-objects__load-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.atomix-objects__card-template {
    display: none;
}

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

    .atomix-objects__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .atomix-objects__tab {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .atomix-objects__grid {
        grid-template-columns: 1fr;
    }

    .atomix-objects__card {
        height: 260px;
    }

    .atomix-objects__content {
        align-items: flex-end;
    }

    .atomix-objects__button {
        flex-shrink: 0;
    }
}

/* Object details popup */

html.atomix-objects-popup-open,
body.atomix-objects-popup-open {
    overflow: hidden;
}

.atomix-objects__button {
    margin: 0;
    font-family: inherit;
    cursor: pointer;
}

.atomix-objects__popup[hidden],
.atomix-objects__popup-grid[hidden],
.atomix-objects__popup-status[hidden],
.atomix-objects__popup-gallery[hidden],
.atomix-objects__popup-gallery-thumbs[hidden],
.atomix-objects__popup-fact[hidden],
.atomix-objects__popup-section[hidden],
.atomix-objects__popup [hidden] {
    display: none !important;
}

.atomix-objects__popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    box-sizing: border-box;
    padding: 16px;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.atomix-objects__popup.is-open {
    opacity: 1;
    visibility: visible;
}

.atomix-objects__popup-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background-color: rgba(19, 31, 45, 0.72);
    cursor: pointer;
}

.atomix-objects__popup-dialog {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 1320px;
    max-width: calc(100vw - 32px);
    max-height: 92vh;
    padding: 38px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #d6dff2;
    border-radius: 18px;
    background-color: #fff;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.atomix-objects__popup.is-open .atomix-objects__popup-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.atomix-objects__popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50%;
    outline: 0;
    background-color: transparent;
    color: #1c2735;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.atomix-objects__popup-close:hover,
.atomix-objects__popup-close:focus-visible {
    background-color: rgba(0, 137, 207, 0.08);
    color: #0089cf;
}

.atomix-objects__popup-close-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.atomix-objects__popup-close-icon svg,
.atomix-objects__popup-fact-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.atomix-objects__popup-status {
    display: flex;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    color: #46556e;
    text-align: center;
}

.atomix-objects__popup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 30px;
    align-items: start;
}

.atomix-objects__popup-media,
.atomix-objects__popup-details {
    min-width: 0;
}

.atomix-objects__popup-gallery {
    --atomix-objects-popup-gallery-gap: 12px;

    display: flex;
    min-width: 0;
    margin-bottom: 44px;
    flex-direction: column;
    gap: var(--atomix-objects-popup-gallery-gap);
}

.atomix-objects__popup-gallery-main,
.atomix-objects__popup-gallery-thumbs {
    width: 100%;
    min-width: 0;
}

.atomix-objects__popup-gallery-main {
    height: 490px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #eef3f7;
}

.atomix-objects__popup-gallery-thumbs {
    height: 140px;
    overflow: hidden;
}

.atomix-objects__popup-gallery-slide,
.atomix-objects__popup-gallery-thumb {
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.atomix-objects__popup-gallery-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    opacity: 0.72;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        opacity 0.2s ease;
}

.atomix-objects__popup-gallery-thumb:hover,
.atomix-objects__popup-gallery-thumb.swiper-slide-thumb-active {
    border-color: #0089cf;
    opacity: 1;
}

.elementor .atomix-objects__popup-gallery-slide > img.atomix-objects__popup-gallery-image,
.elementor .atomix-objects__popup-gallery-thumb > img.atomix-objects__popup-gallery-thumb-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.atomix-objects__popup-title {
    margin: 0 54px 34px 0;
    color: #1c2735;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
}

.atomix-objects__popup-sections {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.atomix-objects__popup-section-title {
    margin: 0 0 14px;
    padding: 0 0 0 14px;
    border-left: 3px solid #0089cf;
    color: #1c2735;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.atomix-objects__popup-section-content {
    padding-left: 16px;
    color: #46556e;
    font-size: 15px;
    line-height: 1.55;
}

.atomix-objects__popup-section-content > :first-child {
    margin-top: 0;
}

.atomix-objects__popup-section-content > :last-child {
    margin-bottom: 0;
}

.atomix-objects__popup-section-content ul,
.atomix-objects__popup-section-content ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.25em;
}

.atomix-objects__popup-section-content li + li {
    margin-top: 8px;
}

.atomix-objects__popup-facts {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.atomix-objects__popup-fact {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 20px;
    align-items: start;
}

.atomix-objects__popup-fact-icon {
    display: inline-flex;
    min-width: 1em;
    align-items: center;
    justify-content: center;
    color: #0089cf;
    font-size: 34px;
    line-height: 1;
}

.atomix-objects__popup-fact-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.atomix-objects__popup-fact-title {
    color: #46556e;
    font-size: 14px;
    line-height: 1.35;
}

.atomix-objects__popup-fact-value {
    color: #1c2735;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
    .atomix-objects__popup-dialog {
        width: 94vw;
        padding: 28px;
    }

    .atomix-objects__popup-grid {
        column-gap: 28px;
    }

    .atomix-objects__popup-gallery-main {
        height: 420px;
    }

    .atomix-objects__popup-gallery-thumbs {
        height: 110px;
    }

    .atomix-objects__popup-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .atomix-objects__popup {
        padding: 10px;
    }

    .atomix-objects__popup-dialog {
        width: 94vw;
        max-width: calc(100vw - 20px);
        padding: 20px 16px;
        border-radius: 12px;
    }

    .atomix-objects__popup-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .atomix-objects__popup-close {
        top: 8px;
        right: 8px;
    }

    .atomix-objects__popup-gallery-main {
        height: 260px;
    }

    .atomix-objects__popup-gallery-thumbs {
        height: 76px;
    }

    .atomix-objects__popup-gallery {
        margin-bottom: 28px;
    }

    .atomix-objects__popup-title {
        margin-right: 42px;
        font-size: 24px;
    }

    .atomix-objects__popup-sections {
        gap: 26px;
    }

    .atomix-objects__popup-facts {
        gap: 24px;
    }
}

/* end object details popup */
