html, body {
	position: relative;
	margin: 0;
	height: 100%;
	overflow: hidden;
	background-color: #000;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: Lato;
	font-size: 14px;
	font-weight: normal;
	font-smoothing:antialiased;
	-webkit-font-smoothing: antialiased;
	text-rendering:optimizeLegibility;
}

a {
	font-size: inherit;
	color: #3dc1ce;
	transition: all 200ms;
	text-decoration: none !important;
	cursor: pointer !important;
	outline: 0 !important;
}

a:hover {
	color: #00a0b0;
	text-decoration: none;
}

a:focus {
	color: #00a0b0;
	text-decoration: none;
}

#panoTitle {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 10px;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	font-size: 14px;
	font-family: Montserrat;
	font-weight: 500;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
	color: #fff;
	letter-spacing: 0.5px;
}

#bgMask {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.5);
	z-index: 4;
}

/** IOS Sensor Notice **/

#iosSensorNotice {
	display: none;
	position: absolute;
	visibility: visible;
	opacity: 1;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.85);
	z-index: 7;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

#iosSensorNotice > div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 350px;
	transform: translate(-50%,-50%);
}

#iosSensorNotice img {
	display: block;
	margin: 0 auto 15px;
}

#iosSensorNotice i {
	margin: 0 6px;
}

#iosSensorNotice p {
	margin: 0 0 5px;
	font-size: 18px;
	font-weight: 500;
	font-family: Montserrat;
	color: #fff;
}

#iosSensorNotice b {
	font-size: 24px;
	font-weight: 500;
	color: #3dc1ce;
}

#iosSensorNotice a {
	display: inline-block;
	margin-top: 10px;
	padding: 6px 22px;
	background-color: #3dc1ce;
	font-size: 20px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	color: #fff;
	transition: all 200ms;
}

#iosSensorNotice a:hover {
	color: #fff;
	background-color: #37abb7;
}

#iosSensorNotice a:focus {
	color: #fff;
	background-color: #308e98;
}

/** Loader **/

#loader {
	/*display: none;*/
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.85);
	z-index: 3;
	transition: all 200ms;
}

#loader > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loader p {
	font-size: 20px;
	margin: -20px 0 0 12px;
	font-family: Montserrat;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
	text-align: center;
}

#loader span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	border: none;
	background-color: transparent;
	font-size: 10px;
	font-family: Montserrat;
	color: #fff;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
	transform: translate(-50%, calc(-50% + 6px));
}

/** Gallery **/

.galleryPane {
	display: none !important;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	min-width: 300px;
	overflow: hidden;
	transition: all 200ms;
}

.galleryPane.currentGallery {
	display: block !important;
}

.galleryPane.paneSm {
	width: calc(100% / 4);
}

.galleryPane.paneMd {
	width: calc(100% / 3);
}

.galleryPane.paneLg {
	width: calc(100% / 2);
}

.galleryPane.paneThemeDark {
	background-color: rgba(0,0,0,0.85);
}

.galleryPane.paneThemeLight {
	background-color: rgba(255,255,255,0.85);
}

.galleryPane .galleryTitle {
	margin: 12px 0 10px;
	height: 18px;
	max-height: 18px;
}

.galleryPane .galleryTitle p {
	margin: 0;
	font-size: 14px;
	font-family: Montserrat;
	font-weight: 500;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	text-align: center;
	letter-spacing: 0.5px;
}

.galleryPane.paneThemeDark .galleryTitle p {
	color: #fff;
}

.galleryPane.paneThemeLight .galleryTitle p {
	color: #000;
}

.galleryPane .galleryHeader {
	position: relative;
	height: 25%;
	max-height: 25%;
	padding: 0 15px 25px;
}

.galleryPane .galleryHeader.headerText {
	height: 20%;
	max-height: 20%;
}

.galleryPane .galleryHeader.headerText h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 60px);
	transform: translate(-50%, calc(-50% - 16px));
	font-weight: 400;
	text-align: center;
}

.galleryPane .galleryHeader.headerImage {
	position: relative;
}

.galleryPane .galleryHeader.headerImage .headerNav {
	position: absolute;
	height: calc(100% - 40px);
	width: 100px;
	top: 0px;
	z-index: 25;
	transition: background-color 200ms, height 500ms;
	cursor: pointer;
}

.galleryPane .galleryHeader.headerImage .headerNav > span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.galleryPane .galleryHeader.headerImage .headerNav span span {
	display: block;
	position: absolute;
	height: 4px;
	width: 20px;
	background-color: white;
	border-radius: 3px;
	transition: all 200ms;
}

.galleryPane.paneThemeDark .galleryHeader.headerImage .headerNav span span {
	background-color: white;
}

.galleryPane.paneThemeLight .galleryHeader.headerImage .headerNav span span {
	background-color: #323232;
}

.galleryPane .galleryHeader.headerImage .navLeft {
	left: 0px;
	border-radius: 6px 0 0 6px;
}

.galleryPane .galleryHeader.headerImage .navLeft span {
	left: 10px;
}

.galleryPane .galleryHeader.headerImage .navLeft:hover span {
	left: 8px;
}

.galleryPane .galleryHeader.headerImage .navLeft span span:first-child {
	top: -6px;
	transform: rotate(135deg);
}

.galleryPane .galleryHeader.headerImage .navLeft span span:last-child {
	top: 6px;
	transform: rotate(45deg);
}

.galleryPane .galleryHeader.headerImage .navRight {
	right: 0px;
	border-radius: 0 6px 6px 0;
}

.galleryPane .galleryHeader.headerImage .navRight span {
	right: 10px;
}

.galleryPane .galleryHeader.headerImage .navRight:hover span {
	right: 8px;
}

.galleryPane .galleryHeader.headerImage .navRight span span:first-child {
	top: -6px;
	transform: rotate(45deg);
}

.galleryPane .galleryHeader.headerImage .navRight span span:last-child {
	top: 6px;
	transform: rotate(135deg);
}

.galleryPane .galleryHeader.headerImage .navBullets {
	position: absolute;
	bottom: 15px;
	width: calc(100% - 30px);
	text-align: center;
	line-height: 10px;
	z-index: 25;
}

.galleryPane .galleryHeader.headerImage .navBullets span {
	display: inline-block;
	height: 8px;
	width: 8px;
	margin: 0 4px;
	border-radius: 8px;
	border-width: 2px;
	border-style: solid;
	border-color: transparent;
	background-color: rgba(255,255,255,0.75);
	vertical-align: bottom;
	transition: all 200ms;
	cursor: pointer;
}

.galleryPane.paneThemeDark .galleryHeader.headerImage .navBullets span {
	background-color: rgba(255,255,255,0.75);
}

.galleryPane.paneThemeLight .galleryHeader.headerImage .navBullets span {
	background-color: rgba(0,0,0,0.5);
}

.galleryPane .galleryHeader.headerImage .navBullets span:hover {
	background-color: rgba(61,193,206,0.75);
}

.galleryPane .galleryHeader.headerImage .navBullets span[data-current="true"],
.galleryPane .galleryHeader.headerImage .navBullets span[data-current="true"]:hover {
	background-color: #3dc1ce;
}

.galleryPane .galleryHeader.headerImage .navBullets span[data-current="true"],
.galleryPane .galleryHeader.headerImage .navBullets span[data-current="true"]:hover {
	width: 18px;
	margin: 0 2px;
}

