/*.gallery*/
.gallery {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.gallery .gallery-filter {
    padding: 0 15px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.gallery .gallery-filter .filter-item {
    color: #000;
    font-size: 17px;
    border: 2px solid white;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 20px;
    margin-right: 8px;
    cursor: pointer;
    padding: 8px 20px;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.gallery .gallery-filter .filter-item.active {
    color: black;
    border-color: #ffffff;
    background: #ffffff;
    font-weight: 600;
}
.gallery .gallery-item {
    width: calc(100% / 3);
    padding: 5px;
}
.gallery .gallery-item-inner img {
    width: 100%;
    border: 1px solid #d4dad9;
}
.gallery .gallery-item.show {
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.gallery .gallery-item.hide {
    display: none;
}

/*responsive*/
@media (max-width: 491px) {
    .gallery .gallery-item {
        width: 50%;
    }
}
@media (max-width: 467px) {
    .gallery .gallery-item {
        width: 100%;
    }
    .gallery .gallery-filter .filter-item {
        margin-bottom: 10px;
    }
}

.section_title_category {
    background-size: cover;
    background-position: center center;
}

.facility-name {
    position: relative;
    display: block;
    font-size: 32px;
    font-weight: 500;
    text-align: center;

    margin-top: 15px;
}

.row.sectiune_facilitati {
    justify-content: center;
}

.house-block {
    position: relative;
    margin-bottom: 5px;
    border: 1px solid #2096f3;

    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
    transition: 0.2s all;
}
.house-block.viewed {
    border: 1px solid #dddddd;
}
.house-block.blurred {
    opacity: 0.25;
}
.house-block .image {
    border: none;
    background: none;
    padding: 0;
}

.house-block .name {
    position: relative;
    display: block;
    color: #162a4c;
    font-size: 22px;
    line-height: 26px;

    font-weight: 500;
    transition: 0.2s all;
    text-align: left;

    background: none;
    border: none;
    padding: 0;
}
.house-block .sub-name {
    position: relative;
    display: block;
    color: #000000;
    font-size: 16px;
    line-height: 20px;

    font-weight: 400;
    transition: 0.2s all;
    text-align: left;

    background: none;
    border: none;
    padding: 0;
}
.house-block .name:hover {
    color: #3992ec;
}
.house-block .link {
    position: relative;
    display: inline-block;
    background: #f6f6f6;
    padding: 3px 6px;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    transition: 0.2s all;

    border: none;
}

.house-block .house-parking {
    position: relative;
    display: block;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #3892ec;
}

.house-block .info {
    position: relative;
    display: block;
    font-size: 14px;
}
.house-block .info b {
    font-weight: 600;
}

.house-block .sub-name + .info {
    margin-top: 10px;
}
.house-block .house-parking + .info {
    margin-top: 10px;
}

.house-block .link:hover {
    background: #3992ec;
    color: #ffffff;
}
.house-block .price {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.house-block .price small {
    font-size: 14px;
    font-weight: 300;
    color: #3992ec;
}

.house-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;

    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    transition: 0.3s opacity;

    padding: 15px 15px;
}
.house-modal > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.house-modal-inner {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 2;
    margin: 0 auto;
    padding: 15px 15px;
    max-width: 1200px;
}
.house-modal-close {
    position: absolute;
    top: -11px;
    right: -43px;
    font-size: 40px;
    line-height: 40px;
    padding: 5px 13px;
    background: #162b4c;
    color: #ffffff;
    border-radius: 100%;
    border: none;

    transition: 0.2s all;
}
.house-modal-close i {
    font-size: 40px;
}
.house-modal-close:hover {
    background: #cccccc;
    color: #555555;
}

.residence-house-title {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
    text-align: center;
}
.residence-house-thumb {
    position: relative;
    display: block;
}
.residence-house-thumb img {
    width: 100%;
}
.residence-house-thumb .caption {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: 6px;
    padding: 3px 15px;
    background: rgba(11, 72, 170, 0.7);
    color: #ffffff;
    text-align: center;
    font-size: 13px;
}

.residence-house-thumb svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}
.residence-house-thumb svg * {
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #ffffff;
    stroke-dasharray: 64px;
    stroke-dashoffset: 64px;

    transition: 0.5s all;
}
.residence-house-thumb svg path:nth-child(1) {
    stroke: #008cff;
}
.residence-house-thumb svg circle {
    stroke: #f2ff00;
}

.residence-house-thumb:hover svg * {
    stroke-dashoffset: 0px;
}

.info-house-title {
    position: relative;
    display: block;
    font-size: 18px;
    color: #162b4c;
    font-weight: 600;
}

.info-house-details {
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.info-house-details-row {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 2px;
    padding-bottom: 2px;
}
.info-house-details-row .info-label {
    position: relative;
    flex: 0 0 25%;
    font-weight: 700;
}
.info-house-details-row .info-value {
    position: relative;
    flex: 1 1 auto;
}
.info-house-details-row small {
    color: #008cff;
}

.info-house-details-row.bb {
    font-size: 18px;
}

.info-house-details-row.bb .info-label {
    flex: 0 0 auto;
}

.residence-house-form {
    position: relative;
    display: block;
    background: rgb(48, 111, 174);

    color: #ffffff;
    padding: 15px 15px;
}
.residence-house-form .residence-house-form-title {
    position: relative;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
}
.residence-house-form .form-control {
    margin-bottom: 5px;
}

h3.spec-h3 {
    margin: 0px;
    font-size: 37px;
}
.lista_check li {
    margin-bottom: 4px;
}

.facility-buttons {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
.facility-button {
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    padding: 0px 10px;
    font-size: 18px;
    color: #000000;
    text-decoration: underline;
}

.fancygallery-wrapper {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.fancygallery-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
}
.fancygallery-interal {
    position: relative;
    display: block;
}
.fancygallery-item {
    position: relative;
    display: block;
    transform: translateY(0px);
    opacity: 1;
    transition: 0.3s all;
}
.fancygallery-item:hover {
    opacity: 0.9;
    transform: translateY(-5px);
}
.fancygallery-item img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    border-radius: 20px;
}

.fancygallery-button-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fancygallery-button-more button.btn.btn-default {
    background: #378be2;
    border-color: #378be2;
    border-radius: 20px;
    color: #ffffff;
    padding: 7px 25px;
    transition: 0.2s all;
}
.fancygallery-button-more button.btn.btn-default:hover {
    background: #162b4c;
    border-color: #162b4c;
    padding: 7px 50px;
}

.fancygallery-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;

    pointer-events: none;
}
.fancygallery-modal-backdrop {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;

    opacity: 0;
    transition: 0.5s opacity;

    cursor: pointer;
}
.fancygallery-modal {
    position: absolute;

    display: block;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;

    overflow: hidden;
    z-index: 2;
    background: #ffffff;
    border-radius: 20px;

    transform: translateY(110%);
    transition: 0.5s transform;
}
.fancygallery-modal-wrapper.active {
    pointer-events: all;
}
.fancygallery-modal-wrapper.active .fancygallery-modal-backdrop {
    opacity: 1;
}
.fancygallery-modal-wrapper.active .fancygallery-modal {
    transform: translateY(0);
}

.fancygallery-modal-title {
    position: relative;

    height: 77px;
    padding: 15px 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #dddddd;
    align-items: center;
}

.fancygallery-modal-title .btn {
    background: none;
    color: #000000;
    font-size: 16px;
}
.fancygallery-modal-title .btn i {
    font-size: 20px;
    vertical-align: -2px;
    margin: 0 5px;
}

.fancygallery-modal-groups {
    position: relative;
    display: block;
    height: 65px;
    padding: 10px 25px;
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #dddddd;
}

.fancygallery-modal-groups::-webkit-scrollbar {
    height: 4px;
}
.fancygallery-modal-groups::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.fancygallery-modal-groups::-webkit-scrollbar-thumb {
    background: #162b4c;
    border-radius: 4px;
}
.fancygallery-modal-groups::-webkit-scrollbar-thumb:hover {
    background: #162b4c;
}

.btn.btn-image-group {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding: 4px 20px;
    border-radius: 25px;

    background: #eeeeee;
    border-color: #eeeeee;
    color: #162b4c;
}
.btn.btn.btn-image-group + .btn {
    margin-left: 10px;
}
.btn.btn-image-group:hover {
    background: #dddddd;
}
.btn.btn-image-group.active {
    background: #162b4c;
    color: #ffffff;
}

.fancygallery-modal-list {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;
    border-bottom: 1px solid #dddddd;
}

.fancygallery-image-list-group {
    position: relative;
    display: block;
    flex: 0 0 auto;
    white-space: nowrap;
}
.fancygallery-image-list-item {
    position: relative;
    display: inline-block;

    padding: 5px 2.5px;
    height: 100%;

    opacity: 1;
    transition: 0.2s opacity;
}
.fancygallery-image-list-item.active {
    opacity: 0.6;
}
.fancygallery-image-list-item:hover {
    opacity: 0.85;
}
.fancygallery-image-list-item img {
    height: 100px;
    border-radius: 20px;
}

.fancygallery-image-list.btn-fancygallery.btn-next {
    height: 4px;
}
.fancygallery-image-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.fancygallery-image-list::-webkit-scrollbar-thumb {
    background: #162b4c;
    border-radius: 4px;
}
.fancygallery-image-list::-webkit-scrollbar-thumb:hover {
    background: #162b4c;
}

.fancygallery-modal-content-stage {
    position: relative;
    display: block;
    flex: 1 1 auto;
    min-width: 0px;
    min-height: 0px;
}
.fancygallery-modal-content {
    position: relative;

    display: flex;
    height: 100%;

    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;

    overflow-x: hidden;
    overflow-y: hidden;

    scroll-behavior: smooth;
    /* scroll-snap-stop: always;
    scroll-snap-type: x mandatory; */
}

.fancygallery-modal-content::-webkit-scrollbar {
    height: 0px;
}
.fancygallery-modal-content-item {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    flex: 0 0 100%;

    /* scroll-snap-align: center; */
}
.fancygallery-modal-content-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-height: 100%;
    max-width: 100%;
    z-index: 1;

    pointer-events: none;
}
.fancygallery-modal-content-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(22, 43, 76, 0.8);
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    padding: 15px 15px;
    color: #ffffff;
}
.fancygallery-modal-content-item .sub-caption {
    position: relative;
    display: block;
    font-size: 14px;
}
.fancygallery-modal-content-stage .btn-fancygallery {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    padding: 2px;
    background: #162b4c;
    border: 1px solid #008cff;
    color: #ffffff;
    line-height: 0px;

    border-radius: 100%;
    z-index: 2;
}
.fancygallery-modal-content-stage .btn-fancygallery i {
    font-size: 20px;
}
.fancygallery-modal-content-stage .btn-fancygallery.btn-prev {
    left: 15px;
}
.fancygallery-modal-content-stage .btn-fancygallery.btn-next {
    right: 15px;
}
.fancygallery-modal-grid {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    overflow-y: auto;
    padding: 7.5px;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}
.fancygallery-modal-grid-item {
    position: relative;
    display: block;
    flex: 0 0 25%;
    width: 25%;
    padding: 7.5px;

    transform: scale(1);
    transition: 0.2s transform;
}
.fancygallery-modal-grid-item:hover {
    transform: scale(0.95);
}
.fancygallery-modal-grid-item img {
    width: 100%;
    border-radius: 15px;
}

.residence-info-menu-wrap {
    position: relative;
    display: block;
    margin-bottom: 20px;

    background: rgb(22, 43, 76);
    background: linear-gradient(
        165deg,
        rgba(22, 43, 76, 1) 0%,
        rgba(56, 146, 236, 1) 100%
    );
}

.residence-info-menu {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
}
.residence-info-button {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.residence-info-button.left {
    justify-self: flex-start;
}
.residence-info-button.center {
    justify-self: center;
}
.residence-info-button.right {
    justify-self: flex-end;
}
.residence-info-action {
    position: relative;
    display: block;
    padding: 13px 5px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
}
.residence-info-action:hover {
    background: #ffffff;
    color: #162b4c;
}
.residence-info-back {
    position: relative;
    display: block;
    padding: 13px 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;

    background: #162b4c;
}
.residence-info-menu-wrap.fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
}
.residence-info-menu-ghost {
    position: relative;
    display: none;
    height: 0px;
    pointer-events: none;
    opacity: 0;
    margin-bottom: 20px;
}

.residence-info-menu-wrap.fixed + .residence-info-menu-ghost {
    display: block;
}

.residence-info-general-data-wrap {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.residence-info-general-data-block {
    position: relative;
    display: block;
    padding: 15px 15px;
    background: #eeeeee;
    height: 100%;
}
.residence-info-general-data-wrap h2 {
    text-align: center;
}

.info-house-description {
    margin-bottom: 15px;
}

.info-house-type {
    position: relative;
    display: block;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
}

.info-house-price {
    position: relative;
    display: block;

    margin-bottom: 5px;
    font-size: 26px;
}
.info-house-price .price {
    font-weight: 700;
}
.info-house-price .price small {
    font-weight: 300;
}
.info-house-price .tax {
    font-size: 14px;
}

.fancygallery-item-last {
    position: relative;
}
.fancygallery-item-last-black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
}
.fancygallery-item-last-black-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    width: 100%;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    text-shadow: #000000 1px 1px 1px;
}
.fancygallery-modal-fill {
    position: relative;
    height: calc(100% - 65px - 77px);
}
.fancygallery-modal-fill > div {
    height: 100%;
    overflow-y: auto;
}
.fancygallery-modal-fill-wrap {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 100%;
}
.fancygallery-modal-grid {
    flex: 1 1 auto;
}
.fancygallery-modal-content-stage {
    flex: 1 1 auto;
}
.fancygallery-modal-list {
    flex: 0 0 auto;
}

