:root {
	--cor-fundo : white;
	--cor-primaria : #00973c;
}

* {
	margin:  0px;
	padding:  0px;
	box-sizing: border-box;
	font-family:  verdana;
	font-size: 12px;
	list-style: none;
}

/*###############################
	infra_frm_add_predio.php
*/
.addPredios {
	display: flex;
	align-items: flex-start;
}

.tbl_linha {
	width: 100%;
	text-align: center;
	padding: 10px 0px;
}

.btnPadrao {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 5px;
	min-width: 150px;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	transition: 0.2s;
	text-decoration: none;
	color: black;
	background-color: rgba(0, 0, 0, .1);
	text-align: center;
}

.btnPadrao .icon {
	font-size: 40px;
}

.btnPadrao:hover {
	box-shadow: 0px 0px 5px black;
	background-color: #00973c;
	color: white;
}

input, select {
	padding: 5px;
	border-radius: 5px;
}

dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -59%);
	width: 400px;
	height: auto;
	padding: 20px;

}

dialog > div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

dialog > button {
	position: absolute;
	right: 15px;
	top: 5px;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
	color: red;
	border: none;
	border-radius: 5px;
}

dialog > button:hover {
	box-shadow: 0px 0px 5px black;
}

.center {
	margin: 0 auto;
}

/* Corpo Index
============== */
.tbl_ramais_ccr {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ccc;
}

.tbl_ramais_ccr .cabecalho {
	color: white;
	background-color: var(--cor-primaria);
	font-weight: bold;
	text-align: center;
}

.tbl_ramais_ccr tr td {
	border: 1px solid #ccc;
	text-align: center;
	padding: 5px;
}

/*================*/

h2.painel {
	text-align: center;
	font-size: 36px;
}

.flex {
	display: flex;
}

.flex-coluna {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.div-50 {
	width: 50%;
}

.mensagem {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#aviso {
	text-align: center;
	margin-bottom: 10px;
	background-color: rgba(0, 255, 150, .7);
	color: white;
	padding: 5px;
	font-weight: bold;
	display: none;
}

.detalhesPredio {
	display: grid;
	grid-template-areas:
		"topo topo topo topo"
		"esquerda meio meio meio"
		"esquerda meio meio meio"
	;

	width: 900px;
	border: 1px solid black;
}

#detalhesPredioTopo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 90px;
	grid-area: topo;
}


#detalhesPredioTopo h1 {
	color: white;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	background-color: rgba(0, 0, 0, .5);
}

.detalhesPredioEsquerda {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-area: esquerda;
}

.detalhesPredioEsquerda #fotoPerfil {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	position: relative;
	top: -40px;
	width: 150px;
	height: 150px;
	border: 1px solid white;

}

.detalhesPredioMeio {
	grid-area: meio;
}

.icon {
	font-size: 15px;
	font-weight: 600;
}

.icon-painel {
	font-size: 36px;
	font-weight: 600;
}

.botoes {
	margin: 0 auto;
	font-size: 14px;
	border-radius: 20px;
	padding: 2px;
	box-shadow: 0px 0px 5px black;
	transition: 0.3s;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

#inicial {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	/* height: 450px; */
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#blur {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	background-color: rgba(0, 0, 0, .2);
}

.botoes:hover {
	background-color: var(--cor-primaria);
	color: white;
	font-weight: bold;
	cursor: pointer;
}

#btnUser {
	cursor: pointer;
}

.link {
	color: black;
	text-decoration:  none;
}

.link:hover {
	color: white;
}

.linkNormal {
	color: black;
	text-decoration: none;
}

.linkNormal:hover {
	text-decoration: underline;
}

.linkDel {
	padding: 2px;
	color: red;
	text-decoration: none;
}

.linkDel:hover {
	text-decoration: underline;
}

.linkBranco {
	color: white;
	text-decoration: none;
	width: 100%;
	text-align: center;
}

.linkBranco:hover {
	text-decoration: underline;
}

.painel_controle_despesas {
	display:  flex;
	justify-content: space-around;
}

.painel_controle_salas {
	width: 400px;
}

.painel_add_salas {
	display: flex;
	justify-content: center;
	padding: 10px;
	border-radius: 10px;
}

.painel_add_salas fieldset {
	padding: 10px;
	border-radius: 10px;
}

.painel_add_salas fieldset legend {
	font-weight: bold;
}

