.autobrightness {
	filter: brightness(1.75);
	filter: hue-rotate(0deg);
	filter: contrast(1);
}
#panorama {
	width: 100%;
	height:100%;
}
#bound {
	width: 100%;
	height:100%;
	position: relative;
}
.vr { /*on port to web, create a <div> with class='vr' and rename this 'html, body' as .vr*/
	margin:0px;
	height:100%;
	font-family: Arial, Helvetica, sans-serif;
}
.infoicon {
	height: 30px;
	width: 30px;
	background-image: url('../include_vr_mainpage/info.png');
}
.brighticon {
	height: 30px;
	width: 30px;
	background-image: url('../include_vr_mainpage/bright.png');
}
.gotoicon {
	height: 40px;
	width: 40px;
	background-image: url('../include_vr_mainpage/goto.png');
}
.gotolefticon {
	height: 40px;
	width: 40px;
	background-image: url('../include_vr_mainpage/gotoleft.png');
}
.gotorighticon {
	height: 40px;
	width: 40px;
	background-image: url('../include_vr_mainpage/gotoright.png');
}
.gotocamicon {
	height: 40px;
	width: 40px;
	background-image: url('../images_vr_mainpage/gotocam.png');
}

div.custom-tooltip span {
	visibility: hidden;
	position: absolute;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.75);
	color: #FFF;
	text-align: center;
	padding: 10px 10px;
	cursor: default;
}
div.custom-tooltip:hover span{
	visibility: visible;
}
div.custom-tooltip:hover span:after {
	content: '';
	position: absolute;
	border-width: 10px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
	bottom: -20px;
	left: -10px;
	margin: 0 50%;
}
#controls {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
	padding-bottom: 3px;
	z-index: 3;
}
.ctrl {
	display: inline-block;
	cursor: pointer;
	opacity: .7;
}
.ctrl:hover {
	opacity: 1.0;
}
.projectdesktop {
	bottom: 3px;
	right: 3px;
	text-align: right;
}
.projectmobile {
	bottom: 3px;
	right: 3px;
	text-align: right;
}
#project {
	position: absolute;
	z-index: 1;
	display; inline-block;
}
.companydesktop {
	top: 3px;
	left: 3px;
	text-align: left;
}
.companymobile {
	top: 3px;
	left: 3px;
	text-align: left;
}
#company {
	position: absolute;
	z-index: 1;
	display; inline-block;
}
.dropdowndesktop {
	top: 3px;
	left: calc(50% - 85px);
}
.dropdownmobile {
	top: 3px;
	left: calc(50% - 85px);
}
.dropdown {
	position: absolute;
	float: right;
	text-align: center;
	z-index: 2;
	display; inline-block;
	vertical-align: middle;
}
input[type='checkbox']{ /* may produce problem on porting*/
	display: none;
}
.dropdown input[type=checkbox]:checked ~ .dropdowncontent{
	display: block;
}
.dropdown input[type=checkbox]:checked ~ .dropbtn{
	background-color: #089505;
}
.dropbtn {
	background-color: #067604;
	border-radius: 5px;
	color: white;
	padding: 5px;
	display: inline-block;
	border: none;
	min-width: 160px;
}
.dropdowncheck{
	display: none;
}
.dropdowncontent {
	border-radius: 5px;
	display: none;
	right: 0;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 170px;
	box-shadow: 0px 8px 16px 0px RGBA(0,0,0,0.2);
	z-index: 1;
}
.dropdowncontent a {
	border-radius: 5px;
	color: black;
	padding: 2px;
	text-decoration: none;
	text-align: center;
	display: block;
}
.dropdowncontent a:hover {background-color: #DDD;}
#plancanvas {
	z-index: 3;
	background: rgba(0, 0, 0, 0.0);
	display; inline-block;
}
.plandesktop {
	bottom: 10px;
}
.planmobile {
	bottom: 60px;
}
#plan {
	position: absolute;
	z-index: 2;
	text-left: center;
	background: rgba(0, 0, 0, 0.3);
	display; inline-block;
}
.plan-in{
	animation: movein 0.5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
.plan-out{
	animation: moveout 0.5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes movein {
	0%   {left: -420px;}
	100% {left: 10px;}
}
@keyframes moveout {
	0%   {left: 10px;}
	100% {left: -420px;}
}

.plan-in-Mobile{
	animation: moveinMobile 0.5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
.plan-out-Mobile{
	animation: moveoutMobile 0.5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes moveinMobile {
	0%   {left: -420px;}
	100% {left: 10px;}
}
@keyframes moveoutMobile {
	0%   {left: 10px;}
	100% {left: -420px;}
}	