
@media screen {
  .footer-to-print {
    display: none;
  }

  .header-to-print {
    display: none;
  }
  
  .only-print {
    display: none;
  }
}

@page {
	size: A4;
	margin: 3mm 17mm 17mm 3mm;
}
	
@media print { 	
 	.not-printed {
       display: none;
    }
    
    .footer-to-print {
    	position: fixed;
    	bottom: 0;
  	}
  	
  	.header-to-print {
  		position: fixed;
  		top: 0;
	}
	
	.only-print {
    	margin-top: 200px;
  	}
	
	.only-print .h2 {
	    color: #1362A5;
  	}
  	
  	.only-print .btn-info-inclam {
	    border-color: #FFFF43;
  	}
  	
  	.only-print .btn-alarm-inclam {
	    border-color: #FE0F17;
  	}
  	
  	.only-print .btn-pre-alarm-inclam {
	    border-color: #FE8D28;
  	}
  	
	html, body {
    	width: 210mm;
    	height: 297mm;
  	}  	
}