.display-print {
    display: none !important;
}

.unit-api-print-container {
    display: none !important;
}

.property__contact input[type="checkbox"] {
    width: 45px !important;
    height: 45px !important;
    display: block !important;
    margin-top: 10px !important;
}

@media print {
    header.header,
    footer.footer,
    header,
    footer,
    .contact-c,
    .section--social,
    .section--contact,
    .footer__contact,
    .footer__letter,
    .section-brm--hero,
    .c-content__hero,
    .section--newsletter,
    .section--action,
    .section-footer,
    .all-holder,
    .uai.uli,
    .uai,
    .brm-unit-api-single-container {
        display: none !important;
    }
    
    .property {
        width: 100% !important;
    }

    .print-hidden {
        display: none;
    }

    .display-print {
        display: block !important;
    }

    .unit-api-print-container {
        display: block !important;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .print-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .print-logo {
        width: auto;
        height: 100px;
    }

    .print-website-url {
        font-size: 22px;
        color: black;
        font-weight: 700;
    }

    .print-gallery {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 10px;
    }

    .print-gallery__item {
        width: 100%;
        min-height: 120px;
    }

    .print-gallery__item__image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    /*Select first child*/
    .print-gallery__item:first-child {
        grid-column: 1 / 2;
        grid-row: span 3;
    }

    /*Only show first 4 items*/
    .print-gallery__item:nth-child(n+5) {
        display: none;
    }

    .print-details__container {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }

    .print-details__item {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        border-bottom: 2px solid #fff;
    }

    .print-details__item * {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #fff !important;
        line-height: 1.1;
    }

    .print-contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 0.25rem;
        border-bottom: 2px solid #fff;
    }

    .print-contact-info * {
        color: #fff !important;
        font-size: 16px !important;
    }

    .print-contact-info__email {
        font-size: 14px !important;
    }
    
    .print-title {
        margin-bottom: 15px;
        color: #1c5774;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px;
        white-space: normal;
        max-height: none;
        height: auto;
        text-transform: none;
    }

    .print-description__content,
    .print-description__content * {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        line-clamp: 26;
        -webkit-box-orient: vertical;
        max-height: none;
        height: auto;
        font-size: 12px !important;
    }

    .print-contact-details {
        width: 30%;
        padding: 15px;
        background: linear-gradient(to bottom, #1f5774 15%, #46a555);
    }

    .print-description {
        width: 70%;
        background-color: #cfcfcf;
        padding: 30px;
    }
}