::selection {
  background: #7ebdf7;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}
body {
  font-size: 10pt;
  font-family: monospace;
  color: rgba(198, 198, 198, 1);
  background-color: black;
}
#container {
  padding: 0.1em 1.5em 1em 1em;
}
#cmdline {
  outline: none;
  background-color: transparent;
  margin: 0;
  width: 100%;
  font: inherit;
  border: none;
  color: inherit;
}
#output {
  clear: both;
  width: 100%;
}
#prompt {
  white-space: nowrap;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-box-pack: center;
  -moz-box-orient: vertical;
  display: box;
  box-pack: center;
  box-orient: vertical;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.prompt-color {
  color: rgba(255, 255, 255, 0.9);
}
.input-line {
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  clear: both;
}
.input-line > div:nth-child(2) {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
}
