@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-display: auto;
	font-weight: 400;
	src: local("Open Sans"), local("OpenSans"),
		url("../fonts/open-sans-v16-latin-regular.woff2") format("woff2"),
		url("../fonts/open-sans-v16-latin-regular.woff") format("woff"),
		url("../fonts/open-sans-v16-latin-regular.ttf") format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: italic;
	font-display: auto;
	font-weight: 400;
	src: local("Open Sans Italic"), local("OpenSans-Italic"),
		url("../fonts/open-sans-v16-latin-italic.woff2") format("woff2"),
		url("../fonts/open-sans-v16-latin-italic.woff") format("woff"),
		url("../fonts/open-sans-v16-latin-italic.ttf") format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-display: auto;
	font-weight: 800;
	src: local("Open Sans ExtraBold"), local("OpenSans-ExtraBold"),
		url("../fonts/open-sans-v16-latin-800.woff2") format("woff2"),
		url("../fonts/open-sans-v16-latin-800.woff") format("woff"),
		url("../fonts/open-sans-v16-latin-800.ttf") format("truetype");
}

html,
body,
#page {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	color: black;
	background: #f1f4f9;
	font-family: "Open Sans", Verdana;
}

a:link,
a:visited {
	color: #31688f;
	text-decoration: none;
}

a img {
	border: 0;
}

button img {
	vertical-align: middle;
}

#page-header {
	position: fixed;
	background: #fff;
	height: 70px;
	width: 100%;
	z-index: 9;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

#page-content {
	height: 100%;
	padding-top: 70px;
	position: relative;
}

#logo {
	width: 224px;
	height: 70px;
	text-align: center;
	background: #006eb3;
	position: relative;
}

#menuarrow {
	display: none;
	cursor: pointer;
	position: absolute;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #aaa;
	top: 56px;
	left: 50%;
	margin-left: -10px;
	pointer-events: all;
	transition: all 0.3s ease;
}

#menuarrow.clicado {
	transform: rotate(90deg) translateX(-4px) translateY(5px);
}

#logo img {
	margin-top: 10px;
	filter: brightness(0%) invert(100%);
}

#titulo {
	flex-grow: 1;
	font-size: x-large;
	font-weight: bold;
	color: #004c71;
	padding-left: 1em;
	transition-duration: 0.5s;
	opacity: 0;
}

#tabs {
	border: 0;
}

footer {
	font-size: x-small;
	text-align: center;
	padding: 20px;
	color: #7a7979;
	text-shadow: 0 2px 3px #afafaf;
}

#btn_senha.ativo {
	background: #ccc;
}

.senhaForte {
	width: 250px;
	background-color: #fff;
	border: 0;
	border-top: 5px solid #d8d8d8;
	color: #555;
	font-family: "Open Sans", Verdana;
	font-size: 8pt !important;
	margin: 0;
	margin-top: 5px;
	padding: 2px 2px 2px 8px;
	text-align: center;
}

.senhaForte.nivel1 {
	border-color: #eb2300;
}

.senhaForte.nivel2 {
	border-color: #f2ff00;
}

.senhaForte.nivel3 {
	border-color: #55ff00;
}

#menu.reduzido {
	width: 154px;
	min-width: 154px;
	font-size: 0.7em;
}

#menu {
	z-index: 8;
	font-size: 0.85em;
	width: 224px;
	min-width: 224px;
	background: #004c71;
	margin: 0;
	padding: 0;
	font-weight: normal;
	display: flex;
	justify-content: flex-start;
	flex-flow: column;
	text-align: center;
	position: fixed;
	top: 70px;
	bottom: 0;
	overflow-y: auto;
}

#menu a.ativo,
#menu a.clicado {
	opacity: 1;
}

#menu a.clicado {
	background: #02375c;
	border-left: 3px solid #0083c1;
}

#menu a.menu {
	border-left: 3px solid transparent;
}

#menu>div {
	margin-top: 5px;
	position: relative;
}

#menu a,
#menu a:visited {
	display: block;
	color: #fff;
	text-decoration: none;
}

#menu a {
	opacity: 0.7;
	padding: 6px 7px;
	border-left: 3px solid transparent;
	transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

