


.bodyPanorama {
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
	overflow: hidden;	

	margin: 0;
	background-color: black;	
}

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

a:hover {
	text-decoration: underline;
}

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


.overlay_text {
	position: absolute;
	top: 0px;
	width: auto;
	margin: 2px;
	box-sizing: border-box;
	text-align: left;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	white-space:nowrap;
	z-index: 1;

	line-height: 1.1em;
}






.lil-gui {
	z-index: 2 !important; 
}


@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;
}


.wb-body {
	background-color: #000;
}







/*
	coisas do rodapé do panorama
*/

.rodape_panorama {
    position:absolute;
    z-index:99;
    width: 100%;
    left: 100%; 
    top: 100%;

	background-color: #ff0;
	opacity: 70%;

    visibility: visible;
    transform: translate(-100%, -100%);
}




/*
	css do spinner da mensagem "carregando"
*/


/*
	https://cssloaders.github.io/
*/


/* <span class="loader"></span> */
.loader {
	width: 15px;
	height: 15px;
	border: 2px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	}
	@keyframes rotation {
	  0% {
		  transform: rotate(0deg);
	  }
	  100% {
		  transform: rotate(360deg);
	  }
	} 
  
  
	/*
		spinner css

		https://loading.io/css/

	*/
	.lds-ellipsis {
		display: inline-block;
		position: relative;
		width: 80px;
		height: 80px;
	}
	.lds-ellipsis div {
		position: absolute;
		top: 33px;
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: rgb(255, 255, 255);
		background-color: rgb(255, 255, 255);
		animation-timing-function: cubic-bezier(0, 1, 1, 0);
	}
	.lds-ellipsis div:nth-child(1) {
		left: 8px;
		animation: lds-ellipsis1 0.6s infinite;
	}
	.lds-ellipsis div:nth-child(2) {
		left: 8px;
		animation: lds-ellipsis2 0.6s infinite;
	}
	.lds-ellipsis div:nth-child(3) {
		left: 32px;
		animation: lds-ellipsis2 0.6s infinite;
	}
	.lds-ellipsis div:nth-child(4) {
		left: 56px;
		animation: lds-ellipsis3 0.6s infinite;
	}
	@keyframes lds-ellipsis1 {
		0% {
		transform: scale(0);
		}
		100% {
		transform: scale(1);
		}
	}
	@keyframes lds-ellipsis3 {
		0% {
		transform: scale(1);
		}
		100% {
		transform: scale(0);
		}
	}
	@keyframes lds-ellipsis2 {
		0% {
		transform: translate(0, 0);
		}
		100% {
		transform: translate(24px, 0);
		}
	}