.galleryPane .galleryHeader.headerImage .navBullets span:hover {
	width: 14px;
	margin: 0 1px;
}

.galleryPane .galleryHeader.headerImage .headerCarousel {
	position: relative;
	height: inherit;
	border-radius: 6px;
	overflow: hidden;
}

.galleryPane .galleryHeader.headerImage .headerCarousel.hasMultiple {
	height: calc(100% - 10px);
}

.galleryPane .galleryHeader .headerImage.noBullets .headerCarousel,
.galleryPane .galleryHeader .headerImage.noBullets .headerNav {
	height: 100%;
}

.galleryPane .galleryHeader.headerImage .headerCarousel .galleryThumb {
	position: absolute;
	top: 0px;
	height: inherit;
	width: 100%;
	object-fit: none;
	border-radius: 6px;
	transition: all 500ms;
}

.galleryPane .galleryHeader.headerImage .headerCarousel .galleryThumb.thumbActive {
	right: 0%;
}

.galleryPane .galleryHeader.headerImage .headerCarousel .galleryThumb:not(.thumbActive) {
	opacity: 0;
	visibility: hidden;
}

.galleryPane .galleryHeader.headerImage .headerCarousel .galleryThumb.rightHidden {
	position: absolute;
	top: 0px;
	right: -100%;
}

.galleryPane .galleryHeader.headerImage .headerCarousel .galleryThumb.leftHidden {
	position: absolute;
	top: 0px;
	right: 100%;
}

.galleryPane .galleryHeader.headerHidden {
	display: none;
}

.galleryPane .galleryBody {
	height: 55%;
	padding: 5px 35px 5px;
	overflow: auto;
	transition: padding-top 500ms linear;
	line-height: 1.4;
}

.galleryPane .galleryFooter {
	position: relative;
	height: calc(20% - 115px);
	max-height: calc(20% - 115px);
	padding: 10px 15px 0;
}

.galleryPane .galleryFooter.galleryNoCredits {
	height: calc(20% - 95px);
	max-height: calc(20% - 95px);
}

.galleryPane .galleryFooter.footerHidden {
	display: none;
}

.galleryPane .galleryFooter.footerText {
	position: relative;
}

.galleryPane .galleryFooter.footerText p {
	margin: 0;
}

.galleryPane .galleryFooter.footerText.footerTextTop .footerTextContent {
	position: relative;
	width: 100%;
}

.galleryPane .galleryFooter.footerText.footerTextMiddle .footerTextContent,
.galleryPane .galleryFooter.footerText.footerTextBottom .footerTextContent {
	position: absolute;
	width: calc(100% - 45px);
}

.galleryPane .galleryFooter.footerText.footerTextMiddle .footerTextContent {
	top: 50%;
	transform: translateY(-50%);
}

.galleryPane .galleryFooter.footerText.footerTextBottom .footerTextContent {
	bottom: 0px;
}

.galleryPane .galleryFooter.footerButton {
	
}

.galleryPane .galleryFooter.footerButton .footerButtonContent {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100px;
	max-height: 80%;
	padding: 12px 16px;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	word-break: break-all;
	outline: none;
	border-radius: 10px;
	transform: translate(-50%, -50%);
	overflow: hidden;
	cursor: pointer;
}

.galleryPane .galleryFooter.footerButton .footerButtonContent a {
	display: block;
}

.galleryPane .galleryCredits {
	position: absolute;
	bottom: 5px;
	width: 100%;
}

.galleryPane .galleryCredits p {
	margin: 0;
	font-size: 12px;
	text-align: center;
	letter-spacing: 1.5px;
	text-shadow: 0 0 5px rgba(0,0,0,0.25);
	text-transform: lowercase;
	text-align: center;
}

.galleryPane.paneThemeDark .galleryCredits {
	color: white;
}

.galleryPane.paneThemeLight .galleryCredits {
	color: #323232;
}

/** Gallery form standard elements **/

.galleryPane .galleryBody.bodyForm {
	padding: 5px 20px 5px;
	overflow: auto;
}

.galleryPane .galleryBody.bodyForm * {
	box-sizing: border-box;
}

.galleryPane .galleryBody.bodyForm h2 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: normal;
	font-family: inherit;
	color: inherit;
	text-align: center;
}

.galleryPane .galleryBody.bodyForm button[type="submit"] {
	display: block;
	margin: auto;
	box-shadow: none;
	border: none;
	outline: none;
	padding: 12px 16px;
	font-size: 1.2em;
	line-height: 1;
	text-align: center;
	border-radius: 10px;
	color: inherit;
	transition: all 200ms;
	box-shadow: 0 -10px 20px 0 rgba(0,0,0,0.25) inset;
	cursor: pointer;
}

.galleryPane .galleryBody.bodyForm button[type="submit"]:hover {
	box-shadow: 0 -10px 20px 0 rgba(0,0,0,0.35) inset;
}

.galleryPane .galleryBody.bodyForm .form-group {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	float: left;
	padding: 0 7.5px;
}

.galleryPane .galleryBody.bodyForm .form-group.form-group-last {
	margin-bottom: 25px;
}

.galleryPane .galleryBody.bodyForm .form-group.form-group-half {
	width: 50%;
}

.galleryPane .galleryBody.bodyForm .form-group .control-label {
	display: block;
	margin-bottom: 5px;
	width: 100%;
	padding: 0 6px;
}

.galleryPane .galleryBody.bodyForm .form-group .control-label.reduced-margin {
	margin-bottom: 0px;
}