#menu a:hover {
	opacity: 1;
	cursor: pointer;
}

#menu .titulo {
	overflow: hidden;
}

#menu .submenu {
	display: none;
	text-align: left;
}

#menu>div:last-child {
	padding-bottom: 30px;
}

#load_dialog_overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100001;
	opacity: 0.5;
	background: #000;
	-webkit-animation: fadein 0.5s;
	-moz-animation: fadein 0.5s;
	-o-animation: fadein 0.5s;
	animation: fadein 0.5s;
}

@-moz-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.5;
	}
}

@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.5;
	}
}

@-o-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.5;
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.5;
	}
}

#load_dialog_body {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 100002;
	padding: 0;
}

#load_dialog_fechar {
	position: absolute;
	right: 0;
	top: 2px;
}

#load_dialog_body table {
	border-collapse: 0;
	border-spacing: 0;
}

#load_dialog_body .msg {
	position: relative;
	border-radius: 4px 4px 4px 4px;
	margin: auto;
	text-align: center;
	width: 300px;
	padding: 3px;
}

#load_dialog_body .b {
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	overflow: hidden;
}

#load_dialog_body .bgy {
	background: #ff6;
	color: #585858;
	border: 2px solid #770;
}

#load_dialog_body .bgg {
	background: #73be33;
	color: #fff;
}

#load_dialog_body .bgt {
	border: 0;
	background: transparent;
}

#tb_message {
	position: fixed;
	z-index: 200;
	top: 0;
	left: 50%;
	max-width: 50%;
	transform: translateX(-50%);
}

#tb_message .close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../icon/fechar.svg") no-repeat;
	cursor: pointer;
}

#tb_message #div_message {
	padding: 10px;
	padding-right: 30px;
	font-size: small;
	position: relative;
	border-radius: 0 0 1em 1em;
	background: #ccc;
	color: #000;
	border: 1px solid #aaa;
	box-shadow: 3px 3px 5px #ccc;
}

#tb_message #div_message.warning {
	background: #fff2ae;
	color: #635a00;
	border-color: #5a4e2e;
}

#tb_message #div_message.error {
	background: #ffb1a9;
	color: #800000;
	border-color: #5a2522;
}

#tb_message #div_message.confirm {
	background: #d1ffb3;
	color: #136300;
	border-color: #405a38;
}

#loading {
	position: absolute;
	display: none;
}

#conteudo {
	padding: 5px 15px;
	margin: 10px;
	margin-left: 234px;
	background: #fff;
	border: 1px solid #e4e4e4;
	display: inline-block;
}

.erros {
	padding: 5px;
}

.errotd {
	border: 1px solid red !important;
	background-color: #ecc !important;
}

.sucesso,
.erro,
.ajuda,
.aviso,
.info {
	border: 1px solid #aed797;
	border-radius: 8px;
	background: #e9ffe7;
	color: #087a0e;
	padding: 0.7em;
	font-size: 1em !important;
}

.erro {
	border: 1px solid #f7a0b1;
	background: #fdecef;
	color: #c42845;
}

.ajuda {
	border-color: #777;
	background: #090d3e;
	color: white;
}

.info {
	border-color: #a1c6db;
	background: #e5f1f6;
	color: #2b46a6;
}

.aviso {
	border-color: #dad55e;
	background: #fffa90;
	color: #777620;
	padding: 0.7em;
}

.erro span.ui-icon,
.sucesso span.ui-icon,
.ajuda span.ui-icon,
.aviso span.ui-icon {
	float: left;
	margin-right: 0.3em;
}

.erro span.ui-icon {
	background-image: url("tema/images/ui-icons_cc0000_256x240.png");
}

.aviso span.ui-icon {
	background-image: url("tema/images/ui-icons_777620_256x240.png");
}

.max {
	width: 100%;
}

.nowr {
	white-space: nowrap;
}

.sim {
	font-weight: bold;
	color: #0c0;
}

.nao {
	color: #c00;
}

.exp {
	color: #cc0000;
	background: #ffff9a;
}

.inf {
	color: #777;
	font-style: italic;
}

