@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*,
input,
select,
textarea,
option,
button,
BTNCMD,
LABEL,EDIT,span_menu {
  outline: none !important;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}

:root {
	-moz-osx-font-smoothing: grayscale;
	/* Firefox */
	-webkit-font-smoothing: antialiased;
	/* WebKit  */
	
	/* Variavel para mudança de cores */
	/* Cores do Corpo */
	--cor-body: #454545;
	--cor-fundo: #F8F8F8;
	--cor-scroll: #454545;
	--cor-barra-janela: #EDEDED;
	--cor-barra: #b96f00;
	--cor-barra-selecionado: #FF9A00;
	
	/* Cores do Menu Lateral */
	--cor-btn-lat: #FFFFFF00;
	--cor-btn-lat-hov: #454545;
	--cor-btn-lat-: #FFFFFF00;
	--cor-btn-lat-sub: #A1A1A1;
	--cor-btn-lat-sub-hov: #656565;
	--cor-btn-txt-sub: #FFFFFF;
	--cor-btn-txt-sub-hov: #FFFFFF;
	--cor-btn-lat-hov-itens: #45454530;
	--cor-btn-txt: #202020;
	--cor-btn-txt-hov: #FFFFFF;
	
	--cor-svg:	#454545;
	--cor-svg-hover: #f8f8f8;

	/* Cores do Menu Topo */
	--cor-top-hov: #454545;
	--cor-top-txt: #202020;
	--cor-top-txt-hov: #FFFFFF;

	/* Cores dos Botões */
	--cor-botao: #45454530;
	--cor-botao-borda: #454545;
	--cor-botao-txt: #202020;
	--cor-botao-hov: #454545;
	--cor-botao-borda-hov: #454545;
	--cor-botao-txt-hov: #FFFFFF;
	--cor-botao-disabled: #F7F7F7;
	--cor-botao-txt-disabled: #000000;
	--cor-botao-borda-disabled: #606060;

	/* Cores da Toolbar */
	--cor-tool-fundo: #EDEDED;
	--cor-tool-hover: #B3B3B3;
	
	/* Cores dos Campos em tela */
	--cor-campo: #FFFFFF;
	--cor-campo-hov: #FFFFFF;
	--cor-campo-borda: #60606060;
	--cor-campo-borda-hov: #FF9A00;
	--cor-campo-txt: #202020;
	--cor-campo-txt-hov: #202020;

	--cor-combo-hov: #60606060;

	--cor-campo-off: #D3D3D3;
	--cor-campo-borda-off: #939393;
	--cor-campo-txt-off: #202020;

	--cor-campo-selecao: #454545;
	--cor-campo-selecao-txt: #FFFFFF;
	
	--cor-fieldset-fundo: #FFFFFF;
	--cor-fieldset-borda: #C5C5C5;

	--cor-aba: #EDEDED;
	--cor-aba-txt: #000000;

	--cor-aba-hov: #FFFFFF;
	--cor-aba-txt-hov: #000000;
	
	--cor-aba-slct: #454545;
	--cor-aba-txt-slct: #FFFFFF;
	
	--cor-aba-off: #EDEDED;
	--cor-aba-txt-off: #B5B5B5;
	
	/* Cores do Calendário */
	--cor-calen-fundo: #FFFFFF;
	--cor-calen-body: #454545;
	
	--cor-calen-borda: #000000;
	--cor-calen-borda-hover: #FFFFFF;
	
	--cor-calen-txt: #FFFFFF;
	--cor-calen-txt-hover: #000000;
	--cor-calen-txt-today: #20CC00;

	--cor-calen-fundo-slct: #BDDFFF;
	--cor-calen-borda-slct: #0069CC;
	--cor-calen-txt-slct: #0069CC;
	
	--cor-calen-find: #ff0000;
	--cor-calen-find-sub: #ff7070;
	--cor-calen-week: #000000;
	--cor-calen-week-sub: #606060;
	
	--cor-calen-fundo-ano: #454545;

	/* Cores Extras */
	--cor-destaque: #454545;
	--cor-destaque-hover: #303030;
	--cor-hover-label: #ffffff;
	--cor-text: #202020;
	
	--cor-saturacao: saturate(0);
	--cor-brilho: brightness(4.0);
	--cor-saturacao-grid: saturate(1);
	--cor-hue-grid: hue-rotate(0deg);
	
	/*Cores grid*/
	--cor-link-grid: #618ec6;
	
}

.rotate {
	animation: rotation 2s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

@keyframes slideTopDownIn {
	0% {
		transform: scaleY(0);
		transform-origin: 100% 0%;
	}

	100% {
		transform: scaleY(1);
		transform-origin: 100% 0%;
	}
}

@keyframes slideTopDownOut {
	0% {
		transform: scaleY(1);
		transition: 1s;
		transform-origin: 100% 0%;
	}

	100% {
		transform: scaleY(auto);
		transition: 1s;
		transform-origin: 100% 0%;
	}
}

@keyframes slideLeftRightIn {
	0% {
		transform: scaleX(0);
		transform-origin: 0% 100%;
	}

	100% {
		transform: scaleX(1);
		transform-origin: 0% 100%;
	}
}

#EdMensagem {
  font-family: monospace;
  white-space: pre;
}

img { /* Evita o arrasto de imagens pelo sistema. */
  -webkit-user-drag: none; /* Para navegadores baseados em WebKit (como Chrome e Safari) */
  -moz-user-drag: none; /* Para o Firefox */
  -o-user-drag: none; /* Para o Opera */
  user-drag: none; /* Para outros navegadores */
}

.dropdown-content {
	display: none;
	position: absolute;
	right: -250px;
	background-color: #f1f1f1;
	width: 300px;
	max-height: 450px;
	overflow-y: auto;
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 1;
}

.dropdown-content_menu {
	display: none;
	position: absolute;
	right: 0;
	background-color: #f1f1f1;
	width: 350px;
	height: 100%;
	max-height: 370px;
	margin-right: 135px;
	overflow-y: scroll;
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 1;
}

.dropdown-content a {
	color: var(--cor-top-txt);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 12px;
 	transition: all 0.1s ease-in-out;
}

.dropdown-content a:hover {
	background-color: var(--cor-top-hov);
	color: var(--cor-top-txt-hov);
	transition: all 0.1s ease-in-out;
}

.dropdown-content_menu a {
	color: #232f3e;
	padding: 5px 5px;
	text-decoration: none;
	display: block;
	font-size: 12px;
 	transition: all 0.1s ease-in-out;
}

.dropImg {
	width: 35px;
	height: 35px;
}

.RESUMOINICIAL {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;	
	align-items: center;
}

.MENUINFO1 {
	width: 98%; 
	height: 20%;
	max-height: 20%;
	background-color: #ffffff; 
	display: flex; 
	align-self: center; 
	justify-content: space-around;
	margin: 8px 0px;
	padding: 5px;
	border-radius: 10px; 
	box-shadow: 0px 0px 10px #00000030;
}

.MENUINFO2 {
	width: 98%; 
	height: 40%;
	max-height: 40%; 
	background-color: #ffffff; 
	align-self: center; 
	display: block; 
	justify-items: center; 
	margin: 8px 0px; 
	padding: 5px;
	border-radius: 10px; 
	box-shadow: 0px 0px 10px #00000030;
}

.MENUINFO3 {
	width: 98%; 
	height: 10%;
	max-height: 10%; 
	background-color: #ffffff; 
	align-self: center; 
	display: block; 
	justify-content: space-around; 
	margin: 8px 0px; 
	padding: 5px;
	border-radius: 10px; 
	box-shadow: 0px 0px 10px #00000030;
}

.CARDGROUP {
	width: 30%; 
	height: 8.5rem;
    max-width: 100%;
    max-height: 85%;
	background-image: linear-gradient(135deg, #3b3b3b, #6f6f6f);
	align-self: center; 
	border-radius: 15px;
	padding: 5px 15px;
	box-sizing: border-box;
	overflow: scroll;
    scrollbar-width: none;
}

.CARDGROUP p::selection {
    background-color: #cccccc;
    color: #000000;
}

.CARDGROUP p {
    margin-block-start: 5px;
    margin-block-end: 5px;
    color: #ffffff;
}

.CARDGROUP2 {
	width: 100%; 
	height: 80%;
	align-self: center; 
	display: flex; 
	justify-content: space-around;
	padding-bottom: 10px;
}

.TOPICGROUP {
	cursor: pointer;
	width: 100%;
	max-width: 20%; 
	height: 100%; 
	background-color: var(--cor-barra-selecionado); 
	align-self: center; 
	border-radius: 15px;
	padding: 5px 5px 0px 5px;
}

.TOPICIMG {
	width: 100%; 
	height: 85%; 
	background-color: #ffffff;
	display: flex;
    justify-content: center;
    align-items: center; 
	border-radius: 10px;
	overflow: hidden;
}

.IMGTXT {
	width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.IMGTXT p {
	color: #ffffff;
    margin-block-start: 0px;
    margin-block-end: 0px;
    font-weight: 600;
}

.TOPICIMG img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.grid_menu {
	display: grid;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}

.grid-template-columns_menu {
	grid-template-columns: 110px 110px 110px;
	grid-template-rows: 110px;
	width: 110px;
	height: 110px;
	margin-top: 5px;
	margin-bottom: 5px;
	justify-items: center;
}

.dropdown:hover .dropdown-content {
	display: block;
	margin-right: 250px;
	animation: slideTopDownIn 0.2s ease 0s 1 normal both;
}

.dropdown_menu:hover .dropdown-content_menu {
	display: block;
	height: 370px;
	width: 350px;
	justify-content: center;
	margin-right: 135px;
	animation: slideTopDownIn 0.2s ease 0s 1 normal both;
}

.container_superior_menu a{
	font-size: 13px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

input[type="password"] {
	text-transform: none !important;
}

#divLogin {
	width: 34.5vh;
    height: 26vh;
    margin: 2vh 0px 0px 0px;
}

#linhaSeparacao {
	color: white;
	width: 100%;
	height: 50px;
	background-color: white;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#lbVersaoSistema {
	font-weight: none;
	font-size: 10px;
}

#EscolheEmpresa {
	vertical-align: middle;
	font-size: 12px;
	color: white;
	background: url(imagens/login/seta.png) no-repeat;
	/* Imagem de fundo (Seta) */
	background-size: 30px 30px;
	background-position: right center;
	/*Posi鑴欒尃鑴濋垾娅啠鈧鍋敓鍏ゆ崡鍋挌鍏熲挌鈶╁亾鎷ц剹鍗㈣剻閳ユ鍌︽嫹鑴欒尃鑺掗埀顑澪冲啠鈧鍋鍏ゆ崡鍡忊偓娅啠鈧鍋冲叅鎹楀伄鈷氬厽鈷氣懇鍋撴嫥鑴楀崲鑴欏瀯鑺掗垾姣優鍛偓婧嶅叅鎹椻懇鍋撴嫥鑴欓垾姣伄銇ｅ叅鎹楀棌鈧鍐ｂ偓姣伄纬鍏ゆ崡鍋挌鍏熲挌鈶╁亾鎷ц剹鍗㈣剻閳ユ鍋鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋 da imagem do background*/
	background-color: #aebfd5;
	height: 40px;
	width: 300px;
	-webkit-appearance: none;
	/* Remove estilo padr鑴欒尃鑴濋垾娅啠鈧鍋敓鍏ゆ崡鍋挌鍏熲挌鈶╁亾鎷ц剹鍗㈣剻閳ユ鍌︽嫹鑴欒尃鑺掗埀顑澪冲啠鈧鍋鍏ゆ崡鍡忊偓娅啠鈧鍋灐鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋緱鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋拷 do Chrome */
	-moz-appearance: none;
	/* Remove estilo padr鑴欒尃鑴濋垾娅啠鈧鍋敓鍏ゆ崡鍋挌鍏熲挌鈶╁亾鎷ц剹鍗㈣剻閳ユ鍌︽嫹鑴欒尃鑺掗埀顑澪冲啠鈧鍋鍏ゆ崡鍡忊偓娅啠鈧鍋灐鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋緱鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋拷 do FireFox */
	appearance: none;
	/* Remove estilo padr鑴欒尃鑴濋垾娅啠鈧鍋敓鍏ゆ崡鍋挌鍏熲挌鈶╁亾鎷ц剹鍗㈣剻閳ユ鍌︽嫹鑴欒尃鑺掗埀顑澪冲啠鈧鍋鍏ゆ崡鍡忊偓娅啠鈧鍋灐鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋緱鍏ゆ崡鈶╁亾鎷ц剻閳ユ鍋拷 do FireFox*/
	padding: 0px;
	padding-right: 45px;
	cursor: pointer;
	margin-top: 2px;
}

