/*--------------------------------------------------------------
# HEADER SECTION
--------------------------------------------------------------*/
.print_header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.print_company_logo {
    height: 100px;
    width: 100px;
}

.print_company_logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.print_header_detail {
    flex: 1;
    text-align: right;
}

@media (max-width: 480px) {
    .print_company_logo {
        height: 80px;
        width: 80px;
    }
}

/*--------------------------------------------------------------
# BANNER SECTION
--------------------------------------------------------------*/

.print_banner {
    position: relative;
}
.print_banner_img {
    width: 100%;
    height: 350px;
    background-color: #ccc;
}

.print_banner_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.print_banner_text {
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: 20px;
    width: 100%;
    padding: 0px 15px;
    align-items: flex-end;
    justify-content: space-between;
}
.print_banner_text p {
    margin-bottom: 0;
    font-size: clamp(10px, 2vw, 20px);
    /* font-size: 20px; */
    font-weight: bold;
    text-shadow: 0.2px 0.2px #fff;
}
.print_banner_text div:first-child {
    text-align: left;
}
.print_banner_text div:first-child p:first-child {
    font-weight: 300;
}
/* .print_banner_text div:first-child p:last-child {
    font-size: 38px;
} */
.print_banner_text div:last-child {
    text-align: right;
}
.print_banner_text div {
    width: 33.33%;
    color: #fff;
    text-align: center;
}
.print_banner_overlay {
    position: absolute;
    bottom: -30px;
    right: 0px;
    width: 99%;
    height: 30px;
    background-color: #aaa;
    z-index: 1;
}

@media (max-width: 920px) {
    .print_banner_img {
        height: 300px;
    }
    /* .print_banner_text p {
        font-size: 20px;
    } */
    /* .print_banner_text div:first-child p:last-child {
        font-size: 28px;
    } */
}

@media (max-width: 768px) {
    .print_banner_img {
        height: 300px;
    }
    /* .print_banner_text p {
        font-size: 14px;
    } */
    /* .print_banner_text div:first-child p:last-child {
        font-size: 20px;
    } */
}

@media (max-width: 480px) {
    .print_banner_img {
        height: 160px;
    }
    /* .print_banner_text p {
        font-size: 10px;
    } */
    /* .print_banner_text div:first-child p:last-child {
        font-size: 14px;
    } */
}

/*--------------------------------------------------------------
# PACK STATUS
--------------------------------------------------------------*/

.print_pack_status {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-top: -10px;
}

.print_pack_status .local {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: #71bf58;
    z-index: 99;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border: 5px solid #fff;
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0px 0px 27px -4px #aaa;
}
.print_pack_status .local span {
    font-size: 18px;
}

@media print {
    .print_pack_status .local {
        box-shadow: unset;
    }
}

/*--------------------------------------------------------------
# PACK INFO
--------------------------------------------------------------*/

.print_pack_biography {
    clear: both;
    margin-top: 15px;
    font-size: 16px;
}

.bio_image {
    float: right;
    margin-left: 15px;
}

.print_pack_info {
    margin-top: 15px;
    font-size: 16px;
}

/*--------------------------------------------------------------
# PRICING
--------------------------------------------------------------*/

.print_pricing {
    width: 100%;
    background: #eee;
    display: flex;
    padding: 0px 15px;
}
.print_pricing img {
    margin-right: 20px;
}
.print_pricing .price {
    padding: 10px 0px;
    width: 40%;
}
.print_pricing .price p {
    margin-bottom: 0;
    font-weight: bold;
    color: #444;
}
.print_pricing .price p:first-child {
    font-size: 30px;
}
.print_pricing .price p:last-child {
    font-size: 18px;
}
.print_pricing .inclusion {
    text-align: right;
    padding: 10px 0px;
    margin-left: 20px;
    flex: 1;
}
.print_pricing .inclusion p {
    margin-bottom: 0;
    text-decoration: underline;
    font-weight: bold;
}

@media (max-width: 480px) {
    .print_pricing {
        flex-direction: column;
    }
    .print_pricing .price p:first-child {
        font-size: 22px;
    }
    .print_pricing .price p:last-child {
        font-size: 14px;
    }
    .print_pricing .inclusion {
        text-align: left;
        margin-left: 0px;
    }
    .print_pricing .inclusion div {
        font-size: 12px;
        text-decoration: dotted;
    }
}

/*--------------------------------------------------------------
# Sustainability Receipt
--------------------------------------------------------------*/
.print_receipt_title {
    font-size: 20px;
}

.chart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.chart .card {
    width: 49%;
    background-color: #fff;
    height: 450px;
}

.chart .card.no-shadow {
    border: none;
    padding-right: 15px;
    height: auto;
}

.chart .card #myChart,
.chart .card #myCo2Chart,
.chart .card #myMap {
    height: 100%;
    width: 100%;
    background-color: #fff;
}

.stakelholder {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .chart .card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .chart {
        flex-direction: column;
    }
    .chart .card {
        height: 300px;
        width: 100%;
    }
}
@media print {
    .chart {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .chart .card {
        border: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 450px;
        padding: 0 80px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.print_footer_image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.print_footer_description {
    margin-top: 30px;
    background-color: #eee;
    padding: 15px;
    line-height: 30px;
}

@media print {
    .print_footer {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# TABLE SECTION
--------------------------------------------------------------*/

.print_table th,
.print_table td {
    font-size: 13px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    vertical-align: top !important;
}

.page-two {
    page-break-before: always;
    page-break-after: always;
}

@media (max-width: 480px) {
    .print_table th,
    .print_table td {
        font-size: 8px;
    }
}

/*--------------------------------------------------------------
# COMMON SECTION
--------------------------------------------------------------*/

.card {
    border-radius: 0;
}

.print_text {
    font-size: 14px;
}

#risk-assessment-content table {
    margin-top: 20px;
    width: 100%;
}
#risk-assessment-content table td,
#risk-assessment-content table th {
    border: 1px solid #000;
    padding: 5px;
    font-size: 12px;
}
#risk-assessment-content table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.print_section_title {
    background-color: #79afcb;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 480px) {
    .print_section_title {
        font-size: 13px;
        padding: 5px;
    }
}

@media print {
    @page {
        margin: 20px 0px;
    }

    body {
        background: #fff !important;
    }
    .print_text {
        font-size: 10px;
    }
    .hide_print {
        display: none;
    }
}