.badge-v1 {
	position: absolute;
	display: inline-block;
	border: 2px solid #ff0000;
	border-radius: 10px;
	padding: 3px;
	top: 30px;
	right: 10px;
	color: #ff0000;
	background: #ff0;
}

.badge {
	position: absolute;
	top: 30px;
	right: 10px;
	padding: 3px 7px;
	border: 1px solid white;
	border-radius: 100px;
	background-color: #fa4949;
	background: -webkit-linear-gradient(top, #fa4949 0%, #ff0000 100%);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4),
		0 0 1px rgba(0, 0, 0, 0.7) inset, 0 10px 0px rgba(255, 255, 255, 0.11) inset;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	font: bold;
	color: white;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.6);
}

#btn_usuario {
	padding: 3px 6px;
	border: 1px solid #aaa;
	font-size: 1.3em;
	border-radius: 10px;
	color: #006eb3;
	background-clip: padding-box;
	text-decoration: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
	width: 40px;
	line-height: 46px;
	margin: auto;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
}

#btn_usuario:hover {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bottom-left::after {
	content: "";
	position: absolute;
	border-style: solid;
	display: block;
	width: 0;
	top: -11px;
	left: 0px;
	border-color: #999 transparent;
	border-width: 0 10px 10px;
}

.bottom-right::after {
	content: "";
	position: absolute;
	border-style: solid;
	display: block;
	width: 0;
	top: -11px;
	right: 0px;
	border-color: #999 transparent;
	border-width: 0 10px 10px;
}

.carregandoImagem {
	width: 320px;
	height: 240px;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	padding: 2px;
	border: 1px solid #000;
	opacity: 0.5;
}

.carregandoImagem img {
	padding: 120px 120px 20px 120px;
}

.carregandoImagem .ui-progressbar .ui-progressbar-value {
	background: #000;
}

.pendenteAprovacao {
	color: #fff;
	background: #cc0000 !important;
}

.canceladoAprovacao {
	color: #cc0000 !important;
}

.botaoAprovar {
	opacity: 0.8;
	background: green !important;
	color: #eee !important;
	border-color: darkgreen !important;
}

.botaoReprovar {
	opacity: 0.8;
	background: red !important;
	color: #eee !important;
	border-color: darkred !important;
}

.botaoAprovar:hover,
.botaoReprovar:hover {
	opacity: 1;
	color: #fff !important;
}

a,
.lnk {
	cursor: pointer;
}

.esc {
	display: none;
}

.rt {
	text-align: right;
}

.ce {
	text-align: center;
}

.flex {
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.flex>div {
	flex-grow: 1;
}

.grid {
	display: grid;
	grid-gap: 5px 10px;
}

.grid-2c {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 5px 10px;
}

.grid-3c {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5px 10px;
}

.grid-use-2c {
	grid-column: span 2;
}

.grid-use-3c {
	grid-column: span 3;
}

.grid-use-4c {
	grid-column: span 4;
}

.cabecalho {
	font-weight: bold;
	background: #ddd;
}

h1 {
	border-bottom: 2px dotted #bbb;
	color: #006eb3;
	text-shadow: 0 2px 2px #aaa;
	font-weight: normal;
}

h2 {
	border-bottom: 1px dotted #bbb;
	color: #006eb3;
	text-shadow: 0 2px 2px #aaa;
	font-weight: normal;
}

#tituloform {
	padding: 5px 10px;
	margin: 0;
	border-bottom: 1px solid #a16c46;
	margin-bottom: 5px;
	text-shadow: 0 2px 2px #aaa;
	font-size: 1.2em;
	font-weight: normal;
}

.metade {
	width: 50%;
	float: left;
}