#pnMensagemLogin {
	color: white;
    font-size: 1.5vh;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    border-radius: 0.5vh;
    text-shadow: 0px 0px 0.3vh #000000, 0px 0px 0.3vh #000000;
}

.rotuloLogin {
	text-align: right;
	/* font-family: verdana; */
	font-size: 16px;
	padding-right: 10px;
}

.campoLogin {
	background-image: url(imagens/login/barra-login.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 300px 40px;
	height: 40px;
	padding: 0px;
	width: 300px;
}

.contatoLogin {
	background-image: url(imagens/login/contato.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 35px;
	height: 40px;
	padding-left: 40px;
	text-align: left;
	font-size: 10px;
}

.localLogin {
	background-image: url(imagens/login/local.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 35px;
	height: 40px;
	padding-left: 40px;
	text-align: left;
	font-size: 10px;
}

.DESABILITA_OBJETO {
	opacity: 0.3;
	-moz-opacity: 0.3;
	filter: alpha(opacity=30);
}

.HABILITA_OBJETO {
	opacity: 1;
	-moz-opacity: 1;
	outline: none;
	/*filter: alpha(opacity =   100);*/
}

FORM {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

.LABEL {
	font-size: 0.68rem;
	color: var(--cor-text);
	line-height: 15px;
	/* font-family: sans-serif; */
	text-align: left;
	white-space: nowrap;
}

.LABEL_SEM_BORDA {
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	text-align: left;
	white-space: nowrap;
	border: none;
}

.LABEL_INFO_EMPRESA {
	font-size: 15px;
	color: #6f6f6f;
	line-height: 15px;
	text-align: left;
	white-space: nowrap;
}

.LABEL_ABA {
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	text-align: left;
	margin-left: 2px;
}

.LABEL_ABA_DISABLE {
	font-size: 10px;
	color: #777777;
	line-height: 15px;
	text-align: left;
}

.LABELLINK {
	font-size: 12px;
	font-family: sans-serif;
	text-align: left;
	color: var(--cor-link-grid);
}

.LABELLINK_LOGIN {
	font-size: 10px;
	text-decoration: none;
	text-align: left;
	color: black;
}

.LABELLINKMENU {
	font-size: 12px;
	text-align: left;
	color: #939393;
	padding-left: 10px;
}

.LABELTITULO {
	font-size: 20px;
	color: #000000;
	line-height: 15px;
	text-align: left;
}

.EDIT {
	border: var(--cor-campo-borda) 0.1vh solid;
	background-color: var(--cor-campo);
	color: var(--cor-campo-txt);
	padding: 0px 5px;
	font-size: 10px;
	background-image: none;
	height: 20px;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.EDIT:focus {
	border: var(--cor-campo-borda-hov) 0.1vh solid;
	background-color: var(--cor-campo-hov);
	color: var(--cor-campo-txt-hov);
	padding: 0px 5px;
	font-size: 10px;
	background-image: none;
	height: 20px;
	transition: all 0.1s ease-in-out;
}

.EDIT_SELECTED {
	border: var(--cor-campo-borda-hov) 1px solid;
	background-color: var(--cor-campo-hov);
	color: var(--cor-campo-txt-hov);
	padding: 0px 5px;
	font-size: 10px;
	background-image: none;
	height: 20px;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.EDIT_DISABLED {
	border: var(--cor-campo-borda-off) 1px solid;
	background-color: var(--cor-campo-off);
	color: var(--cor-campo-txt-off);
	padding: 0px 5px;
	font-size: 10px;
	background-image: none;
	height: 20px;
	border-radius: 5px;
}

.EDIT_LOGIN {
    border: #60606060 0.1vh solid;
	width: 100%;
    height: 100% !important;
    padding-left: 1vh !important;
    margin-top: 0.2vh;
    font-size: 1.6vh !important;
    background-color: #ffffff !important;
    border-radius: 0.5vh;
    transition: border 0.1s ease-in-out;
}

.EDIT_LOGIN:focus {
	border: var(--cor-barra-selecionado) 0.1vh solid;
	width: 100%;
    height: 100% !important;
    padding-left: 1vh !important;
    margin-top: 0.2vh;
    font-size: 1.6vh !important;
    background-color: #ffffff !important;
    border-radius: 0.5vh;
    transition: border 0.1s ease-in-out;
}

.EDIT_LOGIN_SELECTED {
	border: var(--cor-barra-selecionado) 0.1vh solid;
	width: 100%;
    height: 100% !important;
    padding-left: 1vh !important;
    margin-top: 0.2vh;
    font-size: 1.6vh !important;
    background-color: #ffffff !important;
    border-radius: 0.5vh;
    transition: border 0.1s ease-in-out;
}

.EDIT_UPPER {
	text-transform: uppercase;
}

.COMBOBOX {
	border: #939393 1px solid;
	font-size: 10px;
	background-image: none;
	vertical-align: middle;
	background-color: #fff;
	height: 19px;
}

.LISTBOX {
	border: #939393 1px solid;
	font-size: 10px;
	background-image: none;
	vertical-align: middle;
	background-color: #fff;
	height: 19px;
}

.MENUCENTRAL {
	vertical-align: top;
	/*background-color: #e9f4ff;*/
	background-color: #ffffff00;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.MENUDIVCENTRAL {
	background: var(--cor-fundo);
	background-repeat: repeat;
	overflow: hidden;
	height: 100%;
	width: 100%;
/* 	user-select: none; */
	border-radius: 5px;
}

.LABELMENU {
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: black;
}

.LABELPESQUISA {
	font-weight: bold;
	font-size: 11px;
	color: black;
}

.LINHAGRID1 {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 19px;
	background-color: #f6f6f6;
	border-bottom: 1px solid #c4c0c9;
	cursor: pointer;
}

.LINHAGRID2 {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 19px;
	background-color: #fdfdfd;
	border-bottom: 1px solid #c4c0c9;
	cursor: pointer;
}

.LINHAGRID_CINZA {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #b5b5b5;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_AZUL_CLARO {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #b0e2ff;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_AZUL {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #08a4ff;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_AZUL_ESCURO {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #004268;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_VERMELHA_CLARA {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #ff9999;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_VERMELHA {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #ff0000;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_VERDE {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #33ff33;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_AMARELO {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #ffff00;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_ROXO {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 16px;
	background-color: #e633ff;
	border-bottom: 1px solid #c4c0c9;
}

.LINHAGRID_SELECTED {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	height: 19px;
	background-color: #999999;
}

.CELULAGRIDREDIM {
	padding: 0px 2px 0px 2px;
}

.CELULAGRID {
	border-width: 0 1px 1px 0;
	border-color: #cedbd3;
	border-style: solid;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	border-bottom: 1px solid #c4c0c9;
	white-space: nowrap;
}

.PANELTOGGLEBODY {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	background: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px;
}

.PANELTOGGLEHEADER {
	cursor: pointer;
	background-image: none;
	border: 0px;
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	border-style: solid;
}

.BOTAO_NAVEGADOR_CELL {
	padding: 1px;
	border: 1px solid transparent;
	cursor: pointer;
	color: #000;
	background-color: transparent;
	transition: all 0.1s ease-in-out;
}

.BOTAO_NAVEGADOR_CELL:hover {
	padding: 1px;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	color: #000;
	background-color: var(--cor-tool-hover);
	transition: all 0.1s ease-in-out;
}

.BOTAO_NAVEGADOR_CELL_SELECIONADO {
	padding: 1px;
	border: 1px solid #54a0ff;
	cursor: pointer;
	color: #000;
	background-color: transparent;
	background-color: #c8e1ff;
}

.BOTAO_NAVEGADOR {
	border: none;
	display: block;
	font-weight: bold;
	font-size: 10px;
	min-height: 16px;
	width: 24px;
	cursor: pointer;
	color: #000;
	padding-top: 0px;
	background-color: transparent;
	margin: 1px;
	outline: none;
}

.BOTAO_NAVEGADOR_SELECIONADO {
	cursor: pointer;
	color: #000;
	padding-top: 0px;
	background-color: transparent;
	background-color: #edeae6;
	border: 1px solid #d4cfc7;
}

.FUNDO_NAVEGADOR {
	width: 100%;
	background-color: var(--cor-tool-fundo);
}

.PANEL_HEADER {
	/*background-image: url(imagens/tela/7_2.png);*/
	background-repeat: repeat-x;
	background-color: #ffffff00;
	border-color: transparent;
	padding: 0px;
	border-width: 0px;
	border-style: none;
	height: 15px;
	color: white;
	font-size: 11px;
	font-weight: bold;
	padding-left: 5px;
	padding-top: 2px;
}

.PANEL_HEADER_ACESSO {
	background-image: url(imagens/tela/7_2.png);
	background-repeat: repeat-x;
	background-color: transparent;
	border-color: transparent;
	padding: 0px;
	border-width: 0px;
	border-style: none;
	color: white;
	font-size: 11px;
	font-weight: bold;
	padding-left: 5px;
	padding-top: 2px;
}

.FONTECABECALHO {
	font-weight: bold;
	font-size: 12px;
	color: #FFF;
}

.MSG_ERRO {
	font-size: 11px;
	color: #ff0000;
}

.MSG_INFO {
	font-size: 11px;
	color: #ff0000;
}

.BTNCMD {
	padding: 8px;
	font-size: 11px;
	font-weight: 700;
	padding-bottom: 20px;
	text-decoration: none;
	background-color: var(--cor-botao);
	color: var(--cor-botao-txt);
	border: 1px solid var(--cor-botao-borda);
	background-repeat: repeat-x;
	background-position: left top;
	transition: all 0.15s ease-in-out;
	border-radius: 3px;
	min-width: 100px !important;
	width: auto !important;
	cursor: pointer;
}

.BTNCMD:disabled {
	cursor: auto;
	opacity: 0.8;
	background-color: var(--cor-botao-disabled);
	color: var(--cor-botao-txt-disabled);
	border: 1px solid var(--cor-botao-borda-disabled);
}

.BTNCMD:disabled:hover {
	background-color: var(--cor-botao-disabled);
	color: var(--cor-botao-txt-disabled);
	border: 1px solid var(--cor-botao-borda-disabled);
}


.BTNCMD:hover {
	background-color: var(--cor-botao-hov);
	color: var(--cor-botao-txt-hov);
	border: 1px solid var(--cor-botao-borda-hov);
	transition: all 0.15s ease-in-out;
}

.GRID_HEADER {
	height: 20px;
	margin-top: 10px;
	padding-left: 2px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 2px;
	font-size: 11px;
	color: #000000;
	background-repeat: repeat-x;
	letter-spacing: 0.1em;
	background-color: #d4cfc7;
	text-align: left;
	font-size: 11px;
	text-align: left;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	font-weight: bold;
	white-space: nowrap;
	margin-top: 10px;
}

.GRID_HEADER_SELECTED {
	height: 20px;
	margin-top: 10px;
	padding-left: 2px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 2px;
	font-size: 11px;
	color: #000000;
	background-repeat: repeat-x;
	letter-spacing: 0.1em;
	background-color: #d4cfc7;
	text-align: left;
	font-size: 11px;
	text-align: left;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

.TAB_PANEL {
	background-color: #f7f7f7;
	padding: 3px;
	width: 80px;
	cursor: pointer;
	white-space: nowrap;
}

.TAB_BODY {
	background-color: transparent;
	border-top: none;
}

.TAB_BODY_SUB {
	background-color: transparent;
	border-top: none;
	overflow: auto;
	padding: 6px;
}

.TAB_BODY_DIV {
	background-color: transparent;
}

.TAB_BODY_BORDA {
	background-color: transparent;
	width: 100%;
}

.BARRA_MENU_LATERAL {
	cursor: e-resize;
	background-color: #ffffff00;
	-moz-user-select: none;
	-khtml-user-select: none;
	width: 50px;
}

.LABEL_BARRA_MENU_LATERAL {
	color: var(--cor-text);
	font-size: 10px;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.PANEL_FILTRO_BODY {
	padding: 1px;
}

.PANEL_BODY {
	background-color: transparent;
	padding: 0px;
	width: 100%;
}

.PANEL_BODY_PADDING {
	background-color: transparent;
	padding: 10px;
}

.PANEL {
	background-color: transparent;
}

.PANEL_CADASTRO {
	background-color: transparent;
}

.FUNDO_LOGIN {
	background: url(imagens/login/fundoLogin.png) scroll center center;
	background-repeat: repeat-x;
	background-size: 100%;
}

.LOGIN_RODAPE {
	font-size: 10px;
	color: #000000;
	text-align: center;
}

.BTN_LOGIN {
	width: 100%;
	height: 15%;
	cursor: pointer;
	border: 0px;
	font-size: 14px;
	color: white;
	background: var(--cor-barra-selecionado);
	margin-top: 2vh;
	border-radius: 0.5vh;
	transition: background 0.1s ease-in-out;
}

.BTN_LOGIN:hover {
	background: var(--cor-barra);
}

.LABEL_MENU_PARENT {
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: black;
}

.MENU_6 {
	/* background-image: url(imagens/tela/6_2.png); 
	background-color: #dbdbdb;
	width: 100%;
	height: 4px; */
}

.MENU_7 {
	text-align: left;
	width: 100%;
	padding: 0px;
	/* border-radius: 2px; */
}

.MENU_8 {
	background-image: url(imagens/tela/8_2.png);
	background-repeat: repeat-x;
	color: black;
	text-align: right;
	text-decoration: none;
	border: 0;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-left: 0px;
	white-space: nowrap;
}

.MENU_9 {
	/* background-image: url(imagens/tela/9_2.png); */
	/* background-repeat: repeat-x; */
	/*background-image: linear-gradient(to bottom, #003c87, #232f3e);*/
	height: 96px;
	width: 20px;
}

.MENU_1 {
	/* background-image: url(imagens/tela/1_2.png); */
	/* background-repeat: repeat-x; */
	width: 100%;
	/*background-image: linear-gradient(to bottom, #003c87, #232f3e);*/
	/* border-top: 1px solid #cbcbcb; */
}

.MENU_5 {
	/* background-image: url(imagens/tela/5_2.png); */
	/* background-repeat: repeat-x; */
	/*background-color: #474747;*/
	/*background-image: linear-gradient(to bottom, #003c87, var(--cor-text));*/
	color: #ffffff;
	border-radius: 10px;
}

.PANEL_HEADER_TEMPLATE {
	background-image: none;
	color: var(--cor-text);
	font-size: 11px;
	background-position: left top;
	background-repeat: repeat-x;
	cursor: default;
	text-decoration: none;
	margin-left: 5px;
	user-select: text;
}

.ERROR_MESSAGE {
	background-color: #f2dede;
	color: #a94442;
	border: 1px solid #ebccd1;
	border-radius: 4px;
	padding: 5px;
	margin: 2px;
	margin-bottom: 0px;
	font-size: 11px;
}

.BOX_DESTACADO {
	background-color: #d3f3f8;
	border: 1px dashed #939393;
}

.FORMATO_RELATORIO {
	cursor: pointer;
	padding: 2px;
	border: 1px solid #ffffff00;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.FORMATO_RELATORIO_SELECIONADO {
	cursor: pointer;
	padding: 2px;
	background-color: var(--cor-hover-submenu);
	border: 1px solid var(--cor-text);
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.COLUNA_SEM_BORDA {
	border: 0px;
}

.tooltip {
	background-color: #ffffff;
	border: 1px solid #aaaaaa;
	font-family: verdana;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 4px;
	padding-left: 4px;
}

.BOTAOTEXTO {
	border: 0px;
	color: white;
	display: inline-table;
	background: none;
	padding: 0px 0px 0px 0px;
	text-indent: 2px;
	cursor: pointer;
	text-align: left;
}

.heightframe {
	height: 100%;
}

.heightdivframe {
	width: 100%;
	height: 100%;
}

.colLeftPress {
	background-color: var(--cor-barra-selecionado);
	width: 4px;
	height: 30px;
	border-radius: 10px 0px 0px 0px;
	border-left: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colCenterPress {
	padding: 0pt 5px;
	background-color: var(--cor-barra-selecionado);
	height: 30px;
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colRightPress {
	width: 4px;
	background-color: var(--cor-barra-selecionado);
	height: 30px;
	border-radius: 0px 10px 10px 0px;
	border-right: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colLeftSel {
	background-color: var(--cor-barra-selecionado);
	width: 4px;
	height: 30px;
	border-radius: 10px 0px 0px 0px;
	border-left: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colCenterSel {
	padding: 0pt 5px;
	background-color: var(--cor-barra-selecionado);
	height: 30px;
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colRightSel {
	width: 4px;
	background-color: var(--cor-barra-selecionado);
	height: 30px;
	border-radius: 0px 10px 10px 0px;
	border-right: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colLeft {
	background-color: var(--cor-barra);
	width: 4px;
	height: 30px;
	border-radius: 10px 0px 0px 0px;
	border-left: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colCenter {
	padding: 0pt 5px;
	background-color: var(--cor-barra);
	height: 30px;
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.colRight {
	width: 4px;
	background-color: var(--cor-barra);
	height: 30px;
	border-radius: 0px 10px 10px 0px;
	border-right: 1px solid var(--cor-barra);
	border-top: 1px solid var(--cor-barra);
	border-bottom: 1px solid var(--cor-barra);
}

.fundoTela {
	height: 1rem;
	margin: 5px 0px 0px 0px;
	transition: height 0.5s ease;
}

.trigger {
	height: 2.2rem;
	cursor: pointer;
	transition: height 0.5s ease;
}

 .toggleButton {
    width: 100%;
}

.barraBotoesAba {
	background-color: #ffffff00;
	height: 2.0rem;
	width: 100%;
	overflow: hidden;
	bottom: 0;
	position: fixed;
	transition: height 0.5s ease;
}

.BTNCLOSE {
	background: url(imagens/mdi/fecharSelecionado.gif) no-repeat 0px 0px;
	margin-top: 2px;
	margin-right: -5px;
	filter: grayscale(1);
	opacity: 0.8;
	transition: all 0.1s ease-in-out;
}

.BTNCLOSESELECIONADO {
	background: url(imagens/mdi/fecharSelecionado.gif) no-repeat 0px 0px;
	margin-top: 2px;
	margin-right: -5px;
	filter: grayscale(1);
	opacity: 0.8;
	transition: all 0.1s ease-in-out;
}

.EXPAND_TREE {
	background: transparent url(imagens/menu/expandTree.png) no-repeat scroll 0px -15px;
	width: 15px;
	height: 15px;
	border: 0px;
	margin-top: 0px;
	cursor: pointer;
}

.EXPAND_TREE_SELECTED {
	background: transparent url(imagens/menu/expandTree.png) no-repeat scroll 0px 0px;
	width: 15px;
	height: 15px;
	border: 0px;
	margin-top: 0px;
	cursor: pointer;
}

.COLLAPSE_TREE {
	background: transparent url(imagens/menu/expandTree.png) no-repeat scroll 0px -45px;
	width: 15px;
	height: 15px;
	border: 0px;
	margin-top: 1px;
	cursor: pointer;
}

.COLLAPSE_TREE_SELECTED {
	background: transparent url(imagens/menu/expandTree.png) no-repeat scroll 0px -30px;
	width: 15px;
	height: 15px;
	border: 0px;
	margin-top: 1px;
	cursor: pointer;
}

.AVANCAR_ABA {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll 0px -5px;
	width: 12px;
	height: 30px;
	border: 0px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.AVANCAR_ABA_SELECIONADO {
	background: transparent url(imagens/mdi/avancarAbaSelecionado.svg) no-repeat scroll 0px -5px;
	width: 12px;
	height: 30px;
	border: 0px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.VOLTAR_ABA {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll -25px -5px;
	width: 12px;
	height: 30px;
	border: 0px;
	cursor: pointer;
}

input.VOLTAR_ABA {}

.AVANCAR_ABA_FER {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll 0px 0px;
	width: 12px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	opacity: 0.6;
	-moz-opacity: 0.6;
	filter: alpha(opacity=60);
}

.VOLTAR_ABA_FER {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll -24px 0px;
	width: 12px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	opacity: 0.6;
	-moz-opacity: 0.6;
	filter: alpha(opacity=60);
}

.AVANCAR_ABA_FER_ESC {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll 0px 0px;
	width: 12px;
	height: 31px;
	border: 0px;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=00);
}

.VOLTAR_ABA_FER_ESC {
	background: transparent url(imagens/mdi/avancarAba.svg) no-repeat scroll -24px 0px;
	width: 12px;
	height: 31px;
	border: 0px;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=00);
}

.VOLTAR_ABA_SELECIONADO {
	background: transparent url(imagens/mdi/avancarAbaSelecionado.svg) no-repeat scroll -25px -5px;
	width: 12px;
	height: 30px;
	border: 0px;
	cursor: pointer;
}

.FECHAR_MENU {
	background: transparent url(imagens/menu/fecharMenu.png) no-repeat scroll 0px 0px;
	width: 19px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	display: block;
}

.FECHAR_MENU_SELECIONADO {
	background: transparent url(imagens/menu/fecharMenu.png) no-repeat scroll -19px 0px;
	width: 19px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	display: block;
}

.ABRIR_MENU {
	background: transparent url(imagens/menu/fecharMenu.png) no-repeat scroll -38px 0px;
	width: 19px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	display: block;
}

.ABRIR_MENU_SELECIONADO {
	background: transparent url(imagens/menu/fecharMenu.png) no-repeat scroll -57px 0px;
	width: 19px;
	height: 31px;
	border: 0px;
	cursor: pointer;
	display: block;
}

.TOOLBAR {
	width: 0px;
	float: left;
}

.LOGIN_TABLE {
	height: 542px;
	width: 100%;
}

.LOGIN_TD1 {
	background: transparent url(imagens/bg_menu.gif) no-repeat scroll 0 0;
	width: 182px;
}

.LOGIN_TD2 {
	width: 300px;
}

.LOGIN_TD3 {
	background: transparent url(imagens/bg_arearestrita.gif) no-repeat scroll 0 0;
}

.DV_FORM {
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
}

.LOGIN_TITULO {
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #000000;
	font-family: "Dmsans", sans-serif;
}

.PANEL_HEADER_ALIGN_LEFT {
	text-align: left;
}

.PANEL_BAR_CENTRO {
	background-image: url(imagens/panelBar/panelBarCentroBorda.png);
	border: none;
	width: 100%;
	background-repeat: repeat;
	padding: 0px;
}

.PANEL_DIREITA_ESQUERDA {
	padding: 0px;
	border: none;
}

.PANEL_BAR_FUNDO {
	padding: 0px;
	background-color: #e8e4df;
	background-repeat: repeat;
}

.TAB_VERMELHA {
	background-image: none;
	border: none;
	background-repeat: repeat;
	background-color: #939393;
}

.TAB_VERMELHA_INTERNA {
	background-image: none;
	border: none;
	background-repeat: repeat;
	background-color: #939393;
}

.TAB_VERMELHA_INTERNA_ATIVA {
	background-image: none;
	border: none;
	background-repeat: repeat;
	background-color: #939393;
}

.TAB_LARANJA {
	background-image: none;
	border: none;
	background-repeat: repeat;
	background-color: #939393;
}

.SEM_BORDA {
	border: none;
}

.MOUSE_POINTER {
	cursor: pointer;
}

.DIV_OCULTA_TELA {
	border: 2px solid #474747;
	width: 400px;
	height: 150px;
	background: white;
	position: absolute;
	visibility: hidden;
	padding: 4px;
	z-index: 10;
	background: white;
}

.PADDING_ZERO {
	padding: 0px;
}

.MEMO {
	border: var(--cor-campo-borda) 1px solid;
	background-color: var(--cor-campo);
	color: var(--cor-campo-txt);
	padding: 1px;
	font-size: 12px;
	background-image: none;
	vertical-align: middle;
	font-family: "Dmsans",sans-serif;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.MEMO_SELECTED {
	border: var(--cor-campo-borda-hov) 1px solid;
	background-color: var(--cor-campo-hov);
	color: var(--cor-campo-txt-hov);
	padding: 1px;
	font-size: 12px;
	background-image: none;
	vertical-align: middle;
	font-family: "Dmsans",sans-serif;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.MEMO_DISABLED {
	border: var(--cor-campo-borda-off) 1px solid;
	background-color: var(--cor-campo-off);
	color: var(--cor-campo-txt-off);
	padding: 1px;
	font-size: 10px;
	background-image: none;
	vertical-align: middle;
	border-radius: 5px;
}

.TAB_PANEL_ACTIVE {
	cursor: default;
}

.vAlignTop {
	vertical-align: top;
	padding: 0px;
}

.hAlignCenter {
	text-align: center;
	padding: 0px;
}

.GRID_HEADER_2 {
	margin-top: 10px;
	padding: 2px;
	font-size: 11px;
	color: #000000;
	background-repeat: repeat-x;
	background-color: #d4cfc7;
	background-image: url(imagens/btn.png);
	text-align: left;
	font-size: 11px;
	border-style: solid;
	border-width: 1px;
	font-weight: bold;
}

.GRID_BODY {
	margin-top: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-right: 2px;
	font-size: 12px;
	text-align: left;
	border-style: solid;
	border-width: 1px;
}

.dr-mpnl-pnl-b {
	padding: 0px;
}

.dr-mpnl-header {
	height: 17px;
}

.GRID_FOOTER {
	font-size: 11px;
	color: #000000;
	letter-spacing: 0.1em;
	font-size: 11px;
	font-weight: bold;
}

.GRID {
	background-color: #ebebeb;
}

.TABLE_FORNECEDOR {
	background-color: #ffffdd;
	border-right-style: solid;
	border-right-width: 6px;
	border-right-color: #808080;
	border-bottom-style: solid;
	border-bottom-width: 6px;
	border-bottom-color: #808080;
}

.DADOS_TABLE_FORNECEDOR {
	color: #0000ff;
	background-color: #ffffdd;
	border: 0px;
}

.TABLE_TRANSPARENT {
	color: #000000;
	background-color: transparent;
	border: 0px;
}

.BOTAO_FECHAR_MDI {
	background: url(imagens/mdi/fecharSelecionado.gif) no-repeat 0px 0px;
	border: none;
	padding-left: 6px;
	padding-right: 6px;
}

.BOTAO_MAXIMIZAR_MDI {
	background: url(imagens/mdi/maximizar.gif) no-repeat 0px 0px;
	border: none;
	padding-left: 6px;
	padding-right: 6px;
}

.fundo_destaque {
	background-color: #fcf5e9;
}

.borda_padrao {
	border: 1px solid #939393;
}

.CAMPO {
	background-color: #ffffff;
	border: 1px solid #939393;
	height: 30px;
}

.CAMPOSEL {
	background-color: #fcf5e9;
	border: 1px solid #939393;
	height: 30px;
}

.rich-pmenu-item-label {
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: black;
}

.dr-pmenu-selected-item {}

.rich-mpnl-body {
	padding: 0px;
}

.DIV_AUTO_COMPLETE {
	position: absolute;
	background-color: #FFFFFF;
	border: 1px solid #939393;
	color: #000000;
	margin-top: -1px;
	padding: 2px;
	width: 25em;
	z-index: 5;
}

.DIV_OBS_AUTO_COMPLETE {
	position: absolute;
	background-color: #FFFFFF;
	border: 1px solid #939393;
	color: #000000;
	margin-top: -1px;
	padding: 2px;
	width: 25em;
	height: 15em;
	z-index: 5;

	font-size: 10px;
	color: #000000;
	line-height: 18px;
	text-align: left;
}

.LINHA_AUTO_COMPLETE {
	white-space: nowrap;
	cursor: pointer;
}

.LINHA_AUTO_COMPLETE_SELECIONADA {
	white-space: nowrap;
	cursor: pointer;
	background-color: var(--cor-destaque);
}

.LINHA_AUTO_COMPLETE_SELECIONADA .LABEL_AUTO_COMPLETE {
	color: var(--cor-hover-label);
}

.LABEL_AUTO_COMPLETE {
	font-size: 11px;
	color: #000000;
	line-height: 18px;
	text-align: left;
	font-weight: bold;
}

.LABEL_MENSAGEM_NAO_LIDA {
	font-size: 10px;
	color: #becddf;
	font-weight: bold;
	line-height: 15px;
	text-align: left;
	border: none;
	background: none;
}

.LABEL_MENSAGEM_NAO_LIDA_NEGRITO {
	font-size: 12px;
	color: #FFF;
	line-height: 15px;
	text-align: left;
	font-weight: bold;
	border: none;
	background: none;
}

.MENU_TOP_GROUP_DIV {
	overflow: hidden;
	background-color: #ffffff00;
	color: #000000;
	user-select: none;
}

.MENU_TOP_GROUP_DIV [id^="pnGrupoMenu"] [name="item_menu"] {
	width: 195px;
	margin-left: 15px;
	transition: all 0.1s ease-in-out;
}

.MENU_TOP_GROUP_DIV [id^="pnGrupoMenu"] [name="item_menu"]:hover {
	width: 191px;
	margin-left: 15px;
	transition: all 0.1s ease-in-out;
}

.MENU_TOP_GROUP_DIV [id^="pnGrupoMenu"] [name="item_menu"] td[id^="tdMenu"] {
	padding-left: 15px;
	width: 225px !important;
}

.MENU_TOP_GROUP_DIV [id^="pnGrupoMenu"] [name="item_menu"] td[id^="tdMenu"]::before {
	content: "";
	margin-right: 5px;
	margin-left: -0.5rem;
	font-size: 1rem;
}

[name="item_menu"] {
	margin: 5px;
	border-left: 0px solid var(--cor-btn-lat-hov);
	background: linear-gradient(90deg, transparent, transparent);
	border-radius: 3px;
	transition: all 0.1s ease-in-out;
}

[name="item_menu"]:hover {
	border-left: 4px solid var(--cor-btn-lat-hov);
	background: linear-gradient(90deg, var(--cor-btn-lat-hov-itens), transparent);
	border-radius: 3px;
	transition: all 0.1s ease-in-out;
}

[name="item_menu"]:hover .MENU_ITEM {
	color: var(--cor-btn-txt);
	transition: all 0.1s ease-in-out;
}

div#pnGrupoMenu2 {}

.MENU_TOP_GROUP {
	color: #000000;
	font-size: 10px;
	font-weight: bold;
	background-position: left top;
	background-repeat: repeat-x;
	border-top: medium none;
	cursor: pointer;
	height: 30px;
	margin-top: 0;
	padding: 2px;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}

.MENU_GROUP {
	font-family: sans-serif;
	letter-spacing: 0.5px;
	font-weight: bold;
	cursor: pointer;
	
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	height: 26px;
	background-color: #5f90bb;
	font-size: 11px !important;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	margin: 0px 5px;
}

.MENU_GROUP_SELECTED {
	font-weight: bold;
	letter-spacing: 0.5px;
	cursor: pointer;

	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	height: 32px;
	margin-top: 2px;

	background-color: #5f90bb;
	font-size: 11px !important;
	color: #fff;
	text-align: center;
}

.MENU_GROUP_SAIR {
	width: 75px;
	height: 30px;
}

.MENU_ITEM {
	font-size: 12px;
	letter-spacing: 0.5px;
	cursor: pointer;
	margin: 0px 0px 0px 5px;
	color: #000000;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	transition: all 0.1s ease-in-out;
}

.MENU_ITEM img {
	display: none;
}

.MENU_ITEM_SELECTED {
	font-size: 12px;
	letter-spacing: 0.5px;
	cursor: pointer;
	margin: 0px 0px 0px 5px;
	color: var(--cor-btn-txt);
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}

.MENU_ITEM_SELECTED :hover {
	background-color: #2b4c7e;
	;
}

.LABEL_MENSAGEM_SISTEMA {
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	text-align: left;
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	resize: both;
}

.ATENDE_MENU {
	background-color: #ffffff;
	border: 1px solid var(--cor-text);
	padding: 2 2 2 2;
	width: 130px;
	position: absolute;
	z-index: 10;
}

.MENSAGEM_ALERTA_MENU {
	background-color: #ffffff;
	border-color: #c4c0b9;
	border-style: solid;
	border-width: 1px;
	padding: 1px;
	cursor: default;
}

.MENSAGEM_ALERTA_DICAS {
	background-color: #ffffff;
	border-radius: 5px;
	padding: 1px;
	cursor: default;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
	animation: bounceIn 0.8s ease-in-out;
}

.MENSAGEM_MANUTENCAO {
	background-color: #ffffff;
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;
	padding: 1px;
	cursor: default;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

@keyframes bounceIn {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}

	60% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes bounceOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	40% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(0.1);
		opacity: 0;
	}
}

html {
	--scrollbarBG: #d7dce3;
	--thumbBG: var(--cor-destaque-hover);
}

#dicasContent::-webkit-scrollbar {
	width: 11px;
}

#dicasContent {
	scrollbar-width: thin;
	scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

#dicasContent::-webkit-scrollbar-track {
	background: var(--scrollbarBG);
}

#dicasContent::-webkit-scrollbar-thumb {
	background-color: var(--thumbBG);
	border-radius: 6px;
	border: 3px solid var(--scrollbarBG);
}

.BOTAO_CALENDAR {
	background-image: url(imagens/btCalendar.svg);
	border-width: 0px;
	color: #000000;
	background-color: #ffffff;
	width: 20px;
	height: 20px;
	padding: 0px;
	cursor: pointer;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.BOTAO_CALENDAR_OCULTO {
	display: none;
}

.MENU_LIST_BORDER {
	background-color: #f1eee9;
	float: left;
	position: absolute;
}

.MENU_LIST_BORDER_CLICK {
	background-color: #f1eee9;
	float: left;
	position: absolute;
}

.MENU_LIST_BG {
	background: none repeat-y scroll left center transparent;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.MENU_LIST_MENU_ITEM {
	position: relative;
	white-space: nowrap;
}

.MENU_LIST_MENU_ITEM_ENABLED {
	border: 0 solid transparent;
	padding: 1px 36px 1px 2px;
	border-style: solid;
	transition: all 0.1s ease-in-out;
}

.MENU_LIST_MENU_ITEM_HOVER {
	background-color: var(--cor-destaque);
	border-radius: 2px;
	background-position: left top;
	background-repeat: repeat-x;
	cursor: pointer;
	padding: 1px 36px 1px 2px;
	transition: all 0.1s ease-in-out;
}

.MENU_LIST_MENU_ITEM_ENABLED .LABEL {
	color: #000000;
	transition: all 0.1s ease-in-out;
}

.MENU_LIST_MENU_ITEM_HOVER:hover>.LABEL {
	color: #ffffff;
	transition: all 0.1s ease-in-out;
}

.MENU_LIST_MENU_ITEM_ICON {
	margin-right: 10px;
}

.MENU_LIST_MENU_SEPARATOR {
	border-top-color: #c4c0b9;
	border-top: 1px solid;
	cursor: default;
	font-size: 0;
	margin: 2px 0 2px 24px;
}

.MENU_LIST_STRUT {
	border: 0 none;
	font-size: 0;
	margin: 0;
	position: relative;
}

.RICH_PANEL {
	border-style: solid;
	border-width: 1px;
	padding: 1px;
	background-color: #ffffff;
	border-color: #c4c0b9;
	white-space: nowrap;
}

.RICH_PANEL_HEADER {
	background-position: left top;
	background-repeat: repeat-x;
	padding: 2px;
	background-color: #ededed;
	color: #000000;
	font-family: "Dmsans",sans-serif;
	font-size: 11px;
	font-weight: bold;
}

.TAB_CELL_ATIVADA {}

.TAB_CELL_DESATIVADA {
	transition: all 0.1s ease-in-out;
}

.TAB_DESATIVADA:hover .TAB_CELL_DESATIVADA {
	padding-top: 2px;
	background-color: #FFFFFF;
	color: #000000;
	border-radius: 5px 5px 0px 0px;
	height: 25px;
	font-weight: bold;
}

.TAB_ATIVADA {
	background-color: var(--cor-aba-slct);
	color: var(--cor-aba-txt-slct);
	border-radius: 5px 5px 0px 0px;
	height: 25px;
	font-weight: bold;
}

.TAB_DESATIVADA {
	background-position: center top;
	background-repeat: repeat-x;
	border-color: #ffffff;
	border-style: solid;
	border: none;
	height: 25px;
	color: var(--cor-aba-txt);
	background-color: var(--cor-aba);
	font-weight: bold;
	transition: all 0.1s ease-in-out;
}

.TAB_DESATIVADA:hover {
	background-position: center top;
	background-repeat: repeat-x;
	border-color: #ffffff;
	border-style: solid;
	border: none;
	height: 25px;
	color: var(--cor-aba-txt-hov);
	background-color: var(--cor-aba-hov);
	font-weight: bold;
}

.TAB_HEADER {
	font-family: "Dmsans", sans-serif;
	font-size: 12px;
	text-align: center;
	border-radius: 5px 5px 0px 0px;
}

.TABHDR_SIDE_BORDER {
	background-position: center top;
	background-repeat: no-repeat;
	border-bottom: 1px solid #ffffff;
}

.TABHDR_SIDE_BORDER_2 {
	background-color: #ffffff;
	background-position: center top;
	background-repeat: no-repeat;
	box-shadow: 0px -1px 3px 0px rgba(0, 0, 0, 0.4);
	border-radius: 5px 5px 0px 0px;
}

.TAB_DESABILITADA {
	background-position: center top;
	background-repeat: repeat-x;
	border-color: #ffffff;
	border-style: solid;
	border: none;
	height: 25px;
	color: var(--cor-aba-txt-off);
	background-color: var(--cor-aba-off);
	font-weight: bold;
}

.BOTAO_CALENDAR_PROPOSTA {
	background-image: url(imagens/btCalendar.svg);
	background-position: left top;
	border-width: 0px;
	color: #000000;
	width: 20px;
	height: 20px;
	padding: 0px;
	cursor: pointer;
	display: none;
}

.FUNDO_INFO_ATENDE {
	background-color: #fcf5e9;
}

.BORDA_BOTTOM_ATENDE {
/* 	border-bottom: 1px solid #939393; */
}

.BORDA_TOP_ATENDE {
	border-top: 1px solid #939393;
}

.BORDA_LEFT_ATENDE {
	border-left: 1px solid #939393;
}

.BORDA_RIGHT_ATENDE {
	border-right: 1px solid #939393;
}

.CABCOL {
	height: 20px;
	background-color: #edecdc;
	background-position: left;
	background-repeat: repeat;
	border: 1px solid #939393;
	border-radius: 5px 5px 0px 0px;
	padding: 1px;
}

.RODCOL {
	height: 5px;
	background-color: #edecdc;
	background-position: left;
	background-repeat: repeat;
	border: 1px solid #939393;
	border-radius: 0px 0px 5px 5px;
	padding: 1px;
}

.LABEL_ESTATISTICA {
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	text-align: left;
	font-weight: bold;
}

.PANEL_TEXT {
	font-size: 11px;
	color: #000000;
	line-height: 15px;
	font-family: "Dmsans",sans-serif;
	text-align: left;
	border: #939393 1px solid;
	border-radius: 5px;
	background-image: none;
	vertical-align: middle;
	background-color: #fff;
	overflow-y: auto;
	overflow-x: none;
}

.PANEL_TEXT_PRE {
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	font-family: "Dmsans", sans-serif;
	text-align: left;
	background-image: none;
	vertical-align: middle;
	background-color: #fff;
	margin: 0px;
	overflow-y: auto;
	overflow-x: none;
	white-space: pre-wrap;
	word-wrap: break-word;
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.CABECALHO {
	color: #ffffff;
	background-color: #939393;
	font-size: 11px;
	font: bold;
	border: 0px solid;
	margin: 0px;
}

.LINK_CMD {
	background: none;
	border: none;
	font-size: 11px;
	cursor: pointer;
	text-decoration: underline;
}

.GROUP_BOX {
	border: #939393 1px solid;
}

.LINE {
	border-bottom: #939393 1px solid;
	border-top: none;
	border-right: none;
	border-left: none;
}

#tabelaLogin {
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	font-family: "Dmsans", sans-serif;
	font-size: 12px;
	color: white;
}

.topo_esq {
	background-image: url(imagens/login/topo.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.topo_dir {
	background-repeat: no-repeat;
	background-position: left center;
	width: 250px;
}

.rodape_esq {
	background-repeat: no-repeat;
	background-position: right 205px;
	width: 260px;
}

.rodape_dir {
	background-image: url(imagens/login/canto_direito.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.tabelaPainel {
	background-image: none;
	background-color: white;
	margin-top: 50px;
	margin-left: auto;
	color: black;
	font-family: "Dmsans", sans-serif;
	font-size: 12x;
}

.TELA_PRO {
	height: 0px;
	width: 0px;
	visibility: hidden;
	overflow-y: hidden;
	overflow-x: hidden;
	position: absolute;
	z-index: 100;
}

.TELA_PRO_SUB {
	height: 98.5%;
	width: 100%;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #d0d0d0;
	z-index: 4;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.TELA_PRO_SUB_IMG {
	background-color: #ffffff;
	height: 28px;
	width: 110px;
	position: absolute;
	right: 50%;
	padding: 5px;
	border-radius: 5px;
	top: 40%;
	z-index: 5;
	overflow-y: hidden;
	overflow-x: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.DIV_FILTRO_COMPOR_ORCAMENTO {
	position: absolute;
	background-color: #fcf5e9;
	border: 1px solid #939393;
	margin-top: -1px;
	padding: 2px;
	z-index: 5;
}

.highlight2 {
	color: #090 !important;
	font-weight: bold;
}

.highlight3 {
	color: #e00000 !important;
}

.DynarchCalendar-bodyTable {
	width: 100%;
}

.MENU_CENTRAL_DIV {
	position: absolute;
	cursor: e-resize;
	top: 0px;
	left: 0px;
	height: 0px;
	width: 0px;
	z-index: 1000;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	background-color: var(--cor-fundo);
}

.BARRA_MENU_LATERAL_OCULTO {
	cursor: e-resize;
	background-color: #939393;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image: url("imagens/mdi/fundoBarraMenu.png");
	position: absolute;
	width: 5px;
	left: 0px;
	background-color: #d0d0d0;
	opacity: 0.3;
	-moz-opacity: 0.3;
	filter: alpha(opacity=30);
}

.DIV_GRADE_IMAGENS {
	width: 100%;
	height: 100px;
	overflow-x: hidden;
	overflow-y: scroll;
	table-layout: fixed;
	border-radius: 5px;
	border: 1px solid var(--cor-destaque);
	background-color: #f3f2e9;
}

.DIV_GRADE_CONCILIACAO {
	width: 100%;
	height: 400px;
	min-width: 400px;
	overflow-x: hidden;
	overflow-y: scroll;
	table-layout: fixed;
	border: 1px solid #c0c0c0;
	background-color: #ffffff;
}
.DIV_GRADE_RESUMO {
	width: 100%;
	height: 100%;
	min-width: 400px;
	overflow-x: hidden;
	overflow-y: scroll;
	table-layout: fixed;
	border: 1px solid #c0c0c0;
	background-color: #ffffff;
}

.GRADE_IMAGENS {
	font-size: 11px;
	border: 0px;
}

.GRADE_IMAGENS_CONCILIACAO {
	font-size: 11px;
	border: 1px solid #c0c0c0;
	padding-bottom: 2px;
	padding-top: 2px;
	background-color: #ffffff;
}

.GRADE_ESPELHO {
	border-radius: 5px;
	border: 1px solid var(--cor-destaque);
	background-color: #f3f2e9;
}

.alert {
	z-index: 10;
	padding: 11px;
	margin-bottom: 20px;
	border: 1px;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	right: 355px;
	float: right;
	clear: right;
	color: white;
	background-color: #4a89dc;
}

.tree {
	border: #939393 1px solid;
	padding: 1px;
	font-size: 10px;
	background-image: none;
	height: 19px;
}

#btnFileUpload_aux div.uploadify-button {
	background-color: white !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

.MENU_CLIENTE_1 {
	background-repeat: repeat;
	width: 100%;
	height: 70px;
	background: var(--cor-body);
}

.MENU_CLIENTE_7 {
	background-repeat: repeat;
	text-align: left;
	width: 100%;
	border: 0;
	padding: 0px;
}

.barraBotoesAba_CLIENTE {
	background-color: var(--cor-body);
	height: 33px;
	width: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	border: 1px solid var(--cor-body);
}

/* ----------------------- css upload ------------------- **/
.progressBarUpload {
	width: 370px !important;
}

.divProgressBarUpload {
	border: 1px solid #7088b1;
	border-radius: 5px;
	background-color: white;
	padding: 2px;
	margin: 2px;
}

#divGeralStatusUpload {
	border: 2px solid #7088b1;
	display: none;
	position: absolute;
	z-index: 900;
	width: 400px;
	font-size: 11px;
	font-family: "Dmsans", sans-serif;
	padding: 2px;
	background-color: #c1cfe7;
	border-radius: 5px;
}

.cancelaProgressBarUpload {
	margin-left: 2px;
	margin-top: 1px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	position: absolute;
}

.upload_pesquisa {
	background-image: url("/layout/imagens/pesquisar16.svg");
	background-repeat: no-repeat;
	background-position: center center;
	height: 20px;
	width: 20px;
	border: 0px;
	cursor: pointer;
	background-color: transparent;
	text-indent: -99999;
}

/* ----------------------- css upload ------------------- **/

/* ----------------------- css progress bar ------------------- **/

progress {
	/* Get rid of the default appearance */
	appearance: none;

	/* This unfortunately leaves a trail of border behind in Firefox and Opera. We can remove that by setting the border to none. */
	border: none;

	/* Add dimensions */
	width: 100%;
	height: 20px;

	/* Although firefox doesn't provide any additional pseudo class to style the progress element container, any style applied here works on the container. */
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5) inset;

	/* Of all IE, only IE10 supports progress element that too partially. It only allows to change the background-color of the progress value using the 'color' attribute. */
	color: var(--cor-barra-selecionado);

	position: relative;
	margin: 0 0 0;
}

progress::-webkit-progress-bar {
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5) inset;
}

progress::-webkit-progress {
	position: relative;

	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius: 3px;

	/* Let's animate this */
	animation: animate-stripes 5s linear infinite;
}

progress::-webkit-progress-value {
	position: relative;

	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius: 3px;

	/* Let's animate this */
	animation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes {
	100% {
		background-position: -100px 0;
	}
}

/* Let's spice up things little bit by using pseudo elements. */

progress::-webkit-progress-value:after {
	/* Only webkit/blink browsers understand pseudo elements on pseudo classes. A rare phenomenon! */
	content: "";
	position: absolute;

	width: 5px;
	height: 5px;
	top: 7px;
	right: 7px;

	background-color: white;
	border-radius: 100%;
}

/* Firefox provides a single pseudo class to style the progress element value and not for container. -moz-progress-bar */

progress::-moz-progress-bar {
	/* Gradient background with Stripes */
	background-image: -moz-linear-gradient(135deg,
			transparent,
			transparent 33%,
			rgba(78, 122, 158, 1) 33%,
			rgba(78, 122, 158, 1) 66%,
			transparent 66%),
		-moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(78, 122, 158, 1)),
		-moz-linear-gradient(left, #7088b1, #7088b1);

	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius: 3px;

	/* Firefox doesn't support CSS3 keyframe animations on progress element. Hence, we did not include animate-stripes in this code block */
}

/* Styling the determinate progress element */
progress[value] {
	/* Get rid of the default appearance */
	appearance: none;

	/* This unfortunately leaves a trail of border behind in Firefox and Opera. We can remove that by setting the border to none. */
	border: none;

	/* Add dimensions */
	width: 100%;
	height: 20px;

	/* Although firefox doesn't provide any additional pseudo class to style the progress element container, any style applied here works on the container. */
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5) inset;

	/* Of all IE, only IE10 supports progress element that too partially. It only allows to change the background-color of the progress value using the 'color' attribute. */
	color: var(--cor-barra-selecionado);

	position: relative;
	margin: 0 0 0;
}

progress[value]::-webkit-progress-bar {
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5) inset;
}

progress[value]::-webkit-progress-value {
	position: relative;

	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius: 3px;

	/* Let's animate this */
	animation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes {
	100% {
		background-position: -100px 0;
	}
}

progress[value]::-webkit-progress-value:after {
	/* Only webkit/blink browsers understand pseudo elements on pseudo classes. A rare phenomenon! */
	content: "";
	position: absolute;

	width: 5px;
	height: 5px;
	top: 7px;
	right: 7px;

	background-color: white;
	border-radius: 100%;
}

/* Firefox provides a single pseudo class to style the progress element value and not for container. -moz-progress-bar */

progress[value]::-moz-progress-bar {
	/* Gradient background with Stripes */
	background-image: -moz-linear-gradient(135deg,
			transparent,
			transparent 33%,
			rgba(78, 122, 158, 1) 33%,
			rgba(78, 122, 158, 1) 66%,
			transparent 66%),
		-moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(78, 122, 158, 1)),
		-moz-linear-gradient(left, #7088b1, #7088b1);

	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius: 3px;

	/* Firefox doesn't support CSS3 keyframe animations on progress element. Hence, we did not include animate-stripes in this code block */
}

#progressBarGeral p[data-value] {
	position: relative;
	margin: 0;
}

/* The percentage will automatically fall in place as soon as we make the width fluid. Now making widths fluid. */

#progressBarGeral p[data-value]:after {
	content: attr(data-value);
	position: absolute;
	right: 0;
}

.html5::-webkit-progress-value {
	background-image: linear-gradient(to bottom, #909090, #909090, #454545);
}

/* Similarly, for Mozillaa. Unfortunately combining the styles for different browsers will break every other browser. Hence, we need a separate block. */

.html5::-moz-progress-bar {
	background-image: linear-gradient(to bottom, #909090, #909090, #454545);
}

#progressBarGeral {
	margin: 5;
	padding: 5;
	box-sizing: border-box;
	height: 50px;
	font-size: 12px;
}

/* ----------------------- fim css progress bar ------------------- **/

/* ---------------------- css check personalizado ----------------- **/

.customCheck {
	margin-bottom: 40px;
}

.customCheck input {
	display: none;
}

.customCheck label {
	position: relative;
	display: block;
	height: 20px;
	width: 44px;
	background: #898989;
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.customCheck label:after {
	position: absolute;
	left: -2px;
	top: -3px;
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 100px;
	background: #fff;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
	content: "";
	transition: all 0.3s ease;
}

.customCheck label:active:after {
	transform: scale(1.15, 0.85);
}

.customCheck input:checked~label {
	background: #6fbeb5;
}

.customCheck input:checked~label:after {
	left: 20px;
	background: #179588;
}

.customCheck input:disabled~label {
	background: #d5d5d5;
	pointer-events: none;
}

.customCheck input:disabled~label:after {
	background: #bcbdbc;
}

/* ----------------------- fim css check personalizado ------------------- **/

.MENUIMAGEM {
	position: absolute;
	visibility: hidden;
	z-index: 100;
}

.MENUIMAGEM_ITEM {
	background-color: #d4cfc7;
	border: 1px solid #c4c0b9;
	width: 200px;
	text-align: center;
	padding: 6px;
	font-family: "Dmsans", sans-serif;
	font-size: 10px;
	visibility: hidden;
	position: absolute;
}

#listaFiltros,
#gravarFiltro {
	background-color: #ffffff;
	position: absolute;
	z-index: 10;
	width: auto;
	min-width: 39%;
	height: auto;
	min-height: 15%;
	max-height: 25%;
	left: 25%;
	top: 30%;
	overflow-y: auto;
	overflow-x: auto;
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;
}

#BotaoCarregarFiltro:disabled,
#BotaoEditarFiltro:disabled,
#BotaoExcluirFiltro:disabled,
#BotaoAtualizarFiltro:disabled,
#BotaoCompartilharFiltro:disabled {
	background-color: #9299a6;
	color: #ffffff;
}

#BotaoCarregarFiltro,
#BotaoSalvarFiltro,
#BotaoSairFiltro,
#BotaoEditarFiltro,
#BotaoExcluirFiltro,
#BotaoSairCFiltro,
#BotaoAtualizarFiltro,
#BotaoCompartilharFiltro {
	min-width: 100%;
	margin: auto;
	height: 100%;
	border-radius: 5px;
	background-color: #60779e;
	font-size: 14px;
	border-width: 1px;
	color: #ffffff;
}

@media print {
	#tabela_body_tr {
		visibility: hidden;
	}

	.baseline {
		visibility: hidden;
	}
}

#divResumoProposta {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: gray;
	filter: alpha(opacity=50);
	opacity: 0.5;
	z-index: 100;
}

#tableResumoProposta {
	background-color: #fff2cc;
	text-align: center;
	font-size: 12px;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
	filter: alpha(opacity=100);
	opacity: 1;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	z-index: 101;
}

.rodapeResumoProposta {
	text-align: right;
	border-bottom: 0px solid transparent !important;
	border-top: 0px solid transparent !important;
}

#tableResumoProposta td {
	border-bottom: 1px solid black;
	border-left: 1px solid black;
	padding: 5px;
}

/*  Inicio css alerta de lista de atendimentos  */

#tabela-atendimento {
	display: block;
	width: 100%;
	min-height: 100px;
	max-height: 300px;
	overflow-y: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	border-spacing: 0;
}

.coluna-atendimento {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	height: 30px;
	text-align: center;
	background-color: #eee;
	border: 2px solid #bbb;
	border-right: 0;
	border-spacing: 0;
	padding: 0;
	font-family: "Dmsans", sans-serif !important;
	font-weight: 600;
}

.coluna-atendimento.esquerda {
	border-radius: 5px 0 0 5px;
	border-right: 0;
}

.coluna-atendimento.direita {
	border-right: 2px solid #bbb;
	border-radius: 0 5px 5px 0;
}

.valor-atendimento {
	white-space: nowrap;
	overflow-x: scroll;
	text-align: center;
	height: 21px;
	font-size: 13px;
	border-style: solid;
	border-width: 0px 0px 2px 2px;
	border-color: #bbb;
	color: #222222;
	scrollbar-width: none;
}

.valor-atendimento.direita {
	border-style: solid;
	border-width: 0px 2px 2px 2px;
	border-color: #bbb;
}

.valor-atendimento::-webkit-scrollbar {
	scrollbar-width: none;
	display: none;
}

#pnMensagensPrioritarias::before {
	content: "";
	display: block;
	position: absolute;
	height: 120px;
	width: 100%;
	top: -70px;
	background-color: transparent;
}

.link-vermelho {
	color: #ee0000;
}

.link-azul {
	color: #0000ee;
}

::selection {
	background-color: var(--cor-campo-selecao);
	color: var(--cor-campo-selecao-txt);
}

.barra {
	background-color: var(--cor-barra-janela);
	border-bottom: 1px solid var(--cor-text);
}

/*  Fim css alerta de lista de atendimentos  */
.circle {
	width: 23px;
	height: 23px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #222222;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.MENU_LATERAL {
	background: #0000ff;
}

#tdMenuSair {
	color: #ffffff;
	font-size: 15px;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* Estilizando o fundo da barra */
::-webkit-scrollbar-track {}

::-webkit-scrollbar-thumb {
	background: var(--cor-scroll);
	height: 3px;
	width: 1px;
	border-radius: 5px;
}

/* Aplicando mudan鑴欒尃鑴楁悅a de cor quando o mouse estiver sobre a classe .BARRA_MENU_LATERAL */
#menuLateral ::-webkit-scrollbar-thumb {
	background: var(--cor-scroll);
	/* Cor que deseja quando o mouse estiver sobre a barra lateral */
}

#menuLateralIcones img {
	margin-top: 6px;
	margin-bottom: 6px;
	cursor: pointer;
}

/* Estilizando a ponta da barra quando pressionada */
::-webkit-scrollbar-thumb:active {
	background: var(--cor-destaque-hover);
	/* Cor da barra quando pressionada */
	border: none;
}

/* Estilizando a barra de rolagem */
scrollbar {
	width: 4px;
	/* Largura da barra */
}

/* Estilizando o fundo da barra */
scrollbar-track {
	background-color: white;
	/* Cor de fundo */
}

scrollbar-thumb {
	background-color: #858585;
	/* Cor da barra */
}

/* Estilizando a ponta da barra quando pressionada */
scrollbar-thumb:active {
	background-color: 373737;
	/* Cor da barra quando pressionada */
}

.menu_cliente_top_img {
	margin-top: 14%;
	height: 69px;
	width: 69px;
	cursor: pointer;
}

.menu_cliente_top {
	border: solid 1.5px var(--cor-botao);
	margin: 9px;
	background: #f1f1f1;	
	color: var(--cor-destaque);
	white-space: nowrap;
	font-size: 11px;
	width: 93%;
	padding: 5px 5px 0px;
	user-select: none;
	cursor: pointer;
	border-radius: 10px;
	transition: all 0.1s ease-in-out;
	display: flex;
	flex-direction:column;
	text-align: center;
	align-items: center; 
	justify-content: center;
}

.menu_cliente_top:hover {
	background-color: var(--cor-hover-label);
    border-radius: 10px;
    border: solid 1.5px var(--cor-botao);
    transition: all 0.1s ease-in-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#pnMenu tr {
    display: flex;
}

@media screen and (max-width: 1200px) {
    #pnMenu td {
        width: 25%; /* 4 itens por linha quando a largura da tela for menor que 1200px */
    }
}

@media screen and (max-width: 900px) {
    #pnMenu td {
        width: 33.33%; /* 3 itens por linha quando a largura da tela for menor que 900px */
    }
}

@media screen and (max-width: 600px) {
    #pnMenu td {
        width: 50%; /* 2 itens por linha quando a largura da tela for menor que 600px */
    }
}

@media screen and (max-width: 400px) {
    #pnMenu td {
        width: 100%; /* 1 item por linha quando a largura da tela for menor que 400px */
    }
}
.sticky-position {
    position: sticky !important;
}

#TableBtnCliente td{
	min-width: 225px;
	max-height: 152px;
	height:45%;
	width:19%;
}

#btPopOk,
#BotaoGravar,
#EndWindow,
.BTNCMD {
	max-height: 32px;
}

#pb_Despesas {
	padding: 0px !important;
	min-width: 20px !important;
	border: 1px solid #00000050;
}

#Pb_Copiar,
#Pb_CopiarTodos,
#Pb_Deletar,
#Pb_Copiartodas,
.BTNGRD {
	min-width: 30px !important;
	max-width: 30px !important;
	min-height: 30px !important;
	max-height: 30px !important;
	
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	background-color: var(--cor-botao);
	color: #000000;
	border: 1px solid var(--cor-destaque);
	background-repeat: repeat-x;
	background-position: left top;
	transition: all 0.15s ease-in-out;
	border-radius: 3px;
	cursor: pointer;
}

.container {
	display: flex;
	align-items: center;
	/* Alinhar verticalmente */
	justify-content: center;
	user-select: none;
	height: 100%;
}

.container img {
	padding: 6px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.container:hover img {
	padding: 6px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.img-responsiva {
	display: block;
	width: 28px;
	height: 28px;
}

.img-responsiva:hover {
	
}

.palavra {
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	text-align: start;
	padding-left: 10px;
}

#Orcamento {
	border: none !important;
}

#divGridAutoComplete {
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

legend {
	font-weight: bold;
}

fieldset,
#gbFaturar {
	border: 1px solid var(--cor-fieldset-borda);
	background-color: var(--cor-fieldset-fundo);
	border-radius: 5px;
	font-weight: bold;
	margin-left: 3px;
	padding: 3px !important;
}

.classMarginTop {
	padding: 0px 0px 0px 0px;
}

.BTNCMD_VERTICAL {
	padding: 0px;
	font-size: 10px;
	font-weight: 700;
	padding-bottom: 0px;
	text-decoration: none;	
	background-color: var(--cor-botao);
	color: var(--cor-botao-txt);
	border: 1px solid var(--cor-botao-borda);
	background-repeat: repeat-x;
	background-position: left top;
	border-radius: 3px;
	min-width: 100px !important;
	width: auto !important;
	height: 21px !important;
	transition: all 0.15s ease-in-out;
}

.BTNCMD_VERTICAL:hover {
	background-color: var(--cor-botao-hov);
	color: var(--cor-botao-txt-hov);
	border: 1px solid var(--cor-botao-borda-hov);
}

.BTNCMD_VERTICAL:active {
	background-color: var(--cor-botao-hov);
}

.frmPesquisaMenu {
	margin-left: 34px;
	width: 300px;
	height: 28px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
	padding-left: 10px;
	color: #000000;
	border-radius: 5px;
	border: #ffffff 2px solid;
	transition: all 0.1s ease-in-out;
}

.frmPesquisaMenu:focus {
	border: var(--cor-barra-selecionado) 2px solid;
	transition: all 0.1s ease-in-out;
}

.frmPesquisaMenuContainer {
	position: relative;
	display: inline-block;
}

.frmPesquisaMenuIcon {
	margin-left: 8px;
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.menu_topo {
	user-select: none;
	margin-right: 10px;
}

#pnMensagemDicas,
.MENSAGEM_ALERTA_MENU {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4) !important;
	border: none !important;
	border-radius: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #26a69a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Esconde o input original */
input[type="radio"] {
	/* display: none; */
	visibility: hidden;
}

/* Estiliza o radio usando o seletor ::before */
input[type="radio"]+label {
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: -20px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

input[type="radio"]+label::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 10px;
	/* Tamanho do radio estilizado */
	height: 10px;
	/* Tamanho do radio estilizado */
	border: 1.5px solid var(--cor-destaque);
	/* Cor da borda do radio */
	border-radius: 50%;
	/* Deixa o radio redondo */
	background-color: #ececec;
	margin-bottom: 3px;
	transition: all 0.1s ease-in-out;
}

input[type="radio"]:disabled + label::before {
 	content: "";
 	position: absolute;
 	cursor: not-allowed;
 	left: 0;
 	bottom: 0px;
 	width: 10px;
	/* Tamanho do radio estilizado */
 	height: 10px;
	/* Tamanho do radio estilizado */
 	border: 1.5px solid var(--cor-destaque);
	/* Cor da borda do radio */
 	border-radius: 50%;
	/* Deixa o radio redondo */
 	background-color: #959595;
 	margin-bottom: 3px;
 	transition: all 0.1s ease-in-out;
}

input[type="radio"]:checked+label::before {
	background-color: var(--cor-destaque);
	border-color: var(--cor-destaque);
	transition: all 0.1s ease-in-out;
}

.sub_menu_usuario {
	background-color: white;
	color: var(--cor-text);
	font-size: 10px;
	padding: 5px;
	width: 80px;
	height: 10px;
	border: 1px solid #606060;
}

.sub_menu_usuario:hover {
	background-color: var(--cor-text);
	color: #ffffff;
	font-size: 10px;
	padding: 5px;
	width: 80px;
	height: 10px;
	border: 1px solid #ffffff;	
}

.dropdown-content-user {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	width: 250px;
	max-height: 450px;
	overflow-y: auto;
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 1200;
	right: 10px;
}

.dropdown-content-user a {
	color: var(--cor-top-txt);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 12px;
	background-color: #f1f1f1;
	transition: all 0.1s ease-in-out;
}

.dropdown-content-user a:hover {
	color: var(--cor-top-txt-hov);
	background-color: var(--cor-top-hov);
	transition: all 0.1s ease-in-out;
}

.dropdown-content-user a img {
	transition: all 0.1s ease-in-out;
}

.dropdown-content-user a:hover img {
	filter: var(--cor-brilho);
	transition: all 0.1s ease-in-out;
}

.menu_topo:hover .dropdown-content-user {
	display: block;
	animation: slideTopDownIn 0.2s ease 0s 1 normal both;
}

#BotaoOcultarLateral,
#BotaoMostrarLateral,
#BotaoMontarProposta,
#BotaoNegociacao,
#BotaoConsultarProposta,
#Pb_inclui,
#Pb_exclui,
#PbAcima,
#PbAbaixo,
#BotaoMarcar,
#BotaoMarcarR,
#BotaoMarcarTodos,
#BotaoDesmarcarTodos,
#BotaoDesmarcaR,
#BotaoMarcarL,
#BotaoDesmarcaL,
#BotaoCopiarMovimentacao,
#BotaoDeletarTodasMovimentacoes,
#BotaoCopiarTodasMovimentacoes,
#BotaoDeletarMovimentacao,
#BotaoDiminuirNivel,
#BotaoAumentarNivel,
#BotaoAdicionar,
#BotaoRemover {
	padding: 0px !important;
	margin: 0px !important;
	min-width: 0px !important;
	border: 0px;
}

#BotaoMarcarPara,
#BotaoDesmarcaPara,
#BotaoMarcarCc,
#BotaoDesmarcaCc,
#BotaoMarcarWhats,
#BotaoDesmarcaWhats {
	padding: 0px !important;
	margin: 3px !important;
	min-width: 0px !important;
	border: 0px;
}

#BotaoFirst,
#BotaoUp,
#BotaoDown,
#BotaoLast,
#BotaoAtivo,
#BotaoInativo,
#BotaoTodos {
	padding: 5px !important;
	margin: 0px 2px !important;
	min-width: 15px !important;
	border: 1px solid #00000050;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Estilizar todos os checkboxes */
input[type="checkbox"] {
	position: relative;
	width: 13px;
	height: 13px;
	background-color: #f2f2f2;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px var(--cor-destaque);
	/* Efeito de borda interna e sombra no foco */
}

/* Estilizar todos os checkboxes quando estiverem marcados (checked) */
input[type="checkbox"]:checked::before {
	content: "\2713";
	position: absolute;
	width: 12px;
	height: 12px;
	font-size: 9px;
	text-align: center;
	color: #ffffff;
	background-color: var(--cor-destaque);
	border: 1px solid var(--cor-destaque);
}

.user_topo {
	font-size: 14px;
	padding-right: 5px;
	padding-left: 10px;
	color: var(--cor-top-txt);
	font-weight: bold;
	background-color: #ffffff;
	border-radius: 10px 0px 0px 10px;
	cursor: pointer;
}

#ExcluirFoto {
	padding: 0px !important;
	min-width: 0px !important;
}

.data_hora_barra {
	color: var(--cor-text);
	white-space: nowrap;
	font-size: 10px;
	padding: 0px 10px 0px 0px;
}

.menu_login_logo {
	width: 40vh;
    height: 50vh;
    background: #454545aa;
    align-items: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 1.5vh;
    box-shadow: 0px 0px 2vh #00000030;
}

/* Estilos base */
.container_login {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	height: 100%;
}

.menu_login_esquerda {
    width: 100%;
    background-color: #f5f5f5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-content: end;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    padding: 0px 15% 0px 0px;
}

.menu_login_direita {
	padding: 10px;
	min-width: 450px;
	background-color: #fff;
	align-items: center;
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
  	user-select: none;
}

.LOGIN_TELA_INICIO {
	text-align: left;
	font-size: 14px;
	padding-bottom: 5px;
	padding-top: 5px;
	color: #636363;
}

#lbEsqueciSenha {
	width: 45%;
	font-size: 12px;
  	color: #ffffff;
  	text-decoration: underline;
    display: flex;
    justify-content: center;
}

