* {
  margin: 0;
  overflow: hidden;
  background-color: rgb(57, 57, 57);

  font-family: monospace;
}

html {
  background-color: rgb(57, 57, 57);
}

#myCanvas {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  border-radius: 2px;
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.25);
}

#canvas3D {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  border-radius: 2px;
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.25);

  cursor: pointer;
}

#container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  overflow: visible;

  background-color: transparent;

  pointer-events: none;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  z-index: 1;
}

/* NAV BAR  */
ul {
  position: absolute;
  margin: 0;
  padding: 0;

  list-style-type: none;

  background-color: transparent;

  pointer-events: all;
}

ul.horizontal {
  width: auto;
  height: 50px;

  top: 0px;
  left: 75px;
  margin-left: 5px;

  text-align: center;
}

ul.vertical {
  width: 50px;
  height: auto;

  top: 75px;
  left: 0px;
  margin-left: 5px;

  text-align: left;
}

li {
  display: inline-block;

  width: 50px;
  height: 49px;

  margin: 0;
  padding: 0;

  color: #b6b6b6;
  border-bottom: 1px white solid;

  font-size: 12px;
  text-decoration: none;
}

li:hover {
  background-color: #555;
  color: white;
  cursor: pointer;
}

li.hidden {
  display: none;
}

/* OPTIONS PANEL */
#optionsPanel {
  display: block;
  position: relative;

  width: 200px;
  height: auto;

  top: 75px;
  left: 75px;

  background-color: transparent;

  pointer-events: all;
  visibility: hidden;
}

.btn {
  position: relative;
  float: left;

  width: 100%;
  height: 50px;

  padding-left: 20px;

  font-size: 12px;
  line-height: 50px;

  background-color: rgba(255, 255, 255, 0.75);
}

.btn:hover {
  background-color: rgb(255, 255, 255);
}

input[type="number"] {
  background-color: rgba(255, 255, 255, 0.75);
  border-style: none;
  width: 40px;
  height: 20px;

  margin: 10px 0 10px 0;

  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

/* OLD SHIT */
/* 
label {
  background-color: transparent;

  pointer-events: none;

  -webkit-touch-callout: none;
  -webkit-user-select: none; 
  -khtml-user-select: none; 
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
 */