.solicitacao {
	position: relative;
	margin: 6px;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: -moz-linear-gradient(top,
			#ffffff 0%,
			#e8e8e8 22%,
			#dcdcdc 70%,
			#dcdcdc 100%) !important;
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			color-stop(0%, #ffffff),
			color-stop(22%, #e8e8e8),
			color-stop(70%, #dcdcdc),
			color-stop(100%, #dcdcdc)) !important;
	box-shadow: 0 3px 3px #999;
}

.solicitacao .dados {
	padding: 5px;
}

.solicitacao .botoes {
	min-height: 46px;
	text-align: right;
	border-radius: 0 0 5px 5px;
	padding: 3px;
	background: -moz-linear-gradient(top,
			#9a9a9a 0%,
			#afafaf 22%,
			#afafaf 50%,
			#9a9a9a 80%,
			#ababab 100%) !important;
}

.solicitacao .cancelar {
	position: absolute;
	right: 0;
}

.solicitacao .id {
	position: absolute;
	top: -1px;
	left: -1px;
	font-size: small;
	padding: 3px;
	background: -moz-linear-gradient(top,
			#efefef 0%,
			#bcbcbc 70%,
			#bcbcbc 100%) !important;
	border-radius: 5px 0;
	border: 1px solid #dcdcdc;
}

.solicitacao .empresa {
	font-weight: bold;
	text-align: center;
	color: #3383bb;
	text-shadow: 0 2px 2px #ccc;
}

.solicitacao .responsavel {
	display: inline;
	font-size: small;
	line-height: 46px;
}

.solicitacao .tempo {
	text-align: right;
	font-size: small;
	font-style: italic;
}

#notifDialog {
	width: 350px;
	max-width: 350px;
	color: #555;
}

#notifDialog .notifdata {
	text-align: center;
	background: #ddd;
	min-width: 75px;
}

#notifDialog .notiftext {
	margin: 0 5px;
	text-align: justify;
}

#notifDialog .notif:hover {
	color: #000;
}

#notifDialog .notif {
	flex-wrap: nowrap;
	cursor: pointer;
}

#notifDialog .notificone {
	max-width: 40px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

.atender {
	background: rgb(255, 255, 255);
	border-radius: 5px;
}

.protocolo caption,
.atender caption {
	font-size: x-large;
	border-bottom: 3px solid black;
}

.protocolo th {
	border-right: 1px solid #ccc;
}

.protocolo th,
.protocolo td,
.atender th,
.atender td {
	padding: 5px;
}

.lista th,
.lista td {
	border: 1px solid #ccc;
	padding: 5px;
}

.lista tr.odd {
	background: #def;
}

.historico {
	border: 1px solid #ccc;
	margin-bottom: 20px;
}

.lista {
	width: 300px;
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-right: 1px solid #1485d6;
}

.lista li {
	overflow: hidden;
	white-space: nowrap;
	padding: 5px;
}

.lista li:hover {
	background: #d1e9fa;
	cursor: pointer;
}

.lista li.selecionado {
	background: #1485d6;
	color: white;
}

.lista ul {
	margin: 0;
	padding: 0;
	margin-left: 5px;
}

.listaform {
	display: none;
	margin-left: 300px;
	padding: 10px;
	border-left: 1px solid #1485d6;
}

.filtro {
	margin: 0;
	padding: 5px;
	border-bottom: 2px solid #1485d6;
}

.filtro th {
	text-align: left;
	font-style: italic;
	font-weight: normal;
	font-size: x-small;
}

#aviso {
	display: none;
}

.campo-1l,
.campo-2l,
.campo-3l,
.campo-4l,
.campo-5l {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.campo-2l {
	-webkit-line-clamp: 2;
}

.campo-3l {
	-webkit-line-clamp: 3;
}

.campo-4l {
	-webkit-line-clamp: 4;
}

.campo-5l {
	-webkit-line-clamp: 5;
}

.btn {
	cursor: pointer;
}

/* geraTabela */
.gtOpcoesBotoes img {
	margin: 0 10px;
}

.gtOpcoes .btnFiltro {
	display: none;
}

.gtOpcoes .gtAdicionarBotoes {
	display: flex;
}

.gtOpcoesBotoes.disabled img {
	filter: grayscale(100%);
	cursor: default;
}

.gtFiltro .gtColuna>.geraFormField {
	margin-top: 20px;
	margin-bottom: 2px;
}

.geraTabela tbody tr {
	height: 2.5em;
}

.geraTabela tbody td,
.geraTabela tbody th {
	padding: 2px 5px;
}

.geraTabela .tools {
	display: none;
	width: 20px;
	padding: 0 2px;
}

.geraTabela .toolsButton {
	padding: 0;
	margin: 0;
}

.geraTabela .gtGrupo {
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 12px solid #006eb3;
	pointer-events: all;
	transition: all 0.3s ease;
}

.geraTabela .borda {
	border: 1px solid #ccc;
}

#menuGrupo {
	position: absolute;
	background: #fffd;
	padding: 0.7em;
	border-radius: 0 1em 1em 1em;
	box-shadow: 0 0 5px #999;
	transition: all 0.3s ease;
}

#menuGrupo>div.btn {
	padding: 0.3em 0;
}

