* {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*:not(svg) {
	font-family: "Nunito", sans-serif;
}

:root {
	--primary-color: #0E4E8A;
	--secondary-color: #105EA6;

	--verde: #128A35;
	--vermelho: #D61B16;
	--azul: #155BC5;
	--cinza: #888888;
	--cinzaclaro: #CCCCCC;
	--preto: #333333;
	--branco: #FFFFFF;

	--verde-hover: #0F772D;
	--vermelho-hover: #B91713;
	--azul-hover: #114BA4;
	--cinza-hover: #707070;
	--cinzaclaro-hover: #A0A0A0;
	--preto-hover: #2C2C2C;
	--branco-hover: #EEEEEE;
}

html {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;

	background-color: #FAFAFA;
}

body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;

	background-color: #FAFAFA;

	position: relative;
}

button {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

button:disabled,
button:disabled:hover {
	cursor: default !important;
	background-color: #DDDDDD !important;
	color: #AAAAAA !important;
}

input:disabled,
select:disabled,
textarea:disabled {
	cursor: default !important;
	background-color: #DDDDDD !important;
}

.azul {
	background-color: var(--azul) !important;
	color: #FAFAFA !important;
	transition: 0.5s !important;
}

.azul:hover {
	background-color: var(--azul-hover) !important;
}

.verde {
	background-color: var(--verde) !important;
	color: #FAFAFA !important;
	transition: 0.5s !important;
}

.verde:hover {
	background-color: var(--verde-hover) !important;
}

.vermelho {
	background-color: var(--vermelho) !important;
	color: #FAFAFA !important;
	transition: 0.5s !important;
}

.vermelho:hover {
	background-color: var(--vermelho-hover) !important;
}

.cinza {
	background-color: var(--cinza) !important;
	color: #FAFAFA !important;
	transition: 0.5s !important;
}

.cinza:hover {
	background-color: var(--cinza-hover) !important;
}

.cinzaclaro {
	background-color: var(--cinzaclaro) !important;
	color: #333333 !important;
	transition: 0.5s !important;
}

.cinzaclaro:hover {
	background-color: var(--cinzaclaro-hover) !important;
}

.preto {
	background-color: var(--preto) !important;
	color: #FAFAFA !important;
	transition: 0.5s !important;
}

.preto:hover {
	background-color: var(--preto-hover) !important;
}

.branco {
	background-color: var(--branco) !important;
	color: #333333 !important;
	transition: 0.5s !important;
}

.branco:hover {
	background-color: var(--branco-hover) !important;
}

@media only screen and (max-width: 749px) {

	* {
		cursor: default !important;
	}

	.menusuperior {
		width: 100%;
		height: 60px;
		margin: 0px;
		padding: 7.5px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);

		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 7.5px;

		z-index: 89999;
		position: fixed;
		top: 0px;
		left: 0px;
	}

	.menusuperior > span {
		width: auto;
		height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		align-items: center;
		gap: 7.5px;
	}

	.menusuperior > span > img {
		width: auto;
		height: 45px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menusuperior > span > button {
		width: 45px;
		height: 45px;
		margin: 0px;
		padding: 0px;

		background-color: transparent;
		border-radius: 5px;

		font-size: 18px;
		color: #333333;

		position: relative;
		transition: 0.5s;
	}

	.menusuperior > span > button:hover {
		background-color: #DDDDDD;
	}

	.menusuperior > span > button > img {
		width: auto;
		height: 45px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menusuperior > span > button > span {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 2.5px 5px;

		background-color: var(--verde);
		border: solid 1px #FAFAFA;
		border-radius: 5px;

		position: absolute;
		top: 4px;
		right: 4px;

		text-align: center;
		font-weight: 700;
		font-size: 10px;
		color: #FAFAFA;
	}

	.menusuperior > span > button > span:empty {
		display: none;
	}


	.menulateral {
		width: 100%;
		height: calc(100% - 60px);
		max-height: calc(100% - 60px);
		margin: 0px;
		padding: 0px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);

		display: none;
		flex-direction: column;
		align-items: center;

		overflow-y: auto;
		z-index: 89998;
		position: fixed;
		top: 60px;
		left: 0px;
	}

	.menulateral > a {
		width: 100%;
		height: auto;
		min-height: 60px;
		margin: 0px;
		padding: 7.5px;

		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 7.5px;

		text-decoration: none;
		transition: 0.5s;
	}

	.menulateral > a:hover {
		background-color: #DDDDDD;
	}

	.menulateral > a > h1 {
		width: 60px;
		height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		align-items: center;
		justify-content: center;

		font-size: 18px;
		color: #333333;
	}

	.menulateral > a > p {
		width: calc(100% - 30px);
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 500;
		font-size: 12px;
		color: #333333;
	}

	.menumeusdados {
		width: 100%;
		height: calc(100% - 60px);
		max-height: calc(100% - 60px);
		margin: 0px;
		padding: 0px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);

		display: none;
		flex-direction: column;
		align-items: center;

		z-index: 89998;
		position: fixed;
		top: 60px;
		left: 0px;
	}

	.menumeusdados > div {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 15px;

		background-color: #444444;

		display: flex;
		align-items: flex-start;
		gap: 10px;
	}

	.menumeusdados > div > img {
		width: auto;
		height: 60px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menumeusdados > div > span {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.menumeusdados > div > span > h1 {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 700;
		font-size: 14px;
		color: #FAFAFA;
	}

	.menumeusdados > div > span > p {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 500;
		font-size: 12px;
		color: #FAFAFA;
	}

	.menumeusdados > span {
		width: 100%;
		height: auto;
		max-height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		flex-direction: column;
		align-items: center;

		overflow-y: auto;
	}

	.menumeusdados > span > a {
		width: 100%;
		height: auto;
		min-height: 60px;
		margin: 0px;
		padding: 7.5px;

		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
		gap: 7.5px;

		text-decoration: none;
		transition: 0.5s;
	}

	.menumeusdados > span > a:hover {
		background-color: #DDDDDD;
	}

	.menumeusdados > span > a > h1 {
		width: 60px;
		height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		align-items: center;
		justify-content: center;

		font-size: 18px;
		color: #333333;
	}

	.menumeusdados > span > a > p {
		width: calc(100% - 30px);
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 500;
		font-size: 12px;
		color: #333333;
	}

	.site {
		width: 100%;
		height: 100%;
		max-height: 100%;
		margin: 0px;
		padding: 0px;

		background-color: #FAFAFA;

		overflow-y: auto;
		z-index: 89996;
		position: fixed;
		top: 0px;
		left: 0px;
	}

}

@media only screen and (min-width: 750px) {

	*::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	*::-webkit-scrollbar-thumb {
		background-color: #CCCCCC;
		border-radius: 5px;
	}

	*::-webkit-scrollbar-track {
		background-color: #FAFAFA;
	}

	*::-webkit-scrollbar-button {
		display: none;
	}

	button, a {
		cursor: pointer;
	}

	.menusuperior {
		width: 100%;
		height: 60px;
		margin: 0px;
		padding: 7.5px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);

		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 7.5px;

		z-index: 89999;
		position: fixed;
		top: 0px;
		left: 0px;
	}

	.menusuperior > span {
		width: auto;
		height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		align-items: center;
		gap: 7.5px;
	}

	.menusuperior > span > img {
		width: auto;
		height: 45px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menusuperior > span > button {
		width: 45px;
		height: 45px;
		margin: 0px;
		padding: 0px;

		background-color: transparent;
		border: none;
		border-radius: 5px;

		font-size: 18px;
		color: #333333;

		position: relative;
		transition: 0.5s;
	}

	.menusuperior > span > button:hover {
		background-color: #DDDDDD;
	}

	.menusuperior > span > button > img {
		width: auto;
		height: 45px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menusuperior > span > button > span {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 2.5px 5px;

		background-color: var(--verde);
		border: solid 1px #FAFAFA;
		border-radius: 5px;

		position: absolute;
		top: 4px;
		right: 4px;

		text-align: center;
		font-weight: 700;
		font-size: 10px;
		color: #FAFAFA;
	}

	.menusuperior > span > button > span:empty {
		display: none;
	}

	.menulateral {
		width: 60px;
		height: calc(100% - 60px);
		max-height: calc(100% - 60px);
		margin: 0px;
		padding: 7.5px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 7.5px;

		overflow-y: auto;
		z-index: 89998;
		position: fixed;
		top: 60px;
		left: 0px;
	}

	.menulateral > a {
		width: 100%;
		height: auto;
		min-height: 45px;
		margin: 0px;
		padding: 7.5px;

		border-radius: 5px;

		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 7.5px;

		text-decoration: none;
		transition: 0.5s;
	}

	.menulateral > a:hover {
		background-color: #DDDDDD;
	}

	.menulateral > a > h1 {
		width: 30px;
		height: 100%;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;

		display: flex;
		align-items: center;
		justify-content: center;

		font-size: 18px;
		color: #333333;
	}

	.menulateral > a > p {
		width: calc(100% - 30px);
		height: auto;
		margin: 0px;
		padding: 0px;

		display: none;

		text-align: start;
		font-weight: 500;
		font-size: 12px;
		color: #333333;
	}

	.menumeusdados {
		width: 350px;
		height: auto;
		max-height: calc(100% - 110px);
		margin: 0px;
		padding: 0px;

		background-color: #FFFFFF;
		box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);
		border-radius: 5px;

		display: none;
		flex-direction: column;
		align-items: center;

		z-index: 89998;
		position: fixed;
		top: 85px;
		right: 25px;
	}

	.menumeusdados > div {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 15px;

		background-color: #444444;
		border-radius: 5px 5px 0px 0px;

		display: flex;
		align-items: flex-start;
		gap: 10px;
	}

	.menumeusdados > div > img {
		width: auto;
		height: 60px;
		margin: 0px;
		padding: 0px;

		border-radius: 5px;
	}

	.menumeusdados > div > span {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.menumeusdados > div > span > h1 {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 700;
		font-size: 14px;
		color: #FAFAFA;
	}

	.menumeusdados > div > span > p {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: start;
		font-weight: 500;
		font-size: 12px;
		color: #FAFAFA;
	}

	.menumeusdados > span {
		width: 100%;
		height: auto;
		max-height: 100%;
		margin: 0px;
		padding: 7.5px;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;

		overflow-y: auto;
	}

	.menumeusdados > span > a {
		width: 100%;
		height: auto;
		min-height: 45px;
		margin: 0px;
		padding: 7.5px;

		border-radius: 5px;

		display: flex;
		align-items: center;
		justify-content: center;
		gap: 7.5px;

		text-decoration: none;
		transition: 0.5s;
	}

	.menumeusdados > span > a:hover {
		background-color: #DDDDDD;
	}

	.menumeusdados > span > a > h1 {
		width: 30px;
		height: 100%;
		margin: 0px;
		padding: 0px;

		display: flex;
		align-items: center;
		justify-content: center;

		font-size: 18px;
		color: #333333;
	}

	.menumeusdados > span > a > p {
		width: calc(100% - 30px);
		height: auto;
		margin: 0px;
		padding: 0px;

		text-align: end;
		font-weight: 500;
		font-size: 12px;
		color: #333333;
	}

	.site {
		width: 100%;
		height: 100%;
		max-height: 100%;
		margin: 0px;
		padding: 0px;

		background-color: #FAFAFA;

		overflow-y: auto;
		z-index: 89996;
		position: fixed;
		top: 0px;
		left: 0px;
	}

}

.site_titulo {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 10px 15px;

	background-color: var(--preto);
	border-radius: 5px;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;

	text-align: start;
	font-weight: 700;
	font-size: 14px;
	color: #FAFAFA;
}

.site_titulo > svg {
	font-size: 14px;
}

.carregando {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;

	background-color: #FAFAFA;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;

	z-index: 99999;
	position: fixed;
	top: 0px;
	left: 0px;
}

.carregando > h1 {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	font-size: 36px;
	color: #333333;
}

.carregando > p {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}

.cookies {
	width: 100%;
	height: 100%;
	max-height: 100%;
	margin: 0px;
	padding: 25px;

	background-color: rgba(0,0,0,0.50);

	display: flex;
	flex-direction: column;
	align-items: center;

	overflow-y: auto;
	z-index: 99998;
	position: fixed;
	top: 0px;
	left: 0px;
}

.cookies > span {
	width: 450px;
	max-width: 100%;
	height: auto;
	margin: auto;
	padding: 25px;

	background-color: #FAFAFA;
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.cookies > span > p {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	line-height: 26px;
	text-align: center;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.cookies > span > p > a {
	font-weight: 700;
	color: #333333;
}

.cookies > span > button {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 7.5px 25px;

	border-radius: 5px;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #FAFAFA;
}

.botao_topo {
	width: 40px;
	height: 40px;
	margin: 0px;
	padding: 0px;

	background-color: #333333;
	box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);
	border: none;
	border-radius: 5px;

	font-size: 20px;
	color: #FAFAFA;

	z-index: 89997;
	position: fixed;
	bottom: 15px;
	right: 25px;
}