@font-face {
    font-family: "Noto Serif";
    src:  url("./fonts/NotoSerif-Regular.ttf") format("truetype")  ,
    url("./fonts/NotoSerif-Bold.ttf") format("truetype");
}
body {
    background-color: rgb(236, 225, 225);
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.page {
height: 297mm;
width : 210mm;
padding: 10mm 10mm 10mm 10mm;
margin: 0 auto;
border: 1px #D3D3D3 solid;
border-radius: 5px;
background: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.content{

    height: calc(100%);
    width : 100%;
    font-family: "Noto Serif" !important;
}
.content-details{
    padding: 0 15mm ;
    flex:1 1 auto;
    margin: 24mm 0;
    line-height: 12mm;
}
.title{
    width: 85mm;
    color:#074a7b;
    font-size: 1.2rem;
}
.content label{
    font-size: 1.2rem;
}
.content .value{
    font-size: 1.2rem;
	line-height: 5mm;
    padding: 2.5mm 0;
    word-break: break-word;
}
.logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30mm;
    width: 50mm;
}
.logo img{
    max-height: 100%;
    max-width: 100%;
}
.barcode{
    align-self: flex-start;
    display: inline-block;
}
.page-container{
    width: fit-content;
    padding: 0 5mm;
    margin : 0 auto;
	margin-top:84px;
}
.buttons-container{
    padding: 5mm;
}
@page {
size: A4;
margin: 0;
}
@media print {
html, body {
    height: 297mm;
    width: 210mm;
}
.hide{
    display: none;
}
.logo{
width: 65mm;
height: 30mm;
}
.title{
    width: 95mm;
    font-size: 1.3rem;
}
.barcode{
    display: block;
}
.page-container{
    border: initial;
    border-radius: initial;
    margin: 0;
    width: initial;
    height: initial;
    box-shadow: initial;
}
.page {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    height: initial;
    box-shadow: initial;
    page-break-after: avoid;
    background: white;

}
}