/* Estilos para telas menores, como smartphones */
@media screen and (max-width: 768px) {
	.container_login {
		flex-wrap: wrap;
		/* Para evitar que os elementos se sobreponham */
	}

	.menu_login_esquerda,
	.menu_login_direita {
		width: 100%;
		/* Ocupa toda a largura da tela */
	}

	.menu_login_esquerda {
		background-color: #f1f1f1;
	}

	.menu_login_direita {
		background-color: #fff;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* Estilos para telas maiores, como desktops */
@media screen and (min-width: 1025px) {}

.menu_powered {
	color: #2a2a2a;
    position: absolute;
    top: 15%;
    left: 20.5%;
    height: 65%;
}

.barra_topo {
	background-color: #454545aa;
    position: absolute;
    user-select: none;
    top: 0px;
    width: 100%;
    height: 10.5%;
    z-index: 1;
    display: flex;
    box-shadow: 0px 0px 2vh #00000030;
}

.barra_meio {
	width: 100%;
    height: 100%;
    position: absolute;
    background-color: #454545aa;
    z-index: 0;
    top: 0px;
}

.barra_baixo {
	background-color: #454545aa;
    position: absolute;
    user-select: none;
    bottom: 0px;
    width: 100%;
    height: 3%;
    font-size: 1.3vh;
    z-index: 1;
    display: flex;
    box-shadow: 0px 0px 2vh #00000030;
    align-items: center;
    justify-content: center;
}

.divDicasLogin {
	width: 85vh;
    height: 50vh;
    background: #ffffff00;
    align-items: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 8.5%;
    border-radius: 1.5vh;
/*     box-shadow: 0px 0px 2vh #00000030; */
}

.DicasLogin {
    color: #ffffff;
    text-align: left;
    font-size: 3vh;
    line-height: 4vh;
    border-radius: 0.5vh;
    letter-spacing: 0.05vh;
    background-color: #00000000;
    width: 80vh;
    height: 45vh;
    display: flex;
    align-items: center;
    text-shadow: 0px 0px 1vh #00000070;
}

.dicasImg {
	width: 10%;
    padding: 0.5%;
    vertical-align: middle;
    filter: brightness(10);
    display: none;
}

.bkg_img {
	width: 100%;
	height: 100%;
	position: absolute;
	user-select: none;
	z-index: 0;
	background-image: url(/layout/imagens/background.jpg);
	background-size: cover;
	top: 0;
/* 	filter: saturate(0); */
	filter: sepia(1000) saturate(2) hue-rotate(-190deg);
}

.menu_login_infos {
	color: #ffffff;
    text-align: left;
    font-size: 100%;
    line-height: 2vh;
    border-radius: 0.5vh;
    letter-spacing: 0.05vh;
    background-color: #454545;
    padding: 3%;
    border: 0.1vh solid #60606060;
    width: 32vh;
    height: 11vh;
    margin: 2vh 0px 0px 0px;
    overflow: hidden;
}

.menu_login_logo_empresa {
	position: absolute;
    top: 15%;
    right: 20.5%;
    width: 8%;
    z-index: 1;
}

.menu_login_icone {
	width: 5%;
    padding: 0.5%;
    vertical-align: middle;
    user-select: none;
    filter: brightness(3);
}

.img_rodape_menu_login {
	height: 100%;
}

@media (max-width: 7680px) {
		.menu_login_infos {
			font-size: 1.2vh !important;
		}
		
		.EDIT_LOGIN {
			font-size: 1.6vh !important;
		}
		
		.BTN_LOGIN {
			font-size: 1.6vh !important;
		}
		
		#lbEsqueciSenha {
			font-size: 1.4vh !important;
		}
	}

.menu_cliente_logo {
	height: 41px;
    padding: 6px 20px 5px 18px;
}

.olho_password {
	cursor: pointer;
	left: 160px;
	position: absolute;
	width: 20px;
}

.campo_olho_senha {
	position: absolute;
	user-select: none;
    display: flex;
    height: 3vh;
    padding: 1%;
    align-items: center;
    filter: grayscale(100%);
}

#edSenha {}

.container_login_olho {
	display: inline-flex;
	align-items: flex-end !important;
	justify-content: flex-start !important;
	flex-direction: row-reverse;
	width: 100%;
    height: 15%;
    margin: 1vh 0px 0px 0px;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

#lbVersaoSistema {
	font-size: 12px;
}

@media (min-width: 1880px) {
	.MENUDIVCENTRAL {
		overflow: hidden;
		max-width: 100%;
		/* 		height: 92vh; */
	}
}

.img_logo_strato {
	width: 100px;
	margin: 5px;
	user-select: none;
}

#menuLateralIcones {
	width: 60px;
	height: 103%;
	background: #ffffff00;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: scroll;
	overflow-x: hidden;
	scroll-behavior: smooth;
	margin-top: -50%;
	user-select: none;
}