.galleryPane .galleryBody.bodyForm .form-group .form-control {
	display: block;
	width: 100%;
	padding: 10px 10px;
	outline: none;
	border: none;
	border-radius: 6px;
	box-shadow: none;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.galleryPane.paneThemeDark .galleryBody.bodyForm .form-group .form-control {
	background-color: rgba(255,255,255,0.25);
}

.galleryPane.paneThemeLight .galleryBody.bodyForm .form-group .form-control {
	background-color: rgba(0,0,0,0.25);
}

.galleryPane .galleryBody.bodyForm .form-group textarea {
	resize: none;
}

.galleryPane .galleryBody.bodyForm .form-group select option {
	color: #323232;
}

.checkContainer {
	display: block;
	position: relative;
	padding: 4px 0 0 34px !important;
	margin-bottom: 0px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkContainer.checkbox-inline {
	display: inline-block;
}

.checkGroup .checkContainer {
	font-size: 12px;
}

.checkContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkContainer .checkmark {
	position: absolute;
	top: 11px;
	left: 6px;
	height: 14px;
	width: 14px;
	background-color: transparent;
	transition: all 200ms;
	border: 1px solid #3dc1ce;
	border-radius: 4px;
	transition: all 200ms;
}

.checkContainer .checkmark {
	top: 9px;
}

.checkContainer input:checked ~ .checkmark {
	background-color: #3dc1ce;
}

.checkContainer .checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.checkContainer input:checked ~ .checkmark:after {
	opacity: 1;
	visibility: visible;
}

.checkContainer .checkmark:after {
	top: -7px;
	left: 3px;
	height: 18px;
	width: 5px;
	border: solid #325053;
	border-width: 0 3px 3px 0;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.25);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 300ms;
}

.galleryPane.paneThemeDark .checkContainer .checkmark:after {
	border-color: white;
}

.radioContainer {
	display: block;
	position: relative;
	margin: -4px 12px 0px 0px;
	padding: 7px 0 0 30px;
	cursor: pointer;
	font-weight: 400;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.radioContainer.radio-inline {
	display: inline-block;
}

.radioContainer:last-child {
	margin-right: 0;
}

.radioContainer.radioBlock {
	display: block !important;
	margin: 0 0 5px 10px;
	padding: 0 0 0 25px;
	font-weight: 500;
}

.radioContainer input {
	position: absolute;
	margin-left: -20px;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.radioContainer .checkmark {
	position: absolute;
	top: 10px;
	left: 6px;
	height: 16px;
	width: 16px;
	border: 2px solid #3dc1ce;
	border-radius: 50%;
	transition: all 200ms;
}

.radioContainer.radioBlock .checkmark {
	top: 4px;
}

.radioContainer .checktext {
	transition: all 200ms;
}

.radioContainer .checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.radioContainer input:checked ~ .checkmark:after {
	opacity: 1;
	visibility: visible;
}

.radioContainer input:checked ~ .checktext {
	color: #3dc1ce;
}

.radioContainer .checkmark:after {
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #308e98;
	transition: all 200ms;
	transform: translate(-50%, -50%);
}

/** Gallery form dynamic elements **/

.galleryPane .galleryBody.bodyForm .form-group .form-fields-tri .form-control,
.galleryPane .galleryBody.bodyForm .form-group .form-fields-dual .form-control {
	float: left;
}

.galleryPane .galleryBody.bodyForm .form-group .form-fields-dual .form-control.form-control-half {
	width: calc(50% - 7.5px);
}

.galleryPane .galleryBody.bodyForm .form-group .form-fields-dual .form-control.form-control-half:nth-child(1) {
	margin-right: 15px;
}

.galleryPane .galleryBody.bodyForm .form-group .form-fields-tri .form-control.form-control-40 {
	width: calc(40% - 7.5px);
	margin-right: 15px;
}

.galleryPane .galleryBody.bodyForm .form-group .form-fields-tri .form-control.form-control-20 {
	width: calc(20% - 15px);
}

.galleryPane .galleryBody.bodyForm .form-group .control-label.control-label-daterange {
	width: calc(50% - 7.5px);
	float: left;
}

.galleryPane .galleryBody.bodyForm .form-group .control-label.control-label-daterange-1 {
	margin-right: 15px;
}

.galleryPane .galleryBody.bodyForm .form-group .control-label.control-label-daterange-2 {

}

.galleryPane .galleryBody.bodyForm .form-group .daterange-wrapper {
	width: 100%;
	float: none;
	clear: both;
	overflow: auto;
}

.galleryPane .galleryBody.bodyForm .form-group .daterange-wrapper .daterange-group {
	position: relative;
	width: calc(50% - 7.5px);
	float: left;
}

.galleryPane .galleryBody.bodyForm .form-group .daterange-wrapper .daterange-group.daterange-group-1 {
	margin-right: 15px;
}

.galleryPane .galleryBody.bodyForm .form-group .daterange-wrapper .daterange-group .daterange-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	font-size: inherit;
	color: #3dc1ce;
}

/** Date range picker **/
.date-picker {
	position: relative;
	height: 25px;
	width: 170px;
	padding: 0;
	line-height: 25px;
	padding-left: 10px;
	color: #323232;
	border: 0;
	cursor: pointer;
	z-index: 2;
}

.date-picker-wrapper {
	position: absolute;
	padding: 7.5px 15px 15px;
	font-size: 12px;
	font-family: Lato;
	color: #aaa;
	background-color: white;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	-webkit-box-sizing: initial;
	box-sizing: initial;
	z-index: 3;
}

.date-picker-wrapper * {
	transition: all 200ms;
}

.dp-clearfix {
	clear: both;
	height: 0;
	font-size: 0;
}

.date-picker-wrapper.inline-wrapper {
	position: relative;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: inline-block;
}

.date-picker-wrapper.single-date {
	width: auto;
}

.date-picker-wrapper.no-topbar {
	padding-top: 12px;
}

.date-picker-wrapper .footer {

}

.date-picker-wrapper b {
	color: #666;
	font-weight: 700;
}

.date-picker-wrapper a {
	color: #6bb4d6;
	text-decoration: underline;
}

.date-picker-wrapper .month-name {
	text-transform: capitalize;
}

.date-picker-wrapper .select-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}

.date-picker-wrapper .select-wrapper:hover {
	text-decoration: underline;
}

.date-picker-wrapper .month-element {
	display: inline-block;
	vertical-align: middle;
}

.date-picker-wrapper .select-wrapper select {
	position: absolute;
	margin: 0;
	padding: 0;
	left: 0;
	top: -1px;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	text-transform: inherit;
	color: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: 0 0;
	border: 0;
	outline: 0;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
	filter: alpha(opacity=1);
	opacity: .01;
}

.date-picker-wrapper .month-wrapper {
	cursor: default;
	position: relative;
	display: block;
	width: 100% !important;
	overflow: hidden;
}

.date-picker-wrapper .month-wrapper table {
	width: calc(50% - 17.5px);
	float: left;
}

.date-picker-wrapper.single-month .month-wrapper table {
	width: 100%;
}

.date-picker-wrapper .month-wrapper table td,
.date-picker-wrapper .month-wrapper table th {
	height: 35px;
	width: calc(100% / 7);
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	font-family: Montserrat;
	color: #377379;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}

.date-picker-wrapper .month-wrapper table .day {
	position: relative;
	height: 24px;
	width: 24px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 26px;
	color: #ccc;
	cursor: default;
	border-radius: 50%;
	border: 2px solid transparent;
}

.date-picker-wrapper .month-wrapper table td:hover .day:not(.hovering) {
	background-color: rgba(61,193,206,0.25);
}

.date-picker-wrapper .month-wrapper table div.day.lastMonth,
.date-picker-wrapper .month-wrapper table div.day.nextMonth {
	color: #999;
	cursor: default;
}

.date-picker-wrapper .month-wrapper table .day.checked {
	background-color: rgba(61,193,206,0.5);
}

.date-picker-wrapper .month-wrapper table .week-name {
	height: 20px;
	line-height: 20px;
	font-weight: 100;
	text-transform: capitalize;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip {
	cursor: help !important;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip .tooltip {
	white-space: nowrap;
}

.date-picker-wrapper .time label {
	white-space: nowrap;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
	color: #333;
	cursor: pointer;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
	/*background-color: rgba(61,193,206,0.35);*/
}

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering::before {
	content: '';
	position: absolute;
	width: 100px;
	left: -50px;
	height: 100%;
	background-color: rgba(61,193,206,0.35);
}

.date-picker-wrapper .month-wrapper table .day.lastMonth,
.date-picker-wrapper .month-wrapper table .day.nextMonth {
	display: none;
}

.date-picker-wrapper .month-wrapper table .day.real-today {
	font-weight: 500;
	color: #377379 !important;
}

.date-picker-wrapper .month-wrapper table .day.real-today::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 14px;
	height: 1px;
	background-color: #377379;
	transform: translateX(-50%);
}

.date-picker-wrapper .month-wrapper table .day.real-today.checked,
.date-picker-wrapper .month-wrapper table .day.real-today.hovering {
	background-color: #70ccd5;
}

.date-picker-wrapper table .caption {
	height: 40px;
}

.date-picker-wrapper table .caption > th:first-of-type,
.date-picker-wrapper table .caption > th:last-of-type {
	width: 27px;
}

.date-picker-wrapper table .caption .next,
.date-picker-wrapper table .caption .prev {
	cursor: pointer;
	display: block;
	font-size: 20px;
	color: #3dc1ce;
}

.date-picker-wrapper table .caption .next:hover i,
.date-picker-wrapper table .caption .prev:hover i {
	text-shadow: 0 0 5px rgba(61,193,206,0.5);
}

.date-picker-wrapper .gap {
	position: relative;
	z-index: 1;
	width: 15px;
	height: 100%;
	background-color: red;
	font-size: 0;
	line-height: 0;
	float: left;
	top: -5px;
	margin: 0 10px -10px;
	visibility: hidden;
	height: 0;
}

.date-picker-wrapper .gap .gap-lines {
	height: 100%;
	overflow: hidden;
}

.date-picker-wrapper .gap .gap-line {
	height: 15px;
	width: 15px;
	position: relative;
}

.date-picker-wrapper .gap .gap-line .gap-1 {
	z-index: 1;
	height: 0;
	border-left: 8px solid #fff;
	border-top: 8px solid #eee;
	border-bottom: 8px solid #eee;
}

.date-picker-wrapper .gap .gap-line .gap-2 {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	height: 0;
	border-left: 8px solid transparent;
	border-top: 8px solid #fff;
}

.date-picker-wrapper .gap .gap-line .gap-3 {
	position: absolute;
	right: 0;
	top: 8px;
	z-index: 2;
	height: 0;
	border-left: 8px solid transparent;
	border-bottom: 8px solid #fff;
}

.date-picker-wrapper .gap .gap-top-mask {
	width: 6px;
	height: 1px;
	position: absolute;
	top: -1px;
	left: 1px;
	background-color: #eee;
	z-index: 3;
}

.date-picker-wrapper .gap .gap-bottom-mask {
	width: 6px;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 7px;
	background-color: #eee;
	z-index: 3;
}

.date-picker-wrapper .selected-days {
	display: none;
}

.date-picker-wrapper .drp_top-bar {
	line-height: 1.4;
	position: relative;
	margin-bottom: 5px;
	padding: 10px 50px 10px 5px;
	border-bottom: 1px solid #ddd;
}

.date-picker-wrapper .drp_top-bar .custom-top {
	font-size: 14px;
	font-weight: 400;
	font-family: Montserrat;
	color: #555;
}

.date-picker-wrapper .drp_top-bar .custom-top .datePickerDate {
	font-weight: 500;
	color: #323232;
}

.date-picker-wrapper .drp_top-bar .custom-top .datePickerDate1 {
	margin-right: 5px;
}

.date-picker-wrapper .drp_top-bar .custom-top .datePickerDate2 {
	margin-left: 4px;
	margin-right: 5px;
}

.date-picker-wrapper .drp_top-bar .custom-top .datePickerDays {
	font-weight: 500;
	color: #377379;
}

.date-picker-wrapper .drp_top-bar .error-top,
.date-picker-wrapper .drp_top-bar .normal-top {
	display: none;
}

.date-picker-wrapper .drp_top-bar .default-top {
	display: block;
}

.date-picker-wrapper .drp_top-bar.error .default-top {
	display: none;
}

.date-picker-wrapper .drp_top-bar.error .error-top {
	display: block;
	color: red;
}

.date-picker-wrapper .drp_top-bar.normal .default-top {
	display: none;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top {
	display: block;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
	display: none;
}

.date-picker-wrapper .drp_top-bar .apply-btn {
	position: absolute;
	right: 0;
	top: 6px;
	margin: 0;
	padding: 3px 6px 4px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.date-picker-wrapper .drp_top-bar .apply-btn.disabled {
	cursor: pointer;
}

.date-picker-wrapper .time {
	position: relative;
}

.date-picker-wrapper.single-month .time {
	display: block;
}

.date-picker-wrapper .time input[type=range] {
	vertical-align: middle;
	width: 129px;
	padding: 0;
	margin: 0;
	height: 20px;
}

.date-picker-wrapper .time1 {
	width: 180px;
	padding: 0 5px;
	text-align: center;
}

.time2 {
	width: 180px;
	padding: 0 5px;
	text-align: center;
}

.date-picker-wrapper .time1 {
	float: left;
}

.date-picker-wrapper .time2 {
	float: right;
}

.date-picker-wrapper .hour {
	text-align: right;
}

.minute {
	text-align: right;
}

.date-picker-wrapper .hide {
	display: none;
}

.date-picker-wrapper .first-date-selected,
.date-picker-wrapper .last-date-selected {
	background-color: rgba(61,193,206,0.1) !important;
	border-color: #3dc1ce !important;
}

.date-picker-wrapper .date-range-length-tip {
	display: none;
	position: absolute;
	margin-top: -4px;
	margin-left: -8px;
	padding: 0 6px;
	font-size: 12px;
	font-weight: 500;
	font-family: Montserrat;
	letter-spacing: 0.5px;
	color: white;
	line-height: 16px;
	background-color: #f37043;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	-webkit-filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
	-moz-filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
	-ms-filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
	-o-filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
}

.date-picker-wrapper .date-range-length-tip::after {
	content: '';
	position: absolute;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #f37043;
	left: 50%;
	margin-left: 0px;
	bottom: -4px;
}

.date-picker-wrapper.two-months.no-gap .month1 .next,
.date-picker-wrapper.two-months.no-gap .month2 .prev {
	display: none;
}

.date-picker-wrapper .week-number {
	padding: 5px 0;
	line-height: 1;
	font-size: 12px;
	margin-bottom: 1px;
	color: #999;
	cursor: pointer;
}

.date-picker-wrapper .week-number.week-number-selected {
	color: #49e;
	font-weight: 700;
}

/** Floorplan **/

#floorplan {
	display: none;
	visibility: visible;
	opacity: 1;
	position: absolute;
	bottom: 0px;
	left: 0px;
	height: auto;
	width: auto;
	transition: all 200ms;
	z-index: 4;
}

#floorplan[data-view="thumbnail"] {
	max-width: 150px;
}

#floorplan[data-view="full"] {
	max-width: 400px;
}

#floorplanButton {
	display: none;
	height: 40px;
	width: 40px;
	float: left;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	font-size: 20px;
	line-height: 40px;
	color: #3dc1ce;
	text-align: center;
	cursor: pointer;
}

#floorplan h3 {
	visibility: visible;
	opacity: 1;
	position: absolute;
	display: block;
	top: -24px;
	width: 100%;
	margin: 0;
	padding: 6px 0 4px;
	font-size: 14px;
	font-family: Montserrat;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
	color: #fff;
	letter-spacing: 0.5px;
	background-color: rgba(0,0,0,0.5);
	cursor: pointer;
}

