  @font-face {
	font-family: 'OpenSans';
	src: url('font/OpenSans-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'OpenSans';
	src: url('font/OpenSans-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
  }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-color: var(--button-color) var(--content-color);
	scrollbar-width: thin;
}

body {
	font-family: 'OpenSans', sans-serif;
	color: var(--text-color);
	background-color: var(--body-color);
	line-height: 1.6em;
	min-width: 96vw;
}

header {
	user-select: none;
	font-size: 0.9em;
	z-index: 99;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	text-align: center;
	align-items: center;
	position: sticky;
	justify-content: space-between;
	color: var(--text-color);
	background-color: var(--panel-color);
	box-shadow: 0 10px 15px rgb(0 0 0 / 60%);
	padding: 5px;
	height: 70px;
	top: 0;
}

header .info {
	color: var(--text-menu-color);
    background-color: var(--content-color);
    width: 100px;
	height: 30px;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 6px;
}

header .user-panel {
	contain: content;
    position: absolute;
	color: var(--text-menu-color);
	outline: 1px solid var(--border-color);
	outline-offset: -2px;
	transition: 0.5s;
	background-color: var(--content-color);
	box-shadow: 0 10px 15px rgb(0 0 0 / 60%);
	border-radius: 0 0 9px 9px;
    height: 0px;
	width: 200px;
    right: 20px;
    top: 70px;
}

.user-panel .user-list {
	margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


.user-panel .user-list tileName {
	border-bottom: 1px solid var(--border-color);
	width: 100px;
	display: flex;
}

.user-panel .user-list tile {
	padding: 0 5px 0 5px;
	font-size: 10px;
	display: flex;
}

content {}

main .verti {
	margin-right: 35px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}

main .hori {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
	max-width: 900px;
}

main .bground {
	padding: 12px;
	border-radius: 9px;
	border: 2px solid var(--border-color);
	background-color: var(--content-color);
	box-shadow: 0 10px 20px rgb(0 0 0 / 60%);
	min-width: 240px;
}

section {
	margin: 5 20 15 20px;
	min-width: 335px;
}

section .name {
	font-weight: bold;
	margin-bottom: 5px;
	color: var(--text-green-color);
	content: "";
	display: block;
	margin-block-end: 0.8em;
	unicode-bidi: isolate;
	overflow: hidden;
	border-bottom: 1px inset var(--border-color);
	max-width: 400px;
}

section #logsWindow, #errorsWindow {
	font-size: 11px;
	margin: 1em 0px;
	overflow-x: hidden;
	overflow-y: scroll;
	max-width: 900px;
	height: 415px;
	border-radius: 9px 0px 0px 9px !important;
}


log {
	width: 100%;
	margin: 0 0 0 20px !important;
	padding: 0 !important;
	line-height: 21px;
	padding: 0;
	border: 0;
	color: #FFF;
	outline: none;
	resize: none;
	font-family: monospace;
	unicode-bidi: isolate;
	white-space: pre-wrap;
	white-space-collapse: preserve;
	border-left: 1px solid gray;
}

log:before {
	color: var(--button-color);
	margin-left: -30px;
	width: 30px;
	display: inline-block;
	content: var(--nr);
	text-align: right;
}

log:hover {
	color: var(--text-menu-color);
	outline: 2px solid var(--content-blue-color);
	outline-offset: -1px;
	outline-width: thin;
}

footer {
	background-color: var(--panel-color);
	color: #fff;
	text-align: center;
	padding: 5px 0;
	position: fixed;
	height: 30px;
	width: 100%;
	bottom: -1;
	left: 0;
	right: 0;
	box-shadow: 0 0px 10px rgb(0 0 0 / 60%);
	z-index: 99;
}

main {
	z-index: 1;
	margin: 0 0 25px 250px;
	padding-bottom: 30px;
}

nav {
	font-size: 12px;
	margin-left: 0px;
	display: flex;
	align-items: center;
	margin: 14px 0 15px 50px;
	height: 35px;
	background-color: var(--content-color);
	border-radius: 15px;
}

nav .nav-go {
	cursor: pointer;
	margin: 0 10 0 10px;
	padding: 0 10 0 10px;
	border-bottom: 1px solid var(--border-color);
}

nav .nav-go:before {
	margin-left: -15px;
	content: ">"
}

nav .nav-go:hover {
	background-color: var(--content-color);
}

aside {
	
	border-color: #000000;
	overflow-x: visible;
	position: fixed;
	height: 100vh;
	transition: 0.5s;
	display: flex;
	justify-content: flex-end;
	z-index: 100;
}

aside .container {
	height: 100vh;
	width: 250px;
	margin-top: 0px;
	padding-top: 100px;
	margin-right: 0px;
	background-color: var(--content-color);
}

aside .logo {
	line-height: 1em;
	position: absolute;
	z-index: 102;
	top: 20px;
	left: 20px;
	width: 175px;
	text-align-last: center;
	font-size: 30px !important;
	font-weight: bold;
	color: var(--text-color);
	user-select: none;
}
aside .logo c {
	font-size: 35px !important;
	font-family: cursive;
	color: var(--text-green-color);
}

.sidebar {
	padding: 0 0 0 0;
    height: 80%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sidebar-btn {
	border: 1px solid black;
	position: absolute;
	margin: 5px -25px 0px 0px;
	font-size: 20px;
	cursor: pointer;
	color: white;
	padding: 10px 15px;
	background-color: var(--content-color);
	border: 1px solid var(--border-color);
	border-radius: 0 10px 10px 0;
	transition: 0.5s;
	z-index: 101;
	margin-right: 50px;
}
.stats {
	height: 160px;
}

.stats .main-panel {
	border: 0px solid var(--border-color);
	position: absolute;
	height: 60px;
	width: 0px;
	background-color: var(--content-color);
	border-radius: 0 0 0 30px;
	transition: 0.2s;
	z-index: 3;
}

.stats .main-panel .cores {
	background-color: var(--content-color);
	border: 1px solid var(--border-color);
    height: 50px;
}

.stats .main-panel stat{
	font-size: 12px;
}

.stats .cores-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-left: 140px;
    contain: content;
    transition: 1s;
	border-bottom: 1px solid var(--border-color);
    height: 160px;
	max-width: 500px;
	z-index: 1;
}

.stats .cores-panel .cores {
	background-color: var(--content-color);
	border: 1px solid var(--border-color);
    height: 75px;
	width: 45px;
}

#useProc, #fullRam, #useDisc {
	display: flex;
    flex-direction: column;
	position: absolute;
	margin-top: 10px;
	transition: 0.5s;
	width: 140px;
	height: 150px;
}

