/**
 * Styles pour les biens immobiliers
 */

.archive-page-header {
    margin-top: 50px;
}

.archive-page-header .caze-hero-search {
    margin-bottom: 70px;
}

.archive-page-header .caze-search-modern {
    margin-top: 0 !important;
}

.top-biens-wrapper {
    padding: 25px 0 20px;
    border-top: 1px solid var(--brown);
}

.top-biens-wrapper .nb-post span {
    color: var(--red);
    font-weight: 600;
}

.detail-bien {
    position: relative;
}

.detail-bien #filigrane {
    position: absolute;
    height: 500px;
    right: -5%;
    bottom: 450px;
    z-index: 0;
}

.detail-bien .row {
    position: relative;
    color: var(--blue);
}

.detail-bien .row .intro-bien {
    height: 350px;
    position: relative;
}

.detail-bien .intro-bien .rank-math-breadcrumb {
    position: absolute;
    top: 15px;
    z-index: 1;
}

.detail-bien .intro-bien .rank-math-breadcrumb * {
    color: #fff;
    font-size: 0.95em;
    opacity: 0.95;
}

.detail-bien .row .intro-bien .container-img {
    position: absolute;
    left: calc(-50vw + 50%);
    right: 0;
    top: 0;
    width: 100vw;
    overflow: hidden;
    height: 100%;
}

.detail-bien .row .intro-bien .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-bien .row .intro-bien h1 {
    position: absolute;
    bottom: 30px;
    color: var(--white);
    max-width: 500px;
}

.detail-bien .row #filigrane-header {
    position: absolute;
    height: 150px;
    left: calc(50% - 65px);
    top: calc(50% - 75px);
}

.detail-bien .row .infos-intro-bien {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 20px;
}

.infos-intro-bien {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* espace entre les blocs */
}

@media (max-width: 549px) {
    .infos-intro-bien {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.detail-bien .row .infos-intro-bien .transaction-bien {
    text-transform: uppercase;
    font-size: 12px;
    background-color: var(--red);
    padding: 8px 25px;
    color: var(--white);
    letter-spacing: 1px;
    margin-right: 30px;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .ville {
    display: flex;
    align-items: center;
    margin-right: 30px !important;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .ville svg {
    fill: var(--red);
    margin-right: 5px;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .surface {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .surface svg {
    fill: var(--red);
    margin-right: 5px;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .reference {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.detail-bien .row .infos-intro-bien .ville,
.detail-bien .row .infos-intro-bien .reference svg {
    fill: var(--red);
    margin-right: 5px;
}

.detail-bien .row .caze-property-description {
    margin-bottom: 42px;
}

.detail-bien .row .caze-property-description h2 {
    color: var(--red);
}

.detail-bien .row .caze-property-gallery {
    padding-bottom: 17px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--brown);
}

.detail-bien .row .caze-property-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 5px;
}

.detail-bien .row .caze-property-gallery .all-imgs {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(100% - 30px);
    position: relative;
    left: 15px;
    margin-bottom: 10px;
}

.detail-bien .row .caze-property-gallery .all-imgs .img:nth-child(2n) {
    padding-left: 5px;
}

.caze-property-gallery .full-screen-images-bien {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0 0 0 / 40%);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.caze-property-gallery .full-screen-images-bien.open {
    opacity: 1;
    pointer-events: inherit;
    transition: var(--transition);
}

.caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail {
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav.none {
    display: none;
}

.caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customPrevBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    z-index: 1;
    left: 20%;
    transform: rotate(180deg);
}

.caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customNextBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    z-index: 1;
    right: 20%;
}

@media (max-width:1200px) {
    .caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail {
        width: 70%;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customPrevBtn {
        left: 10%;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customNextBtn {
        right: 10%;
    }
}

@media (max-width:991px) {
    .caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail {
        width: 80%;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customPrevBtn {
        left: 5%;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customNextBtn {
        right: 5%;
    }
    .detail-bien #filigrane {
        display: none;
    }
}

@media (max-width:767px) {
    .caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail {
        width: 95%;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customPrevBtn {
        display: none;
    }
    .caze-property-gallery .full-screen-images-bien .full-screen-images-detail-custom-nav .customNextBtn {
        display: none;
    }
}

.caze-property-gallery .full-screen-images-bien .closeCross {
    position: fixed;
    top: 55px;
    right: 60px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.caze-property-gallery .full-screen-images-bien .closeCross span {
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.caze-property-gallery .full-screen-images-bien .closeCross span:last-child {
    transform: rotate(-45deg);
}

.caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail .owl-stage-outer {
    height: 500px;
}

.caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail .owl-stage-outer .owl-stage,
.caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}

.caze-property-gallery .full-screen-images-bien .full-screen-owl-images-detail .owl-stage-outer .owl-stage .owl-item img {
    object-fit: contain;
    height: 100%;
}

.detail-bien li::before {
    content: "-";
}

.detail-bien .row .caze-property-features-box {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--brown);
}

.detail-bien .row .caze-property-features-box h2 {
    color: var(--red);
}

.detail-bien .row .caze-property-features-box .caze-property-features-list .feature-value {
    font-weight: 600;
}

.detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-technical-info {
    padding-top: 40px;
}

.detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-location {
    display: flex;
}

.detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-location .feature-value {
    margin-left: 5px;
}

@media (max-width: 767px) {
    .detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-location {
        flex-direction: column;
    }
    .detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-location .feature-value {
        margin-left: 0;
    }
}

.detail-bien .row .caze-property-features-box .caze-property-features-list .caze-property-location .feature-value br {
    display: none;
}

.detail-bien .row .sticky-contact {
    margin-top: 20px;
    position: sticky;
    top: 150px;
    height: fit-content;
    z-index: 1;
}

.detail-bien .row .sticky-contact .picto {
    width: 80px;
    margin-bottom: 15px;
}

.detail-bien .row .sticky-contact h2 {
    color: var(--blue);
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--brown);
    font-size: 18px !important;
}

.detail-bien .row .sticky-contact .your-contact {
    margin-bottom: 20px;
}

.detail-bien .row .sticky-contact .your-contact h3 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 14px !important;
    color: var(--blue);
}

.detail-bien .row .sticky-contact .your-contact .agent-name {
    color: var(--red);
}

.detail-bien .row .sticky-contact .cta-contact {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--brown);
}

.detail-bien .row .sticky-contact .cta-contact .call-back,
.detail-bien .row .sticky-contact .cta-contact .contact {
    border: 1px solid var(--brown);
    padding: 12px 20px;
    width: 42.5%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.detail-bien .row .sticky-contact .cta-contact .arrow {
    width: 15%;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 100%;
    top: -1px;
    height: calc(100% + 2px);
    bottom: 0;
    width: 60px;
}

.detail-bien .row .sticky-contact .cta-contact .arrow svg {
    fill: var(--white);
}

.pagination {
    margin-bottom: 50px;
}


/* @media (max-width: 1206px) {
    .detail-bien .row .sticky-contact .cta-contact .arrow {
        height: 42px;
    }
} */