.floorplanToggle {
	position: absolute;
	display: block;
	top: -26px;
	right: 1px;
	transition: all 200ms;
	cursor: pointer;
}

.floorplanToggle i {
	font-size: 24px;
	color: #3dc1ce;
	line-height: 1;
	transition: all 200ms;
}

#floorplan[data-view="thumbnail"] .floorplanToggle i {
	transform: rotate(45deg);
}

#floorplan[data-view="full"] .floorplanToggle {
	top: -22px;
	right: 6px;
}

#floorplan[data-view="full"] .floorplanToggle i {
	transform: rotate(225deg);
}

#floorplan img {
	display: block;
	max-width: 100%;
	height: auto;
}

#floorplan .floorplanThumb {
	display: none;
}

#floorplan[data-view="thumbnail"] .floorplanThumb {
	display: block;
}

#floorplan .floorplanFull {
	display: none;
}

#floorplan[data-view="full"] .floorplanFull {
	display: block;
}

.floorplanPoint {
	position: absolute;
	cursor: pointer;
	z-index: 3;
}

.floorplanPoint::before {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	height: 10px;
	width: 10px;
	background-color: #3dc1ce;
	border-radius: 50%;
	transform: translate(-50%,-50%);
	transition: all 200ms;
	cursor: pointer;
}

