input[type=text] {
	outline: none
}

select {
	outline: none
}

button:focus {
	outline: 0 auto -webkit-focus-ring-color;
	outline-offset: 0;
}

.titulo {
	font-weight: bold;
}

.subtitulo {
	font-weight: 630;
	font-size: 1.2rem
}

.page-title {
	font-weight: bold;
}

.btn-filter {
	display: flex;
	justify-items: center;
	gap: 8px;
}


.btn-filtro-aplicado {
	display: flex;
	border: 0.05rem solid gray;
	border-radius: 30px;
	padding: 10px 8px;
	align-items: center;
	width: fit-content;
	min-width: 180px;
	justify-content: space-around;
	background: white;
}

.container-search-btn-filter {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-grow: 1;
}

.search-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	background-color: var(--bg-color);
	border-radius: 1.563rem;
	border: 1px solid var(--darker-bg-color);
	padding: 0.375rem 0.5rem;
	height: 36px;
	min-width: 200px;
	max-width: 400px;
}

.search-input {
	border: none;
	background-color: var(--bg-color);
	outline: none;
	width: 95%;
	height: auto;
	font-size: 14px;
}

.search-button {
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

footer {
	border-top: 0.2rem solid transparent;
	border-image-slice: 1;
	background-color: var(--dark-grey-color);
	color: var(--light-grey-color);
	height: 120px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 3rem !important
}

.copyright {
	margin-top: 0 !important;
}

.form-label,
.col-form-label {
	font-size: 1.2rem;
	color: #000028;
	font-weight: bold;
}

nav {
	width: 100%;
	height: 4.375rem;
	grid-area: header;
	display: flex;
	left: 0;
	top: 0;
	align-items: center;
	justify-content: flex-end;
	background: var(--dark-grey-color);
	border-bottom: 0.2rem solid transparent;
	border-image-slice: 1;
}

a {
	text-decoration: none;
}

.logo-image {
	position: relative;
	width: 20rem;
	top: 0.125rem;
	left: 10.5rem;
}

nav .user-menu {
	display: flex;
	align-items: center;
	right: 4rem;
	position: relative;
	gap: 8px;
}

nav .user-menu .user-photo {
	width: 3rem;
	height: 3rem;
	left: 96.25rem;
	top: 0.688rem;
	border-radius: 50%;
	border: double 0.188rem transparent;
	background-image: linear-gradient(#283A41, #283A41),
		radial-gradient(circle at top left, #E1F000, #E1F000);
	background-origin: border-box;
	background-clip: content-box, border-box;
}

nav .user-menu .dropdown-toggle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

nav .user-menu .dropdown-toggle::after {
	border: none;
	width: 1.25rem;
	height: 0.563rem;
	padding: 0;
	margin: 0;
	background-image: url(../img/arrow.png);
	background-size: 1.25rem 0.563rem;
	background-repeat: no-repeat;
}

nav .user-menu .dropdown-toggle:active {
	border: none;
	width: 1.25rem;
	height: 0.563rem;
	padding: 0;
	margin: 0;
	background-image: url(../img/arrow.png);
	background-size: 1.25rem 0.563rem;
	background-repeat: no-repeat;
}

.dropdown-toggle.show {
	transform: rotate(180deg);
}

nav .nav-item .nav-link {
	color: #444;
}

nav .nav-item form {
	display: contents
}

nav .dropdown .dropdown-menu {
	left: unset;
	right: 0;
	padding: 10px 20px;
	background-color: var(--dark-grey-color);
	border-radius: .75rem;
	margin: .75rem 0 0;
	position: absolute;
	z-index: 1050;
}

nav .dropdown .dropdown-menu .lista {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
	padding-bottom: 5px;
}

.lista input,
.lista path {
	transition: 0.2s;
}

.lista:hover input {
	color: #E1F000 !important;
}

.lista:hover path {
	fill: #E1F000 !important;
}

nav .dropdown .dropdown-menu #ultimo-item {
	border: 0;
}

nav .dropdown .dropdown-menu #item {
	border: 0 solid #EBEFF5;
	border-bottom-width: 0.1rem;
}

nav .dropdown .dropdown-menu .lista input {
	margin-top: 2px;
	margin-left: 3px;
	font-size: 16px;
	font-weight: 200;
	line-height: 24px;
}

#nome-usuario {
	font-size: 14px;
	font-weight: 700;
}

