﻿/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px;
    /* height: 300px; Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* print styles */
@media print {

    body {
        margin: 0;
        color: #000;
        background-color: #fff;
    }

    header, footer, aside, nav {
        display: none !important;
    }

    textarea {
        border: none !important;
        resize: none !important;
        overflow: hidden !important;
    }

    .bottomRow {
        position: fixed !important;
        bottom: 0 !important;
    }

    table, th, td {
        border-collapse: collapse;
        border: 0.5px solid black;
        /*width: 100%;*/
        text-align: right;
    }
    .no-print {
        display: none !important;
        padding-top: 15px !important;
    }
}
