﻿.report_card{
        width:80%;
        margin:auto;
        margin-top:50px;
        margin-bottom:40px;
        border: 1px solid rgba(0,0,0,0.06);
        padding:5px;
        background-color:#FEF2EE;
        height:auto;
    }
    .report_card .report_header{
        display:flex;
        justify-content:flex-start;
    }
    .report_card .school_logo{
        flex-basis:10%;
        flex-wrap:wrap
    }
    .report_card .school_logo img{
        width:100px;
        height:130px;
    }
    .report_card .school_details{
        flex-basis:90%;
        flex-wrap:wrap
    }
    .report_card .school_details h1{
        font-size:52px;
        font-weight:800;
        outline-color:#fff;
        text-shadow: 10px 10px 10px 10px;
        color:#191142;
        text-align:center;
    }
    .report_card .school_details p{
        font-size:18px;
        font-weight:600;
        color:#000;
        text-align:center;
    }
    .report_card .school_details p b{
        color:#f00;
    }
    .report_card .school_details .address{
        display:flex;
        justify-content:space-around;
        margin-top:10px;
    }
    .report_card .school_details .address div{
        flex-basis:30%;
        flex-wrap:wrap;
        font-size:14px;
        color:#000;
        display:inline-block;
    }
    .report_card .school_details .address div b{
        color:#f00;
    }
    .report_card .label{
        width:100%;
        padding:5px;
        background-color:#000;
        height:auto;
        position:relative;
        display:flex;
        justify-content:flex-start;
        margin-top:10px;
        margin-bottom:5px;
    }
    .report_card .label .lt{
        color:#fff;
        font-size:22px;
        text-transform:uppercase;
        background-color:#000;
        flex-basis:70%;
        flex-wrap:wrap;
    }
    .report_card .label .rt{
        color:#FBE610;
        font-size:20px;
        text-transform:uppercase;
        background-color:#D84602;
        flex-basis:30%;
        flex-wrap:wrap;
    }

@media print {

    .body {
        -webkit-print-color-adjust: exact;
    }
}