#menuGrupo>div.btn:hover {
	color: #006eb3;
}

#menuGrupo img {
	padding-right: 0.3em;
	vertical-align: middle;
}

#conteudo>.geraTabela thead td,
#conteudo>.geraTabela thead th {
	position: sticky;
	border-collapse: collapse;
	top: 70px;
}

.geraTabela thead td,
.geraTabela thead th {
	padding: 5px;
	background: #fff;
	box-shadow: inset 0 0 0 #000000, inset 0 -1px 0 rgba(0, 0, 0, 0.2);
	text-align: center;
}

#resultado>.geraTabela thead td,
#resultado>.geraTabela thead th {
	position: sticky;
	border-collapse: collapse;
	top: 70px;
}

.even {
	background: #f6f6f6;
}

.odd {
	background: #fff;
}

.geraTabela tbody tr:hover,
.over {
	background: #ffffd0;
}

.gtOpcoes,
.gtFiltroForm,
.gtFiltroColunas {
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.gtOpcoesBotoes {
	text-align: right;
}

.gtOpcoesBotoes,
.gtFiltroColunas {
	flex-grow: 1;
	flex-wrap: wrap;
}

.gtOpcoes,
.gtFiltro {
	position: sticky;
	left: 250px;
}

.ordenavel {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.ordenavel li {
	margin: 0 3px 3px 3px;
	padding: 0.4em;
	padding-left: 1.5em;
	font-size: small;
}

.ordenavel li span {
	cursor: move;
	margin-left: -1.3em;
}

.ordenavel .ui-state-highlight {
	height: 1.3em;
}

.direcao {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	display: inline-block;
	background: url("../icon/direcao.png") no-repeat;
}

.direcao.desc {
	background-position: top right;
}

.ui-autocomplete {
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
}

.ui-menu .ui-menu-item {
	border-top: 1px solid #eee;
}

.ui-menu-item-wrapper {
	display: block;
}

.month_year_datepicker .ui-datepicker-calendar {
	display: none;
}

.ui-datepicker table {
	font-size: 0.8em;
}

.ui-datepicker-trigger {
	top: 5px;
	position: relative;
}

.ui-tabs-nav {
	background: none;
	border: 0;
}

.ui-tabs-nav li {
	background: url("../imagens/abas_fundo.png") repeat-x scroll 0 0 #ffffff !important;
	border-color: #999 !important;
}

.ui-tabs-nav li.ui-state-hover {
	background: url("../imagens/abas_fundo_hover.png") repeat-x scroll 0 0 #ffffff !important;
	border-color: #83532f !important;
}

.ui-tabs-nav li.ui-state-active,
.alterar_comentario {
	background: url("../imagens/abas_fundo_ativo.png") repeat-x scroll 0 0 #ffffff !important;
	border-color: #83532f !important;
}

.ui-tabs .ui-tabs-nav li a {
	color: #fff;
}

.ui-tabs {
	background: none;
	border: 0;
}

.ui-tabs-panel {
	background: #ffffff !important;
	border: 1px solid #ccc !important;
	box-shadow: 0 0 8px #c4c4c4;
}

.ui-state-default.ui-state-erased {
	color: #bbb;
	background: #fafafa;
}

fieldset,
.fieldSet {
	border: 1px solid #ffffff;
	border-radius: 4px;
	box-shadow: 0 0 5px #e8e8e8;
	padding: 8px 4px 4px 8px;
	margin: 20px 0 15px;
}

fieldset>legend,
.fieldSet>legend {
	background: #ededed;
	background: -moz-linear-gradient(top,
			#ffffff 0%,
			#f3f3f3 50%,
			#ededed 51%,
			#ffffff 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			color-stop(0%, #ffffff),
			color-stop(50%, #f3f3f3),
			color-stop(51%, #ededed),
			color-stop(100%, #ffffff));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,
			#ffffff 0%,
			#f3f3f3 50%,
			#ededed 51%,
			#ffffff 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,
			#ffffff 0%,
			#f3f3f3 50%,
			#ededed 51%,
			#ffffff 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top,
			#ffffff 0%,
			#f3f3f3 50%,
			#ededed 51%,
			#ffffff 100%);
	/* IE10+ */
	background: linear-gradient(to bottom,
			#ffffff 0%,
			#f3f3f3 50%,
			#ededed 51%,
			#ffffff 100%);
	/* W3C */
	border-radius: 5px;
	box-shadow: 0 0 5px #e8e8e8;
	-webkit-box-shadow: 0 0 5px #e8e8e8;
	color: #585858;
	margin: -10px 0 0 0;
	padding: 5px;
}

.fieldSetatual {
	box-shadow: 0 0 15px #999999;
}

.fieldSetanterior {
	box-shadow: 0 0 5px #cccccc;
}

.fieldSetproximo {
	opacity: 0.4;
}

.fieldSetatual>legend {
	font-size: 120%;
	font-weight: bold;
}

.lista_pagadores {
	width: 100%;
	border-collapse: collapse;
}

.lista_pagadores .odd,
.lista_coletas .odd {
	background: #ccc;
}

.lista_pagadores thead,
.lista_coletas thead,
.lista_ocorrencia thead,
.log_usuarios thead {
	background: #ddd;
	border-bottom: 1px solid #777;
}

.lista_pagadores tfoot,
.lista_coletas tfoot {
	background: #ddd;
	border-top: 3px solid #777;
}

.link {
	cursor: pointer;
}

.img_infp {
	margin-left: 15px !important;
}

#com_text {
	width: 782px !important;
	height: 91px !important;
}

#listcoment {
	width: 805px;
	padding-bottom: 10px;
	max-height: 200px;
	overflow: auto;
}

.listarecursiva {
	list-style-type: none;
	text-align: right;
}

.listarecursiva button {
	position: relative;
	margin-right: 8px;
	margin-bottom: 5px;
}

.title_coment {
	margin-left: -40px;
	padding-left: 0px;
}

.texto_comentario {
	text-align: left !important;
	margin-left: -20px !important;
	padding-left: 0px !important;
}

.add {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	display: inline-block;
	background: url("../icon/mais.gif") no-repeat;
	margin-left: 0px;
}

.minus {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	display: inline-block;
	background: url("../icon/menos.gif") no-repeat;
}

table.acesso {
	width: auto;
	border: 1px solid #e8e8e8;
	margin-top: 10px;
}

table.acesso thead th {
	background: #e6e6e6;
	border-bottom: 1px solid #e8e8e8;
}

table.acesso tbody th {
	text-align: left;
}

table.acesso tbody th,
table.acesso tbody td,
table.acesso thead th {
	padding: 3px;
}

table.acesso tfoot td {
	font-size: x-small;
	text-align: center;
	border-top: 1px solid #e8e8e8;
	background: #efefef;
	padding: 5px 0;
}

table.acesso label {
	color: #000;
	margin-top: 0;
	font-size: inherit;
}

#checks {
	position: absolute;
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: none;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 2px 3px #ddd;
}

#checks li {
	cursor: pointer;
	padding-right: 3px;
}

#checks li:hover {
	background: #e6e6e6;
}

#nivelAcesso {
	list-style-type: none;
}

.classeValor {
	text-align: right;
}

#newItem {
	font-weight: bold;
	background: #4bff9b url(../imagens/ui-bg_glass_75_adicionar_novo_item_1x400.png) 50% 50% repeat-x !important;
	color: #014309 !important;
}

