/* elementos HTML5 para navegadores antigos */
article, aside, details, figcaption,
figure, footer, header, hgroup, nav, section {
	display: block;
}

/* clearfix para fazer a função de clear aos elementos com float */
.clearfix:before, .clearfix:after {content: ""; display: table; }
.clearfix:after {clear: both; }
.clearfix {zoom: 1; }

header {
	padding-bottom: 10px;		
}

body {
	border-top: 3px solid #002E5A;
	padding: 20px 0;
	margin: 0 auto;	
	background-color: #f4f6f7;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
	background-color: #fff;
	width: 95%;
	max-width: 1440px;
	padding: 0.8% 1.5% 1.5% 1.5%;	
	margin: 0 auto;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}

footer {
	line-height: 150%;
	text-align: center;
	font-size: small;
}

a:link, a:visited {
    color: #000;
    text-decoration: none; 
    font-weight: bold;   
}
a:hover {
    color: #000;
    font-weight: normal;
}

fieldset {
	border: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
    min-width: 0;
}



/*	CABEÇALHO	*/
.logo {
	float: left;
	vertical-align: middle;
}

.headerTop {
	display: flex;
	justify-content: flex-end; 
	padding: 0 20px 20px 20px;
}

.divEmpresa {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
}
.divEmpresa:hover {
	background-color: #e9f5ff;
	border-radius: 10px;
}

.logoEmpresa {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.dadosUsuario {
	font-size: 0.8em;
	line-height: 1.5;
}

.btHeaderTop:link, .btHeaderTop:visited {
	display: flex;
	align-items: center;      /* centraliza verticalmente */
	justify-content: center;  /* centraliza horizontalmente, se quiser */
	font-size: 22px;
	color: #002E5A;
	text-decoration: none;
	padding: 6px;
	margin-left: 15px;
}

.btHeaderTop:hover {
	color:#F7B23B;
}

/* ícone de notificação */

.iconeNotificacao {
    position: relative;          
    font-size: 25px;
    color: #002E5A;
    text-decoration: none;
    padding: 6px;
    margin-right: 15px;
}

/* Número de notificações */
.badgeNotificacao {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #e53935;       
    color: #fff;
    font-size: 11px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;    
    line-height: 1;
}

/* Div notificação */
.headerTop {
    position: relative;
}

.dropdownNotificacoes {
    position: absolute;
    top: 80%;
    right: 10%;   
    width: 500px;
	max-height: 80vh;
	overflow-y: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    display: none;
    z-index: 999;
}

.dropdownHeader {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
	background-color: #ebf3ff;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	color: #000;
}

.btnNotificacao {
    background: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
}

.btnNotificacao.active {
    background: #002E5A;
    color: #fff;
}

.subtituloNotificacoes {
    font-size: 12px;
    padding: 12px;
    font-weight: bold;
	padding-bottom: 0px;
}

.itemNotificacao {
    display: flex;
	align-items: flex-start; 
    align-items: center;
    padding: 12px 15px;
	border: 1px solid #e0e0e0;
	padding: 12px;
	margin: 10px;
}

.cardNotificacao {
    display: flex;
    align-items: center;
    margin: 10px; /* Espaço entre as notificações */
    padding: 12px;
    border: 1px solid #e0e0e0; /* A borda que você pediu */
    border-radius: 8px; /* Cantos levemente arredondados como no desenho */
    background-color: #ffffff;
}

.iconeTipoNotificacao {
	flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.linkConteudo {
    flex-grow: 1; 
    text-decoration: none;
    color: inherit;
	margin-left: 15px;
	font-size: 13px;
}

.tituloNotificacao {
    font-size: 15px;
	font-weight: bold;
	display: inline-block;
}

.conteudoNotificacao {
	display: flex;
    flex-direction: column;
    gap: 3px;
	font-size: 12px;
    font-weight: normal;
}

.dataNotificacaoCabecalho {
	color: #727272;
	font-size: 12px;
	margin-top: 3px;
}

.acoesLaterais {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
}

.acoesLaterais button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
    transition: 0.2s;
}
.iconeSol{
	background-color:	#ffe2b6;
}

.iconeCarrinho{
	background-color: rgb(222, 222, 253);
}

.iconePagamento{
	background-color: rgb(205, 255, 205);
}

.iconeAlerta{
	background-color: rgb(255, 218, 218);
}

.iconeSininho{
	background-color: rgb(255, 255, 196);
}


.semNotificacoes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 14px;
	margin: 20px;
}

/*	RODAPÉ	*/
#divProprietarioRodape {
	text-align: center;
	font-weight: bold;
	color: #002E5A;	
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: -5px;
}

#desenvolvidoPor {
	color: #333;
	background-color: #f4f6f7;
	font-size: 8.5pt;
	padding: 3px 0;
	margin: 25px 0 0;
	border-radius: 2px;
}

#desenvolvidoPor p {
	margin: 0;
}

#desenvolvidoPor a {
	color: #333;
}



