*{
	margin:0;
	padding:0;
}

.aviso-desenvolvimento{
	width: 100%;
	padding-left: 250px;
	background-color: #FF0000;
	z-index: 0;
}

body {
	/* font-family: 'Jost', sans-serif; */
	font-family: 'Roboto', sans-serif;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f1f1f1;
    opacity: 1;
}

main {
	margin-left: 250px; /* Mesma largura da sidenav */
	padding: 10px;
}

/* Botões flutuantes nas telas principais */
.button-div {
	width: 8rem;
	height: 8rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
}

.button-div-content {
	width: 7rem;
	height: 7rem;
	margin: .5rem;
	background-color: #101526;
	border: 1px solid #525252;
	border-radius: 5%;
	display: flex;
	flex-direction: column;
	transition: all .1s ease-in-out;
}

.button-div-content.first{
	margin-left: 0;
}

.button-div-content.last{
	margin-right: 0;
}

.button-div-content:hover {
	background-color: #E84914;
	border: 1px solid #101526;
	color: #101526;
}

.button-div-content-header,
.button-div-content-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50%;
	margin: auto;
	vertical-align: middle;
}

.button-div-content-footer {
	border-top: 1px solid #525252;
}

.button-div-content-footer span{
	font-size: 11pt;
}

.button-div-link {
	margin: auto;
	text-decoration: none;
	color: #FFFFFF;
}

.button-div i {
	margin: auto;
	font-size: 18pt;
}

/* ## Formulário de Login */
.form-login{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}

.form-login form{
	width: 440px;
	padding: 20px;
	border: 1px solid #101526;
	border-radius: 5%;
	background-color: rgba(255, 255, 255, 0.6); /* Vermelho (#E84914) com 80% de opacidade */
}

.form-login .form-floating:focus-within {
	z-index: 2;
}

/* Define um novo tamanho de botão 'xs' que não tem no botstrap, para criar botões ainda mais pequenos */
.btn-xs{
	--bs-btn-padding-y: .15rem;
	--bs-btn-padding-x: .4rem;
	--bs-btn-font-size: .75rem;
}

/* Define um novo tamanho de tabela 'xs' que não tem no botstrap, para criar tabelas ainda mais pequenas */
.table-xs {
    font-size: small;
}

.table-xs th {
    padding: 3px;
}

.table-xs td {
    padding: 3px;
}

/* Define uma nova cor de background para tabelas*/
.table-alarm{
    background-color: #f6b26b;
}

/* Botão fixo no topo da página */
.botao-topo-pagina{
	position: fixed;
	right: 5px;
	bottom: 5px;
	padding: 4px 8px 4px 8px; /* topo direita embaixo esquerda*/
	font-size: 1rem;
	background-color: #101526;
	text-decoration: none;
	color: #E84914;
	border: 1px solid #101526;
	border-radius: 8px;
}

.botao-topo-pagina:hover {
	background-color: #E84914;
	color: #101526;
	border: 1px solid #101526;
}

/* Div com texto para colar no e-mail */
.ms-content {
	font-family: Calibri;
	font-size: 11.0pt;
	border: 1px solid black;
	border-radius: 5px;
	padding: 5px;
}

/* Campo autocomplete */
#sugestoes {
    position: absolute;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    background-color: #fff;
    margin: 0px;
}

.list-group-item {
    cursor: pointer;
    padding: 2px 5px;
}

.list-group-item:hover {
    background-color: #f0f0f0;
}

/* Define célula com formatação "contábil" */
.celula-contabil {
	display: flex;
	justify-content: space-between;
}

/* Imagem de 'Loading' flutuante */
#loader{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(255, 255, 255, 0.739);
}

#img-loading{
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -50px;
}

/* Novas classses para larguras, que não tem no Bootstrap */
.w-05{width: 5%;}
.w-10{width: 10%;}
.w-15{width: 15%;}
.w-20{width: 20%;}
.w-30{width: 30%;}
.w-35{width: 35%;}
.w-40{width: 40%;}
.w-45{width: 45%;}
.w-55{width: 55%;}
.w-60{width: 60%;}
.w-65{width: 65%;}
.w-70{width: 70%;}
.w-80{width: 80%;}
.w-85{width: 85%;}
.w-90{width: 90%;}
.w-95{width: 95%;}
/*
@media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
} */

/* Quando a respolução da tela for menor que 1280px */
@media only screen and (max-width: 1280px) {
	/* Fixa a largura da página */
	body {
		width: 1280px;
	}
}

/* Quando a respolução da tela for maior que 1920px */
@media only screen and (min-width: 1920px) {
	/* Fixa a largura do container principal */
	.container-fluid {
		width: 1630px;
	}
}
