#panorama-viewer {
	background-color: #333333;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

#panorama-iframe-container-outer {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 30px;
	z-index: 99999;
}

#panorama-iframe-container {
	background-color: #ffffff;
	height: 100%;
	position: relative;
	transition: transform 0.5s;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

#panorama-iframe {
	border: none;
	width: 100%;
	height: 100%;
}

#panorama-iframe-close {
	width: 40px;
	height: 40px;
	position: absolute;
	right: -15px;
	top: -15px;
	background: #ffffff;
	border: 2px solid #333333;
	font-family: Arial, sans-serif;
	border-radius: 50%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
	cursor: pointer;
	box-sizing: border-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	text-align: center;
	align-items: center;
}

#panorama-iframe-close:active {
	transform: translate(1px, 1px);
	box-shadow: none;
}

#panorama-iframe-close > span {
	font-weight: bold;
	font-size: 28px;
	text-transform: uppercase;
	display: block;
	margin: auto;
	box-sizing: border-box;
}

#panorama-viewer-activator-tip {
	position: absolute;
	right: 15px;
	top: 15px;
	border: 3px solid #8E020E;
	color: #8E020E;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #ffffff;
	padding: 15px;
	border-radius: 20px;
	max-width: 200px;
	opacity: 0.75;
	pointer-events: none;
	box-sizing: border-box;
}

#panorama-viewer-enter-message-container {
	position: absolute;
	left: 30px;
	right: 30px;
	top: 30px;
	bottom: 30px;
	pointer-events: none;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

#panorama-viewer-enter-message-outer {
	pointer-events: none;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
	margin: auto;
	border: 3px solid #333333;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 30px;
	min-width: 50%;
	min-height: 100px;
	text-align: center;
	box-sizing: border-box;
}

#panorama-viewer-enter-message {
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	pointer-events: none;
	margin: auto;
	box-sizing: border-box;
}