:root {
	--header-height: 60px;
	--header-user-area: 240px;
	--main-width: 1900px;
	--footer-height: 40px;
}

/*.main{ position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; z-index: 1; border: solid 5px #F60; }*/

html, body {
  height: 100%;
  margin: 0;
}

body {
	background-color: #DDDDDD;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body[data-modal="1"] {
	overflow: hidden;
}

#notify,
#loading,
#modal,
#sidebar {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	pointer-events: none;
}

/* Z-INDEX DO CORE */
#sidebar {
	z-index: 3000;
}

#modal {
	z-index: 7000;
}

#loading {
	z-index: 8000;
}

#notify {
	z-index: 9000;
}

.main {
	position: relative;
	min-height: 100vh;
	max-width: 100vw;
	display: flex;
	flex-direction: column;
	/* grid-gap: 0px; */
	gap: 0px;
}

#version {
	display: none;
	position: fixed;
	left: 10px;
	bottom: 5px;
	z-index: 99;
	font-size: 0.7em;
	font-family: var(--font-default);
	color: rgba(0, 0, 0, 0.4);
}

/* HEADER */
#header {
	position: sticky;
	top: 0px;
	left: 0px;
	right: 0px;
	height: var(--header-height);
	z-index: 4000;
	-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

#content {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	flex-grow: 1;
}

.page {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE', endColorstr='#FFFFFF');
	background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #EEEEEE, #FFFFFF);
}

.page-header {
	display: grid;
	grid-template-columns: 100px auto;
	gap: 16px;
	padding: 20px 0px;
}

.page-header>div {}

.page-header>div:nth-child(1)>div {
	aspect-ratio: 1 / 1;
	background-color: var(--main-color);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.page-header>div:nth-child(1)>div>img {
	max-width: 70%;
	max-height: 70%;
}

.page-header>div>h1,
.page-header>div>h2 {
	font-family: var(--font-default);
	font-weight: normal;
	text-align: left;
	line-height: 100%;
	margin: 0;
}

.page-header>div>h1 {
	font-size: 2.6em;
	font-weight: bold;
	letter-spacing: -1px;
	color: var(--main-color);
	line-height: 120%;
}

.page-header>div>h2 {
	font-size: 1.8em;
}

.hide {
	display: none !important;
}

#footer {
	height: var(--footer-height);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-default);
	font-size: 0.875em;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.4);
	border-top: solid 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1) inset;
}


@media (max-width: 1600px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 840px) {}

@media (max-width: 720px) {}

@media (max-width: 600px) {



	.page-header {
		grid-template-columns: 70px auto;
		padding: 20px 10px;
	}

	.page-header>div>h1 {
		font-size: 2.2em;
		letter-spacing: -2px;
	}

	.page-header>div>h2 {
		font-size: 1.4em;
		letter-spacing: 0px;
	}
}

@media (max-width: 480px) {

	:root {
		--header-height: 50px;
	}

	.page-header {
		grid-template-columns: 50px auto;
		padding: 20px 10px;
	}

	.page-header>div>h1 {
		font-size: 1.7em;
		letter-spacing: -1px;
	}

	.page-header>div>h2 {
		font-size: 0.9em;
		letter-spacing: 0px;
	}

	#btn-install-area {
		width: 70px;
	}

	#btn-install {
		/* width: 64px; */
		height: 22px;
	}

	#btn-install>svg {
		margin: 5px 0px 0px 4px;
		height: 10px;
	}

	#btn-install>label {
		font-size: 0.7em;
		line-height: 20px;
	}
}

@media (max-width: 320px) {}