.fauxterm-input {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 0px;
	height: 0;
	overflow: hidden;
	padding: 0;
	opacity: 0;
}

.fauxterm {
	background: #000;
	min-width: 320px;
	min-height: 240px;
	color: #228b22;
	font-family: 'VT323', monospace;
	font-weight: 400;
	font-smooth: never;
	-webkit-font-smoothing : none;
	font-size: 20pt;
	padding: 1px;
	word-wrap: break-word;
	white-space: pre-wrap;
	display: block;
	line-height: 1.2em;
	overflow-y: scroll;
	position: relative;
}

.fauxterm-focus {
	text-shadow: none;
	color: #228b22;
}

.fauxterm .red {
	color: red;
}
.fauxterm .blue {
	color: blue;
}
.fauxterm .white {
	color: #fff;
}
.fauxterm .bold {
	font-weight: bold;
}

.fauxterm-bell {
	width: 0.1em;
	height: 1.1em;
	line-height: 1.2em;
	background: #fff;
	position: absolute;
	animation: fauxterm-flash 1s infinite;
}

@keyframes fauxterm-flash {
	0% {
		visibility: visible;
	}
	49% {
		visibility: visible;
	}
	50% {
		visibility: hidden;
	}
	99% {
		visibility: hidden;
	}
	100% {
		visibility: visible;
	}
}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #111;
}

.console-container {
  font-family:VT323;
  font-size:20pt;
  text-align:left;
  width:600px;
  display:block;
  color:white;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
.console-underscore {
   display:inline-block;
   color: #000;
  position:relative;
  top:-0.14em;
  left:10px;
}
