/*====================================================================
	DO NOT EDIT - EDIT RV.SLIDEOUT-CUSTOM.CSS
	RV TOUCH v2.6.2 - SLIDEOUT STYLING - CM - 01-06-17
====================================================================== */

/* ==========================================================================
Generic page styles
========================================================================== */

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	background-color: #000;
	color: #fff;
	font: 300 16px/1.2 "Open Sans", Arial, sans-serif;
	max-height: 100%;
}

h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 20px;
}
h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 20px;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

body,
html,
#container,
#tour-content {
	margin: 0;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* ==========================================================================
Slideout styles
========================================================================== */
/* ================ SHARED ============== */

.list-container {
	background-color: rgba(54,54,54,.85);
	bottom: 0;
	max-height: 100vh;
	z-index: 99999; /* IE10 needs this to be ridiculously high */
}

.list-container h4 {
	background-color: #363636;
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list-container li {
	list-style: none;
}

.list-container li a {
	color: inherit;
	display: block;
	font-size: 13px;
	line-height: 1.35;
	padding: 6px 0;
	text-decoration: none;
}
.list-container li a.active {
	font-weight: 700;
}

/* ================ DESKTOP ============== */
#list-container-desktop {
	color: #fff;
}
#toggleMobileSlideout {
	background-color: rgba(54,54,54,.85);
	color: #fff;
}
#toggleMobileSlideout.show {
	background-color: #363636;
}
#list-container-desktop {
	border-radius: 5px 5px 0 0;
	left: 50%;
	max-width: -webkit-calc(100% - 120px);
	max-width: calc(100% - 120px);
	position: fixed;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 400px;
}

#list-container-desktop .list-container-inner {
	max-height: 400px;
	max-height: 90vh;
	max-height: -webkit-calc(100vh - 120px);
	max-height: calc(100vh - 120px);
	height: 0px;
	overflow: hidden;
}

#list-container-desktop h4 {
	border-radius: 5px 5px 0 0;
	padding: 0 30px;
	position: relative;
	-webkit-transition: border-radius .1s;
	transition: border-radius .1s;
	z-index: 1;
}
#list-container-desktop.show h4 {
	border-radius: 0;
}

#tourlist-desktop {
	padding: 20px 20px 12px;
}

#toggleSlideout {
	bottom: 100%;
	color: inherit;
	cursor: pointer;
	display: block;
	font-size: 12px;
	left: 0;
	line-height: 40px;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	text-decoration: none;
	-webkit-transition: padding-bottom .2s;
	transition: padding-bottom .2s;
	width: 100px;
}
.show #toggleSlideout {
	padding-bottom: 20px;
}

#toggleSlideout:after {
	content: "VIEW MORE";
	text-shadow: 2px 2px 2px rgba(33,33,33,.5);
}
.show #toggleSlideout:after {
	content: "HIDE";
}

#toggleSlideout span {
	bottom: 100%;
	font-size: 30px;
	height: 20px;
	left: 50%;
	line-height: 20px;
	margin-bottom: -5px;
	margin-left: -16px;
	position: absolute;
	width: 32px;
}

#toggleSlideout .closed {display:inline-block;}
#toggleSlideout .open {display:none;}

.show #toggleSlideout span {
	bottom: 0;
	margin-bottom: 10px;
}
.show #toggleSlideout .closed {display:none;}
.show #toggleSlideout .open {display:inline-block;}

.prevNext {
	bottom: 5px;
	color: inherit;
	font-size: 28px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	width: 30px;
}

.prevNext.icon-arrow-left {
	left: -40px;
}
.prevNext.icon-arrow-right {
	right: -40px;
}
.prevNext.hidden {
	display: none;
}

/* ================ TOUCH ============== */
#list-container-touch {
	display: none;
	left: 0;
	overflow: auto;
	position: absolute;
	bottom: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	width: 100%;
}

#list-container-touch h4 {
	padding: 10px 20px;
}

#tourlist-touch {
	padding: 12px 20px;
}
#list-container-touch li a {
	font-size: 15px;
	padding: 8px 0;
}

