/**
 * Debug layer
 */
.debugLayer {
  border: 1px solid #363636;
  background-color: rgba(0, 0, 0, 0.4);
  border-top-right-radius: 3px;
  box-shadow: 0 0 10px #363636;
  width: 75%;
  height: 30%;
  bottom: 0;
  position: fixed;
  padding: 5px;
  overflow: auto;
  font-size: 12px;
  cursor: pointer;
  color: #ffffff;
  z-index: 100000;
}
.debugLayer.minimized {
  width: 10px;
  left: 0;
  overflow: hidden;
  font-size: 0;
}
.debugLayer:hover {
  background-color: #000000;
}
.debugLayer ul {
  list-style-type: none;
  padding: 0 10px;
  margin: 0;
}
.debugLayer ul li:hover {
  background-color: #ededed;
  color: #000000;
}