.itemLock {
	background: transparent url(../icon/senha.png) no-repeat scroll 50% center;
	text-align: right;
}

.contentImgProduto {
	text-align: center;
	cursor: pointer;
}

.toolTipImgs {
	display: none;
}

.ui-menu .addItem a {
	border-top: 2px solid #ddd;
	cursor: pointer;
	background: url("../icon/mais.gif") #eee 1% 50% no-repeat;
	padding-left: 25px !important;
}

.ui-menu .addItem a:hover,
.ui-menu .addItem a.ui-state-active,
.ui-menu .addItem a.ui-state-hover {
	color: rgb(13, 80, 0);
}

#menu-mobile,
#title-mobile,
#title-menu-mobile {
	display: none;
}

.card {
	padding: 10px;
	background: #fff;
	border-radius: 2px;
	display: inline-block;
	margin: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media print {

	.no-print,
	#page-header>div:not(#titulo),
	#menu {
		display: none;
	}

	#page-header {
		box-shadow: none;
	}

	#conteudo {
		margin: 10px;
	}

	#page-content {
		padding: 0;
	}
}

.badge {
	background: #cd5c5c;
	border-radius: 3px;
	color: #fff;
	z-index: 99;
	font-weight: 600;
	padding: 2px 6px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2),
		inset 0 2px 5px rgba(225, 225, 225, 0.3);
	font-size: 13px;
	margin-left: 5px;
	position: relative;
	display: inline-block;
	top: -1px;
}

