/*
==========================================================
PRINT STYLES
File: assets/css/print.css
==========================================================
*/

@media print{

/* ==========================
   PAGE
========================== */

@page{
    size:A4;
    margin:15mm;
}

/* ==========================
   BODY
========================== */

body{
    background:#fff !important;
    color:#000 !important;
    font-size:12pt;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.5;
}

/* ==========================
   HIDE ELEMENTS
========================== */

header,
footer,
nav,
.sidebar,
.navbar,
.offcanvas,
.breadcrumb,
.pagination,
.dt-buttons,
.dataTables_filter,
.dataTables_length,
.dataTables_info,
.dataTables_paginate,
.btn,
button,
.no-print{
    display:none !important;
}

/* ==========================
   SHOW ONLY PRINT
========================== */

.print-only{
    display:block !important;
}

/* ==========================
   CONTENT
========================== */

.container,
.container-fluid,
.main-content,
.content,
.card,
.card-body{
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    border:none !important;
    box-shadow:none !important;
    background:#fff !important;
}

/* ==========================
   TABLES
========================== */

.table{
    width:100% !important;
    border-collapse:collapse !important;
    font-size:11pt;
}

.table th,
.table td{
    border:1px solid #000 !important;
    padding:8px;
}

.table thead th{
    background:#e9ecef !important;
    color:#000 !important;
}

/* ==========================
   LINKS
========================== */

a{
    color:#000 !important;
    text-decoration:none !important;
}

/* ==========================
   IMAGES
========================== */

img{
    max-width:100% !important;
    height:auto !important;
}

/* ==========================
   HEADINGS
========================== */

h1,h2,h3,h4,h5,h6{
    color:#000 !important;
    page-break-after:avoid;
}

/* ==========================
   PAGE BREAKS
========================== */

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

table,
img,
.card{
    page-break-inside:avoid;
}

/* ==========================
   BADGES
========================== */

.badge{
    border:1px solid #000;
    color:#000 !important;
    background:#fff !important;
}

/* ==========================
   FORMS
========================== */

input,
textarea,
select{
    border:1px solid #000 !important;
    background:#fff !important;
    color:#000 !important;
}

/* ==========================
   WATERMARK
========================== */

.print-watermark{
    position:fixed;
    top:45%;
    left:20%;
    font-size:60px;
    color:#dddddd;
    opacity:.15;
    transform:rotate(-30deg);
    z-index:-1;
}

}