#MDIToolBar {
	background-color: #ffffff00;
}

#menuLateral {
	background: #ffffff00 !important;
}

[name="modulo_selecionado_top"] {
	background-color: var(--cor-btn-lat);
	color: var(--cor-btn-txt);
	font-size: 14px !important;
	padding: 2px 1px 2px;
	transition: all 0.1s ease-in-out;
}

[name="modulo_selecionado_top"]:hover {
	background-color: var(--cor-btn-lat-hov);
	border-radius: 3px;
	transition: all 0.1s ease-in-out;
	color: var(--cor-btn-txt-hov);
}

[name="modulo_selecionado_top"]:active {
	background-color: var(--cor-btn-lat-hov);
	border-radius: 3px;
	transition: all 0.1s ease-in-out;
	color: var(--cor-btn-txt-hov);
}

[name="modulo_selecionado_top"]:hover .container img {
	padding: 6px;
	cursor: pointer;
	filter: var(--cor-brilho);
	transition: all 0.1s ease-in-out;
}

[name="modulo_selecionado"] {
	background-color: var(--cor-btn-lat-sub);
	font-size: 11px !important;
	color: var(--cor-btn-txt-sub);
	text-align: center;
	border-radius: 3px;
	display: flex;
	width: 207px;
	height: 25px;
	margin-top: 5px;
	transition: all 0.1s ease-in-out;
}

