body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
}
.dropdown {
	position: absolute;
    top: 10px;
    left: 90px;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #fff;
    color: #333;
	height: 40px;
	width: 150px;
    border-radius: 5px;
    font-size: 16px;
	font-weight: bold;
    border: 1px solid grey;
	background-color: #333;
    cursor: pointer;
	height: fit-content;
	border-radius: 10px;
	min-width: 160px;
  }

  .dropbtn {
	background-color: #333;
	color: white;
	padding: 16px;
	font-weight: 1000;
	font-size: 16px;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	min-width: 160px;
  }

  .dropdown-content {
	display: none;
	position: absolute;
	background-color: rgba(0,0,0, 0.6);
	min-width: 160px;
	border-radius: 10px;
	z-index: 1;
  }

  .dropdown:hover .dropdown-content {
	display: block;
  }

  .submenu {
	position: relative;
  }

  .submenu-btn {
	background-color: rgba(0, 0, 0, 0.01);
	color: white;
	padding: 12px 16px;
	border: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	display: block;
  }

  .submenu-content {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	margin-top: 10px;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }

  .submenu-btn:hover {
	text-decoration: underline;
	}

  .submenu:hover .submenu-content {
	display: block;
  }

  .submenu-content a {
	font-weight: lighter;
	font-size: smaller;
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	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;
}

.lil-gui {
	z-index: 2 !important; /* TODO Solve this in HTML */
}

.survey {
	position: absolute;
  	top: 10px;
  	right: 10px;
	#sara {
		display: none;
	}
}

@media all and ( max-width: 640px ) {
	.lil-gui.root { 
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}

#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

	#overlay button {
		background: transparent;
		border: 0;
		border: 1px solid rgb(255, 255, 255);
		border-radius: 4px;
		color: #ffffff;
		padding: 12px 18px;
		text-transform: uppercase;
		cursor: pointer;
	}

#notSupported {
	width: 50%;
	margin: auto;
	background-color: #f00;
	margin-top: 20px;
	padding: 10px;
}
#currentScene {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
#sceneSelector {
    position: absolute;
    top: 10px;
    left: 90px;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #fff;
    color: #333;
	height: 40px;
	width: 150px;
    border-radius: 5px;
    font-size: 16px;
	font-weight: bold;
    border: 1px solid grey;
    cursor: pointer;
}

#sceneSelector:focus {
    outline: none;
    border-color: #555;
}

#sceneSelector option {
    padding: 10px;
}

#sceneSelector option:hover {
    background-color: #f2f2f2;
}