/* CAIXA DE LOGIN */
.login-card {
	font-family: 'Roboto', sans-serif;
  	padding: 40px;
  	width: 320px;
  	background-color: #F7F7F7;
  	margin: 30px auto;
  	border-radius: 2px;
  	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  	overflow: hidden;
}
.login-card h1 {
  	font-weight: 100;
 	text-align: center;
  	font-size: 2.3em;
  	margin: 10px 0 5px 0;
}
.login-card h3, .login-card h4 {
	font-weight: 100;
	margin-top: 0;
}
.login-card input[type=submit] {
  	width: 100%;
  	display: block;
  	margin-bottom: 10px;
  	position: relative;
}
.login-card input[type=text], .login-card input[type=email], .login-card input[type=password] {
  	height: 44px;
  	font-size: 16px;
  	width: 100%;
  	margin-bottom: 20px;
  	-webkit-appearance: none;
  	background: #fff;
  	border: 1px solid #d9d9d9;
 	border-top: 1px solid #c0c0c0;
  	/* border-radius: 2px; */
  	padding: 0 8px;
  	box-sizing: border-box;
  	-moz-box-sizing: border-box;
}
.login-card input[type=text]:hover, .login-card input[type=email]:hover, input[type=password]:hover {
  	border: 1px solid #b9b9b9;
  	border-top: 1px solid #a0a0a0;
  	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login {
  	text-align: center;
  	font-size: 14px;
  	font-family: 'Arial', sans-serif;
  	font-weight: 700;
  	height: 36px;
  	padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.login-submit {
  	/* border: 1px solid #3079ed; */
  	border: 0px;
  	color: #fff;
  	text-shadow: 0 1px rgba(0,0,0,0.1); 
  	background-color: #002E5A;		/*#4d90fe;*/
  	font-size: 12pt;
  	cursor: pointer;
  	/* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.login-submit:hover {
  	/* border: 1px solid #2f5bb7; */
  	border: 0px;
  	text-shadow: 0 1px rgba(0,0,0,0.3);
  	background-color: #F7B23B; 	/*#357ae8;*/
  	/* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.login-card a {
  	text-decoration: none;
  	color: #666;
  	font-weight: 400;
  	text-align: center;
  	display: inline-block;
  	opacity: 0.6;
  	transition: opacity ease 0.5s;
}

.login-card a:hover {
  	opacity: 1;
}

.login-help {
  	width: 100%;
  	text-align: center;
  	font-size: 12px;
}
.login-card .toggle-eye {
	margin-bottom: 20px;
}


/* INFORMAÇÕES DO USUÁRIO NO TOPO DA PÁGINA */
.topuserinfo {
	width: 100%;
	text-align: center;
	font-size: 0.9em;
}


/*	NAVEGAÇÃO LATERAL	*/
#divNavegacao {
	float: left;
	text-align: left;
	width: 17%; 
}

.imgMenuNavegacaoLateral {	
	margin: 0 5px;
	width: 80%;
	max-width: 36px;
	vertical-align: top;
}

.navLateral {
	/*float: left;*/
	margin: 0 0 2em 0; 
	padding: .25em 0em .25em 0em; 
	background: #f4f6f7; 
	width: 100%; 				/*	width: 22%;	*/ 
	text-align: left;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}

.navLateral ul { 
   margin: 0; 
   padding: 0; 
   list-style: none; 
} 

.navLateral ul li { 
   margin: 0; 
   padding: .5em; 
   list-style: none; 
   font-size: .97em;
} 

.navLateral ul a:link { 
   margin: 0; 
   padding: .2em 0em .2em .4em; 
   text-decoration: none; 
   font-weight: bold; 
   font-size: .97em;
   display: block; 
} 

.navLateral ul li a:hover { 
   background-color: gray; 
   color: white; 
} 


/* Sub menu */
.navLateral ul ul {
  padding-left: 10px;
  display: none;
}
.navLateral ul ul li {
  border-bottom: 1px solid #c9c9c9;
}
.navLateral ul ul li:last-child {
  border: none;
}





/* CATEGORIAS NO HEADER */
.navCategorias {
	float: right;
}

.itemCategoria {
	text-align: center;
	font-weight: bold;
	display: table-cell;
	font-size: 0.8em;
	padding: 0 8px;
}
.itemCategoria img {
	height: 110px;
}

/* DIV CORPO - CONTÉM O CONTEÚDO PRINCIPAL */
.corpo {
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	text-align: center;
}


/* CONTEÚDO PRINCIPAL	*/
.conteudo {
	float: right;
	width: 81%;
	height: auto;
	text-align: center;
	margin: 0.3em 0 2em 0; 
}

.containerHome {
	height: calc(90vh - 370px);
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.containerHome img {
	height: 100%;
	width: auto;
	object-fit: contain;
	opacity: 0.25;
}


/* DIVS NO CONTEUDO PRINCIPAL QUE CONTÉM OS FORMULÁRIOS	*/
.cadastrarEditar {
	/*position: relative;*/
	width: 100%;
	text-align: left ;
	margin-left: auto;
	margin-right: auto;
}

.tituloCadastrarEditar {
	text-align:left; 
	color:#4282C4
}

.brMobile {
	display: inline-block;
	width: 25px;
}



/* INPUTS E FORMULÁRIOS */
input[type="text"] {
    font-size: 1.1em;
}
.form input[type="number"] {
	max-width: 70px;
}

input[type="text"], .form input[type="email"], .form input[type="password"], input[type="date"], .form input[type="number"], input[type="number"], .form input[type="time"], .form textarea, select, textarea {
    border: 1px solid #CCC;
    color: gray;
    height: 20px;
    font-size: 0.9em; 
    outline: 0 none;
    padding: 6px 0px 6px 5px;
    /*width: 65%;*/
    text-align: left;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;    
}
input[type="date"] {
	font-size: 1.1em;
}
input[type="checkbox"], input[type="radio"] {
	-webkit-transform: scale(1.3,1.3); -moz-transform: scale(1.3,1.3); -o-transform: scale(1.3,1.3);
}

select {
	width: auto;
	height: auto;
}

label {
    display: block;
    margin-bottom: 15px;   
}

label>span {
    float: left;
    width: 18%;
    text-align: right;
    padding-right: 7px;
    margin-top: 7px;
    color: #333;
    font-size: 0.8em;  
    font-weight: bold;
}

span.nomeCampo {
	float: none;
	text-align: right;
    padding-right: 5px;
    margin-top: 5px;
    font-weight: bold;
}
span.valorCampo {
	float: none;
	text-align: left;
    font-weight: normal;
    padding-right: 40px;
}

/*	span para texto após outro span	*/
.spanTexto {
	font-weight: normal;
	width: 74% !important;
	text-align: left;
	float: right;
	display: block;
}





/* NOTIFICAÇÕES NA HOME */
#divNotificacoes {
	width: 640px;
	margin: 20px auto;
	border-radius: 5px;
	-webkit-box-shadow: 2px 0px 4px 0px rgba(0,0,0,0.39);
	-moz-box-shadow: 2px 0px 4px 0px rgba(0,0,0,0.39);
	box-shadow: 2px 0px 4px 0px rgba(0,0,0,0.39);
}
#tituloNotificacoes {
	background-color: #4282C4;
	color: white;
	text-align: center;
	padding: 10px 0;
	border-radius: 5px 5px 0 0;
	font-family: "Lucida Console";
	font-size: 14pt;
}
#semNotificacao {
	padding: 30px 0;
}
.divNotificacao {
	padding: 20px 10px 5px 10px;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.divImagemNotificacao {
	display: inline-block;
	width: 18%;
	text-align: center;
	vertical-align: top;
}
.divConteudoNotificacao {
	display: inline-block;
	width: 80%;
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.dataNotificacao {
	display: inline-block;
	width: 60px;
	text-align: center;
	background-color: #4282C4;
	color: white;
	font-size: 11pt;
	padding: 4px 10px;
	border-radius: 3px;
}
.textoNotificacao {
	margin-top: 8px;
}
.textoNotificacao p {
	margin: 10px 0;
}
.detalhesNotificacao {
	font-size: 11pt;
	color: gray;
	font-weight: normal !important;
}


.profile-pic-container {
	width: 200px; 
	height: 200px; 
	border: 1px dashed #999; 
	margin: 0 auto; 
	cursor: pointer; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	overflow: hidden;
}


.spanLead, .spanLeadFunil, .spanPropostaFunil, .spanVendaFunil, .spanNegativaFunil {
	font-size: 9pt;
	padding: 2px 7px;
	background-color: #F7B23B;
	color: white;
	margin-left: 7px;
	border-radius: 3px;
}
.spanPropostaFunil {
	background-color: #002E5A;
}
.spanVendaFunil {
	background-color: green;
}
.spanNegativaFunil {
	background-color: red;
}

#divInfoLocalizacaoUC img {
	width: 18px;
	vertical-align: middle;
}
.localizacaoDefinida a:link {
	color: green;
}
#formCadastrarEditarUC #divLocalizacaoUC {
	width: 90%;
	height: 300px;
	margin-bottom: 10px;
}
/*#formCadastrarEditarSistema #divLocalizacaoUC {	//popup na tela de Sistemas
	width: 800px;
	height: 500px;
	max-width: 100%;
}*/

#tabelaSistemas td {
	font-size: 10.5pt;
}
.linhaFranqueado td {
	background-color: #ebf8fc;
}
.linhaPendencia td {
	background-color: #fcebeb;
}
.iconeLiberacaoMini, .iconeLiberacao {
	border-radius: 50%;
	color: white;
	font-weight: bold;
	display: inline-block;
	padding: 3px 6px;
	margin: 0 2px;
	font-size: 10pt;
}
.iconeNaoLiberadoMini {
	background-color: #bbb;
}
.iconeLiberadoMini {
	background-color: #00ae00;
}
#divLiberacoes {
	text-align: center;
}
.divLiberacao {
	display: inline-block;
	border-radius: 10px;
	background-color: #eee;
	padding: 10px;
	margin: 0 5px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	width: 20%;
	vertical-align: bottom;
}
.divLiberado {
	background-color: #91ff91;
	cursor: default;
}
.iconeNaoLiberado {
	font-size: 24pt;
	color:gray;
	margin-bottom: 5px;
	color: #bbb;
}
.iconeLiberado {
	font-size: 30pt;
	color: green;
	margin-bottom: 5px;
}
.iconeLiberacao {
	font-size: 14pt;
	padding: 3px 8px;
	margin: 0 4px 0 0;
	vertical-align: top;
}
.divTextoLiberacao {
	display: inline-block;
	font-size: 8pt;
	text-align: left;
	width: 77%;
}
.divTextoLiberacao p {
	margin: 3px 0;
	word-break: break-word;
}
.pTituloLiberacao {
	font-size: 9pt;
	font-weight: bold;
}
.aLiberar:link {
	color: white;
    background-color: #4282C4;
    font-weight: normal;
    padding: 7px 12px;
    font-size: 11pt;
    border-radius: 5px;
    width: 75%;
	display: none;
}
.divLiberacaoHover {
	padding: 20px 10px;
}
.divLiberacaoHover .iconeNaoLiberado {
	display: none;
}
.divLiberacaoHover .aLiberar {
	display: block;
	margin: 13px auto 0 auto;
}
.alertVencendo, .alertAtrasado {
	background-color:#fa871f;
	color: white;
	font-weight:bold;
	padding:2px 3px;
	border-radius: 2px;
	font-size: 0.85em;
}
.alertAtrasado {
	background-color:red;
}
.alertAVencer, .alertProgramado {
	color: #4282C4;
	font-weight: bold;
}
.alertFinalizado {
	color: green;
	font-weight: bold;
}
.alertNaoProgramado {
	color: #fa871f;
	font-weight: bold;
}