[name="modulo_selecionado"]:hover {
	background-color: var(--cor-btn-lat-sub-hov);
	font-size: 11px !important;
	color: var(--cor-btn-txt-sub-hov);
	text-align: center;
}

[name="modulo_selecionado"] .container:hover {
	background-color: #f2f2f2;
}

.img-responsiva[title]:hover::before {
	content: attr(title);
	background-color: #333;
	color: #fff;
	padding: 5px;
	position: absolute;
	font-weight: 900;
	z-index: 1;
}

.no-border {
	border: none;
}

#dropdown-content-user b {
	font-weight: 700;
}

.GRID_COR_ORCAMENTO td {
	vertical-align: middle !important
}

input[type="date"]::-webkit-calendar-picker-indicator {
	font-size: 1rem;
	/* Ajuste o tamanho conforme necessário */
}

.container_superior {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.container_superior_icon {
	width: 35px;
	height: 35px;
	cursor: pointer;
}

.container_superior_menu {
	justify-items: center;
	transition: all 0.1s ease-in-out;
	width: 100px;
	height: 100px;
	margin: 5px;
    border-radius: 5px;
    border: solid 2px #FFFFFF00;
    cursor: pointer;
}

.container_superior_icon_menu {
	width: 40px;
	height: 40px;
	cursor: pointer;
	padding-top: 15px;
}

.container_superior_menu:hover {	
	background-color: var(--cor-hover-label);
    border-radius: 5px;
    border: solid 1.5px var(--cor-botao);
    transition: all 0.1s ease-in-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
	width: 27px;
	height: 3px;
	background: #ffff;
	border-radius: 5px;
	margin-top: 5px;
}

#hamburguer-line-1 {
	transition: transform 0.25s ease-in-out;
	transform: translateY(8px) rotate(-45deg);
}

