*{
	box-sizing: border-box;
}
body{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-family: roboto, sans-serif;
	font-size: 12px;
	margin: 0;
	padding: 0;
	background: var(--dp00bg);
	color: var(--text1);
	font-weight: 300;
}

.adminView{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.adminView main{
	height: calc(100% - 60px);
	position: relative;
}

.adminView .textLogo{
	font-weight: 600;
	font-size: 20px;
	color: var(--secondaryvariant);
}
.adminView section{
	height: 100%;
}
.adminView .adminAriane{
	height: 40px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	display: flex;
	align-items: center;
	padding: 0 10px;
}
.adminView .adminContent{
	height: calc(100% - 40px);
	position: relative;
}
@media all and (min-width: 900px){
	.adminView section{
		padding-left: 60px;
	}
}