#divConsumoMensal {
	padding: 0 15px;
}
#tbConsumoMensal th, #tbConsumoMensal td{
	overflow: auto;
	font-size: 10pt;
	padding: 3px 1px;
}
#tbConsumoMensal td input {
	text-align: center;
	border: none;
	background-color: rgba(255, 255, 255, 0);
	color: #000;
	width: 100%;
	max-width: none;
	font-size: 9pt;
	padding: 2px 0 0 0;
}
#tbConsumoMensal td input[type=number] { 
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0; 
}
#tbConsumoMensal td input[type=number]::-webkit-inner-spin-button, 
#tbConsumoMensal td input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none; 
      margin: 0; 
}
#tbConsumoMensal .tdValor {
	border-left: 1px solid #000;
}
.spanConsumoMultPonta {
	font-size: 8pt;
	color:gray;
}

#formCadastrarEditarSistema label>span {
    width: 17%;
}
#formCadastrarEditarSistema #cidade {
	font-size: 10pt;
}
#tituloProdutos, #divFiltroProdutos {
	display: inline-block;
	margin-bottom: 7px;
}
#filtroProdutos {
	background-image: url('../images/visualizarIcon.png'); 
	background-position: 10px 4px; 
	background-repeat: no-repeat; 
	background-size: 18px;
	font-size: 10pt;
	width: 100%; 
	padding: 4px 8px 4px 40px;
	margin-left: 5px;
}
#formCadastrarEditarSistema #tbProdutos td {
	font-size: 1rem;
}
#formCadastrarEditarSistema #tbProdutos th:nth-child(2), #formCadastrarEditarSistema #tbProdutos td:nth-child(2) {
	text-align: left;
}
#formCadastrarEditarSistema #tbProdutos th:nth-child(1) {	width: 5%;		}
#formCadastrarEditarSistema #tbProdutos th:nth-child(2) {	width: 50%;		}
#formCadastrarEditarSistema #tbProdutos th:nth-child(3) {	width: 15%;		}
#formCadastrarEditarSistema #tbProdutos th:nth-child(4) {	width: 15%;		}
#formCadastrarEditarSistema #tbProdutos th:nth-child(5) {	width: 15%;		}
#formCadastrarEditarSistema #tbProdutos .produtoSelecionado,
#formCadastrarEditarSistema #tbProdutos .produtoSelecionado input {
	font-weight: bold;
	background-color: #E0EFFF;
}
#formCadastrarEditarSistema input[type="checkbox"] {
	cursor: pointer;
	scale: 1.4;
}
#formCadastrarEditarSistema #tbProdutos .imagemProduto {
	float: left;
	margin-right: 10px;
	width: 70px;
	height: 70px;
	overflow: hidden;
}  
#formCadastrarEditarSistema #tbProdutos .imagemProduto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#formCadastrarEditarSistema #tbProdutos .detalhesProduto {
	overflow: hidden;
	text-align: left;
}  
#formCadastrarEditarSistema #tbProdutos .nomeProduto {
	margin: 8px 0 5px 0;
}
#formCadastrarEditarSistema #tbProdutos .infoProduto {
	color: #555;
	font-size: 10pt;
	margin: 4px 0;
}

#formCadastrarEditarSistema #divBotoesVoltarAvancar #btVoltarProdutos {	float:left;	}
#formCadastrarEditarSistema #divBotoesVoltarAvancar #btAvancarProdutos {	float:right;	}
#divTituloProdutosSistema, #divValorTotalSistema {
	display: none;
	background-color: #FFF0DC;
	color: #003667;
	font-size: 14pt;
	font-weight: bold;
	padding: 7px 15px;
	text-align: center;
	margin: 35px 0 0 0;
	border-radius: 10px 10px 0 0;
}
#divProdutosSistema {
	display: none;
}
#divProdutosSistema #tbProdutosSistema th:nth-child(2), #divProdutosSistema #tbProdutosSistema td:nth-child(2) {
	text-align: left;
}
#divProdutosSistema #tbProdutosSistema {	font-size: 10pt;	}	
#divProdutosSistema #tbProdutosSistema th:nth-child(1) {	width: 11%;		}
#divProdutosSistema #tbProdutosSistema th:nth-child(2) {	width: 55%;		}
#divProdutosSistema #tbProdutosSistema th:nth-child(3) {	width: 17%;		}
#divProdutosSistema #tbProdutosSistema th:nth-child(4) {	width: 17%;		}
#tbUnidadesCompensacao {	width: 100%;		}
#tbUnidadesCompensacao tr td {
	width:33%;
	text-align: center;
	font-weight: bold;
} 

/* serviços adicionais */
#tbServicosAdicionais {
	width: 100%;
}
#tbServicosAdicionais th:nth-child(1),
#tbServicosAdicionais td:nth-child(1) {
	text-align: left;
}
#tbServicosAdicionais label {
	display: inline-block;
	margin: 5px;
}
#tbServicosAdicionais label>span {
	width: 100%;
}
.spanDescricaoServico {
	font-size: 8pt;
	color: gray;
	padding-right: 0;
    margin-top: 3px;
    font-weight: normal;
    text-align: left;
}
#tbServicosAdicionais td {
	border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#tbServicosAdicionais .trServicoSel td {
	font-weight: bold;
}
#tbServicosAdicionais input[type=number], #tbServicosAdicionais input[type=text] {
	border: 1px solid #ccc;
	padding: 5px;
}
#tbServicosAdicionais input[type=number] {	padding-right: 0;	}
#tbServicosAdicionais .infoAdicionalServico {
	width: 90%;
	text-align: left;
	border-radius: 0;
	border: 0 !important;
	background-color: #f3f3f3;
}
#tbServicosAdicionais .total {
	background-color: #eee;
}

#divEstruturaAdicional {
	padding: 12px 0 3px 0;
	margin: 0 0 10px 0;
	background-color: #f1f1f1;
	border-radius: 10px;
}
#divBotoesSistema .aDesistir {	float:left;	}
#divBotoesSistema .btSalvar {	float:none;	}
#divBotoesSistema .aConfirmar {	float:right;	}

#divPorcentValorProdutos {
	text-align: center;
	vertical-align: top;
	margin-bottom: 10px;
}
.divPorcentValorProdutos {
	display: inline-block;
	width: 26%;
	margin: 0 8px;
}
.divPorcentValorProdutos label {
	display: inline-block;
	margin-bottom: 0px;
	cursor: pointer;
}
#divPorcentValorProdutos2, #divPorcentValorProdutos0, #divPorcentValorProdutos-3 {
	font-size: 15pt;
	background-color: #a3ccfa;
	border-radius: 10px;
	padding: 10px 0;
	text-align: center;
}
#divPorcentValorProdutos0 {
	font-size: 13pt;
	background-color: #ffce9d;
}
#divPorcentValorProdutos-3 {
	font-size: 13pt;
	background-color: #fe9e8d;
}
#divInfoComissao, .divInfoComissao {
	font-size: 10pt;
	margin: 10px 0 3px 0;
}
#divTituloProdutosSistemaDesconto {
	display: none;
	background-color: #FFF0DC;
	color: #003667;
	font-size: 11pt;
	font-weight: 700;
	padding:5px;
	text-align: center;
	margin: 10px 0 15px 0;
	border-radius: 2px;
}
/* tag desconto */
#divPromocao {
	display: inline-block;
	vertical-align: middle;
}
#tagPromocao {
	float: left;
	height: 32px;
	position: relative;
	margin-left: 20px;
	padding: 7px 20px;
	line-height: 12pt;
	background: #4282C4;
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;	
	border-bottom-right-radius:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-right-radius:4px;	
	border-top-right-radius:4px;	
}
#tagPromocao:link {
	color:white;
	text-decoration:none;
	font-weight: normal;
}
#tagPromocao:before {
	content:"";
	float:left;
	position:absolute;
	top:0;
	left:-18px;
	width:0;
	height:0;
	border-color:transparent #4282C4 transparent transparent;
	border-style:solid;
	border-width: 23px 18px 23px 0;		
}	
#tagPromocao:after {
	content:"";
	position:absolute;
	top:18px;
	left:0;
	float:left;
	width:5px;
	height:5px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	background:#fff;
	-moz-box-shadow:-1px -1px 2px #004977;
	-webkit-box-shadow:-1px -1px 2px #004977;
	box-shadow:-1px -1px 2px #004977;
}		
/*#tagPromocao:hover{background:#555;}	
#tagPromocao:hover:before{border-color:transparent #555 transparent transparent;}*/
#tagPromocao #spanTituloPromocao {
	display: block;
	font-size: 11pt;
	text-align: center;
	font-weight: bold;
}
#tagPromocao #spanDescontoPromocao {
	display: block;
	font-size: 8pt;
	text-align: center;
}
.tagPromocaoAplicada {
	background: green !important;
}
.tagPromocaoAplicada:before {
	border-color:transparent green transparent transparent !important;
}

