*
{
	font-weight: 600;
	font-family: 'Tahoma';
}

body
{
	color: #fff;
	background-color: #0e0e17;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.loadingscreen
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #0e0e17;
	opacity: 1;
	z-index: 9999;
	pointer-events: none;
}

.loadingpage
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.loadingpage .ptr 
{
	width: calc(100% - 262px);
	height: calc(100vh - 100px);
	margin-left: 250px;
	position: relative;
}

.loadingpage .ptr .loader
{
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: #FF3D00;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
}

.loadingscreen .loader
{
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: #FF3D00;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
}

@keyframes rotation
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
} 

#title
{
	margin-left: 250px;
	width: calc(100% - 250px);
}

#title .title
{
	width: fit-content;	
	padding: 10px;
	border-radius: 4px;
	background: #27273f;
}

#title input
{
	width: 100%;
	box-sizing: border-box;
	color: #fff;
	border: none;
	border-bottom: 1px solid #61619e;
	background-color: #27273f;
	font-size: 14px;
	padding: 6px;
  }

.tippy-box[data-theme~='default']
{
	background-color: #353547;
	color: #fff;
}

.tippy-box[data-theme~='default'][data-placement^='top'] > .tippy-arrow::before{border-top-color: #353547;}
.tippy-box[data-theme~='default'][data-placement^='bottom'] > .tippy-arrow::before{border-bottom-color: #353547;}
.tippy-box[data-theme~='default'][data-placement^='left'] > .tippy-arrow::before {border-left-color: #353547;}
.tippy-box[data-theme~='default'][data-placement^='right'] > .tippy-arrow::before {border-right-color: #353547;}

#content
{
	width: calc(100% - 262px);
	max-height: calc(100vh - 90px);
	padding: 10px;
	margin-left: 250px;

	margin-top: 10px;
	border-radius: 4px;
	background: #27273f;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;

	overflow-x: hidden;
	overflow-y: auto;
}

#content[nodraw]
{
	padding: 0;
	background: none;
}

#sidebar
{
	width: 240px;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: #27273f;
}

input {outline:none;}

.shadow
{
	-webkit-box-shadow: 6px 0px 12px 2px rgba(39, 39, 63, 0.69);
	-moz-box-shadow: 6px 0px 12px 2px rgba(39, 39, 63, 0.69);
	box-shadow: 6px 0px 12px 2px rgba(39, 39, 63, 0.69);
}

.nobackground
{
	background: rgba(0,0,0,0);
	background-color: none;
}

#sidebar .button
{
	width: 220px;
	height: 44px;
	background: #3a3a5f;
	position: relative;
	margin-top: 4px;
	margin-left: 6px;
	border-radius: 4px;
	cursor: pointer;
	transition: .3s;
	border-right: 4px solid #3a3a5f;
}

#sidebar .button.active
{
	border-right: 4px solid #6c5c70;
}

#sidebar .button:hover
{
	background: #4e4e7e;
	border-right: 4px solid #4e4e7e;
}
#sidebar .button:hover.active
{
	border-right: 4px solid #6c5c70;
}

#sidebar .button:active
{
	background: #75418b;
	border-right: 4px solid #75418b;
}
#sidebar .button:active.active
{
	border-right: 4px solid #6c5c70;
}

#sidebar .button .icon
{
	width: 36px;
	height: 36px;
	margin-top: 4px;
	margin-left: 4px;
	border-radius: 4px;
	background:#61619e;
	position: absolute;
}

#sidebar .button .text
{
	position: absolute;
	margin-left: 54px;
	width: 160px;
	height: 44px;
	align-items: center;
	display: flex;
}

#sidebar .button .icon i
{
	margin-top: 10px;
	margin-left: 7px;
}

#sidebar .button.profile
{
	bottom: 10px;
	position: fixed;
	height: 70px;
}

#sidebar .button.profile .icon
{
	height: 60px;
	width: 60px;
	overflow-x: hidden;
	overflow-y: hidden;
}

#sidebar .button.profile .icon img
{
	height: 60px;
	width: 60px;
}

#sidebar .button.profile .text
{
	position: absolute;
	margin-left: 74px;
	width: 160px;
	height: 54px;
	padding-top: 16px;
	display: block;
}

#sidebar .button.profile .text .nick
{
	overflow-x: hidden;
	width: 150px;
	text-overflow: ellipsis;
	display: inline flow-root list-item;
}

#sidebar .button.profile .text .gotoprofile
{
	font-size: 10px;
	color: #00000081;
}


img::selection {
	background: transparent;
}

js
{
	display: none;
}

css
{
	display: none;
}