.navbar {
	position: fixed;
	display: flex;
	width: 100%;
	background-color: #13131399;
	backdrop-filter: blur(6px);
	overflow: hidden;
	z-index: 9;
}
.navbar_Desktop {
	height: 75px;
	top: 0px;
	font-size: 20px;
}
.navbar_Mobile {
	height: 66px;
	bottom: 0;
	font-size: 16px;
}

.navbar_Icon {
	margin-top: 25px;
	height: 65%;
	width: auto;
}
.navbar_Text, #username {
	bottom: 10%;
	color: #fff;
	font-family: arial;
	font-size: auto;
	text-align: center;
	font-weight: bold;
	margin-top: 5px;
}

#avatar {
	margin-top: 25px;
	height: 50%;
	width: auto;
}
#border {
	margin-top: 25px;
	height: 65%;
	width: auto;
}
.avatar {
	position: relative;
	display: inline-block;
	width: auto;
	height: 50%;
	border: none;
	top: -5px;
}
#avatar-img, #border-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
#avatar-img {
	width: auto;
	height: 120%;
	border-radius: 999px;
	background-image: url('ui/nopic.png');
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
}
#border-img {
	width: auto;
	height: 150%;
	z-index: 2;
}
#username {
	position: absolute;
	margin-bottom: -10px;
	text-wrap: nowrap;
	width: 25%;
}

.profileInContext {
	display: flex;
	height: 100px;
}
.context_data{
	color: #fff;
	font-family: arial;
}
#usernameInContext {
	font-size: 24px;
	font-weight: bold;
	text-decoration: underline;
	margin-left: 10px;
}
#creditsInContext {
	display: flex;
	margin-left: 15px;
	padding-top: -5px;
	pointer-events: none;
}
#creditsInContext img {
	margin-top: -15px;
}
.context_avatar {
	position: absolute;
	top: 0;
	rght: 5px;
	height: 120px;
	width: 120px;
	pointer-events: none;
}
.avatarInContext {
	position: fixed;
	z-index: 1;
	right: 15px;
	margin-top: 30px;
	height: 96px;
	width: auto;
	border-radius: 999px;
}
.borderInContext {
	right: 5px;
	position: fixed;
	z-index: 2;
	margin-top: 20px;
	height: 120px;
	width: auto;
}
.navbar_Section {
	width: 25%;
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	transition: 0.25s linear;
	cursor: pointer;
}
.navbar_Section:hover {
	background-color: #ffffff22;
}

.navbar_ContextMenu {
	position: fixed;
	background-color: #13131399;
	width: calc(25% - 2px);
	border: 2px solid #fff;
	line-height: 0px;
	text-wrap: nowrap;
	backdrop-filter: blur(6px);
	max-height: calc(100vH - 80px);
	overflow-y: auto;
	z-index: 99;
}
.navbar_ContextMenu a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	height: 10px;
	padding-top: 7px;
	font-family: arial;
	transition: 0.25s linear;
	padding-top: 25px;
}
.navbar_ContextMenu p {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	font-family: arial;
}
.navbar_ContextMenu a:hover {
	background-color: #ffffff22;
}
.context_Desktop {
	top: 75px;
	border-radius: 0px 0px 15px 15px;
}
.context_Mobile {
	bottom: 66px;
	border-radius: 15px 15px 0px 0px;
}
.context_Mobile a, .context_Mobile p {
	font-size: 12px;
}