#cargo-usuario {
	margin-bottom: 12px;
	padding-bottom: 5px;
	border-bottom-width: 0.2rem;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	border-style: solid;
	border-image: linear-gradient(to bottom, var(--yellow-color), var(--dark-yellow-color)) 0 0 100% 0;
	font-size: 15px;
	font-weight: 200;
}

html {
	font-size: 14px;
}

.main-body {
	min-height: 100%;
	max-width: 100vw;
	background-color: #F1F4F5;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	line-height: 20px;
	color: #000028;
	font-family: "Inter", sans-serif;
}

.stage{
	padding: 20px;
	width: 100%;
	min-height: calc(100dvh - 120px); /* desconta o footer */
	overflow-x: hidden;               /* impede vazamento horizontal da página */
	overflow-y: auto;                 /* só rolagem vertical */
	min-width: 0;                     /* MUITO importante em flex */
}

.main-block{
	display:flex;
	width:100%;
	max-width: 100%;
}

.side-content{
	width:100%;
	min-width: 0;       /* deixa encolher quando sidebar abre */
	max-width: 100%;
}

@media only screen and (max-device-width: 2560px) {
	.alert {
		margin: 25px 3rem 0 0;
	}

	.nome_listagem_usuario {
		font-style: normal;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #526974;
		margin-left: 5px;
	}

}

.cog {
	position: absolute;
	width: 65.119rem;
	height: 58.717rem;
	right: 0;
	bottom: 0;
	user-select: none;
}

.form-usuario {
	display: grid;
}

.row-form {
	flex-direction: column;
}

.information-area {
	background-color: white;
	border-radius: 15px;
	padding: 2vw;
	display: flex;
}

.titulo-container {
	display: flex;
	margin-top: 3rem;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.button-voltar {
	text-decoration: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: inherit;
	color: #009A9A;
}

.image-visualizar {
	max-width: 20rem;
	height: auto;
}

@media only screen and (max-device-width: 560px) {
	.user-info span {
		overflow-wrap: break-word;
	}

	.main-block {
		flex-direction: column;
	}
}


@media only screen and (max-device-width: 390px) {
	.opcoes-container {
		margin-right: 5px
	}

	#opcao-button {
		font-size: 14px
	}

	.image-visualizar {
		width: 150px;
	}
}

::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.dataTables_empty {
	padding-left: 10px !important;
}

.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
	background-color: transparent !important;
}

@media only screen and (max-device-width: 820px) {

	.table tbody tr.linha-clicavel td:not(.coluna-opcoes)>a {
		padding: 0.6rem;
	}

	.information-container {
		flex-direction: column;
		justify-content: start;
	}
}

@media only screen and (max-width: 650px) {
	.alert {
		margin: 25px 3rem 0 3rem;
	}

	.logo-image {
		left: 1rem;
		width: 15rem;
	}

	nav .user-menu {
		right: 1rem;
	}

	.user-photo {
		display: none;
	}

	footer {
		flex-direction: column;
		justify-content: center;
		padding-right: 0 !important;
	}

	.titulo-container {
		padding: 0 !important;
		flex-direction: column !important;
	}

	.informations-perfil {
		font-size: 16px;
		line-height: 16px;
	}

	.div-botoes-voltar-cadastrar {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.div-botao-voltar {
		display: none;
	}

	.filter-container {
		justify-content: center !important;
	}

	.container-search-btn-filter {
		width: 100%;
		align-items: center;
		flex-direction: column;
	}

	.filter-buttons {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
}