.link-sol,
.link-horario {
	cursor: pointer;
	font-weight: bold;
	color: #657af8;
}

.dia-check {
	background: #006eb3;
	text-align: center;
	padding: 5px;
	border: 1px solid #ccc;
	color: #fff;
}

.dia-uncheck {
	background: #fff;
	text-align: center;
	padding: 5px;
	border: 1px solid #ccc;
	color: #000;
}

.dia-programado {
	background: #ddf1fc;
	text-align: center;
	padding: 5px;
	border: 1px solid #006eb3;
	color: #006eb3;
}

.tb-orcamento {
	margin-top: 20px;
}

.tb-orcamento thead {
	background: #787878;
	color: white;
}

.tb-orcamento thead tr th {
	border-right: 1px solid white;
}

.tb-orcamento tr {
	height: 35px;
}

.tb-orcamento tbody .linha-item:hover {
	background: #e2e2e2 !important;
}

.tb-orcamento tbody .linha-etapa,
.tb-orcamento tbody .linha-atv {
	background: #4595c7;
	font-size: 120%;
	border-bottom: 1px solid white;
}

.tb-orcamento tbody .linha-atv {
	background: #d5edfc;
}

.tb-orcamento tbody .linha-item {
	background: #efefef !important;
}

.tb-orcamento tbody .linha-etapa td:first-child,
.tb-orcamento tbody .linha-atv td:first-child {
	padding-left: 10px;
}

.tb-orcamento tbody .linha-etapa td:first-child .acoes-etapa div,
.tb-orcamento tbody .linha-atv td:first-child .acoes-atv div {
	display: inline;
}

.tb-orcamento tbody .linha-etapa td:first-child .acoes-etapa,
.tb-orcamento tbody .linha-etapa td:last-child .acoes-etapa,
.tb-orcamento tbody .linha-atv td:first-child .acoes-atv,
.tb-orcamento tbody .linha-atv td:last-child .acoes-atv {
	display: none;
}

.tb-orcamento tbody .linha-etapa .editar-nome-etapa,
.tb-orcamento tbody .linha-atv .editar-nome-atv {
	display: none;
}

.tb-orcamento tbody .linha-item td:first-child .acoes-item {
	display: none;
	position: absolute;
}

.tb-orcamento tbody .linha-item td:first-child .acoes-item div {
	display: inline;
}

.tb-orcamento tbody .linha-item td:first-child {
	padding-left: 10px;
}

.linha-subgrupo,
.linha-grupo {
	font-weight: bold;
}

.tb-orcamento tbody .linha-item .even,
.even {
	background: #f6f6f6;
}

.tb-orcamento tbody .linha-item .odd,
.odd {
	background: #fff;
}