#useProc { margin-top: 0px; }
#fullRam { margin-top: 55px; }
#useDisc { margin-top: 110px; }
/* #useURam { margin-top: 160px; }
#useFRam { margin-top: 120px; } */
html:not([data-scroll="0"]) .stats .main-panel div {font-size: 11px; padding: 5px;}
html:not([data-scroll="0"]) .stats .main-panel { width: 100%; position: fixed !important; top: 70px; border: 1px solid var(--border-color); margin-left: -15px; 
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;}
	

html:not([data-scroll="0"]) .cores-panel { height: 0px; }


/* html:not([data-scroll="0"]) #useURam { margin-top: 10px;  margin-left: 240px; }
html:not([data-scroll="0"]) #useFRam { margin-top: 10px;  margin-left: 340px; } */


/* For mobile phones: */
@media only screen and (max-width: 800px) {
	body {
		font-size: 13px;
	}
	html:not([data-scroll="0"]) #useProc { margin-top: 0px; position: relative; }
	html:not([data-scroll="0"]) #fullRam { margin-top: 0px; position: relative; }
	html:not([data-scroll="0"]) #useDisc { margin-top: 0px; position: relative; }
	.stats .main-panel { border-radius: 0 0 0 10px; }
	.stats .main-panel .cores { min-width: 30vw; width: 100%; }
	content .hori {
		justify-content: space-evenly;
	}

	content .bground {
		min-width: 150px;
	}

	log {
		font-size: 7px;
		line-height: 1.6em;
	}

	aside {
		font-size: 18px;
		line-height: 2em;
		margin-left: -251px;
		height: 100%;
		border-right: 1px solid var(--border-color);
	}

	.sidebar-btn {
		margin-right: -50px;
	}

	main {
        margin-left: 0px;
        padding-right: 0px;
	}

	header {
		padding-left: 60px;
		padding-top: 0px;
		font-size: 12px;
	}
	message .msg .icoMessage {
		font-size: 11px !important;
	}
}

