* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}
body, html {
	height: 100%;
	background-color: #fbfbfb;
}
body, p, div, span {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	letter-spacing: 1px;
}
body {
	margin-top: 70px;
}
a {
	color: black;
	text-decoration-color: rgba(0,0,0,.2); 
}
a:active {
	text-decoration-color: black; 
}
label {
	display: inline-block;
	text-indent: -22px;
	margin-left: 18px;
}
h1, h2 {
    letter-spacing: 3px;
    display: flex;
    justify-content: space-between;
    font-weight: normal;
}
h1 {
    font-size: 22pt;
}
h2 {
    font-size: 15pt;
}
body > h1, body > h2, body > .footer {
	padding: 15px 10px;
}
body > .footer {
	text-align: center;
}
h3 {
    padding: 10px 0;
    font-size: 10pt;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: silver;
    text-transform: uppercase;
    margin-bottom: -12px;
}
table {
	border-spacing: 0;
}
thead {
	font-weight: bold;
}
td {
	vertical-align: top;
	padding: 5px;
}
body > div#container { /* para que o scroll suba ate acima do footer, nao funciona com margin-bottom */
	padding: 10px;
	padding-bottom: 80px;
}
body > #header, body > #header * {
	font-size: 12pt;
}
body > #header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	padding: 7px;
	/* padding-left: 70px; */
	background-color: black;
	color: white;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
}
body > #header img.logo {
	width: 55px;
	height: 55px;
	margin-right: 7px;
}
body > #header img.icon {
	align-self: center;
	height: 60%;
	margin-left: auto;
}
/*
body > #header:before {
	content: "";
	background-image: url(../images/logo-verpro2.png);
	background-repeat: no-repeat;
	background-size: 55px 55px;
	background-position: center; 
	width: 70px;
	height: 70px;
	position: absolute;
	left: 0;
	top: 0;
}
*/
body > #footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70px;
	padding: 7px;
	background-color: black;
	color: white;
	overflow: hidden;
	display: flex;
    justify-content: space-around;
}
body > #footer > div.icon > img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3px;
	max-height: 30px;
}
body > #footer > div.icon {
	font-size: 8pt;
	line-height: 8pt;
	text-align: center;
	max-width: 55px;
	position: relative;
	/* color: #eee; */
	font-weight: bold;
}
body > #footer > div.icon::after {
	position: absolute;
	width: 100%;
	height: 32px;
	content: "";
	mix-blend-mode: multiply;
	left: 0;
	top: 0;
}
body > #footer > div.icon.fin::after {
	background: #08f;
}
body > #footer > div.icon.com::after {
	background: #08f;
}
body > #footer > div.icon.supr::after {
	background: #5e5;
}
body > #footer > div.icon.rh::after {
	background: #0cf;
}
body > #footer > div.icon.ocorrencias::after {
	background: #fe0;
}
body > #footer > div.icon.mnt::after {
	background: #fa0;
}
body > #footer > div.icon.cp::after {
	background: darkkhaki;
}
body > #footer > div.icon.srv::after {
	background: darkturquoise;
}
body > #footer > div.icon.disabled::after {
	background: #777;
	height: 100%;
}
body > .menu {
	position: fixed;
	top: 70px;
	bottom: 70px;
	left: 0;
	width: 100%;
	background-color: #fbfbfb;
	overflow: hidden;
}
body > .menu > .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	font-size: 15pt;
}
body > .menu > .header * {
	padding: 0;
	border: 0;
}
body > .menu > .group {
	padding: 0;
	border: 0;
}
body > .menu div, body > .menu li {
	border-top: 1px solid silver;
	padding: 10px;
	font-size: 12pt;
}
body > .menu ul {
	/*max-height: 0;*/
	padding: 0 10px;
	overflow: hidden;
	transition: all 1s;
}
body > .menu li {
	list-style-type: none;
}
body > .menu li a {
	text-decoration: none;
}

.close {
	border: 0;
	padding: 0;
}
.close:after {
	content: "\2715";
	font-size: 35pt;
	line-height: 30px;
	font-weight: normal;
}
.close:active {
	color: gold;
}

.prompt, .preview {
	position: fixed;
	background-color: white;
	white-space: break-spaces;
	width: 100%;
	left: 0;
	padding: 20px;
	overflow: scroll;
	top: 70px;
	bottom: 0;
	/* bottom: 70px; */
}
.prompt.alert {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20pt;
}
.prompt > .close, .preview > .close {
	position: fixed;
	right: 20px;
	top: 90px;
}
.prompt h1 {
	padding: 0 0 20px 0;
}
.prompt form {
	padding: 0;
}
.prompt table {
	border-spacing: 0 5px;
}

.tabs {
	display: flex;
}
.tabs > div {
	width: 100%;
	padding: 5px;
	border-bottom: 1px solid #57b846;
	border-top-right-radius: 10px;
	background-color: silver;
	cursor: pointer;
}
.tabs > div.selected {
	border: 1px solid #57b846;
	width: 100%;
	border-bottom: 0;
	background-color: transparent;
}
.loading {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.loading:after {
	content: url(../images/loading.gif);
}
.extrato {
	display: flex;
	justify-content: space-between;
}
.extrato * {
	font-size: 9pt;
}
.extrato .placeholder {
	font-weight: bold;
	color: silver;
}
@media (orientation: landscape) {
	body {
		margin-top: 0;
	}
	body > #header {
		display:none;
	}
	body > #footer {
		display:none;
	}
	body > div#container {
		padding-bottom: 10px;
	}
	.prompt, .preview {
		top: 0;
		bottom: 0;
	}
	.prompt > .close, .preview > .close {
		top: 20px;
	}
}