.fancygallery-modal-form {
    position: relative;
    display: block;
    border-left: 1px solid #dddddd;
    height: 100%;
    overflow-y: auto;
    padding: 0px 15px;
}

.house-global-type-filter {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.house-type-filter label {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 5px;
}
.house-type-filter .house-type-filter-input {
    position: relative;
    display: block;
    border: none;
    padding: 0;
    font-size: 16px;
    line-height: 16px;
    height: auto;
}
.house-type-filter .house-type-filter-range {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
}
.house-type-filter .house-type-filter-input-sep {
    flex: 0 0 auto;
    width: 15px;
    height: 1px;
    background: #aaaaaa;
}
.house-type-filter .house-type-filter-range .house-type-filter-input {
    width: 75px;
    text-align: center;
}

.house-type-filter:has(
    select.house-type-filter-input option:checked:not(:first-child)
),
.house-type-filter:has(input.house-type-filter-input:not(:placeholder-shown)) {
    border-color: #008cff;
}

.house-type-filter-button {
    position: relative;
    display: block;
    background: none;
    border: none;
    flex: 0 0 auto;
    color: #000000;
}
.house-type-filter-button:hover {
    color: #2096f3;
}
.house-type-filter-button.active {
    text-decoration: underline;
}

.house-type-filter-button .name {
    position: relative;
    display: block;
    padding-right: 10px;
}
.house-type-filter-button .total {
    position: absolute;
    display: block;
    top: -7px;
    right: 5px;
    border-radius: 100%;
    padding: 2px;
    font-size: 12px;
    line-height: 12px;
    background: #ff0000;
    color: #ffffff;
    text-align: center;
    width: 16px;
    height: 16px;
}

.house-type-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}
.house-type-title > span {
    position: relative;
}
.house-type-title-badge {
    position: absolute;
    display: block;
    top: -7px;
    right: -13px;
    border-radius: 100%;
    padding: 2px;
    font-size: 12px;
    line-height: 12px;
    background: #ff0000;
    color: #ffffff;
    text-align: center;
    width: 16px;
    height: 16px;
}
.house-type-caption {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}
.house-type-filter-wrap {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 20px;
    justify-content: space-between;
}
.house-type-filter-col {
    position: relative;
    flex: 0 0 auto;
}
.house-type-filter-col-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
}
.house-type-filter {
    position: relative;
    display: block;
    flex: 0 0 auto;
    gap: 5px;
    border: 1px solid #dddddd;
    padding: 5px 10px;
    transition: 0.2s all;
}

