@font-face{
	font-family: "Comfortaa";
	src: url("../fonts/Comfortaa/Comfortaa-VariableFont_wght.ttf") format("truetype");
	font-display: swap;
}
:root{
	--bg-primary: rgb(6, 6, 6);
	--color-bg-primary: #1c1200;
	--color-text-primary: #ffa400;
	/*--c-text-primary: #f3f3f3;*/
	--c-text-primary: rgb(153, 153, 153);
	--c-text-accent: #ffa400;
	--c-text-link: #00b6ff;
}
*, *::before, *::after{
	-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;
}
html, body{
	margin: 0;
	padding: 0;
	font-family: "Comfortaa", sans-serif;
	/*height: 100vh;*/
}
body{
	background-color: var(--bg-primary);
	color: var(--c-text-primary);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	/*height: 100%;*/
	position: relative;
	width: 100%;
	margin: 0;
	font-family: "Comfortaa", sans-serif;
}
a{
	color: var(--c-text-link);
}
header{
	background-color: var(--bg-primary);
	color: var(--c-text-primary);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
	-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
	height:60px;
	position: sticky;
	top: 0;
	z-index: 1;
}
.headerContainer{
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 3rem;
}
.headerBrand{
	position: relative;
	height:48px;
	width:48px;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}
/*.headerBrand-link{}*/
.headerBrand-icon{
	height:100%;
	width:100%;
}
.headerBrand_contextual{
	z-index: 1;
	overflow: hidden;
	padding: 6px;
	box-shadow: rgb(0 0 0 / 35%) 0px 7px 32px;
	border: 1px solid rgb(49, 48, 53);
	position: fixed;
	left: 0;
	top: 0;

	min-width: max-content;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: rgb(6, 6, 6);
	/*-webkit-transform: translate(100%, 100%);-moz-transform: translate(100%, 100%);-ms-transform: translate(100%, 100%);-o-transform: translate(100%, 100%);transform: translate(100%, 100%);*/
}
.headerBrand_contextual.--hidden{
	display: none;
}
.headerBrand_contextualList{
	list-style: none;
	margin: 0;
	padding: 0;
}
.headerBrand_contextualList_items{
	border-radius: 4px;
	font-size: 14px;
	width: 100%;
	color: rgb(138, 143, 152);
	outline: none;
	box-shadow: none;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	justify-content: stretch;
	font-weight: 500;
	flex-direction: row;
}
.headerBrand_contextualList_items.itemType-action{
	cursor: pointer;
	/* height: 32px; */
	/* line-height: 32px; */
	padding: 8px 12px;
	gap: 12px;
}
.headerBrand_contextualList_items.itemType-link{
	padding: 0;
}
.headerBrand_contextualList_items:hover{
	background-color: rgba(138, 143, 152,.4);
	color: var(--c-text-primary);
}
.headerBrand_contextualList_items:hover .headerBrand_contextualList_items-icon{
	fill: var(--c-text-primary);
}
.itemType-link .headerBrand_contextualList_items-link{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: stretch;
	padding: 8px 12px;
	gap: 12px;
}
.headerBrand_contextualList_separator{
	height: 1px;
	background: rgb(34, 35, 38);
	margin: 6px 12px;
}
.navList{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
}
.headerUser{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
header p{
	margin: 0;
}
main{
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
footer{
	background-color: var(--bg-primary);
	color: var(--c-text-primary);
	width: 100%;
	height: auto;
	padding: 10px;
}
footer .link_carbon{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	padding: 0 0.75rem 0 0.5rem;
}