﻿html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}
body {
  font-family: Consolas, Arial;
  margin-bottom: 60px;
}
body.theme .main-body,
body.theme .main-body .form-page .command-input:focus + i.input-blinker::after {
  color: #009a00;
}
body.theme a {
  color: #009a00;
}
body.theme a:hover {
  color: #006700;
}
body .table {
  color: white;
}
body a {
  color: #efefef;
}
body a:hover {
  color: #afafaf;
  text-decoration: dotted;
}
body .header-bar {
  /*position:fixed;
      top:0;
      width:100%;
      background-color: white;
      border: dimgray 1px solid;
      border-bottom: gray 1px solid;*/
  padding-top: 0;
  height: 35px;
  padding-bottom: 0;
}
body .header-bar .container-fluid {
  height: 35px;
  align-items: baseline;
}
body .header-bar .title {
  color: black;
  padding: 6px 24px;
  font-size: 16px;
  display: inline-block;
}
body .header-bar .option-button {
  padding-right: 15px;
}
body .main-body {
  margin-top: 35px;
  background-color: black;
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* overflow: hidden;*/
}
body .main-body .form-page {
  padding-top: 45px;
}
body .main-body .form-page .command-indicator {
  display: inline-block;
  /*                 white-space: pre-wrap;
                  max-height: 17px;
    line-height: 0px;
    width: 168px;*/
}
body .main-body .form-page .command-input {
  width: auto;
  background-color: black;
  border: none;
  caret-color: black;
  text-transform: lowercase;
}
body .main-body .form-page .command-input:focus {
  background-color: black;
  border: none;
  outline: 0;
}
body .main-body .form-page .command-input:focus + i.input-blinker::after {
  content: '_';
  color: white;
  font-weight: bold;
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  opacity: 1;
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}