.house-type-group {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.house-type-filte-range-suggestion {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    bottom: 0;
    height: 200px;
    background: #ffffff;
    border: 1px solid #dddddd;
    z-index: 2;

    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: stretch;

    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);

    transform: translateY(-30px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s all;
}
.house-type-filter:hover .house-type-filte-range-suggestion {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.house-type-filte-range-suggestion-left,
.house-type-filte-range-suggestion-right {
    position: relative;
    height: 100%;
    overflow: scroll;

    scrollbar-width: thin;
}
.house-type-filte-range-suggestion-left button,
.house-type-filte-range-suggestion-right button {
    background: none;
    width: 100%;
    text-align: right;
    border: none;
    font-size: 14px;
    color: #666666;
    transition: 0.2s all;
}
.house-type-filte-range-suggestion-left button:hover,
.house-type-filte-range-suggestion-right button:hover {
    background: #eeeeee;
}

.house-type-filte-range-suggestion-center {
    flex: 0 0 auto;
    width: 15px;
    height: 1px;
}

.house-viewed {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 16px;
    color: #999999;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s all;
}
.house-block.viewed .house-viewed {
    opacity: 1;
}

.house-carousel.owl-theme .owl-nav .owl-prev,
.house-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.house-carousel.owl-theme .owl-nav .owl-prev i,
.house-carousel.owl-theme .owl-nav .owl-next i {
    font-size: 30px;
    color: #3892ec;
    transition: 0.2s all;
}
.house-carousel.owl-theme .owl-nav .owl-prev:hover i,
.house-carousel.owl-theme .owl-nav .owl-next:hover i {
    color: #162a4c;
}
.house-carousel.owl-theme .owl-nav .owl-prev {
    left: 5px;
}
.house-carousel.owl-theme .owl-nav .owl-next {
    right: 5px;
}

@media (max-width: 575px) {
    header {
        position: fixed !important;
        z-index: 10001;
    }
    body {
        padding-top: 100px !important;
    }
}
.house-type-filter-mobile-button {
    display: none;
}

.project-map {
    position: relative;
    display: block;
}

.project-map iframe {
    border-radius: 15px;
}

.residence-share-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    gap: 10px;
}
.residence-share-button {
    background: #ffffff;
    border-color: #ffffff;
    color: #3892ec;
    border-radius: 8px;
}
.residence-share-button svg {
    height: 24px;
}
.residence-share-button:hover {
    background: #3892ec;
    border-color: #3892ec;
    color: #ffffff;
}

.project-map-address {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
}
.project-map-address.distance {
    padding: 10px;
    border: 1px solid #CCCCCC;
}

.loading-spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: 0.3s all;
}

