@import "https://fonts.googleapis.com/css?family=Inconsolata";
html {
  min-height: 100%;
}

body {
  box-sizing: border-box;
  height: 100%;
  /* background-color: #000000; */
  /* background-image: radial-gradient(#11581E, #041607), url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif"); */
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Helvetica Neue", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  /* color: rgba(128, 255, 128, 0.8);
  text-shadow: 0 0 1ex #33ff33, 0 0 2px rgba(255, 255, 255, 0.8); */
  padding: 0px;
  margin: 0px;
}

.bg-primary {
  background-color: #026ab1;
  color: #81cbfe;
}

/* body {
  font-family: "Helvetica Neue", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #3c4043;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  line-height: 1.53846154;
} */

.noise {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: .02;
}

.overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  background-size: auto 4px;
  z-index: 1;
}

.overlay::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(2%, rgba(32, 128, 32, 0.2)), color-stop(3%, rgba(32, 128, 32, 0.8)), color-stop(3%, rgba(32, 128, 32, 0.2)), to(transparent));
  background-image: linear-gradient(0deg, transparent 0%, rgba(32, 128, 32, 0.2) 2%, rgba(32, 128, 32, 0.8) 3%, rgba(32, 128, 32, 0.2) 3%, transparent 100%);
  background-repeat: no-repeat;
  -webkit-animation: scan 7.5s linear 0s infinite;
          animation: scan 7.5s linear 0s infinite;
}

@-webkit-keyframes scan {
  0% {
    background-position: 0 -100vh;
  }
  35%, 100% {
    background-position: 0 100vh;
  }
}

@keyframes scan {
  0% {
    background-position: 0 -100vh;
  }
  35%, 100% {
    background-position: 0 100vh;
  }
}
.terminal {
  box-sizing: inherit;
  position: absolute;
  height: 100%;
  width: 1000px;
  max-width: 100%;
  padding: 4rem;
  text-transform: uppercase;
}

.output {
  color: rgba(128, 255, 128, 0.8);
  text-shadow: 0 0 1px rgba(51, 255, 51, 0.4), 0 0 2px rgba(255, 255, 255, 0.8);
}

.output::before {
  content: "> ";
}

/*
.input {
  color: rgba(192, 255, 192, 0.8);
  text-shadow:
      0 0 1px rgba(51, 255, 51, 0.4),
      0 0 2px rgba(255, 255, 255, 0.8);
}

.input::before {
  content: "$ ";
}
*/
a {
  color: #fff;
  text-decoration: none;
}

/* a::before {
  content: "[";
}

a::after {
  content: "]";
} */

.errorcode {
  color: white;
}

.vbox {
  display: table;
  border-spacing: 0;
  position: relative;
  height: 100%;
  width: 100%;
}

.navbar-header {
  position: relative;
}

.aside-md {
  width: 240px;
  height: auto;
}

.navbar-brand {
  float: none;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  height: auto;
  line-height: 50px;
  display: inline-block;
  padding: 0 15px;
}

.padder {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
  width: 140px;
  height: 25px;
}

.panel-body {
  padding: 15px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-offset-2 {
  margin-left: 16.66666667%;
}

.col-md-8 {
  width: 66.66666667%;
}

.panel-primary {
  border-color: #337ab7;
}

.panel {
  margin-bottom: 50px;
  border-radius: 2px;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-heading {
  border-radius: 2px 2px 0 0;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-body {
  padding: 15px;
}

p, li, label {
  font-size: 15px;
}

input[type="text"], input[type="number"],
input[type="text"]:active,input[type="text"]:focus,input[type="text"]:focus-visible
{
  border: none !important;
  border-bottom: solid 1px black !important;
}

input[type="text"]:focus-visible:focus-visible {
  outline: none;
}

input[type="number"]:focus-visible:focus-visible {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button{
  padding: 8px 12px;
  background-color: #368bc4;
  color: #fff;
  border-radius: 5px;
  border-color: #368bc4;
}

#overlay{
  /* display: none; */
  position: absolute;
  z-index: 100;
  height: 20px;
  width: 20px;
  left: 49%;
  top: 49%;
}

@-webkit-keyframes spinner-grow{
  0%{
    transform:scale(0)
  }
  50%{
    opacity:1;
    transform:none
  }
}
@keyframes spinner-grow{
  0%{
    transform:scale(0)
  }
  50%{
    opacity:1;
    transform:none
  }
}
.spinner-grow{
  display:inline-block;
  width:2rem;
  height:2rem;
  vertical-align:-.125em;
  background-color:currentColor;
  border-radius:50%;
  opacity:0;
  -webkit-animation:.75s linear infinite spinner-grow;
  animation:.75s linear infinite spinner-grow;
}
.spinner-grow-sm{
  width:1rem;
  height:1rem
}
@media (prefers-reduced-motion:reduce){
  .spinner-border,.spinner-grow
  {
    -webkit-animation-duration:1.5s;
    animation-duration:1.5s
  }
}
.spinner-grow {
  margin: 0 auto;
}