@charset "utf-8";

/* CSS Document */

@font-face {
    font-family: 'roboto-regular';
    src: url('roboto.ttf');
}

@font-face {
    font-family: 'inter-bold';
    src: url('https://repositorio.mw.adm.br/globalfont/inter-bold.otf');
}

strong {
    font-family: 'inter-bold';
}

html,
body {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: 100%;
    font-family: 'roboto-regular';
    font-size: 15px;
}

.reduct {
    width: 80%;
    display: table;
    margin: 0 auto;
    text-align: left;
}

.reduct2 {
    width: 80%;
    display: table;
    margin: 0 auto;
}

#mensageErro {
    width: 100%;
    min-height: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 99999;
}

#mensageErro .modal {
    display: table !important;
}

section,
article,
img {
    animation-duration: 2s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        filter: alpha(opacity=0);
        opacity: 0;
        -moz-opacity: 0;
        -webkit-opacity: 0;
    }
    to {
        filter: alpha(opacity=100);
        opacity: 1;
        -moz-opacity: 1;
        -webkit-opacity: 1;
    }
}

@media print{
    @page{
        size: A4;
        margin: 10mm 10mm 10mm 10mm;
    }
	header, 
	.filtroBusca{
		display:none;
	}

    .copyright{
        display:none;
    }
	
}