@keyframes spinning {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loading-spinner-wrapper svg {
    height: 64px;
    width: 64px;
    animation: spinning 1s linear infinite;
}

.mobile-float-bottom-btn.before-houses {
    flex: 100%;
}

.house-owl-item {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.zoomContainer {
    z-index: 1500px !important;
}
.zoomWindow {
    border-radius: 15px !important;
}
.owl-carousel.owl-theme#house-owl-carousel .owl-nav .owl-prev,
.owl-carousel.owl-theme#house-owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    padding: 0px 0px;
}
.owl-carousel.owl-theme#house-owl-carousel .owl-nav .owl-prev {
    left: 25px;
}
.owl-carousel.owl-theme#house-owl-carousel .owl-nav .owl-next {
    right: 25px;
}
.house-carousel-wrapper {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.house-carousel-wrapper .zoomContainer {
    top: 0 !important;
    left: 0 !important;
}

.btn-owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    z-index: 1510;
}

.btn-owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    z-index: 1510;
}

.house-carousel-zoomer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
}

.house-carousel-caption {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: 12px;
    background: #162b4c;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 15px;
    z-index: 2;
    text-align: center;
}
.house-carousel-caption b {
    font-weight: 600;
    text-transform: lowercase;
}
.google-map-places{
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    /* justify-content: center; */
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    overflow-x: auto;
}
@media (min-width: 1300px) {
    .google-map-places{
        justify-content: center;
    }
}
.google-map-places > div{
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #162b4c;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    cursor: pointer;
    width: auto;
    min-width: 110px;
}
.google-map-places > div img{
    width: 30px;
    height: auto;
}
.google-map-places > div.active{
    background: #dceaff;
}
.google-map-places > div:hover{
    background: #e2e2e2;
}
.google-map-places > div span{
    white-space: nowrap;
    font-size: 13px;
}
.google-map-places::-webkit-scrollbar {
    height: 4px;
}
.google-map-places::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.google-map-places::-webkit-scrollbar-thumb {
    background: #162b4c;
    border-radius: 4px;
}
.google-map-places::-webkit-scrollbar-thumb:hover {
    background: #162b4c;
}
@media (max-width: 575px) {
    .google-map-places{
        padding-bottom: 10px;
        gap: 5px;
        justify-content: initial;
    }
    .google-map-places > div{
        font-size: 12px;
        padding: 5px 10px;
    }
    .google-map-places > div img{
        width: 25px;
        height: auto;
    } 
}