#hamburguer-line-2 {
	transition: transform 0.15s ease-in-out;
	transform: scaleY(0);
}

#hamburguer-line-3 {
	transition: transform 0.25s ease-in-out;
	transform: translateY(-8px) rotate(45deg);
}

#container-pnMenu::-webkit-scrollbar {
	background: transparent;
	width: 0px;
}

.item {
	width: 50px;
}

.item:hover {
	width: 225px;
}

.texto-grid-impressao {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Dmsans",sans-serif;
    font-size: 12px;
    text-wrap: nowrap;
    overflow: hidden;
    border-color: #00000038;
}

.border-primeira-esq {
	border-width: 1px;
	border-style: solid;
}

.border-primeira-dir {
	border-width: 1px 1px 1px 0;
	border-style: solid;
}

.border-esq {
	border-width: 0 1px 1px 1px;
	border-style: solid;
}

.border-dir {
	border-width: 0 1px 1px 0;
	border-style: solid;
}

.collapsible {}

.collapsible.expanded {
	max-height: 100px;
	/* Ajuste conforme necessario */
}

.container_card {
	margin: 0 auto;
	margin-top: 21px;
}

.card_grafico {
	position: relative;
	width: 63.5vw;
	height: 445px;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.card_info {
	position: relative;
	width: 30vw;
	height: 445px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.card {
	background-color: #ffffff;
	position: relative;
    cursor: pointer;
    width: 30vw;
    height: 180px;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #ffffff00;
    box-shadow: 0px 0px 10px #00000050;
    transition: all 0.1s ease-in-out;
}

.face {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
}

.card-selecionado {
    background-color: #ffffff;
    margin: 0px auto;
    border: 1px solid #aaaaaa;
    box-shadow: 0px 0px 10px #00000090;
    transition: all 0.1s ease-in-out;
}


.titulo {
	flex-grow: 1;
}

.conteudo {
	padding-left: 10px;
	padding-right: 10px;
	height: 22px;
	
}

.header {
	height: 26px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.face.back {
	box-sizing: border-box;
	padding: 20px;
}

.face.back b {
	margin: 0;
	padding: 0;
}

.face.back .desc {
	background-color: #eee;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.face.front {
	transition: 0.5s;
	overflow: hidden;
}

.face.front b {
	margin: 0;
	padding: 0;
	font-size: 5.1em;
	color: #fff;
	transition: 0.5s;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 10;
}



.face.front {
	background-color: #ffffff;
	border-radius: 5px;
}
 
/*Processo Requisição css*/
.ProcessoRequisicao-body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ProcessoRequisicao-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ProcessoRequisicao-board-container {
    display: flex;
    width: 100%;
    overflow-x: auto;
}

.ProcessoRequisicao-board {
    margin-left: 9px;
    display: flex;
    gap: 10px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.ProcessoRequisicao-column {
    border-radius: 8px;
    padding: 10px 0px 0px 0px;
    flex: none;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-height: auto;
    width: 274px;
}

.ProcessoRequisicao-column h2 {
    font-size: 16px;
    margin: 0 0 5px;
    position: relative;
}

.ProcessoRequisicao-badge {
    background-color: rgb(237, 239, 243);
    color: #555555;
    border-radius: 4px;
    padding: 0px 5px;
    font-size: 12px;
    margin-left: 3px;
    display: inline-block;
    vertical-align: middle;
}

.ProcessoRequisicao-product-badge {
    margin-top: 5px;
    background-color: #17a2b8;
    color: #fff;
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}

.ProcessoRequisicao-cotacao-badge {
    margin-top: 5px;
    background-color: #17b82a;
    color: #fff;
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}

.ProcessoRequisicao-pedido-badge {
    margin-top: 5px;
    background-color: #b8a517;
    color: #fff;
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}

.ProcessoRequisicao-card {
	height: 170px;
    background-color: #ffffff;
    border-radius: 0px 0px 8px 8px;
    padding: 0px 6px 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
    cursor: move;
}

.ProcessoRequisicao-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2px;
}

.ProcessoRequisicao-card h3 {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.ProcessoRequisicao-card p {
    font-size: 0.68rem;
    margin: 5px 0;
    color: #333;
    margin-left: 4px;
}

.ProcessoRequisicao-card p strong {
	font-size: 0.78rem;
    color: #000;
}

.ProcessoRequisicao-card:hover {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    display: flex;
} 

.ProcessoRequisicao-titulo {    
    padding-top: 9px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top:none;
    padding-left: 15px;
}
.ProcessoRequisicao-titulo h2{
	font-size:0.88rem;
}

.ProcessoRequisicao-titulo h2:hover{ 
	color:rgb(44, 149, 154);
	cursor: pointer;
}

.ProcessoRequisicao-Cards {
    background-color: #f2f2f2;
    height: calc(100vh - 141px);
    border: 1px solid rgb(220, 223, 229);
    padding: 12px;
    border-radius: 4px;
    overflow-y: auto; /* Adiciona a scrollbar vertical quando necessário */
}

.ProcessoRequisicao-custom-badge {
    background-color: #cccccc;
    color: #333333;
    display: inline-block;
    width: 97%;
    text-align: left;
    border-radius: 4px 4px 0 0;
    padding: 1.5%;
    border-left: 4px;
    font-size: x-small;
    position: relative;
}
  
.portlet-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
}

.sortable-ghost {
    opacity: 0.5;
    background-color: #fafafa;
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#popup-buttons {
    margin-top: 20px;
    text-align: right;
}

.popup-button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



.DivExpandir p {
    max-width: 197px; 
    min-width: 191px; 
    white-space: normal;
    word-wrap: break-word;
    margin-right: 10px; 
}

.ProcessoRequisicao-card div.expand-button {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: small;
    color: #b9b9b9;
    text-decoration: none;
    padding: 0px 4px 2px 4px;
    border: 0.5px solid #b9b9b9;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 3px;
}

.ProcessoRequisicao-card div.expand-button:hover {
    background-color: #b9b9b9;
    color: #fff;
}

.popup {
    display: none;
    position: fixed;
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.popup-header {
    display: block;
    justify-content: space-between;
    align-items: center;
    min-height: 90%;
    max-height: 90%;
}

.popup-close {
    margin-left: 1%;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    cursor: pointer;
    border: solid #b9b9b9 1px;
    border-radius: 5px;
    padding: 5px 16px;
    color: #b9b9b9;
    font-size: 20px;
}

.popup-close:hover {
    background-color: #b9b9b9;
    color: white;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#CorpoPopup {
    font-family: Arial, sans-serif;
    color: #333;
    min-width: 90%;
    max-height: 400px; /* Define a altura máxima do conteúdo */
    overflow-y: auto;  /* Adiciona a barra de rolagem vertical se o conteúdo exceder a altura máxima */
}

#CorpoPopup h1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

#CorpoPopup p {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

#CorpoPopup .info {
    margin-bottom: 14px;
}

#CorpoPopup .info h2 {
	display: inline;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

#CorpoPopup .info p {
	display: inline;
    font-size: 14px;
    margin: 1px 0 0 5px; 
    color: #555;
}
.frmPesquisaCard{
    width: 270px;
    height: 28px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    padding-left: 10px;
    color: #000000;
    border-radius: 5px;
    border: #ffffff 2px solid;
    transition: all 0.1s ease-in-out;
      padding-right: 40px; /* Espaço para o ícone */
    box-sizing: border-box; /* Garante que o padding seja considerado na largura total */
}
.frmPesquisaCardContainer {
    position: relative;
    display: inline-block;
}

.frmPesquisaCardIcon {
    position: absolute;
    right: 3px;
    top: 64%;
    transform: translateY(-50%);
}
/* Estilo do botão dropdown */
.ProcessoR .dropdown-btn {
    BACKGROUND: #FFFF;
    padding: 6px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px 5px 0px 0px;
    width: 150px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    border: none;
}

/* Estilo do conteúdo dropdown */
.ProcessoR .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    padding: 7px;
    border-radius: 0px 0px 5px 5px;
    z-index: 1;
}

/* Estilo dos itens dentro do dropdown */
.ProcessoR .dropdown-content label {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
}

/* Exibe o dropdown ao passar o mouse sobre o botão */
.ProcessoR .dropdown:hover .dropdown-content {
    display: block;
}

.ProcessoR .dropdown-content label:hover {
    background-color: #f0f0f0;
}

/* Estilo para os ícones e textos */
.ProcessoR .dropdown-content label input {
    margin-right: 10px;
}
.Filtros {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaçamento entre os elementos */
    margin-top: 10px;
    margin-left: 10px;
}
.corpoCard{
    display: flex;
}
.CardTexto{
	width: 207px;
}
.DivExpandir {
margin-top: 2px;
}
.ObservacaoPopup{
            width: 100%;
            height: 300px;
            padding: 10px;
            font-size: 16px;
            font-family: Arial, sans-serif;
            line-height: 1.5;
            border: 1px solid #ccc;
            border-radius: 4px;
            resize: both; 
            overflow: auto; 
        }
.botaoAnexarCard{
	margin: 10px 0px 0px 13px
}
.botaoAnexarCard #BotaoAnexar{
	cursor: pointer;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    border: #ffffff 2px solid;
    border-radius: 5px;
    padding:3px 12px 4px 12px;
    color: #000000;
    background: #ffff;
    font-size: 13px;
}
.botaoAnexarCard #BotaoAnexar:hover {
    background: #d3d3d3; 
	border: #d3d3d3 2px solid;

}
.SinoNotifca {
	border-radius:100%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
			box-shadow: rgb(213 166 0) inset 0 0 15px;    }
    50% {
            box-shadow: none;
    }
}
.notificacao {
	margin-left: 49%;
}
.notificacao:hover{
	color: black;
	cursor: pointer;
	
}
.dropdown-opcoes-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top:none;
    padding: 8px;
    width: 255px;
    box-shadow: 1px 15px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 34px;
}