@media only screen and (min-width: 801px) {
	html:not([data-scroll="0"]) #useProc { margin-top: 0px; margin-left: 40px; }
	html:not([data-scroll="0"]) #fullRam { margin-top: 0px; margin-left: 190px; }
	html:not([data-scroll="0"]) #useDisc { margin-top: 0px; margin-left: 340px; }

	.sidebar-btn {
		display: none;
	}

	aside {
		margin-left: 0px !important;
	}
}

.menu_categ {
	width: 100%;
	color: var(--text-menu-color);
	font-family: 'OpenSans', sans-serif;
	padding-left: 22px;
	user-select: none;
	font-size: 17px;
	height: 55px;
    display: flex;
    align-items: center;
}

.menu_categ:hover{
	background-color: var(--panel-color);
	outline: 1px solid var(--border-color);
}

.menu_categ::after {
    position: absolute;
    right: 15px;
	content: ">"
}

.menu_item {
	width: 100%;
	color: var(--text-menu-color);
	font-family: 'OpenSans', sans-serif;
	font-size: 14px;
	user-select: none;
	padding-left: 40px;
	height: 35px;
    display: flex;
    align-items: center;
}

.menu_item:hover{
	background-color: var(--panel-color);
	outline: 1px solid var(--border-color);
}

.menu_item::after {
    position: absolute;
    right: 15px;
	content: ">"
}

.icoServer::before {
	margin-right: 5px;
	content: url('images/servers.svg');
	display: inline-block;
	width: 28px;
	height: 28px;
}

.icoOver::before {
	margin-right: 5px;
	content: url('images/overview.svg');
	display: inline-block;
	width: 28px;
	height: 28px;
}

.icoEwelin::before {
	margin-right: 5px;
	content: url('images/ewelinka.svg');
	display: inline-block;
	width: 28px;
	height: 28px;
}

.icoAvatar {
	transition: 0.5s;
	padding: 2px 2px 2px 10px;
}

.icoAvatar::after {
	padding: 4px;
	margin-left: 5px;
	background-color: var(--button-color);
	border: 2px solid var(--border-color);
	border-radius: 50%;
	margin-right: 5px;
	content: url('images/avatar.svg');
	display: inline-block;
	width: 35px;
	height: 35px;
}

.icoAvatar:hover {
	background-color: var(--button-color);
	border-radius: 35px;
}

.icoMessage::before {
	margin-right: 5px;
	content: url('images/message.svg');
	display: inline-block;
	width: 25px;
	height: 25px;
}

.txtCenter {
	display: flex;
    align-items: center;
}

message {
	top: -2px;
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 120;
    height: 0px;
    justify-content: center;
}

message .msg {
	padding: 0 10px 0 10px;
	width: 50%;
	height: 0px;
	color: var(--text-color);
	background-color: var(--body-color);
	border:1px solid var(--content-blue-color);
	border-radius: 0 0 10px 10px;
	min-width: 300px;
	transition: 0.3s;
	contain: content;
}

message .msg .icoMessage {
	height: 25px;
	font-size: 15px;
	display: flex;
    align-items: center;
}