.google-map-places{
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    /* justify-content: center; */
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    overflow-x: auto;
}
@media (min-width: 1300px) {
    .google-map-places{
        justify-content: center;
    }
}
.google-map-places-v2{
    display: none;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    /* justify-content: center; */
    /* margin-top: 20px; */
    margin-bottom: 10px;
    padding-bottom: 10px;
    overflow-x: auto;
}
.google-map-places-v2.active{
   display: flex;
}
.google-map-places-v2 > div{
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #162b4c;
    padding: 5px;
    /* border-radius: 5px;
    border: 1px solid #dddddd; */
    width: auto;
    min-width: 110px;
}
.google-map-places-v2 > div img{
    width: 30px;
    height: auto;
}
.google-map-places-v2 > div span{
    white-space: nowrap;
    font-size: 13px;
}
.google-map-places-v2::-webkit-scrollbar {
    height: 4px;
}
.google-map-places-v2::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.google-map-places-v2::-webkit-scrollbar-thumb {
    background: #162b4c;
    border-radius: 4px;
}
.google-map-places-v2::-webkit-scrollbar-thumb:hover {
    background: #162b4c;
}
@media (min-width: 1300px) {
    .google-map-places-v2{
        justify-content: center;
    }
}

.project-status-wrap {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    flex-direction: column;
    padding: 15px 0;
}
.project-status {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.project-status-left {
    flex: 1 1 50%;
    text-align: right;
}
.project-status-center {
    position: relative;
    width: 6px;
    height: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    flex: 0 0 auto;
}
.project-status-center:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    top: 0;
    background-color: #dddddd;
}
.project-status:nth-child(1) .project-status-center:before {
    display: none;
}
.project-status-center:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    bottom: 0;
    background-color: #dddddd;
}
.project-status:nth-last-child(1) .project-status-center:after {
    display: none;
}
.project-status-center span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #dddddd;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.project-status.finished .project-status-center span {
    background-color: #1038b3;
}
.project-status.finished:has(+.project-status.finished) .project-status-center:after {
    background-color: #1038b3;
}
.project-status.finished + .project-status.finished .project-status-center:before {
    background-color: #1038b3;
}

.project-status-right {
    flex: 1 1 50%;
    text-align: left;
}