.dropdown-circle {
    width: 30px;
    height: 30px;
    background-color: grey;
    border-radius: 50%;
    display: inline-block;
    margin:4px 10px;
}
.dropdown-circle:hover{
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px #c1d5e4;
	cursor:pointer;
	}

.red { background-color: #FF5722; } 
.pink { background-color: #FF4081; }
.purple { background-color: #9C27B0; }
.blue { background-color: #2196F3; }
.lightblue { background-color: #03A9F4; }

.cyan { background-color: #00BCD4; }
.green { background-color: #8BC34A; }
.yellow { background-color: #d5a600; }
.orange { background-color: #FF9800; }
.grey { background-color: #9E9E9E; }

/* FIM Processo Requisição css */



/* Cards Cobrança css */
#container-cobranca {
	min-width:97vw;
	overflow-y: scroll;
	border-radius: 5px;
    border: 1px solid #c5c5c5;
	padding:5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    row-gap:4px;
}

.card-cobranca {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 10px;
	min-height: 178px;
    min-width: 30vw; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-cobranca {
    display: column;
    align-items: left;
    justify-content: space-between;
}

.header-cobranca p {
	margin:4px 0px;
    font-weight: bold;
    font-size: 0.9em; 
}

.header-cobranca h4 {
	margin:2px 0px;
    font-size: 0.9em; 
    color: #333;
}

.info-cobranca p {
    margin: 4px 0;
    color: #666;
    font-size: 0.7em; 
}

.status-cobranca {
    text-align: left;
    margin-bottom: 1.5vh; 
}

.status-cobranca span {
    background-color: #28a745;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.6em;
}

.actions-cobranca a {
    display: block;
    color: #c1c1c1;
    margin: 3px 0; 
    text-decoration: none;
    font-size: 0.7em;
}

.actions-cobranca a:hover {
    text-decoration: underline;
}

.pago-custom span {
    background-color: #28a745; /* Verde para status pago */
}

.nao-pago-custom span {
	color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.6em;
    background-color: #dc3545; /* Vermelho para status não pago */
}

.SUB_MENU_CSV{
  height: 64px;
  width: 118px;
  background: white;
  display: block;
  position: absolute;
  margin-left: 204px;
  margin-top: -29px;
  border: 1px solid #454545;
  border-radius: 3px;
  	font-size: 12px;
	padding: 5px;
}
.SUB_MENU_CSV_BOTAO{
	align-items: center;
	margin: 2px;
	border-bottom: 1px solid #454545;
	height: 35%;
	width: 100%;
	cursor: pointer;
	 border-radius: 3px;
	margin-top: 10px;
}
.SUB_MENU_CSV_BOTAO:hover{
	background: #454545;
	color: white;
	 border-radius: 3px;
	
}	

.dicas-hover:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

/* Ajuste para o ícone */
.toggleCard .ui-icon {
  display: inline-block;
  cursor: pointer;
  margin-left: 4px;
  vertical-align: middle;
  background-color: #cccccc;
  color: #333333;
  padding: 1.5%;
  font-size: x-small;
  width: 97%;
  text-align: left;
  border-radius: 4px 4px 0 0;
  border-left: 4px;
  width: 12px;
  height: 12px;
  margin-top: 0;
  
}

.toggleCard {
  background-color: #cccccc;
  color: #333333;
}

.ProcessoRequisicao-card .highlight {
    background-color: #ffc107; /* Amarelo para destaque */
    border: 2px dashed #ff9800;
    transition: background-color 0.3s, border 0.3s;
}

.ProcessoRequisicao-card .over {
    background-color: #ffc107; /* Cor leve de destaque */
    border: 2px dashed #2196F3; /* Borda destacada */
    transition: all 0.3s ease-in-out;
}