.floorplanPoint::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	height: 14px;
	width: 14px;
	border-radius: 50%;
	border: 2px solid #308e98;
	transform: translate(-50%,-50%);
	transition: all 200ms;
	box-shadow: 0 0 10px 0px #3dc1ce;
	background-color: white;
	z-index: -1;
}

.floorplanPoint:hover {
	z-index: 999;
}

#floorplan[data-view="thumbnail"] .floorplanPoint::before {
	height: 6px;
	width: 6px;
}

#floorplan[data-view="thumbnail"] .floorplanPoint::after {
	height: 8px;
	width: 8px;
}

.floorplanPoint:hover::after {
	
}

.floorplanPoint.pointActive {
	cursor: default;
	z-index: 4 !important;
}

.floorplanPoint.pointActive::before {
	background-color: #f37043;
	cursor: default;
}

.floorplanPoint.pointActive::after {
	border-color: #c95d33;
	box-shadow: 0 0 10px 0 #f37043;
	cursor: default;
}

.floorplanPointText {
	position: absolute;
	left: 50%;
	height: auto;
	width: auto;
	transform: translate(-50%, -14px);
	opacity: 0;
	visibility: hidden;
	transition: all 200ms;
	text-shadow: 0px 0px 3px rgb(0,0,0);
	z-index: 5;
}

.floorplanPoint.pointActive + .floorplanPointText {
	cursor: default;
}
	
.floorplanPointText::after {
	content: '';
	position: absolute;
	display: block;
	left: 50%;
	bottom: -10px;
	height: 6px;
	width: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid rgba(0,0,0,0.75);
	transform: translateX(-50%);
	z-index: -1;
}

#floorplan[data-view="thumbnail"] .floorplanPointText {
	transform: translate(-50%, -10px);
}

#floorplan[data-view="full"][data-titles="visible"] .floorplanPointText {
	opacity: 0.75;
	visibility: visible;
}

#floorplan[data-view="full"] .floorplanPoint.pointActive + .floorplanPointText,
.floorplanPoint:hover + .floorplanPointText,
.floorplanPointText:hover {
	opacity: 1 !important;
	visibility: visible;
}

.floorplanPoint:hover + .floorplanPointText,
.floorplanPointText:hover {
	z-index: 6;
}

.floorplanPointText p {
	position: relative;
	max-width: 100px;
	margin: 0;
	padding: 4px 6px;
	font-size: 10px;
	font-weight: 500;
	font-family: Montserrat;
	color: white;
	text-align: center;
	background-color: rgba(0,0,0,0.75);
	border-radius: 4px;
	transition: all 200ms;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	text-shadow: 0 0 5px black;
}

.floorplanPoint.pointActive + .floorplanPointText p {
	background-color: rgba(55,115,121,0.95);
	cursor: default;
}

.floorplanPoint.pointActive + .floorplanPointText::after {
	border-top-color: rgba(55,115,121,0.95);
}

#sceneMenu {
	display: none;
	visibility: visible;
	opacity: 1;
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: #fff;
	z-index: 3;
}

#sceneMenu.hasFloorplan {
	left: calc(100% - 40px);
}

#sceneMenuButton {
	display: block;
	position: absolute;
	bottom: 0px;
	height: 40px;
	width: 40px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	font-size: 20px;
	color: #3dc1ce;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.25);
	line-height: 40px;
	cursor: pointer;
	transition: all 200ms;
}

#sceneMenuButton:hover {
	background-color: rgba(0,0,0,0.75);
}

#sceneMenu ul {
	position: absolute;
	display: block;
	bottom: 40px;
	max-height: calc(100vh - 220px);
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: rgba(0,0,0,0.85);
	transition: all 200ms;
	scroll-behavior: smooth;
}

#sceneMenu.hasFloorplan ul {
	right: calc(100% - 40px);
}

#sceneMenu ul.sceneMenuHide {
	visibility: hidden;
	opacity: 0;
}

#sceneMenu ul.sceneMenuShow {
	visibility: visible;
	opacity: 1;
}

#sceneMenu #sceneMenuUp,
#sceneMenu #sceneMenuDown {
	position: sticky;
	height: 27px;
	width: 100%;
	text-align: center;
	background-color: rgba(61,193,206,0.85);
	font-size: 20px;
	line-height: 27px;
	z-index: 4;
	cursor: pointer;
}

#sceneMenu #sceneMenuUp {
	top: 0px;
	box-shadow: 0 -5px 15px 0 black;
}

#sceneMenu #sceneMenuDown {
	bottom: 0px;
	box-shadow: 0 5px 15px 0 black;
}

#sceneMenu #sceneMenuUp::after,
#sceneMenu #sceneMenuDown::after {
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	z-index: 4;
}

#sceneMenu #sceneMenuUp::after {
	bottom: -3px;
	border-bottom: 1px solid rgba(61,193,206,0.2);
}

#sceneMenu #sceneMenuDown::after {
	top: -3px;
	border-top: 1px solid rgba(61,193,206,0.2);
}

#sceneMenu ul li {
	width: auto;
	margin: 2px 10px;
	padding: 6px 24px 6px 10px;
	font-size: 14px;
	font-family: Montserrat;
	border-left: 4px solid transparent;
	transition: all 200ms;
	white-space: nowrap;
	cursor: pointer;
}

#sceneMenu ul li:nth-child(2) {
	margin: 12px 10px 2px;
}

#sceneMenu ul li:nth-last-child(2) {
	margin: 2px 10px 12px;
}

#sceneMenu ul li.currentMenuItem {
	color: #3dc1ce;
	cursor: default;
}

#sceneMenu ul li.currentMenuItem:hover {
	border-color: transparent;
}

#sceneMenu ul li.currentMenuItem::after {
	content: " ";
	position: absolute;
	right: 16px;
	height: 0;
	width: 0;
	margin-top: 2px;
	border: 6px solid transparent;
	border-right-color: #f5f6fb !important;
	pointer-events: none;
}

#sceneMenu ul li::after {
	transition: all 200ms;
}

#sceneMenu ul li:hover {
	border-color: #3dc1ce;
}

#sceneMenu ul li:hover::after {
	content: " ";
	position: absolute;
	right: 16px;
	height: 0;
	width: 0;
	margin-top: 2px;
	border: 6px solid transparent;
	border-right-color: #f5f6fb !important;
	pointer-events: none;
}

