
#topbar {
	xborder:1px solid red;
	xpadding:5px;
	background-color: #22262a;
	background-color: #141719;
	margin-bottom:20px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	width: 100%;
    height: 50px;
	position:relative;
	box-shadow: 0px 2px 4px rgb(0 0 0 / 70%);

	display: flex;
	justify-content: space-between;
    align-items: center;
	
}

#topbar > .part {
	xborder:1px solid magenta;
    min-width: 50px;
    width: 30%;
    height: 100%;

	display: flex;
	align-items: center;

}

#topbar > .part.screen {
	border: 3px double grey;
	height: 100%;

	xjustify-content: start;
	background-color: #101215;
	background-image: repeating-linear-gradient(180deg, #0e0e0e, #0e0e0e 0.2em, #101215 0.2em, #101215 0.4em);
	font-family: 'WhiteRabbit';
	font-size: 1em;
}


/* left side of top bar */
#topbar > .left {
	xflex: 1; 
	justify-content: start;
	border-radius: 0px 40px 40px 0px;
	
}

#topbar > .left > .icon-container {
	xborder: 1px solid red;
	display:flex;
	align-items: center;
	width:30px;
	height:30px;
	margin:0px 10px 0px 20px;
	aspect-ratio:1/1;
}

#topbar > .left > .icon-container > img.icon {
	border: 2px solid rgba(255,255,255,0.3); /* 18b495*/
	border-radius:20px;
	width:100%;
	height:100%;
	box-shadow: 2px 2px 3px 1px rgba(0, 0, 0,0.4);
	aspect-ratio:1/1;
}

#topbar > .left > .title {
	xborder:1px solid grey;
	xcolor:grey;
	font-size:1.2em;
	display:inline-block;
	xletter-spacing: 2px;
	word-spacing: 5px;
}




/* middle of top bar */
#topbar > .mid {
	xborder:1px solid lime;
	justify-content: space-evenly;
    flex: 1;
	margin: 0px 5px 0px 5px;
}



#topbar > .mid > a.button {
	border:1.5px solid black;
	xborder-radius:20px;
	overflow:hidden;
	padding:0px 10px 0px 10px;
	background-color: grey;

	height:100%;
	max-height:30px;
	min-height:30px;


	vertical-align:middle;
	xbackground-color: rgba(0,0,0,0.5);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);
	text-decoration:none;
	transition: all 0.1s ease 0s;
	
	user-select:none;
	margin-right:10px;
	color:#bfbfbf; /*     a6a6a6    */
	xtext-shadow: 1px 1px 0px black;

	display:inline-flex;
	flex-direction:row;
    justify-content: center;
    align-items:center;
	
}	

#topbar > .mid > a.button:hover {
	color: #1ccaa7;
	border-color: #1ccaa7;
	background-color: rgba(0,0,0,0.2);
	border-radius:3px;
}

#topbar > .mid > a.button:active {
	background-color: #0074db;
}

#topbar > .mid > a.button > img.link-icon {
	xmax-height:20px;
	height:80%;
	max-height:50px;
	max-width:50px;
	xvertical-align:middle;
	xmargin-right:5px;
	filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.5));
}	


#topbar > .mid > a.button:hover img.link-icon {
	border-radius: 50px;
	box-shadow: 0px 0px 0px 2px #1ccaa7;
}	

#topbar > .mid > a.button > span {
	xborder-radius: 50px;
	xbox-shadow: 0px 0px 2px 2px #16e980;
	xborder:1px solid grey;
	font-family:consolas;
	xline-height:100%;
	margin-left: 5px;
}	



/* right side of top bar */
#topbar > .right {
	justify-content: center;
    border-radius: 40px 5px 5px 40px;
	
}

#topbar > .right > .status-cont {
	xjustify-content: start;
 
}

#topbar > .right > .status-cont > .status {
    padding: 5px;
    transition: opacity 0.2s;
    opacity: 0;
}


.orange {
    color: #ffd748;
    text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 0vw #FA1C16, 0 0 .4vw #FED128, 1px 1px 0px #806914;
}

.red {
    color: rgb(255, 152, 152);
    text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 0vw #FA1C16, 0 0 .4vw #FED128, 1px 1px 0px #806914;
}

.green {
    color: #b4ffbf;
    text-shadow: 0 0 1vw #16fab9, 0 0 3vw #16fab9, 0 0 10vw #16fab9, 0 0 0vw #16fab9, 0 0 .4vw #FED128, 1px 1px 0px #806914;
}

.blue {
    color: #ffffff;
    text-shadow: 0 0 0.5vw #00c8ff, 0 0 0vw #16c9fa, 0 0 0vw #16c9fa, 0 0 0vw #16c9fa, 0 0 .4vw #28feba, 1px 1px 0px #806914;
}

.white {
    color: white;
    text-shadow: 0 0 1vw #fffbc1, 0 0 3vw #fffbc1, 0 0 10vw #fffbc1, 0 0 0vw #fffff8, 0 0 .4vw #FED128, 1px 1px 0px #7e7a68;
}
