html {
	background-color: #16181b !important;
}

body {
	background-color: #16181b !important;
	overflow: hidden;
	height: 100%;
}

.cover-container {
	background: rgba(0,0,0,0.35);
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}

@font-face {
	font-family: 'Ubuntu Mono';
	src: url('../font/UbuntuMono-Regular.woff2') format('woff2'), url('../font/UbuntuMono-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../font/Ubuntu-Bold.woff2') format('woff2'), url('../font/Ubuntu-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../font/Ubuntu-Regular.woff2') format('woff2'), url('../font/Ubuntu-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../font/Ubuntu-Light.woff2') format('woff2'), url('../font/Ubuntu-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../font/Ubuntu-Medium.woff2') format('woff2'), url('../font/Ubuntu-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

.hidden {
	visibility: hidden;
}

.shell {
	width: 800px;
	max-width: calc(100vw - 4rem);
	height: 480px;
	max-height: calc(100vh - 2rem);
	background-color: #2c2c2c;
	border-radius: 7px;
	box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
	transition: width 100ms ease-in-out, height 100ms ease-in-out;
}

.shell.fullscreen {
	width: 100vw !important;
	max-width: 100vw !important;
	height: 100vh !important;
	max-height: 100vh !important;
	top: 0 !important;
	left: 0 !important;
	background-color: #2c2c2c;
	border-radius: 7px;
	box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
	transition: top 50ms ease-in-out, left 50ms ease-in-out;
}

.shell .top {
	height: 36px;
	background-color: transparent;
	font-family: 'Ubuntu';
	font-weight: 700;
	font-size: 15px;
	color: white;
	text-shadow: 0px 0px 6px #000;
	line-height: 36px;
	overflow: hidden;
}

.shell .top .title {
	background: linear-gradient(0deg, rgba(192,192,192,0) 0%, rgba(192,192,192,0) 95%, rgba(192,192,192,0.1) 100%);
	width: calc(100% - 12px);
	padding-left: 100px;
	margin: auto;
}

.shell .top .buttons {
	width: 100px;
	margin-right: 2px;
	float: right;
	overflow: hidden;
}

.shell .top .buttons > a {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 9px 6px;
	line-height: 16px;
	font-weight: 300;
	color: white;
	text-decoration: none;
	cursor: pointer;
	border-radius: 100%;
	overflow: hidden;
}

.shell .top .buttons > a.minimize {
	font-size: 0.8rem;
}

.shell .top .buttons > a.maximize {
	font-size: 0.65rem;
}

.shell .top .buttons > a.close {
	font-size: 1.4rem;
}

.shell .top .buttons > a:hover {
	background-color: #4a4a4a;
}

.shell .top .buttons > a.active {
	background-color: #df4a16;
}

.shell .top .buttons > a.active:hover {
	background-color: #e95825;
}

@supports (--css: variables) {
	.shell .terminal {
		--color: #babdb6;
		--background: #1a1a1a;
	}
	.shell .terminal.content {
		font-size: calc(var(--size, 1) * 17px);
	}
}

.shell .content {
	background-color: var(--background, #1a1a1a) !important;
	height: calc(100% - 36px);
}

.terminal::-webkit-scrollbar-track {
	border: 1px solid var(--color, #babdb6);
	background-color: var(--background);
}

.terminal::-webkit-scrollbar {
	width: 10px;
	background-color: var(--background);
}

.terminal::-webkit-scrollbar-thumb {
	background-color: var(--color, #babdb6);
}

.cmd {
	background-color: inherit;
}

.cmd span.cursor {
	animation: none;
	width: auto;
	background-color: var(--background, #1a1a1a);
}

.cmd, .cmd span:not(.fas):not(.far):not(.fa), .terminal, .terminal-output > :not(.raw), .terminal-output > :not(.raw) a, .terminal-output > :not(.raw) span:not(.fas):not(.far):not(.fa) {
	font-family: 'Ubuntu Mono', monospace;
}

.cmd, .cmd div, .cmd span, .terminal, .terminal-output > :not(.raw) a, .terminal-output > :not(.raw) div, .terminal-output > :not(.raw) span {
	font-size: calc(var(--size, 1) * 17px);
}

.cmd-editable, .terminal, .terminal .terminal-fill {
	padding: 4px;
}