#socialMenu {
	display: none;
	position: absolute;
	bottom: 0px;
	left: 40px;
	z-index: 3;
}

#socialMenu.singleSocialMenu {
	left: 0px;
}

#socialMenu.hasFloorplan {
	left: 150px;
}

#socialMenu > i {
	display: block;
	height: 40px;
	width: 40px;
	float: left;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	font-size: 20px;
	line-height: 40px;
	color: #3dc1ce;
	text-align: center;
	cursor: pointer;
}

#socialMenu > i:hover {
	background-color: rgba(0,0,0,0.75);
}

#socialMenu ul {
	visibility: hidden;
	opacity: 0;
	float: right;
	margin: 0;
	padding: 0;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	list-style-type: none;
	transition: all 200ms;
}

#socialMenu ul.socialMenuShow {
	visibility: visible;
	opacity: 1;
}

#socialMenu ul.socialMenuHide {
	visibility: hidden;
	opacity: 0;
}

#socialMenu ul li {
	display: block;
	height: 40px;
	width: 40px;
	float: left;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1) inset;
	font-size: 20px;
	color: #fff;
	line-height: 40px;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	transition: all 200ms;
	cursor: pointer;
}

#socialMenu ul li.whatsappIcon {
	background-color: rgba(37,211,102,0.75);
}

#socialMenu ul li.whatsappIcon:hover {
	background-color: rgba(37,211,102,1);
}

#socialMenu ul li.weixinIcon {
	background-color: rgba(0,204,51,0.75);
}

#socialMenu ul li.weixinIcon:hover {
	background-color: rgba(0,204,51,1);
}

#socialMenu ul li.facebookIcon {
	background-color: rgba(59,89,152,0.75);
}

#socialMenu ul li.facebookIcon:hover {
	background-color: rgba(59,89,152,1);
}

#socialMenu ul li.twtterIcon {
	background-color: rgba(56,161,243,0.75);
}

#socialMenu ul li.twtterIcon:hover {
	background-color: rgba(56,161,243,1);
}

#socialMenu ul li.linkedinIcon {
	background-color: rgba(0,119,181,0.75);
}

#socialMenu ul li.linkedinIcon:hover {
	background-color: rgba(0,119,181,1);
}

#adBanner {
	display: none;
	position: absolute;
	bottom: 25px;
	left: 50%;
	width: 80%;
	max-height: 90px;
	transform: translateX(-50%);
	text-align: center;
	z-index: 9;
}

.hasAds #adBanner {
	display: block;
}

#adBanner ins {
	height:90px;
	max-height:90px;
	width:100%;
	max-width:970px;
}

#weixinWindow {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.85);
	z-index: 3;
	transition: all 200ms;
}

#weixinWindow div {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 300px;
	transform: translate(-50%,-50%);	
	text-align: center;
}

#weixinWindow input {
	display: block;
	width: 100%;
	background-color: transparent;
	box-shadow: none;
	border: none;
	font-size: 16px;
	font-family: Montserrat;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

#weixinWindow i {
	margin-bottom: 8px;
	font-size: 50px;
	color: rgb(0,204,51);
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

#weixinWindow p {
	margin: 8px 0;
	font-size: 16px;
	font-family: Montserrat;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

#weixinWindow p:last-child {
	margin: 0px;
}

#weixinWindow a {
	display: inline-block;
	margin: 14px 0 0;
	padding: 6px 12px;
	background-color: rgba(0,204,51,0.85);
	font-size: 14px;
	font-family: Montserrat;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

#authorWrapper {
	display: none;
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 10px;
	left: 10px;
	max-height: 100%;
	max-width: 150px;
}

#watermark {
	height: auto;
	max-height: 100%;
	max-width: 150px;
	margin-bottom: 5px;
}

#author {

}

#author p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat;
	color: white;
	text-align: left;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

#author p:first-child {
	margin-bottom: 2px;
	color: #fff;
}

#author p:last-child {
	
}

#author p:last-child a {
	color: #fff;
	transition: all 200ms;
}

#author p:last-child a:hover {
	color: #3dc1ce;
}

#cta {
	position: absolute;
	visibility: visible;
	opacity: 1;
	top: 50%;
	max-width: 450px;
	transform: translateY(-50%);
	transition: all 200ms;
}

#cta > div {
	background-color: rgba(0,0,0,0.5);
	padding: 35px 50px;
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.25);
}

#cta span {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all 200ms;
	cursor: pointer;
}

#cta span i {
	font-size: 18px;
	color: #3dc1ce;
	transition: all 200ms;
}

#cta span:hover i {
	text-shadow: 0 0 5px rgba(255,255,255,0.5)
}

#cta:hover span {
	visibility: visible;
	opacity: 1;
}

#cta h2,
#cta p,
#cta a {
	color: #fff;
	text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

#cta h2 {
	margin: 0px 0px 0px;
	font-size: 32px;
	font-weight: 600;
	font-family: Montserrat;
	line-height: 1.1;
}

#cta p {
	margin: 10px 0 24px;
	font-size: 20px;
	font-weight: 500;
}