.grupoForm {
	padding: 5px;
	border-radius: 10px;
	max-width: 400px;
	border: none;
}

.grupoForm legend {
	border: 1px solid black;
	border-radius: 5px;
	padding: 2px;
	font-weight: bold;
}

.lista li {
	display: inline-block;
	list-style: none;
	padding: 5px;
	margin: 5px;
}

#topo {
	border: 1px solid #000000;
	padding: 10px;
	width: 100%;
	display: flex;
	align-content: space-around;
	align-items: center;
	box-shadow: 0px 0px 5px black;
}

#logo img {
	width: 200px;
}

.menu {
	margin:  0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}

.menu a {
	margin-right: 0px;
	padding: 10px;
	border-radius: 0px;
	text-decoration:  none;
	color: black;
	font-family: verdana;
	font-size: 12px;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3px;
}

.menu a:hover {
	/*box-shadow: 0px 0px 5px black;*/
	background-color: var(--cor-primaria);
	color:  white;
}

.menu ul li {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dropdown:hover {
	background-color: var(--cor-primaria);
}

.dropdown:hover .cabecalhoMenu {
	color: white;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu {
	position: absolute;
	display: none;
	background-color: white;
	box-shadow: 0px 0px 2px black;
	z-index: 10;
}

.dropdown-menu a {
	width: 100%;
	color: black;
}

#contato {
	width: 200px;
}

nav {
	margin: 0 auto;
}

#meio {
	margin: 0 auto;
	padding: 30px;
	display:  flex;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}

#txtAtividadeDiaria {
	padding: 5px;
}

.logoInicial {
	width: 100%;
	max-width: 1080px;
}

.painel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	width: 100%;
	margin:  0 auto;
	gap: 20px;
}

.organizador {
	/*box-shadow: 0px 0px 2px black;*/
	margin: 0 auto;
	padding: 10px;
	border-radius: 20px;
	min-width: 340px;
	/*max-width: 360px;*/
}

.organizador_content {
	border: 1px solid #ccc;
	padding: 10px 5px;
	background-color: white;
}

.organizador_topo {
	padding: 10px;
	color: white;
	background-color: var(--cor-primaria);
	border-radius: 20px 20px 0px 0px;
	margin-bottom: 0px;
}

.organizador_rodape {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background-color: var(--cor-primaria);
	border-radius: 0px 0px 20px 20px;
}

.organizador_rodape button {
	padding: 5px 10px;
	border-radius: 6px;
	border: none;	
	transition: .2s;
}

.organizador_rodape button:hover {
	background-color:rgba(0, 255, 150, .7);
	color: white;
	cursor: pointer;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}

.organizador p {
	font-weight: normal;
	font-size: 12px;
	padding-bottom: 10px;
}

p.center {
	text-align: center;
}

p.assinatura {
	text-align: right;
	font-size: 10px;
}

.organizador ul {
	list-style: none;
	padding: 10px;
}

.organizador ul li {
	padding: 2px;
}

.organizador ul li:hover .seta {
	display: inline-block;
}

table.agendamentos {
	border-collapse: collapse;
}

table.agendamentos thead tr {
	background-color: var(--cor-primaria);
	color: white;
}

table.agendamentos thead tr td {
	padding: 7px;
	text-align: center;
	font-weight: bold;
}

table.agendamentos tbody tr td {
	padding: 7px;
	text-align: center;
	border-bottom: 1px solid black;
}

.titulo_painel {
	color:  white;
	text-decoration:  none;
	font-size: 14px;
}

.titulo_painel:hover {
	text-decoration:  underline;
}

.painel_tabela {
	border-collapse: collapse;
	padding: 10px;
	border:  1px solid black;
	width: 100%;
}

.painel_tabela .cabecalho {
	border-collapse: collapse;
	background-color:  var(--cor-primaria);
}

.painel_tabela .cabecalho td {
	border:  1px solid black;
	color: white;
	font-weight:  bold;
	font-size: 12px;
}

.linha_painel {
	transition: 0.5s;
}

.linha_painel:hover {
	background-color: yellow;
}

.painel_tabela td {
	border:  1px solid black;
	padding: 10px;
}

ul.salas {
	border-radius: 30px;
	padding: 10px;
	margin: 10px;
	/*box-shadow: 0px 0px 5px black;*/
}