/* documentos */
#documentosSistema {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch; 
    margin-bottom: 20px;
}
.documentoSistema {
    flex: 1 1 30%;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.documentoSistema .tituloDoc {
	font-size: 0.8em;
    margin-bottom: 10px;
    color: #333;
}

.nenhumDoc, .previewDoc {
    width: 100%;
    height: 200px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
}
img.previewDoc  {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* mantém proporção e mostra tudo */
    border-radius: 4px;
}
.statusDoc {
    text-align: center;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 4px 0;
}
.statusDoc.pendente    { color: #7a5c1b; background-color: #fffbe6; } 
.botaoDoc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 0;
	margin: 2px 0;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: #f5f5f5;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease;
}
.botaoDoc.abrir  { color: #1e6641; background-color: #e9f9f0; }
.botaoDoc.remover {	color: #dc3545;	}
.botaoDoc:link { font-weight: normal;	}
.botaoDoc:hover {
    background-color: #e6e6e6;
    border-color: #ccc;
}
.documentoSistema i {
	font-size: 1.2em;
	margin-right: 8px;
}



/* anexos na UC e no Sistema	*/
#divAnexos {
	text-align: left;
}
.divAnexo {
	display: inline-block;
	background-color: #eee;
	border: 1px solid #bbb;
	border-radius: 5px;
	padding: 7px 5px;
	margin: 8px;
} 
.imgAnexo, .divAnexoDir {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}
.imgAnexo {
	width: 40px;
}
.pTituloAnexo {
	font-weight: bold;
	font-size: 10pt;
	margin: 0 0 7px 0;
}
.pNomeAnexo {
	font-size: 9pt;
	font-weight: normal;
	margin: 0;
}
.aExcluirAnexo img {
	vertical-align: top;
	width: 18px;
}


/*	TITULO	*/
.titulo {
	width: 100%;
	margin: 0 0 1em 0;
	color: white;
	/*padding: 8px 0;*/
	background: #002E5A;
	text-align: center;
	/*font-size: 16pt;
	font-weight: bold; */
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}

.titulo h2 {
	margin-top: .3em;
	margin-bottom: .3em;
}

.h4Subtitulo {
	text-align: left;
	background:#4282C4; 
	color:white; 
	padding:7px;
	border-radius: 4px 4px 0 0;
	-webkit-box-shadow: 0 6px 4px -4px gray;
	-moz-box-shadow: 0 6px 4px -4px gray;
	box-shadow: 0 6px 4px -4px gray;
}


.tituloSecao {
	display: flex;
	align-items: center;
	position: relative;
	gap: 18px;
	margin: 30px 0 15px 0;
}
.tituloSecao.centered {
	justify-content: center;
}  
.tituloSecao span {
	font-size: 1rem;
	font-weight: 500;
	color: #002E5A;
	white-space: nowrap;
}
.tituloSecao i, .tituloSecao2 i {
	color: #002E5A;
	font-size: 1rem;
}  
.tituloSecao::after, .tituloSecao::before,
.tituloSecao.centered::before,
.tituloSecao.centered::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: #ddd;
}
.tituloSecao::before {
	max-width: 14%;
	margin-right: 10px;
}
.tituloSecao::after {
	margin-left: 10px;
}
.tituloSecao.centered::before,
.tituloSecao.centered::after {
	max-width: 100%;
	flex: 1;
}

.tituloSecao2 {
	text-align: center;
    background-color: #eef2f7;
	color:#002E5A;
	font-weight: 500;
	padding:7px;
	margin-bottom: 7px;
	border-radius: 4px;
	box-shadow: 0 4px 4px -4px rgb(213, 224, 253);
}
.tituloSecao2 i {
	font-size: 1.1rem;
	margin: 0 18px;
}  


#linkVendaOnline {
	font-size: 10pt;
	color: #002E5A;
	font-weight: 500;
}
#linkVendaOnline a:link, #linkVendaOnline a:visited {
	color: #002E5A;
	font-weight: 500;
}
#linkVendaOnline i {
	font-size: 14pt;
	cursor: pointer;
}
.tooltip-copy {
    position: absolute;
    background-color: #002E5A;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10pt;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    z-index: 9999;
}
.tooltip-copy.show {
    opacity: 1;
    transform: translateY(0);
}




/* COMPRAS */
.badge {
	font-size:0.7rem;
	padding: 3px 6px;
	line-height: 130%;
	border-radius: 8px;
    vertical-align: middle;
}
.badge-compracancelada {
	background-color: #ffefef;
	color: #dc3545;
}
.badge-compraaguardandopagamento {
	background-color: #ffe3b0;
	color: orange;
}
.badge-comprapaga {
	background-color: #e7f9f0;
	color: #10c469;
}
.badge-comprafaturada {
	background-color: #ebf8fc;
	color: #0d6efd;
}
.badge-compraenviada {
	background-color: #e1ddf4;
	color: #6f42c1;
}
.badge-compraconcluida {
	background-color: #e7f9f0;
	color: #198754;
}
.badge-compraemaberto {
	background-color: #f8f9fa; 
	color: #6c757d; 
}

.div-finalizar-compra {
    width: 100%;  
    display: flex; 
    justify-content: center; 
}

.botaoComprar i {
	margin-right: 10px; 
}

.badge-carrinho {
	position: absolute; 
	top: -8px;   
	right: -10px; 
	background-color: orange;	/* #dc3545; */
	color: white;
	font-size: 0.9em;
	font-weight: bold;
	border-radius: 50%; 
	width: 22px;       
	height: 22px;       
	display: flex;
	align-items: center;
	justify-content: center;
}

#carrinhoFlutuanteContainer {
	position: fixed; 
	bottom: 30px;    
	right: 30px;    
	z-index: 1000;
}

#carrinhoFlutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #003366; /* mesmo azul do topo */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}
#carrinhoFlutuante:hover {
	background-color: #0055aa;
}

#carrinhoFlutuanteContainer .badge-carrinho {
	top: -15px;   
	right: -5px; 
}

#divListaProdutosCompra {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.produtoCard {
	display: flex;
	flex: 0 0 calc(50% - 20px); 
    box-sizing: border-box;
	padding: 25px 15px;
	background-color: #fff;
}

.produtoImagem {
    flex: 0 0 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.produtoImagem img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.produtoInfo {
    flex: 1; 
    display: flex;
    flex-direction: column;
	margin-left: 10px;
}

.produtoNome {
    margin: 0 0 5px 0;
    font-size: 1.4em;
    color: #333;
}

.produtoMarca,
.produtoDescricao {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    color: #666;
}

.produtoPreco {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.produtoCompraArea {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.infoEstoque {
    font-size: 0.8em;
    color: #aaa;
}

.divQuantidadeProduto {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4f4f6;
}

.btQuantidade {
    border: none;
    border-radius: 8px;
    color: #003366;
    font-size: 2em;
    cursor: pointer;
}

.spanQuantidade {
    min-width: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

#botaoAdicionarAoCarrinho {
    font-size: 0.8em;
    padding: 10px 15px;
}

.containerTotal {
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    padding: 10px;
    border-top: 1px solid #eee; 
}

.btExcluirProdutoCarrinho {
	border: none;
	font-size: 1.3em;
	padding: 5px;
	cursor: pointer;
}


/**** modal detalhes da compra ****/
#modalVisualizarPedido {
	text-align: start;
}

#modalVisualizarPedido #statusPedido {
	display: block;
	padding: 20px 20px 0 20px;
	font-weight: bold;
}
#modalVisualizarPedido .modal-body {
	margin: 0 auto 20px auto;
}
#modalVisualizarPedido #detalhesPedido {
	display: flex;
    gap: 30px;
}

#modalVisualizarPedido .coluna {
	flex: 50;
}

#modalVisualizarPedido h4 {
	padding-bottom: 8px;
	margin: 10px 0;
	border-bottom: 2px solid #333;
}

#modalVisualizarPedido #listaProdutos {
	border-bottom: 2px solid #333;
}

#modalVisualizarPedido #totalProdutos {
	text-align: right;     
	padding-top: 10px;     
	font-weight: bold;     
}

#modalVisualizarPedido .pagamento {
	margin: 10px 0px;
}

#modalVisualizarPedido .motivoRecusa {
    font-size: 12px;
    margin-top: 3px;
    color: #555;
}

#modalVisualizarPedido #divFechar,
#modalVisualizarFranqueado #divFechar {
    padding: 15px;
    text-align: center; 
    margin-top: 15px;
}



