body {
    font-family: 'Roboto Mono', monospace;
	margin: 0;
	background-color: #000;
	color: black;
	font-size: 10px;
	line-height: 24px;
	overscroll-behavior: none;
	position: fixed;
}


.property-name {
	display:none;
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

canvas {
	display: block;
}



#info {
    display:none;
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
}

a, button, input, select {
	pointer-events: auto;
}

.dg.ac {
    display:none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2 !important; /* TODO Solve this in HTML */
}

#overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	background-color: #000000;
	color: #ffffff;
}

#overlay > div {
	text-align: center;
}

#overlay > div > button {
	height: 20px;
	background: transparent;
	color: #ffffff;
	outline: 1px solid #ffffff;
	border: 0px;
	cursor: pointer;
}

#overlay > div > p {
    display:none;
	color: black;
	font-size: 10px;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  }

  .range-slider{
	position: absolute;
	bottom: 20px;
	left: 20px;
  }
  
  .range-slider .input-range {
	-webkit-appearance: none;
	width: 300px;
	height: 5px;
	/*border-radius: 5px;*/
	background: black;
	outline: none;
	
  }
  .range-slider .input-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: black;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
  }
  .range-slider .input-range::-webkit-slider-thumb:hover {
	background: black;
  }
  .range-slider .input-range:active::-webkit-slider-thumb {
	background: black;
  }
  .range-slider .input-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: black;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
  }
  .range-slider .input-range::-moz-range-thumb:hover {
	background: black;
  }
  .range-slider .input-range:active::-moz-range-thumb {
	background: black;
  }
  .range-slider .range-value {
	display: inline-block;
	position: relative;
	width: 60px;
	color: white;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	/*border-radius: 3px;*/
	background: black;
	padding: 5px 10px;
	margin-left: 7px;
  }
  .range-slider .range-value:after {
	position: absolute;
	top: 8px;
	left: -7px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	/*border-right: 7px solid black;*/
	/*border-bottom: 7px solid transparent;*/
	content: "";
  }

  .range-slider span{
	  font-size: 12px;
  }
  
  ::-moz-range-track {
	background: black;
	border: 0;
  }
  
  input::-moz-focus-inner {
	border: 0;
  }
  
  a{
    text-decoration:none;
    color:white;
}
.botoes{
	font-family: 'Roboto Mono', monospace;
	font-size: 0.8vw;
	position: absolute;
	top:20px;
	z-index: 2;
	border: solid 1px  rgba(255, 255, 255, 0.25);
	/*border-radius: 50px;*/
	padding:10px;
	color: rgba(255, 255, 255, 0.25);
	background-color: rgba(0, 0, 0, 0.25);
}
.botoes:hover {
    border: solid 1px  red;
    color: red;
}
.dir{
	right:3vw;
}
.esq{
	left:3vw;
}

.baixo {
    top: 90vh;
}
@media all and (max-width:1000px) {
.botoes{
     font-size: 3.3vw;
    }
}
@media all and (max-width:767px) {
.botoes{
     font-size: 3.3vw;
}
}
@media all and (max-width:568px) {
.botoes{
     font-size: 3.3vw;
}
}


