* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}
body, html {
	height: 100%;
	background-color: #182933;
}
body, p, div, span {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	letter-spacing: 1px;
}
body {
	margin-top: 90px;
}
a {
	color: black;
	text-decoration-color: rgba(0,0,0,.2); 
}
a:active {
	text-decoration-color: black; 
}
h1, h2 {
    letter-spacing: 3px;
    display: flex;
    justify-content: space-between;
    font-weight: normal;
	line-height: 100%;
}
h1 {
    font-size: 22pt;
	margin-bottom: 20px
}
h2 {
    font-size: 15pt;
}
body > h1, body > h2 {
	padding: 15px 10px;
}
h3 {
    padding: 10px 0;
    font-size: 10pt;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: silver;
    text-transform: uppercase;
    margin-bottom: -12px;
}
thead {
	font-weight: bold;
}
td {
	vertical-align: top;
}
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: 10px 20px;
	/* padding-left: 70px; */
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #92D305;
	background-color: #182933;
	z-index: 999;
}
body > #header img.logo {
	height: 50px;
}
body > #header .icon {
	align-self: center;
	/* height: 24px; */
	margin-left: auto;
	cursor: pointer;
	color: white;
}
body > #header .icon, body > #header .icon .zmdi {
	font-size: 32px;
}
body > #header .icon:active {
	color: darkturquoise;
}
body > #header .icon img {
	vertical-align: middle;
}
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.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: 0;
	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 > .holder {
	padding: 20px;
}
body > .menu .alert {
	background-color: darkturquoise;
	margin: 20px;
	border-radius: 15px;
	color: white;
	display: flex;
	justify-content: space-between;
}
body > .menu .alert div {
	padding: 0;
}
body > .menu .group {
	padding: 0;
	border: 0;
}
body > .menu ul {
	/*max-height: 0;*/
	padding: 0 10px;
	overflow: hidden;
	transition: all 1s;
}
body > .menu div, body > .menu li, body .list li {
	padding: 10px;
	font-size: 12pt;
}
body > .menu li, body .list li {
	border-top: 1px solid silver;
	list-style-type: none;
	line-height: 120%;
}
body .list li {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
}
body .list li div { /* to have equal widths */
	flex-grow: 1;
	flex-basis: 0;
}
body .list li div:not(:last-child) {
	margin-right: 10px;
}
body > .menu li {
	cursor: pointer;
}
body > .menu li:active {
	color: darkturquoise;
}
body > .menu li a {
	text-decoration: none;
}
body > .menu form div {
	margin: 0;
}
body > .menu form input:not(:placeholder-shown) + label.placeholder {
	left: 10px !important;
	top: -10px !important;
}
.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;
}
.prompt.alert { /* used for _alert() */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20pt;
	background-color: white;
	color: black;
	border-radius: 0;
	margin-bottom: 0;
}
.alert { /* used for inline alerts */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 12pt;
	padding: 10px;
	margin-bottom: 15px;
	background-color: darkturquoise;
	color: white;
	border-radius: 15px;
}
.alert:active {
	box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.4) inset !important;
}
.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;
}

.workarea {
	position: relative;
	/* background-color: white;
	border-radius: 15px;
	padding: 30px; */
	line-height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	letter-spacing: 1px;
	font-weight: normal;
	z-index: 0;
}
.workframe {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	line-height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	letter-spacing: 1px;
	font-weight: normal;
}
.workframe:not(:last-child) {
	margin-bottom: 15px;
}

@media (min-width: 500px) {
	body > #header .icon::before {
		content: "Profile";
		font-size: 12px;
		color: gray;
		margin: 0 5px;		
		vertical-align: middle;		
	}
	body > #header .icon * {
		vertical-align: middle;		
	}
}

@media (min-width: 500px) {
	.workarea {
		width: calc(100% - 40px);
		left: 20px;
		right: 20px;
		top: 0;
	}
}
@media (max-width: 500px) {
	.workarea {
		/* width: calc(100% - 40px); */
		/* position: relative !important;
		left: unset !important;
		right: unset !important;
		top: unset !important;
		bottom: unset !important;
		border: 1px solid lightgray;
		*/
		margin: 20px;
	}
}

@media (orientation: landscape) {

}