#toggleMobileSlideout {
	border: none;
	border-radius: 5px 0 0 5px;
	cursor: pointer;
	display: block;
	font-size: 20px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	right: 0;
	text-align: center;
	text-decoration: none;
	top: 70%;
	-webkit-transition: background-color .5s;
	transition: background-color .5s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	z-index: 99999;
}

#toggleMobileSlideout:before {
	display: block;
	height: 50px;
	line-height: 50px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	width: 50px;
}

#toggleMobileSlideout.show:before {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* ==========================================================================
HTML BUTTONS
========================================================================== */

.gui-container {
	bottom: 0;
	padding: 0 0 20px;
	position: absolute;
	right: 0;
}

.button {
	background-color: rgba(54,54,54,.75);
	border-radius: 100%;
	color: #fff;
	display: inline-block;
	font-size: 38px;
	height: 94px;
	line-height: 94px;
	margin-right: 20px;
	position: relative;
	text-align: center;
	text-decoration: none;
	-webkit-transition: color .4s, background-color .4s;
	transition: color .4s, background-color .4s;
	width: 94px;
}
.button.enabled {
	background-color: rgba(54,54,54,.85);
}

.button.button-auto {
	opacity: .8;
	-webkit-transition: color .4s, background-color .4s, opacity .4s;
	transition: color .4s, background-color .4s, opacity .4s;
}
.button.button-auto.enabled {
	opacity: 1;
}

.button.editor {
	background-color: rgba(0, 196, 150, 0.8);
}

#motion-button {
	font-size: 20px;
	height: 62px;
	left: 1%;
	line-height: 22px;
	margin: 0;
	padding: 8px;
	position: absolute;
	top: 1.5%;
	width: 110px;
	float: none;
}

#fs-button span {
	line-height: inherit;
}

#fs-button .enabled,
#fs-button.enabled .disabled {display:none;}
#fs-button .disabled,
#fs-button.enabled .enabled {display:block;}

#fs-close {
	float: none;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	margin: 15px;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
}


.krpanoHotspot {
	position: relative;
	z-index: 0 !important;
	overflow: hidden;
}
.hotspot {
	background-color: rgba(54,54,54,.85);
	border-radius: 60px;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 20px;
	height: 60px;
	left: 50%;
	line-height: 60px;
	overflow: hidden;
	position: absolute;
	text-align: center;
	text-decoration: none;
	top: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: border-radius .4s, background-color .4s, color .4s;
	transition: border-radius .4s, background-color .4s, color .4s;
	width: 60px;
}

.hIcon {
	display: block;
	font-size: 28px;
	height: 60px;
	left: 0;
	line-height: 60px;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 60px;
}
.hIcon.icon-nav {
	font-size: 20px;
}
.hIcon::before {
	display: block;
}
/*.hIcon.icon-video::before {}
.hIcon.icon-gallery:before {}
.hIcon.icon-nav:before {}*/

.hTooltip {
	color: inherit;
	display: block;
	font-size: 16px;
	line-height: 1;
	max-width: 100%;
	opacity: 0;
	overflow: hidden;
	padding: 22px 25px;
	text-align: center;
	visibility: hidden;
	white-space: nowrap;
}


/* ==========================================================================
EDITOR BOX
========================================================================== */
.start-position {
	background:#f1f1f1;
	color: #000;
	-webkit-box-shadow:5px 0px 5px 0px rgba(33, 33, 33, .25);
	box-shadow:5px 0px 5px 0px rgba(33, 33, 33, .25);
	margin-left:-250px;
	padding: 12px 20px;
	position:absolute;
	top:0;
	left:50%;
	width:500px;
	z-index:99;
}

.start-position:after {
	content: attr(data-content);
	cursor: default;
	color: #c5c4c2;
	font-size: 30px;
	font-weight: 600;
	position: absolute;
	right: 10px;
	top: 4px;
}

#crossheir {
	height: 2px;
	left: 50%;
	margin-left: -1px;
	margin-top: -1px;
	position: absolute;
	top: 50%;
	width: 2px;
}
#crossheir div {
	background-color: rgba(0,196,150,.8);
	border-radius: 100%;
	left: 0;
	position: absolute;
	top: 0;

	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.x {
	height: 2px;
	width: 60px;
}
.y {
	height: 60px;
	width: 2px;
}