ul.salas li {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 3px 5px;
}

ul.salas li span {
	border-radius: 50px;
	padding: 10px;
}

.labelForm {
	width: 40%;
	display: inline-block;
}

.campo {
	width: 50%;
	margin-bottom: 10px;
	padding: 5px;
}


.linha {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.linhaCol {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-bottom: 10px;
}

.linhaCol input {
	padding: 8px;
	border-radius: 10px;
	border: 1px solid black;
}

.titulo {
	font-size: 16px;
	font-weight: bold;
	border-radius: 20px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
	width: 100%;
	padding: 5px;
	text-align: center;
	margin-bottom: 10px;
}

.divCabecalho {
	/*width: 100px;*/
	padding: 5px;
}

.divInformacao {
	/*width: 100px;*/
}

#rodape {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
	padding: 20px;
	color: white;
	text-align: center;
	background-color: var(--cor-primaria);
	gap: 10px;
}

#rodape .secao {
	/* border-radius: 10px; */
	box-shadow: 0px 0px 0px black;
	padding: 10px;
	text-align: left;
	border-left: 1px solid white;
}

#rodape .secao .titulo_secao {
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 5px;
}

#rodape .secao ul {
	list-style: none;
}

#rodape .secao ul li {
	font-size: 11px;
}

/*==========*/
/*Financeiro*/
/*==========*/

.inputFinanceiro {
	padding: 5px;
}

.titulo1 {
	font-size: 20px;
}

#meioFinanceiro {

}

#fin_cabecalho {
	padding: 10px 10px 10px 240px;
	background-color: var(--cor-primaria);
	color: white;
}

#fin_cabecalho h1 {
	font-size: 26px;
}

#financeiro {
	display: flex;
	width: 100%;
}

#painel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: top;
	gap: 20px;
	padding: 20px;
	width: 200px;
}

#painel .btn {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 30px;
	min-width: 150px;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	transition: 0.2s;
	text-decoration: none;
	color: black;
	background-color: rgba(0, 0, 0, .1);
	text-align: center;
}

#painel .btn .icon {
	font-size: 40px;
}

#painel .btn:hover {
	box-shadow: 0px 0px 5px black;
	background-color: #00973c;
	color: white;
}

#dash {
	display: flex;
	justify-content: center;
	align-items: top;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
	padding: 20px;
}

#dash .btn {
	cursor: pointer;
	padding: 5px;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

#dash .btn:hover {
	background-color: var(--cor-primaria);
	color: white;
}

.icon-fin-atualizar {
	font-size: 26px;
	transition: .3s;
}

.icon-fin-atualizar:hover {
	cursor: pointer;
	/* color: var(--cor-primaria); */
	color: red;
}

.linha {
	transition: 0.5s;
}

.linha:hover {
	background-color: #ccc;
}

.detalhesRecursos {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
	display: none;
}

.linhaDetalhesRecursos {
	display: flex;
	align-items: center;
	padding: 5px;
	transition: 0.5s;
}
.linhaDetalhesRecursos:hover {
	background-color:rgba(0, 255, 150, .7);
	cursor: pointer;
}

.detalheDespesa {
	display: flex;
	justify-content: start;
	flex-direction: column;
	align-items: center;
	width: 800px;
	height: 500px;
	overflow-y: auto;
}

.tbl_detalhe_despesa {
	border-collapse: collapse;
	width: 800px;
}

.tbl_detalhe_despesa tr:first-child td {
	padding: 10px;
	color: white;
	font-weight: bold;
	background-color: var(--cor-primaria);
}

.tbl_detalhe_despesa tr td {
	padding: 10px;
}

.linha_previsao_despesas label {
	width: 50%;
}

.linha_previsao_despesas input {
	width: 25%;
}

.linha_previsao_despesas p {
	width: 25%;
	padding: 0px;
	margin: 0 0 0 10px;
}

/* ---------------
Fim Financeiro
--------------- */

form.previsao_despesas {
	width: 100%;
}

.linha_previsao_despesas {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	transition: 0.2s;
}

.linha_previsao_despesas:hover {
	background-color:rgba(0, 255, 150, .7);
	color: white;
}

.ver_previsoes-item {
	font-weight: normal !important;
	font-size: 12px !important;
}

.ver_previsoes-valor {
	font-size: 12px !important;
	font-weight: bold;
}

