
body{
  margin: 0px;
  font-family: Verdana;
  background-color: #0c0c0c;
}

canvas{
  display: block;
}

input, select{
  padding: 5px;
  font-size: 18px;
  border: 1px white solid;
  background-color: #222222;
  color: white;
  width: 50px;
}

.panel{
  width: 1000px;
  box-sizing: border-box;
  background-color: #000000;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 10px;
  color: white;

  text-align: center;
  border-right: #ff2222 1px solid;

  transition: width 0.5s;

  z-index: 9999;
}

.panel.collapsedPanel *{

  display: none;

}

h4{
  color: #dd3333;
}

.key{
  text-align: left;
  padding-top: 10px;
  padding-bottom: 28px;
  padding-left: 14px;
  padding-right: 14px;
}

.key div{
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: white 1px solid;
  transform: translateY(3px);
}

.key img{
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: white 1px solid;
  transform: translateY(3px);
}

.key span{
  /* float: right; */
  display: inline-block;
  padding: 10px;
  margin-right: 5px;
  margin-left: 5px;
  transform: translateY(-10px);
}

.key th{
  padding: 10px;
  padding-left: 5px;
  text-align: left;
}

table, th, td {
  border-collapse: collapse;
}
th, td {
  padding: 5px;
  text-align: left;
}
table tr:nth-child(even) {
  background-color: #000;
}
table tr:nth-child(odd) {
  background-color: #222;
}




/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff0000;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #00ff00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #00ff00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

button{
  border: none;
  color: black;
  background-color: white;
  padding: 10px;
}

.collapse{
  position: fixed;
  top: calc(50% - 29px);
  left: 1000px;
  color: white;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  background-color: #550000;
  box-sizing: border-box;

  transition: left 0.5s;
  z-index: 9999;
}

.startButton{

  font-size: 18px;
  padding: 25px;

  padding-top:6px;
  padding-bottom:6px;

  cursor: pointer;
  outline: none;
  background-image: url(./images/blood.png);
  color: white;
  font-weight: bold;
  background-size: 200px;
  border-radius: 10%;
  background-position: center;
  box-sizing: border-box;
  margin-top: 10px;

}

.secondaryPanel{

  background-color: #000000;
  padding: 30px;
  box-sizing: border-box;
  color: red;

}

.scenarioPanel{

  position: absolute;
  left: 50px;
  top: 0px;
  width: 300px;
  color: white;
  box-sizing: border-box;
  margin-top: 100px;
  text-align: left;
  color: red;

}

.scenario{

  padding: 20px;
  background-color: black;
  margin-bottom: 15px;
  box-sizing: border-box;

}

.fancyCheckbox{

  color: red;
  padding: 5px;

}