#cta .ctaButton {
	display: inline-block;
	position: relative;
	padding: 12px 40px;
	text-align: center;
	color: #fff;
	font-family: Montserrat;
	font-size: 24px;
	font-weight: 500;
	background: -webkit-linear-gradient(left, #d0302a 0%, #f37043 100%);
	background: -moz-linear-gradient(left, #d0302a 0%, #f37043 100%);
	background: -ms-linear-gradient(left, #d0302a 0%, #f37043 100%);
	background: -o-linear-gradient(left, #d0302a 0%, #f37043 100%);
	background: linear-gradient(left, #d0302a 0%, #f37043 100%);
}

#cta .ctaButton::before,
#cta .ctaButton::after {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 200ms;
	line-height: 54px;
}

#cta .ctaButton::before {
	background: -webkit-linear-gradient(left, #d0302a 0%, #dd633c 100%);
	background: -moz-linear-gradient(left, #d0302a 0%, #dd633c 100%);
	background: -ms-linear-gradient(left, #d0302a 0%, #dd633c 100%);
	background: -o-linear-gradient(left, #d0302a 0%, #dd633c 100%);
	background: linear-gradient(left, #d0302a 0%, #dd633c 100%);
}

#cta .ctaButton::after {
	background: -webkit-linear-gradient(left, #d0302a 0%, #c95d33 100%);
	background: -moz-linear-gradient(left, #d0302a 0%, #c95d33 100%);
	background: -ms-linear-gradient(left, #d0302a 0%, #c95d33 100%);
	background: -o-linear-gradient(left, #d0302a 0%, #c95d33 100%);
	background: linear-gradient(left, #d0302a 0%, #c95d33 100%);
}

#cta .ctaButton:hover::before,
#cta .ctaButton:focus::after {
	opacity: 1;
}

#ctaHandle {
	display: none;
	position: absolute;
	top: 50%;
	right: 24px;
	height: 50px;
	width: 20px;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.5);
	cursor: pointer;
}

#ctaHandle span {
	position: relative;
	top: 12px;
	left: 5px;
	font-size: 20px;
	font-weight: 600;
	font-family: Montserrat;
	color: #fff;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
}

.controlBar {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 40px;
	float: left;
	background: rgba(0,0,0,0) -webkit-linear-gradient(center top, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -moz-linear-gradient(center top, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -o-linear-gradient(center top, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -ms-linear-gradient(center top, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	pointer-events: none;
	z-index: 1;
}

.controlBar .controlIcon {
	cursor: pointer;
	float: right;
	width: 36px;
	height: 100%;
	margin-right: 18px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	pointer-events: auto;
	transition: all 200ms;
}

.controlBar #fullscreenButton {
	margin-left: -6px;
	margin-right: 2px;
}
.controlBar .settingsMenu {
	display: none;
	padding: 5px 0px;
	position: fixed;
	bottom: 100%;
	right: 14px;
	background-color: #333;
	font-family: Montserrat;
	font-size: 14px;
	visibility: hidden;
	opacity: 1;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 12pt;
	border-radius: 2px;
	overflow: hidden;
	will-change: width, height, opacity;
	pointer-events: auto;
}

.hotspotBox {
	
}

.shortTextHotspot {
	position: absolute;
	top: 85px;
	left: 0px;
	width: auto;
	max-width: 200px;
	max-height: 50%;
	padding: 10px;
	text-align: left;
}

.shortTextHotspot span {
	display: inline-block;
	position: relative;
	width: auto;
	padding: 8px 14px;
	margin: 0;
	border-radius: 4px;
	font-family: Lato;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.5px;
	text-shadow: 0px 0px 3px rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
	transition: all 200ms ease-in-out;
}

.shortTextHotspot span .shortTextLink {
	padding: 0px 2px 2px;
	border-bottom: 1px dotted rgb(61, 193, 206);
}

.shortTextHotspot span .shortTextLinkIcon {
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 12px;
	transform: rotate(45deg);
	color: #a0f5fd;
}

.shortTextHotspotLock {

}

.closeHotspotElement {
	position: absolute;
	top: 10px;
	right: 8px;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	line-height: 24px;
	text-align: center;
	color: #fff;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	text-shadow: none;
	background-color: rgba(0,0,0,0.9);
	transition: all 200ms;
	cursor: pointer;
}

.closeHotspotElement:hover {
	color: #3dc1ce;
}

.hotspotBox:hover .closeHotspotElement {
	opacity: 1;
	visibility: visible;
}

.bigTextHotspotBox > div,
.imageHotspotBox > div,
.imageTextHotspotBox > div {
	display: inline-block;
}

.bigTextHotspotBox > div:first-child,
.imageHotspotBox > div:first-child,
.imageTextHotspotBox > div:first-child {
	height: 100%;
	width: 10px;
	vertical-align: middle;
}

.bigTextHotspotBox > div:last-child,
.imageHotspotBox > div:last-child,
.imageTextHotspotBox > div:last-child {
	position: relative;
	width: 350px;
	vertical-align: middle;
}

.bigTextHotspotBox {
	display: none;
	height: 350px;
	width: 370px;
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,0.85);
	padding: 0;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.bigTextHotspotBox > div:last-child {
	height: auto;
	margin-bottom: 4px;
	border-radius: 4px;
	background-color: rgba(0,0,0,0.85);
	box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
}

.bigTextHotspotBox h3 {
	margin: 0 0 12px;
	padding: 15px 15px 8px;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	background-color: rgba(255,255,255,0.1);
}

.hotspotText {
	max-height: 135px;
	overflow: auto;
	padding: 0 15px;
	margin: 0 0 15px;
	font-size: 16px;
	font-family: Lato;
	text-align: left;
}

.imageHotspotBox {
	display: none;
	height: 350px;
	width: 370px;
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	padding: 0;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.imageHotspotBox > div:last-child {
	height: auto;
	background-color: transparent;
	text-align: center;
}

.imageHotspotBox img {
	display: inline;
	max-width: 100%;
	height: auto;
}

.imageTextHotspotBox {
	display: none;
	height: 420px;
	width: 370px;
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,0.85);
	padding: 0;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.imageTextHotspotBox > div:last-child {
	max-height: 100%;
	margin-bottom: 4px;
	border-radius: 4px;
	text-align: center;
	background-color: rgba(0,0,0,0.85);
	box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
}

.imageTextHotspotBox h3 {
	margin: 0;
	padding: 15px 15px 8px;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	background-color: rgba(255,255,255,0.1);
}

.imageTextHotspotBox img {
	max-width: 100%;
	max-height: 155px;
	height: auto;
	margin: 20px 0 0;
}

.imageTextHotspotBox .hotspotText {
	padding: 0 15px;
	margin: 10px 0 15px;
}

#credits {
	display: none;
	visibility: visible;
	opacity: 1;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
}

#credits > div {
	position: relative;
	height: 25px;
	padding-right: 20px;
	background: rgba(0,0,0,0) -webkit-linear-gradient(center bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -moz-linear-gradient(center bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -o-linear-gradient(center bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	background: rgba(0,0,0,0) -ms-linear-gradient(center bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)) repeat scroll 0% 0%;
	text-align: right;
	text-shadow: 0 0 5px rgba(0,0,0,0.85);
	z-index: 2;
}

#credits p {
	margin: 0;
	font-size: 12px;
	color: #fff;
	letter-spacing: 1.5px;
	line-height: 24px;
	text-transform: lowercase;
	text-align: center;
}

#credits.hasGallery * {
	text-align: right;
}

#credits a {
	font-weight: 500;
	font-family: Montserrat;
	letter-spacing: 1px;
}

/** Recoverable page **/

.recoverable #authorWrapper,
.recoverable #sceneMenu,
.recoverable #socialMenu,
.recoverable #adBanner,
.recoverable #credits {
	display: block;
}

.recoverable .bodyMask,
.recoverable .bodyMask::after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
}

.recoverable .bodyMask {
	filter: blur(15px);
	background-size: cover;
	z-index: 0;
}

.recoverable .bodyMask::after {
	content: '';
	background-color: rgba(255,255,255,0.75);
	z-index: 1;
}

.recoverable .content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 300px;
	min-width: 100px;
	min-height: 100px;
	padding: 15px 20px 20px;
	background-color: #f5f6fb;
	border-radius: 10px;
	font-family: Open Sans;
	text-align: center;
	transform: translate(-50%, calc(-50% + -25px));
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
	overflow: hidden;
	z-index: 3;
}

.recoverable .recoverableLogo {
	display: block;
	margin-bottom: 10px;
	text-align: center;
}

.recoverable .recoverableLogo img {
	display: inline;
}

.recoverable .content h1 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat;
	color: #377379;
}

.recoverable .content p {
	margin: 0 0 15px;
	font-size: 14px;
	font-weight: 500;
	font-family: Montserrat;
	color: #555;
}

.recoverable .content .contactForm {
	visibility: visible;
	opacity: 1;
	transition: all 200ms;
}

.recoverable .content .contactForm form {
	width: inherit;
}

.recoverable .content .contactForm form .form-group {
	margin-bottom: 0;
}

.recoverable .content .contactForm form input {
	margin: 0 auto 8px;
	color: #555;
	border: 1px dotted #787878;
	box-shadow: none;
	background-color: transparent;
	box-sizing: border-box;
	text-align: center;
	border-radius: 6px;
	transition: all 200ms;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all 200ms;
}

.recoverable .content .contactForm .form-group[data-activity="idle"] input {
	border-color: #787878;
}

.recoverable .content .contactForm .form-group[data-activity="error"] input {
	border-color: #d0302a;
	box-shadow: 0 -1px 2px 0 rgba(208,48,42,0.5);
}

.recoverable .content .contactForm form input:focus {
	border-color: #3dc1ce;
}

input#not_human {
	display: none !important;
}

.recoverable .content .contactForm form button {
	min-height: 28px;
	margin: 15px auto 0;
	padding: 5px 16px 7px 28px;
	font-weight: 500;
	font-family: Montserrat;
	color: #fff;
	letter-spacing: 0.75px;
	border: none;
	background-color: #3a3a3a;
	box-shadow: 0 -10px 20px 0 transparent inset;
	cursor: pointer;
	
	background: -webkit-linear-gradient(bottom, #3a3a3a 0%, #555555 100%);
	background: -moz-linear-gradient(bottom, #3a3a3a 0%, #555555 100%);
	background: -ms-linear-gradient(bottom, #3a3a3a 0%, #555555 100%);
	background: -o-linear-gradient(bottom, #3a3a3a 0%, #555555 100%);
	background: linear-gradient(bottom, #3a3a3a 0%, #555555 100%);
}

.recoverable .content .contactForm form button:hover {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.1) inset;
}

.recoverable .content .contactForm form button:focus {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.2) inset;
}

.recoverable .content .contactForm form button i {
	margin-right: 6px;
	margin-left: -18px;
}

.recoverable .content[data-send="sending"] .contactForm,
.recoverable .content[data-send="done"] .contactForm {
	visibility: hidden;
	opacity: 0;
}

.recoverable .content .contactProgress {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #f5f6fb;
	transition: all 200ms;
}

.recoverable .content[data-send="sending"] .contactProgress.contactSending,
.recoverable .content[data-send="done"] .contactProgress.contactDone {
	visibility: visible;
	opacity: 1;
}

.recoverable .content .contactProgress div {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 200px;
	max-width: 200px;
}

.recoverable .content .contactProgress.contactDone div {
	transform: translate(-50%, calc(-50% + 5px));
}

.recoverable .content .contactProgress.contactSending div {
	transform: translate(-50%, calc(-50% - 5px));
}

.recoverable .content .contactProgress div p {
	margin-bottom: 0;
}

.recoverable .content .contactProgress.contactSending p {
	margin-top: -20px;
}

.recoverable .content .contactProgress.contactDone img {
	max-width: 100px;
	height: auto;
	margin-bottom: 10px;
}

@media only screen and (min-width:769px) {
	#floorplan[data-view="thumbnail"] .floorplanPoint.pointActive + .floorplanPointText { opacity: 1 !important; visibility: visible; }
}

@media only screen and (max-width:768px) {
	.panoListing #panoTitle { top: 10px; text-align: center; right: 0; transform: translateX(-50%); max-width: unset; }
	#panoTitle { top: 40px; text-align: right; right: 10px; transform: unset; max-width: calc(100% - 135px); }
	#watermark.panopediaLogo { display: block; width: 120px; padding: 0; }
	#watermark { max-height: 24px; }
	#author { top: 40px; max-width: 110px; padding: 0; background-color: transparent; box-shadow: none; }
	#author p { font-family: Montserrat; font-weight: 500; }
	#author p:first-child { font-size: 14px; }
	#author p:last-child { font-size: 14px; }
	.controlBar .controlIcon { margin-right: 12px; }

	#floorplan[data-view="thumbnail"] { max-width: 0; }
	#floorplan[data-view="thumbnail"] h3,
	#floorplan[data-view="thumbnail"] .floorplanToggle,
	#floorplan[data-view="thumbnail"] .floorplanPoint { display: none; }
	#floorplanButton { display: block; }

	#floorplan[data-view="full"] { top: 0; left: 0; height: 100vh; width: 100vw; max-width: unset; background-color: rgba(0,0,0,0.85); }
	#floorplan[data-view="full"] > div { position: absolute; top: 50%; left: 50%; width: 87vw; transform: translate(-50%, -50%); }
	#floorplan[data-view="full"] .floorplanFull {  }

	#floorplan[data-view="full"] #floorplanButton { display: none; }
	#floorplan[data-view="full"] h3,
	#floorplan[data-view="full"] .floorplanToggle,
	#floorplan[data-view="full"] .floorplanPoint { display: block; }

	#floorplan[data-view="full"] h3 { top: -48px; font-size: 28px; background-color: transparent; }
	#floorplan[data-view="full"] .floorplanToggle { top: -48px; }
	#floorplan[data-view="full"] .floorplanToggle i { font-size: 48px; }

	#sceneMenu.hasFloorplan { display: none !important; }
	#sceneMenuButton,
	#floorplanButton,
	#socialMenu > i { background-color: rgba(0,0,0,0.85); }
	#socialMenu { left: unset !important; right: 0px; }
	#socialMenu > i,
	#socialMenu ul,
	#socialMenu ul li { float: unset; width: 40px; }
	#cta { right: unset !important; left: 50% !important; width: calc(100vw - 90px); text-align: center !important; top: 100%; transform: translate(-50%, calc(-100% + -50px)); }
	#cta > div { padding: 20px 15px; }
	#cta h2 { font-size: 20px; }
	#cta p { margin: 6px 0 14px; font-size: 14px; }
	#cta .ctaButton { font-size: 16px; padding: 8px 20px; }
	#cta .ctaButton::before,
	#cta .ctaButton::after { line-height: 34px; }
	#ctaHandle { top: unset; bottom: 4px; right: unset !important; left: 50% !important; transform: translateX(-50%) rotate(90deg); }
	#credits > div { height: 22px; padding-right: 0px; text-align: center; }
	#credits p { font-size: 10px; }
	.bigTextHotspotBox > div:last-child,
	.imageTextHotspotBox > div:last-child { background-color: rgba(0,0,0,0.65); }

	.hasAds #authorWrapper { top: 100px; }
	.hasAds .controlBar { top: 90px; }
	.hasAds #panoTitle { top: 130px; }

	#adBanner { top: 0; left: 0px; transform: none; width: 100%; }
}

@media only screen and (max-width:420px) {
	.hasAds #authorWrapper { top: 60px; }
	.hasAds .controlBar { top: 50px; }
	.hasAds #panoTitle { top: 90px; }

	#adBanner { top: 0px; bottom: unset; height: 50px; }
	#adBanner ins { max-height: 50px; }
}

@media only screen and (max-height:420px) {
	#iosSensorNotice > div { width: 450px; }
	#iosSensorNotice img { max-height: 100px; }
	#iosSensorNotice p { font-size: 16px; }
	#iosSensorNotice b { font-size: 20px; }
	#iosSensorNotice a { padding: 4px 20px; }
	#cta { display: none; }
}

@media only screen and (max-height:300px) and (max-width:300px) {
	.controlBar,
	#authorWrapper,
	#floorplan,
	#sceneMenu,
	#socialMenu { display: none !important; }
	#panoTitle { top: 5px; text-align: center; right: unset; left: unset; max-width: unset; width: 100%; font-size: 12px; }
	.hasAds #panoTitle { top: 5px; }
	.hasAds #credits { bottom: 50px; }
	#adBanner { top: unset; bottom: 0px; height: 50px; }
}