/* etapas no carrinho de compras */
.containerEtapasCompra {
  display: flex;
  justify-content: flex-end;  
}
.etapasCompra {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 400px; /* ajuste conforme layout */
	margin: 10px 0 25px 0;
	position: relative;
}
.etapasCompra::before {
	content: "";
	position: absolute;
	top: 25px;
	left: 25px;   /* metade do círculo */
	right: 25px;  /* metade do círculo */
	height: 2px;
	background: #002E5A;
	z-index: 0;
}
.etapaCompra {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}
.etapaCompra .circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #002E5A;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	background: white;
	color: #444;
	font-size: 1em;
}
.etapaCompra.active .circle {
	background: #002E5A;
	border-color: #002E5A;
	color: #fff;
}
.etapaCompra span {
  margin-top: 5px;
  font-size: 0.8em;
}


.btnContinuarComprando {
    display: inline-block;          
    text-align: center;          
    background: none; 
    border: none;     
    color: #002E5A !important;   
    cursor: pointer;  
    font-size: 1em;   
    padding: 5px 10px; 
    margin-bottom: 10px; 
    transition: color 0.2s ease-in-out; 
	text-decoration: underline !important;     
}
.btnContinuarComprando:hover {
    color: #0056b3;                
}

/* Pagamento */
.itemResumoPedido {
	display: flex; 
	align-items: center; 
	gap: 10px; 
	margin-bottom: 15px; 
}

.infoResumoPedido {
	display: flex;
	flex-direction: column; 
}

.totalProdutoPedido {
	margin-left: auto;
	font-weight: bold; 
	font-size: 1em;
}

.containerCompra {
	display: flex;
  	width: 100%;
	gap: 30px; 
	margin: 20px auto;
}

.containerForm {
    flex: 60;
}

.containerResumoPedido {
	flex: 40;
}

.resumoPedido {	
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 4px;
	background-color: #f9f9f9;
	height: fit-content; 
}

.resumoPedido h3,
.modalProdutos h4,
.modalInfo h4,
.containerForm h2 {
	font-size: 1.2em;
	border-bottom: 2px solid #333;
	padding-bottom: 5px;
	margin-top: 0;
	text-transform: uppercase;
}

.pagamento h2 {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.metodoPagamento {
    display: flex;
    align-items: center;
    justify-content: left;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.2s ease;
	flex-wrap: wrap;
}

.metodoPagamento:hover {
    background-color: #f0f8ff;
    border-color: #007bff;
}

.metodoPagamento .info {
    display: flex;
    flex-direction: column;
	margin-left: 20px;
}

.metodoPagamento .info span{
	font-weight: bold;
}

.metodoPagamento .infoAdicional {
	color: gray;
}

/* feedback compra */
.containerConfirmacaoCompra {
	text-align: center;	
	background-color: #F7F7F7; 
	border-radius: 4px;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); 
	width: 90%;
	max-width: 700px;
	margin: 50px auto; 
	border: 1px solid #d9d9d9;
}

.topoConfirmacaoCompra {
	background-color: green;
	color: white;
	padding: 20px;
}

.iconeConfirmacaoCompra {
	font-size: 10em;	
}

.tituloConfirmacaoCompra {
	font-size: 1.6em;
	font-weight: bold;
	text-transform: uppercase;
	margin: 10px 0 0 0;
}

.mensagemConfirmacaoCompra {
	font-size: 1em;
	text-align: left;
	color: #333;
	padding: 20px;
}
.mensagemConfirmacaoCompra strong {
	color: #002E5A;
	font-weight: bold;
}


/* MENSAGEM DE SUCESSO OU ERRO APÓS ENVIAR FORMULARIO AO SERVIDOR	*/
.retornoForm {
	display: none; /* O alerta deve iniciar oculto */
	width: 100%;
	height: auto;
	overflow: hidden;
	text-align: center;
	/*position: fixed;
	z-index: 999999;*/
	padding: 10px 0;
	color: #fff;
	border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;    
}

.alert-success {
  background-color: #2ecc71;
  margin-bottom: 15px;
}
.alert-warning {
  background-color: #FDA918;
  margin-bottom: 15px;
}
.alert-error {
  background-color: #e74c3c;
  margin-bottom: 15px;
}


.cursor-wait{
    cursor: wait !important;
}


/* Regras de senhas	*/
.password-rules {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.password-rules li {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.password-rules li.valid {
    color: green;
    font-weight: bold;
}
.password-rules li:before {
    content: "\2022";
    margin-right: 7px;
}
.password-rules li.valid:before {
    content: "\2714"; 
    color: green;
}

.labelSenhaConfirma {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.password-wrapper {
	position: relative;
	display: flex;
}
.password-wrapper input {
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-right: none;
	border-radius: 0 !important;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.toggle-eye {
	display: flex;
	align-items: center;
	padding: 0.5rem 0.75rem;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-left: none;
	cursor: pointer;
	user-select: none;
	color: #707a85;
	margin-bottom: 10px;
}

.select2-container {
	padding-right: 0;
}
#formCadastrarEditarSistema .select2-container {
	width: 600px !important;
}
.select2-container .select2-dropdown .select2-results__option {
	font-size: 0.9em;
}
.select2-container--default .select2-selection--single {
	border-color: #ccc;
	color: gray;
	height: auto;
	min-height: 33px;
	padding: 6px 0 6px 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: gray;
	line-height: normal;
	font-weight: normal;
	font-size: 0.9rem;
	text-align: left;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {		/* setinha	*/
	height: 33px;
}



/*	TABELAS	*/

table.dataTable thead tr th,
table.dataTable td,
table.dataTable tfoot tr th, 
table.dataTable tfoot tr td {
    text-align: center !important;
	font-size: 0.9em;
	padding: 7px;
}
table.dataTable th, 
table.dataTable tfoot td {
    color: #333;
    background-color: #eef2f7;
}
.dt-search label, .dt-info, .dt-button {
	display: inline;
	font-size: 0.9em;
}

table.dataTable tbody td.align-left {
    text-align: left !important;
}


/*
button.btn.btn-secondary.buttons-print {
    background-color: white !important;
    color: #6c757d !important;
    border: 1px solid #6c757d;
}

button.btn.btn-secondary.buttons-print:hover {
    background-color: #6c757d !important;
    color: white !important;
}

button.btn.btn-secondary.buttons-pdf.buttons-html5 {
    background-color: white !important;
    color: #6c757d !important;
    border: 1px solid #6c757d;
}
button.btn.btn-secondary.buttons-pdf.buttons-html5:hover {
    background-color: #6c757d !important;
    color: white !important;
}

button.btn.btn-secondary.buttons-excel.buttons-html5 {
    background-color: white !important;
    color: #6c757d !important;
    border: 1px solid #6c757d;
}

button.btn.btn-secondary.buttons-excel.buttons-html5:hover {
    background-color: #6c757d !important;
    color: white !important;
}*/


.tabelaHistorico {
    width: 100%;
    border-collapse: collapse; 
    font-size: 0.85em;         
    margin-top: 10px;
}

.tabelaHistorico th {
    text-align: left;
    padding: 8px 4px;
    border-bottom: 2px solid #f0f0f0; 
    font-weight: 600;
    text-transform: uppercase; 
    font-size: 0.8em;
    letter-spacing: 0.5px;
}

.tabelaHistorico td {
    padding: 8px 4px;
    border-bottom: 1px solid #f9f9f9; 
}


.tabelaHistorico tbody tr:last-child td {
    border-bottom: none;
}


.tbEstilo1, .tbEstilo2 {
	width: 100%;	
	max-width: 100%;
	border-collapse: collapse;	
}

.tbEstilo1 th, .tbEstilo1 td, .tbEstilo2 th, .tbEstilo2 td {
	font-size: 0.95em;
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
    padding: 5px 7px 5px 7px;
    text-align: center;    
    overflow: hidden;
    text-overflow: ellipsis;
}

.tbEstilo1 thead, .tbEstilo1 th, .tbEstilo2 thead, .tbEstilo2 th {
	/*font-size: 1.1em;*/
    padding-top: 5px;
    padding-bottom: 4px;
    /*background-color: gray;
    color: #ffffff;*/
    background-color: #FCAE49;
	color: #003667;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tbEstilo2 thead, .tbEstilo2 th {
	background-color: #4282C4 !important;
	color: #ffffff !important;
}

.tbEstilo1 tr.alt td{
    background-color: #DBE4EA;
}

.tbEstilo2 tr.alt td {
	background-color: #E0EFFF;
}

.tbEstilo1 tr.total td, .tbEstilo2 tr.total td {
    font-weight: bold;
}
/*
.tbEstilo1 td input, .tbEstilo2 td input {
	text-align: center;
	border: none;
	background-color: rgba(255, 255, 255, 0);
	color: #000;
	width: 95%;
}
*/
.tdValor {
	border-left: 1px solid #000;
}

#tbReajusteProduto th, #tbReajusteProduto td {
	font-size: 10pt;
	padding: 6px 3px;
}
#tbReajusteProduto td:nth-child(1) {
	text-align: left;
	width: 40%;
	font-size: 9pt;
}
#tbReajusteProduto td:nth-child(6) input {
	font-weight: bold;
}
#tbReajusteProduto td input, 
#formCadastrarEditarSistema #tbProdutos td input,
#formCadastrarEditarSistema #tbParcelas td input,
#tbPrecosUnidadeProduto td input,
#tbPrecosUnidadeServico td input,
#tbServicosAdicionais td input {
	border: none;
	background: transparent;
	color: #000;
	text-align: center;
	font-size: 1rem;
}
#tbReajusteProduto td input {
	font-size: 10pt;
}