/* ==========================================================================
LIGHTBOX
========================================================================== */
#info-spot {
	background: rgba(33, 33, 33, .3);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 999999;

	opacity: 0;
	visibility: hidden;
}
#info-inner {
	background: rgba(33, 33, 33, .7);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 50%;
	max-width: 600px;
	width: 100%;
}
#info-spot.iframed #info-inner {
	max-width: 960px;
	padding: 0;
	width: 100%;
}

#info-topbar {
	background-color: rgba(0,0,0,.4);
	height: 50px;
	position: relative;
}
#info-topbar .title {
	font-size: 20px;
	left: 20px;
	line-height: 26px;
	margin: 0;
	max-height: 44px;
	overflow: hidden;
	position: absolute;
	right: 40px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#info-close {
	color: #fff;
	display: block;
	font-size: 20px;
	height: 20px;
	line-height: 20px;
	position: absolute;
	right: 10px;
	text-align: center;
	text-decoration: none;
	top: 15px;
	width: 20px;
}
#info-close:before {
	display: block;
}


#info-spot.info #info-content {
	padding: 16px 18px 14px;
}
#info-content p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 8px;
}
#info-content a {
	color: inherit;
}

#info-content iframe {
	display: block;
	height: 540px;
	max-width: 960px;
	width: 100%;
}
/* ==========================================================================
CLICK TO START
========================================================================== */

#click-to-start {
	background-color: rgba(255,255,255,.9);
	color: #212121;
	height: 100%;
	left: 0;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 10000000;
}
#click-inner {
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 92%;
}
#click-inner h2 {
	margin-bottom: 26px;
}
#click-inner .click-button {
	background-color: #4e4e4e;
	color: #fff;
	display: inline-block;
	margin: 0;
	padding: 10px 12px;
	text-decoration: none;
}
#click-inner p {
	line-height: 1;
	margin: 8px 0;
}

/* ==========================================================================
.touchevents
========================================================================== */


.touchevents .list-container {
	max-width: 100%;
}

.touchevents .prevNext {
	display: none;
}

@media only screen and (max-width: 1024px) {
	/* ============ Content popup ============== */
	#info-inner {
		height: 100%;
		max-width: none;
		top: 0;
		-webkit-transform: none !important;
		transform: none !important;
		width: 100%;
	}
	#info-topbar .title {
		font-size: 16px;
		line-height: 18px;
		max-height: 36px;
	}
	#info-content {
		height: 50%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
		overflow: hidden;
		position: relative;
	}
	#info-spot.info #info-content {
		overflow: auto;
	}
	#info-spot iframe {
		height: 100%;
	}
	/* ============ HOTSPOTS ============== */
	.hotspot {
		height: auto !important;
		padding: 12px 14px 12px 48px;
		width: auto !important;
	}
	.hIcon {
		height: 30px;
		font-size: 22px;
		left: 10px;
		line-height: 30px;
		margin-top: -15px;
		top: 50%;
		width: 30px;
	}
	.hIcon.icon-nav {
		font-size: 14px;
	}
	.hTooltip {
		font-size: 14px;
		line-height: 1.4;
		padding: 0;
		white-space: normal;
		width: 160px !important;
		opacity: 1 !important;
		visibility: inherit !important;
	}
}
@media only screen and (min-width: 768px) {
	.touch-only {display:none !important}
}
@media only screen and (max-width: 767px) {
	.desktop-only {display:none !important}
}



@media only screen and (min-width: 1025px) {
	.button:hover,
	.button.enabled:hover {
		background-color: #363636;
	}

	.button.editor:hover {
		background-color: #00c496;
	}

	.button.button-auto.enabled:hover {
		opacity: 1;
	}

	#info-spot a:hover {
		text-decoration: none;
	}

	.button.button-auto:hover {
		opacity: .8;
	}

	.hotspot:hover {
		background-color: #363636;
	}
}