.ggskin {
	font-family: var(--font-family, inherit);
	font-size: 14px;
}

.blur {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.montarioMapContainer,
.floorPlanContainer {
	border-radius: 10px;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.5);
	border: solid 1px rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.25);
}

.montarioMapContainer div {
	font-size: 13px !important;
}

.floorPlanPin, .floorPlanPinWithoutPano{
	border: 2px solid rgba(255, 255, 255, 0.784) !important;
	border-radius: 50% !important;
	cursor: pointer !important;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5) !important;
}
.ggskin_map svg{
	pointer-events: none !important;
}
.floorPlanPinWithoutPano {
	height: 16px;
	width: 16px;
	position: absolute;
	visibility: inherit;
	pointer-events: auto;
	transform-origin: 50% 50%;
	transform-origin: center;
	transition: transform 200ms ease 0ms, background-color 0s ease 0s, border-color 200ms ease 0ms;
	/* transform: translate(-50%, -50%) rotate(0deg) scale(1, 1); */
	z-index: 2;
}

.mapPinHover {
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4) !important;
	background: linear-gradient(180deg, #F00 0%, #A80000 100%) !important;
	transform: scale(120%) !important;
}

.floorPlanOpenButton {
	transition: all 0.2s ease !important;
}

.floorPlanOpenButton:hover {
	background: linear-gradient(0deg, rgba(207, 138, 58, 1) 0%, rgba(224, 180, 129, 1) 100%) !important;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4) !important;
}

.floorPlanButtons {
	transition: all 0.2s ease;
	z-index: 1;
	box-sizing: border-box;
}

.floorPlanButtons:hover {
	background: linear-gradient(0deg, rgba(207, 138, 58, 1) 0%, rgba(224, 180, 129, 1) 100%) !important;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4) !important;
	border: transparent !important;
}

.floorPlanPin {
	box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
	background: linear-gradient(180deg, #B00 0%, #940000 100%) !important;
	z-index: 1 !important;
}

.floorPlanPinActive {
	z-index: 2 !important;
}

.floorPlanPin:hover {
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4) !important;
	background: linear-gradient(180deg, #F00 0%, #A80000 100%) !important;
}

#radarPath {
	stroke-opacity: 0.3 !important;
}



.htInfo.htInfoWithoutIcon {
	background-color: var(--colorGreenDark) !important;
	box-shadow: 0 0 0 3px #ffffff80;
}

.htInfo {
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	transition: all 0.3s ease !important;
	width:var(--hotspotSize) !important;
	height:var(--hotspotSize) !important;
	left: calc(50% - var(--hotspotSize) / 2) !important;
	top: calc(50% - var(--hotspotSize) / 2) !important;
}

.ggskin_hotspot .ggskin_svg{
	width:var(--hotspotIconSize) !important;
	height:var(--hotspotIconSize) !important;
	left: calc(50% - var(--hotspotIconSize) / 2) !important;
	top: calc(50% - var(--hotspotIconSize) / 2) !important;
}

.htInfo:hover,
.htInfoHover {
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4) !important;
	transition: all 0s !important;
	/* border-color:transparent !important; */
	border: none !important;
}
.htInfoHover.htInfoWithoutIcon{
	background: linear-gradient(0deg, var(--colorGreenDark) 0%, var(--colorGreenLight) 100%) !important;
}
.htInfoHover {
	transform: scale(120%) !important;
}

.animatedHSback {
	width: 100px;
	height: 100px;
	border-radius: 50px;
	pointer-events: none;
	background-color: #ffFFFF;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	/* animation-name: bgCircleSize; */
	transform-origin: center center;
	animation-timing-function: ease-out;
}

.shadow {
	box-shadow: 0px 4px 10px #E0B481;
}

.hsInfoTitle>div {
	font-size: 14px !important;
	font-weight: 400 !important;
	background: rgba(0, 0, 0, 0.55) !important;
	border-radius: 3px !important;
	padding: 0.5em !important;
}

@keyframes bgCircleSize {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}

	25% {
		transform: scale(0.9);
		opacity: 1;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}




















/* Floor Selector */
.floorHotspot:hover {
	z-index: 5 !important;
}

.hotspotCalloutLine {
	transform-origin: left !important;
}

.floorHotspotCircle {
	background: #E0B481;
	transition: all 0.0s ease !important;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
	border: solid 2px white !important;
	width:var(--floorSelectorHotspotSize) !important;
	height:var(--floorSelectorHotspotSize) !important;
	left: calc(50% - var(--floorSelectorHotspotSize) / 2) !important;
	top: calc(50% - var(--floorSelectorHotspotSize) / 2) !important;
}

.floorHotspot:hover .floorHotspotCircle {
	background: #E0B481;
	background: linear-gradient(0deg, rgba(207, 138, 58, 1) 0%, rgba(224, 180, 129, 1) 100%) !important;
	transition: all 0.3s ease !important;
}

.floorHotspotName>div {
	color: black !important;
	transition: color 0.3s ease;
}

.floorHotspot:hover .floorHotspotName>div {
	color: white !important;
}



.undergroundFloorHotspot {
	border-style: dotted !important;
	background: rgba(54, 66, 77, 0.7) !important;

}

.undergroundFloorHotspot .floorHotspotName>div {
	color: white !important;
}

.noDelay {
	transition-delay: 0s !important;
}

.panoResetViewButton {
	opacity: 0 !important;
	transform: scale(0) !important;
	transition: all 0.5s ease;
}

.panoResetViewButtonVisible {
	opacity: 1 !important;
	transform: scale(1) !important;
}


/* Callout Text */
.callOutText {
	min-width: 150px;
}

.callOutText>div {
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
	transform-origin: left;
	transition: transform 0.5s ease;
	transition-delay: 0.2s;
	transform: scale(1) translateX(0);
	border-left: solid 2px white !important;
}

.callOutText.noDelay>div {
	transform: scale(0.5) translateX(-0px);
	transition-delay: 0.0s;
}

.callOutText::before {
	content: "";
	position: absolute;
	z-index: -1;
}

.callOutText strong {
	color: #E0B481 !important;
}

.floorCalloutText {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

.floorCalloutText div {
	position: relative;
}

.floorCalloutTextRow {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: white !important;
	font-size: 10px !important;
	padding:3px 5px;
	/* border-bottom:dashed 1px rgba(255,255,255,0.3) !important; */
}
.floorCalloutTextRow:first-child{
	text-transform: uppercase;
	/* border-bottom: none !important; */
	margin-bottom: 5px !important;
}
.floorCalloutTextRow:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.1)!important;
}
.value {
	color: #E0B481;
	margin-left: 10px !important;
}
/* Callout Text */
/* Floor Selector */


/* Start animation */
.panoStartAnimation{
	position: absolute;
	width:100%;
	text-align: center;
	pointer-events: none;
	z-index: 12;
	display: block;
	padding-top: 100px;
	bottom:calc(var(--footerHeight) * 2 + var(--thumbLineHeight));
	text-shadow: 0 0 30px #000;
	font-weight: 500;
	transform: scale(0) translate(0%, 100%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform-origin: bottom;
	color:white;
}
.panoStartAnimation > img{
	width:110px;
	display: block;
	margin: 0 auto;
}
.hintAnimationStart{
	opacity: 1;
	transform: scale(1) translate(0%, 0);
}
/* Start animation */