#divPrecosUnidade, #divUCsCliente, #divPagamentosAPISistema {
	float: left;
	width: 77%;
}
#divPrecosUnidade td {
	width: 16.6%;
	font-size: 11pt;
	padding: 0 3px;
}

.divCheckUnidade {
	display: inline-block;
	width: 150px;
}
.divCheckUnidade input, .divCheckUnidade label {
	display: inline-block;
}

#formCadastrarEditarSistema #tbParcelas {
	margin-bottom: 20px;
}



/*	'POP-UP'	*/
.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    cursor: default;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}
.popup {
    background-color: #fff;
    border: 3px solid #fff;
    display: inline-block;
    left: 50%;
    opacity: 0;
    padding-left: 15px;
    position: fixed;
    text-align: justify;
    top: 40%;
    visibility: hidden;
    z-index: 10;
    height: 550px;
    max-width: 98%;
    overflow-y:auto;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;

    -webkit-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -ms-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -o-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;

    -webkit-transition: opacity .5s, top .5s;
    -moz-transition: opacity .5s, top .5s;
    -ms-transition: opacity .5s, top .5s;
    -o-transition: opacity .5s, top .5s;
    transition: opacity .5s, top .5s;
}
.overlay:target+.popup {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.close {
    background-color: rgba(0, 0, 0, 0.8);
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 7px;
    text-align: center;
    text-decoration: none;
    top: 8px;
    width: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-size: 24px;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
}
.close:hover {
    background-color: rgba(64, 128, 128, 0.8);
}
/*
.popup label {
    display: inline-block;
    text-align: left;
    width: 630px;
}*/


#divAdicionarComponente label,
#divUCs label {
	width: 700px;
}
#divUCs #labelAnexo {
	width: auto;
}
#divEditarParcela label,
#divCadastrarEditarProgramacao label,
#divCadastrarEditarVistoria label {
	width:600px;
}
#divAdicionarAnexo label {
	width:500px;
}

#divClientesSistema {
	padding: 0 10px;
}
#divClientesSistema #tabelaClientes {
	width: 700px;
	text-align: center;
}

#divDetalhesUC {
	font-size: 9pt;
	float: left;
	margin-left: 20px;
	background-color: #f5f5f5;
	padding: 4px 7px;
	border-radius: 7px;
	vertical-align: middle;
}


/* Modal */
.modal {
	display: none; 
	position: fixed; 
	z-index: 1;
	padding-top: 50px; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	overflow: auto; 
	background-color: rgba(0,0,0,0.8);
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 70%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}
.modal-header {
	padding: 2px 25px;
	background-color: #4282C4;
	color: white;
	text-align: left;
}
.modal-header-title {
	margin: 12px 0 7px 0;
}
.modal-header-subtitle {
	margin: 7px 0;
	font-weight: normal;
}
.modal-body {	padding: 20px;	}


/* The Close Button */
.closeModal {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.closeModal:hover,
.closeModal:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}





/* input type='file' personalizado */
#formCadastrarEditarSistema input[type="file"],
#formCadastrarEditarUC input[type="file"] {
    display: none;
}
#labelAnexo, .botaoAdicionar:link {
    padding: 10px 25px;
    border: 1px solid #003667;
    border-radius: 7px;
    color: #003667;
    text-align: center;
    cursor: pointer;
    float: left;
    margin-bottom: 0;
    font-weight: normal;
    width: auto;
}
#labelAnexo:hover, .botaoAdicionar:hover {
	background-color: #f1ecff;
}
#divConteudoAnexos, #divConteudoProgramacoes, #divConteudoVistorias {
	float:left;
	width: 82%;
	text-align: left;
}
#formCadastrarEditarUC #divConteudoAnexos {
	width: 77%;
}
#nomeArquivoAnexo {
	font-style: italic;
	font-size: 11pt;
	text-align: center;
}
#divProgramacoes, #divVistorias {
	margin: 5px 0 15px 0;
	width: 100%;
}




/*	TABS	*/
.tabs {
    width:100%;
    display:inline-block;
} 
/* Clearfix */
.tab-links:after {
    display:block;
    clear:both;
    content:'';
}
.tab-links {
	padding-left: 10px;
	margin-bottom: 0;
}
.tab-links li {
	margin:0px 5px;
    float:left;
    list-style:none;
}
.tab-links a {
    padding:9px 15px;
    display:inline-block;
    border-radius:3px 3px 0px 0px;
    /*border: 1px solid #4c4c4c; */
    /*background:#7FB5DA; */
    background: rgba(66,130,196,0.15);
    font-size: 0.9em;
    font-weight:600;
    color:#4c4c4c;
    transition:all linear 0.15s;
}
.tab-links a:hover {
    background:rgba(66,130,196,0.4);
    text-decoration:none;
}
li.active a, li.active a:hover {
    background: #4282C4;
    /*color:#4c4c4c;*/
    color: #fff;
}
/*----- Content of Tabs -----*/
.tab-content {
    /*padding: 15px;*/
    border-radius: 3px;
    border-top: 1px solid rgba(0,0,0,0.3);
    /*box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);*/
    /*background: #fff;*/
}
.tab {
    display:none;
}
.tab.active {
    display:block;
}


.tabInfosFranqueado, .tabFranqueado {
	width: 70%;
	text-align: left;
	margin: 0 auto;
	padding: 25px 0;
}
.tabFranqueado {		width: 85%;		}

.infosFranqueado {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.linhaInfo {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.campoInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.campoInfo label {
    font-weight: bold;
    margin-bottom: 3px;
}
.campoInfo input,
.campoInfo textarea {
	color: #000;
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
    cursor: default;
	width: 100%;
	box-sizing: border-box;
    height: 32px;
}
.campoInfo textarea {
    height: 50px;
}

/* esse css é para que quando o usuário clica em cartão os dados do cartão ficar em baixo não do lado */
#dadosCartao {
    display: block;
    width: 100%;
    margin-top: 15px;
    order: 3;
}

#validadeCartao {
    width: 70px;
}

#cvvCartao {
    width: 50px;
}

#bandeiraCartao img {
	margin-right: 10px;
    vertical-align: middle;
}


/* Loading */
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

