body {
  font-family: Arial, Helvetica, sans-serif;
  width: auto;
  margin: 0px;
  background-color: black;
  background-image: url('../img/sample-data.png');
  background-repeat: repeat-x;
  background-position-y: center;
  height:95vh;
  
}

footer {
  color:#444;
  position: fixed;
  left:20px;
  top: 98%;
}

#timer {
  position: fixed;
  top: 5%;
  left: 5%;
  color: white;
}

#totals {
  position: fixed;
  width: 200px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 15px;
  color: white;
  font-size: 16px;
}

#totals table {
  width: 100%;
}

#totals h3 {
  margin-bottom:5px;

}

#totals .label {
  width: 50%;
  color:#777;
}

#controls {
  position: fixed;
  top: 0px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 10px;
}

#controls > div {
  padding: 10px;

  color: white;
  font-size: 11px;
  border-radius: 5px;
  margin-bottom: 5px;
}

#legend > div {
  padding: 2px;
  margin-bottom: 2px;
}

#switch {
  background-color: red;
  cursor: pointer;
  user-select: none;
  text-align: center;
}


.build {
  background-color: royalblue;
}

.stock {
  background-color: orangered;
}

.charge {
  background-color: rebeccapurple;
}

.dept7 {
  background-color:olivedrab;
  order:7;
}

.dept6 {
  background-color: royalblue;
  order:6;
}

.dept5 {
  background-color: seagreen;
  order:5;
}

.dept4 {
  background-color: rebeccapurple;
  order:4;
}

.dept3 {
  background-color: darkcyan;
  order:3;
}

.dept2 {
  background-color: orange;
  order:2;
}

.dept1 {
  background-color: orangered;
  order:1;
}

.none {
  background-color: #333;
  order:0;
}


