@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;
	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;
}
#titulo {
	flex-grow: 1;
	font-size: x-large;
	font-weight: bold;
	color: #2559a6;
	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: 220px;
	font-size: 0.7em;
}
#menu .menu.clicado ~ .submenu {
	display: none;
}
#menu:hover .menu.clicado ~ .submenu {
	display: block;
}
#menu:hover {
	width: 220px;
	box-shadow: 2px 2px 15px #333;
	transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}
#menu {
	z-index: 8;
	font-size: 0.8em;
	width: 80px;
	background: #2559a6;
	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 .submenu a.clicado {
	background: #1b4481;
	border-left: 3px solid #0083c1;
}
#menu .submenu 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.6;
	padding: 6px 7px;
	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: translate(50%, 0);
}
#tb_message .close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 16px;
	height: 16px;
	background: url("../icon/fechar.svg") no-repeat;
	cursor: pointer;
}
#tb_message #div_message {
	padding: 10px;
	font-size: small;
	position: relative;
	border-radius: 6px;
	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: 90px;
	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;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
#btn_usuario:hover,
#btn_usuario.clicado {
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.5);
}
.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;
}
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,
.grid-1c,
.grid-2c,
.grid-3c,
.grid-4c {
	display: grid;
	grid-gap: 5px 10px;
}
.grid-2c {
	grid-template-columns: 1fr 1fr;
}
.grid-3c {
	grid-template-columns: repeat(3, 1fr);
}
.grid-4c {
	grid-template-columns: repeat(4, 1fr);
}
.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;
}
#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;
}
.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;
}
.gtOpcoesBotoes.disabled > img {
	filter: grayscale(100%);
	cursor: default;
}
.gtFiltro .gtColuna > .geraFormField {
	margin-top: 20px;
	margin-bottom: 2px;
}
.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: #fff;
	padding: 10px;
	box-shadow: 0 0 5px #aaa;
	transition: all 0.3s ease;
}
#menuGrupo > img {
	padding: 0 5px;
}
#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%
	);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #ffffff),
		color-stop(50%, #f3f3f3),
		color-stop(51%, #ededed),
		color-stop(100%, #ffffff)
	);
	background: -webkit-linear-gradient(
		top,
		#ffffff 0%,
		#f3f3f3 50%,
		#ededed 51%,
		#ffffff 100%
	);
	background: -o-linear-gradient(
		top,
		#ffffff 0%,
		#f3f3f3 50%,
		#ededed 51%,
		#ffffff 100%
	);
	background: -ms-linear-gradient(
		top,
		#ffffff 0%,
		#f3f3f3 50%,
		#ededed 51%,
		#ffffff 100%
	);
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		#f3f3f3 50%,
		#ededed 51%,
		#ffffff 100%
	);
	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;
}
.link {
	cursor: pointer;
}
.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;
	}
}

.se-principal {
	gap: 40px;
	display: inline-flex;
}

.se-item {
	flex-direction: column;
	display: inline-flex;
	position: relative;
}

.se-item-head {
	align-items: center;
	display: inline-flex;
	gap: 5px;
}

.se-item-body {
	padding-top: 12px;
	flex-direction: column;
	gap: 18px;
	display: flex
}

.se-head-title {
	flex: 1 1 0;
	gap: 10px;
	display: flex
}

.se-title-1 {
	color: #22232A;
	font-size: 15px;
	font-weight: 600;
}

.se-title-2 {
	color: #8E8E95;
	font-size: 15px;
}

.se-title-3 {
	color: #22232A;
	font-size: 18px;
	font-weight: 500;
}

.se-title-4 {
	color: #8E8E95;
	font-size: 13px;
}

.se-title-5 {
	color: #22232A;
	font-size: 13px;
}

.se-item-card {
	padding: 12px;
	background: #FAFAFF;
	border-radius: 12px;
	border: 1px #ccc solid;
	min-width: 300px;
}

.se-card-item {
	display: flex;
	flex-direction: column;
	margin: 5px 0;
}

.se-card-separador {
	height: 1px;
	background: #1A1A1E;
	margin: 7px 0;
}

.se-mais-menos {
	background: #eee;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	justify-content: center;
	display: flex;
	align-items: center;
	align-self: end;
}

.se-tempo {
	justify-content: space-between;
	display: flex;
}

.se-primary {
	width: 12px;
	height: 12px;
	background: #377BF1;
	border-radius: 9999px;
}

.se-success {
	width: 12px;
	height: 12px;
	background: #25A248;
	border-radius: 9999px;
}