.titulo_previsao_despesas_setor {
	background-color: #00973c;
	margin: 0px 0px 10px 0px;
	font-weight: bold;
	color: white;
	display: flex;
	justify-content: center;
	padding: 5px;
	border-radius: 10px 10px 0px 0px;
}

.linha-flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 3px 10px;
	transition: 0.5s;
}

.linha-flex:hover {
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.organizador-fin {
	box-shadow: 0px 0px 2px black;
	padding: 0px;
	border-radius: 10px;
	min-width: 300px;
}

/*## Tarefas Usuários ##*/
/*######################*/
.listaTarefas {
	margin: 0 auto;
	text-align: center;
	width: 900px;
	border: 1px solid black;
}

.listaTarefas h1 {
	font-size: 20px;
	background-color: var(--cor-primaria);
	color: white;
	padding: 10px;
}

.listaTarefas table {
	width: 100%;
	border-collapse: collapse;
}

.listaTarefas table tr:nth-child(1) {
	background-color: var(--cor-primaria);
	color: white;
}

.listaTarefas table tr:nth-child(1) td {
	font-size: 16px;
	font-weight: 600;
	padding: 5px;
}

.listaTarefas table tr {
	border-bottom: 1px solid #ccc;
}

.listaTarefas table td {
	padding: 5px;
}

.dashMinhasTarefas {
	display: flex;
	justify-content: space-around;
}

.tarefa {
	width: 150px;
	border-radius: 20px;
	box-shadow: 0 0 5px black;
	margin: 20px 0px;
}

.topoTarefa {
	border-radius: 20px 20px 0px 0px;
	background-color: var(--cor-primaria);
	padding: 10px 0px;
	font-size: 16px;
	font-weight: 600;
	color: white;
}

.topoTarefa a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}

.contentTarefa {
	padding: 10px;
}

.contentTarefa h2 {
	font-size: 32px;
	font-weight: 600;
}

.rodapeTarefa {
	padding: 10px;
	border-radius: 0px 0px 20px 20px;
	background-color: var(--cor-primaria);
}

.legendEditarTarefa {
	padding: 10px;
	border: 1px solid black;
	border-radius: 10px;
	background-color: var(--cor-primaria);
	color: white;
	font-weight: 600;
}

#editarTarefa label {
	font-weight: 600;
}

.botao {
	padding: 3px;
	cursor: pointer;
	color: black;
	border-radius: 5px;
	border: none;
	transition: .3s;
}

.botao:hover {
	box-shadow: 0px 0px 5px black;
}

.editar:hover {
	background-color: rgba(0, 0, 255, 1);
	color: white;
}

.visualizar:hover {
	background-color: rgb(135, 59, 235);
	color: white;
}

.concluir:hover {
	background-color: var(--cor-primaria);
	color: white;
}

/*#################################
  ### Formulário de agendamento ###
  #################################
*/

#frm_agendamento label {
	font-weight: 600;
}

#frm_agendamento select {
	padding: 7px;
	border-radius: 10px;
	border: 1px solid black;
}

/*#################################
	Registro de atividade diária
###################################*/
#avisoRegistroTarefa {
	/*
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
	*/
	margin: 0px auto;
	margin-top: 10px;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 400px;
	box-shadow: 0px 0px 5px black;
	padding: 40px;
	border-radius: 20px;
	background-color: var(--cor-primaria);
	color: white;
	font-weight: bold;
}

#avisoRegistroTarefa button {
	padding: 10px;
	cursor: pointer;
}

/*
##################################################
### Formatação da tabela de relatório de salas ###
##################################################
*/
.relatorio {
	width: 60%;
	margin: 0 auto;
}

#tbl_relatorio_salas {
	width: 100%;
	border: 1px solid black;
	border-collapse: collapse;
}

#tbl_relatorio_salas .titulo-relatorio td {
	border: 1px solid black;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px;
	background-color: rgba(0, 0, 0, .3);
}

#tbl_relatorio_salas .cabecalho td {
	padding: 3px;
	font-weight: 600;
	border: 1px solid black;
	text-align: center;
	background-color: rgba(0, 0, 0, .3);
}

#tbl_relatorio_salas .dados {
	text-align: center;
	padding: 1px;
	border: 1px solid black;
}

#btnExportar {
	margin-top: 10px;
	cursor: pointer;
	padding: 3px;
	border-radius: 10px;
}