.text-primary {
  color: #0d6efd;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* botão copiar texto	*/
.input-copy {
    position: relative;
    width: 100%;
}
.input-copy input {
    width: 100%;
    height: 36px;
    padding-right: 40px; /* espaço para o botão */
    box-sizing: border-box;
}
.input-copy .btn-copy {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: 0.2s;
}
.input-copy .btn-copy:hover {
    color: #000;
}
.input-copy .btn-copy.copied {
    color: #2e7d32;
}





/* BOTÕES	*/
.aAdicionar:link,
.aConfirmar:link,
.aDesistir:link,
.aReabrir:link,
.botaoBuscar:link,
.botaoComprar:link,
.botao, .botao:link {
	color: white;
    background-color: #4282C4;
    padding: 12px 20px;
    font-size: 12pt;
    font-weight: bold;
    border: none;
    cursor: pointer;
    /*-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);*/
}
.aConfirmar:link {	 background-color: green;			}
.aDesistir:link {	 background-color: red;			}
.aReabrir:link {	 background-color: #EDB441;		color:#003563;			}
.botaoComprar:link { background-color: #003366; }
.botaoComprar:hover {	background-color: #0055aa; }
.botaoBuscar:visited, .botao:visited, .botaoComprar:visited {	color: white;		}



/* BOTÃO SALVAR, CADASTRAR */
.botaoSalvar, .botaoCadastrar {
	cursor:pointer;
	border:1px solid #4B546A;-webkit-box-shadow: #B7B8B8 0px 1px 0px inset;-moz-box-shadow: #B7B8B8 0px 1px 0px inset; box-shadow: #B7B8B8 0px 1px 0px inset; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; font-size: 1em; color: #FFFFFF;
	background-color: #4B546A;
	padding-left: 36px; 
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(#606C88), to(#3F4C6B));
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, #606C88, #3F4C6B); 
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#606C88, endColorstr=#3F4C6B);
}
.botaoSalvar:hover, .botaoCadastrar:hover {
	border:1px solid #4B546A;
	background-color: #606C88;
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(#4B546A), to(#2C354B));	
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/saveIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, #4B546A, #2C354B);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#606C88, endColorstr=#3F4C6B);
}

/*	BOTÃO IMPRIMIR	*/
.botaoImprimir {
	cursor:pointer;
	border:1px solid #335D33;-webkit-box-shadow: #B7B8B8 0px 1px 0px inset;-moz-box-shadow: #B7B8B8 0px 1px 0px inset; box-shadow: #B7B8B8 0px 1px 0px inset; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; font-size: 1em; color: #FFFFFF;
	background-color: green; 
	padding-left: 45px; padding-right: 15px; 
	background: url(../images/printIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(green), to(#335D33));
	background: url(../images/printIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, green, #335D33);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, green, #335D33);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, green, #335D33);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, green, #335D33);
	background: url(../images/printIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, green, #335D33);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=green, endColorstr=#335D33);
}
.botaoImprimir:hover {
	background-color: #335D33;
	background: url(../images/printIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(#335D33), to(#224022));
	background: url(../images/printIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, #335D33, #224022);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, #335D33, #224022);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, #335D33, #224022);
	background: url(../images/printIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, #335D33, #224022);
	background: url(../images/printIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, #335D33, #224022); 
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#335D33, endColorstr=#224022);
}
/* BOTÃO EXCEL */
.botaoExcel {
	cursor:pointer;
	border:1px solid #4B546A;-webkit-box-shadow: #B7B8B8 0px 1px 0px inset;-moz-box-shadow: #B7B8B8 0px 1px 0px inset; box-shadow: #B7B8B8 0px 1px 0px inset; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; font-size: 1em; color: #FFFFFF;
	background-color: #4B546A;
	padding-left: 36px; 
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(#606C88), to(#3F4C6B));
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, #606C88, #3F4C6B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, #606C88, #3F4C6B); 
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#606C88, endColorstr=#3F4C6B);
}
.botaoExcel:hover {
	border:1px solid #4B546A;
	background-color: #606C88;
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -webkit-gradient(linear, left top, left bottom, from(#4B546A), to(#2C354B));	
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -webkit-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -moz-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -ms-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, -o-linear-gradient(top, #4B546A, #2C354B);
	background: url(../images/excelIcon.png) no-repeat 10px 6px, linear-gradient(to bottom, #4B546A, #2C354B);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#606C88, endColorstr=#3F4C6B);
}
/* BOTÃO CANCELAR	*/
.botaoCancelar {
	cursor:pointer;
	border:1px solid #4B546A;-webkit-box-shadow: #B7B8B8 0px 1px 0px inset;-moz-box-shadow: #B7B8B8 0px 1px 0px inset; box-shadow: #B7B8B8 0px 1px 0px inset; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block; font-weight:bold; font-size: 1em; margin: 5px;
	padding-left: 40px; padding-right: 10px; 
	background: url(../images/deactivate2Icon.png) no-repeat 10px 6px; 
}
.botaoCancelar:hover {
	background-color: #ccc;
}

/* BOTÃO FECHAR */
.botaoFechar {
    padding: 10px 25px; 
    font-size: 12pt;
    font-weight: bold;
    color: #444; 
    background-color: #f7f7f7; 
    border: 1px solid #ccc;    
    border-radius: 4px; 
    cursor: pointer;   
}
.botaoFechar:hover {
    background-color: #e9e9e9;
}







/******	 RELATÓRIOS	******/
#divFiltrosRelatorio, #divFiltrosSistema {
	text-align: left;
}
.divFiltroRelatorio, .divFiltroSistema {
	display: inline-block;
    width: 23%;
    padding: 5px 0.5%;
    text-align: left;
}
.divFiltroSistema {
	width: 15%;
}
.divFiltroRelatorio .spanFiltroRelatorio,
.divFiltroSistema .spanFiltroSistema {
    display: block;
    font-size: 11pt;
}
.divFiltroRelatorio input, .divFiltroRelatorio select,
.divFiltroSistema input, .divFiltroSistema select {
    width: 100%;
    font-size: 11pt;
}
#tbRelatorio {
	overflow: auto;
	font-size: 0.8em;
	padding: 3px;
}
#tbRelatorio td {
	padding: 5px;
}
#tbRelatorio img {
	width: 18px;
	height: 18px;
}
#tbRelatorio .iconeLiberacaoMini {
	font-size: 8pt;
	padding: 1px 3px;
	margin: 0 1px;
}
.tbRelatorioEtapas td {
	font-size: 9pt !important;
	padding: 0 !important;
}
.tbRelatorioEtapas .tdEtapaOK {
	background-color: #91ff91;
	font-size: 8pt;
	padding: 10px 5px;
}
.tbRelatorioEtapas .tdEtapaOK i {
	color: green;
	font-size: 18pt;
	margin-bottom: 5px;
}
.tbRelatorioEtapas .tdEtapaNaoOK {
	padding: 5px;
} 
.tbRelatorioEtapas .tdEtapaNaoOK i {
	color: #ccc;
	font-size: 18pt;
}
.tbRelatorioExecucao {
	font-size: 0.8em;
}

.tbCronograma {
	border-collapse: collapse;	
	font-size: 0.95em;
}
.tbCronograma tr {
	 min-height:60px;
}
.tbCronograma th, .tbCronograma td {
	border: 1px solid gray !important;
    padding:0 !important;
    text-align: center;    
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 150px;
	max-width: 150px;
	min-height: 100px; 
}
.tbCronograma td {
	font-size: 0.8em !important;
	/*padding: 0 !important;*/	
}
.tbCronograma td:nth-child(1) {
	font-size: 0.95em !important;	
	min-width: 90px;
	max-width: 90px;
}
.tbCronograma .obsEquipe {
	font-weight:normal;
	font-size: 8pt;
	color:#666;
}


#dadosRelatorioSintetico {
	display: block;
}
.divTabelaGrafico {
	display: table;
	width: 100%;
	margin: 7px 0 20px 0;
}

.divTabelaSintetico {
	display: table-cell;
	width: 35%;
	padding: 0 1% 0 0;
	font-size: 11pt;
	vertical-align:top;
}
.divGraficoSintetico {
	display: table-cell;
	width: 62.5%;
	vertical-align:top;
	position: relative;
    padding-bottom: 30px;
    height: 0;
}
.divGraficoSintetico .canvasjs-chart-container .canvasjs-chart-canvas,
.divGrafico .canvasjs-chart-container .canvasjs-chart-canvas {
	width: 100%;
    height: auto;
    position: absolute;
    left: 0;
}
.divGrafico {
	width: 100%;
	vertical-align:top;
	position: relative;
    /*padding-bottom: 45%;*/
    height: 0;
}
#divEstagiosFunil {
	width: 100%;
    height: auto;
    overflow-x: auto;
    white-space: nowrap;
	cursor: pointer;
}
.dragging {
	cursor: grabbingc !important;
    cursor: -webkit-grabbing !important;
}
.divEstagioFunil {
	display: inline-block;
    width: 170px;
    /*max-height: 550px;*/
    margin-right: 0.75%;
    vertical-align: top;
    font-size: 10pt;
    border-radius: 5px;
}
.divCabecalhoEstagioFunil {
	font-weight: bold;
    text-align: left;
    color: #fff;
    padding: 5px;
}
.divCabecalhoEstagioFunil::after {
	content: "";
    display: table;
    clear: both;
}
#divCabecalhoEstagioFunil0 {	background-color:#8cf028; 	}
#divCabecalhoEstagioFunil1 {	background-color:#8de8dd; 	}
#divCabecalhoEstagioFunil3 {	background-color:#f20707; 	}
#divCabecalhoEstagioFunil4 {	background-color:green; 	}
#divCabecalhoEstagioFunil5 {	background-color:#009889; 	}
#divCabecalhoEstagioFunil6 {	background-color:#F7B63D; 	}
#divCabecalhoEstagioFunil7 {	background-color:#313075; 	}
#divCabecalhoEstagioFunil8 {	background-color:#24364E; 	}
.divEstagioFunil .divTituloEstagio {
    float: left;
    width: calc(100% - 20px);
    vertical-align: middle;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}
.divEstagioFunil .divQuantEstagio {
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 3px 0;
    border-radius: 3px;
    float: right;
    width: 20px;
}
#divCabecalhoEstagioFunil0 .divQuantEstagio {	color:#8cf028; 	}
#divCabecalhoEstagioFunil1 .divQuantEstagio {	color:#8de8dd; 	}
#divCabecalhoEstagioFunil3 .divQuantEstagio {	color:#f20707; 	}
#divCabecalhoEstagioFunil4 .divQuantEstagio {	color:green; 	}
#divCabecalhoEstagioFunil5 .divQuantEstagio {	color:#009889; 	}
#divCabecalhoEstagioFunil6 .divQuantEstagio {	color:#F7B63D; 	}
#divCabecalhoEstagioFunil7 .divQuantEstagio {	color:#313075; 	}
#divCabecalhoEstagioFunil8 .divQuantEstagio {	color:#24364E; 	}

.divSistemaEstagioFunil {
	background-color: #F7F8F9;
    border: 1px solid #F7F8F9;
    border-left: 4px solid #000;
    padding: 5px 0 5px 5px;
    margin: 10px 0;
}
#divEstagioFunil0 .divSistemaEstagioFunil {	border-left-color:#8cf028; 	}
#divEstagioFunil1 .divSistemaEstagioFunil {	border-left-color:#8de8dd; 	}
#divEstagioFunil3 .divSistemaEstagioFunil {	border-left-color:#f20707; 	}
#divEstagioFunil4 .divSistemaEstagioFunil {	border-left-color:green; 	}
#divEstagioFunil5 .divSistemaEstagioFunil {	border-left-color:#009889; 	}
#divEstagioFunil6 .divSistemaEstagioFunil {	border-left-color:#F7B63D; 	}
#divEstagioFunil7 .divSistemaEstagioFunil {	border-left-color:#313075; 	}
#divEstagioFunil8 .divSistemaEstagioFunil {	border-left-color:#24364E; 	}
.divSistemaEstagioFunil p {
	text-align: left;
    font-size: 9pt;
    margin: 5px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}
.divSistemaEstagioFunil .pCliente {
    font-weight: bold;
    font-size: 10pt;
}



/* Pipeline */
.h4NomeVendedorPipeline {
	color: #002E5A;
	text-align: left;
	margin-bottom: 5px;
}
.divPipeline {
	display: inline-block;
	width: 47%;
	text-align: left;
	margin: 0 10px 15px 0;
	vertical-align: top;
	font-size: 10pt;
}
.tdEsqInfo, .tdEsqProj {
	text-align: left;
	width: 50%;
}
.tdEsqProj {	width: 30%;		}
.tdDirInfo, .tdDirProj {
	background-color: #C6D8E8;
	color: #002E5A;
	font-weight: bold;
	text-align: center;
	padding: 4px 10px;
}
.tdDirProj {	width: 45%;		}







@media print {   
    body {
    	border-top: 0;
    	background-color: #fff;
    }
}



@media screen and (max-width: 992px) {
	.produtoCard {
        flex: 0 0 100%; 
    }

	.tabInfosFranqueado, .tabFranqueado {
		width: 95%;
		padding: 20px 0;
	}
}



/* MEDIA QUERIES PARA TELAS 'PEQUENAS' - ATÉ 640px */
@media screen and (max-width: 640px) {

	footer {
		margin-top: 25px;
	}
		
	/*	CABEÇALHO	*/
	.logo {
		float: none;
		text-align: center;
		margin: 12px 0 5px 0;
	}
	.logo img {
		max-width: 95%;
	}
	
	/* CAIXA DE LOGIN */
	.login-card {
	  padding: 20px 7px;
	  width: 90%;
	}
	
			
			
	/* CATEGORIAS NO HEADER */
	.navCategorias {
		width: 100%;
	}
	
	.itemCategoria {
		text-align: center;
		font-weight: bold;
		font-size: 4vw;
		display: table-cell;
		/*border: 1px solid #000;*/
	}
	
	.imgCategoria {
		width: 100%;	
		margin: 0 5px;
	}
	
	
	
	
	
	/* CONTEÚDO PRINCIPAL	*/
	.conteudo {
		float: left;
		width: 100%;
		height: auto;
		text-align: center;
	}
	
	
	/* DIVS NO CONTEUDO PRINCIPAL QUE CONTÉM O FORMULÁRIO DE CRIAÇÃO	*/
	.cadastrarEditar {
		text-align: center;
	}
	
	.brMobile {
		display: block;
	}
	#divLogoCabecalho {
		width: 100%;
		text-align: center;
	}
	#divInfoCabecalho {
		width: 100%;
		text-align: center;
	}
	
	
	
	
	/* FORMULARIOS*/
	label>span {
		float: none;
		display: inline-block;
		text-align: center;
		width: 95%;
		font-size: 4.5vw;
		margin-top: 10px;
		font-size: 5vw; 
	}
	input[type="text"], .form input[type="email"], .form input[type="password"], input[type="date"], .form input[type="number"], input[type="number"], .form input[type="time"], .form textarea, select, textarea {
		height: 6vw;
		font-size: 4.5vw;
		width: 90%;
	}
	select {
		height: 9vw;
		   width: auto;   
	}
	
	
	/*	span para texto após outro span	*/
	.spanTexto {
		width: 95% !important;	
	}
	
	
	
	/* TITULO	*/
	.titulo h2 {
		font-size: 5vw;
		margin-top: .3em;
		margin-bottom: .3em;
	}
	
	
	/* NOTIFICAÇÕES NA HOME */
	#divNotificacoes {
		width: 96%;
	}
	.divNotificacao {
		padding: 20px 5px 5px 5px;
		width: calc(100% - 10px);
	}
	.tituloNotificacao {
		font-size: 11pt;
	}
	.dataNotificacao {
		font-size: 10pt;
	}
	.textoNotificacao {
		font-size: 11pt;
	}
	.detalhesNotificacao {
		font-size: 10pt;
	}
	
	
	/*	TABELAS */
	.tbEstilo1 td, .tbEstilo2 td {
		font-size: 3.3vw;
		padding: 1px;
		line-height: 120%;
	}
	
	.tbEstilo1 th, .tbEstilo2 th {
		font-size: 3.7vw;
		line-height: 120%;
	}
	
	.tbEstilo2 td input {
		font-size: 3.3vw;
		padding: 1px;
	}
	
	.tbEstilo1 td font, .tbEstilo2 td font {
		font-size: 8pt;
	}

	
	
	/*	ocultar colunas quando mobile */
	.hideMobile, 
	#tabelaUsuarios th:nth-child(3), #tabelaUsuarios td:nth-child(3), 
	#tabelaClientes th:nth-child(3), #tabelaClientes td:nth-child(3) {
		display: none;
	}
	
	/*
	.popup {
		width: 90%;
		height: 85% !important;
	}
	.popup label {
		width: 98%;
	}
	*/
	
	
	/* Modal */
	.modal {
		padding-top: 40px; 
	}
	.modal-content {
		width: 92%;
	}
	.modal-header {
		padding: 2px 5px;
	}
	.modal-header-title {
		margin: 5px 0 3px 0;
	}
	.modal-header-subtitle {
		margin: 3px 0;
	}
	.modal-body {	
		padding: 2px 5px;	
	}
	.closeModal {
		top: 5px;
		right: 15px;
		font-size: 26px;
	}
	
	
	/*.dropdownNotificacoes {
		position: absolute;
		top: 80%;
		right: 10%;   
		width: 200px;
		max-height: 80vh;
		overflow-y: auto;
		background: #fff;
		border: 1px solid #e0e0e0;
		border-radius: 12px; 
		box-shadow: 0 10px 30px rgba(0,0,0,.18);
		display: none;
		z-index: 999;
	}*/

	.dropdownNotificacoes {
		width: 350px;
		max-height: 500px;
	}

	.linkConteudo {
		font-size: 11px;
	}

	.tituloNotificacao {
		font-size: 13px;
	}

	.iconeTipoNotificacao {
		width: 25px;
		height: 25px;
		font-size: 12px;
	}
		
}