/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 11:24:53 */
.neoweb-floor-map {
	position: relative;
	width: 100%;
	min-height: var(--neoweb-floor-map-min-height, 100svh);
	background-image: var(--neoweb-floor-map-bg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
}

.neoweb-floor-map *,
.neoweb-floor-map *::before,
.neoweb-floor-map *::after {
	box-sizing: border-box;
}

.neoweb-floor-map__inner {
	position: relative;
	width: 100%;
	min-height: var(--neoweb-floor-map-min-height, 100svh);
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.53) 0%,
		rgba(0, 0, 0, 0.3) 10%,
		rgba(0, 0, 0, 0.05) 30%
	);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.neoweb-floor-map__map {
	position: relative;
	width: 100%;
	min-height: var(--neoweb-floor-map-min-height, 100svh);
}

.neoweb-floor-map__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 3;
}

.neoweb-floor-map__connector-layer {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.neoweb-floor-map__connector-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.neoweb-floor-map__item {
	cursor: pointer;
}

.neoweb-floor-map__shape-visual {
	fill: transparent;
	pointer-events: none;
	transition: fill 0.22s ease;
}

.neoweb-floor-map__shape-hit {
	fill: transparent;
	stroke: none;
	stroke-width: 0;
	vector-effect: non-scaling-stroke;
	cursor: pointer;
	outline: none;
}

.neoweb-floor-map__item:hover .neoweb-floor-map__shape-visual,
.neoweb-floor-map__item.is-active .neoweb-floor-map__shape-visual {
	fill: rgba(194, 133, 98, 0.45);
}

.neoweb-floor-map__info {
	position: absolute;
	z-index: 5;
	pointer-events: none;
	width: 350px;
}

.neoweb-floor-map__info-box {
	width: 350px;
	padding: 24px;
	background: rgba(0, 0, 0, 0.6);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	pointer-events: auto;
	opacity: 0;
	transform: translateY(10px);
	visibility: hidden;
	will-change: opacity, transform;
	backdrop-filter: blur(.2px);
	-webkit-backdrop-filter: blur(.2px);
}

.neoweb-floor-map__info.is-visible .neoweb-floor-map__info-box {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition:
		opacity 0.42s ease,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.neoweb-floor-map__kicker {
	margin: 0 0 14px;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #c28562;
	font-weight: 700;
}

.neoweb-floor-map__title {
	margin: 8px 0 16px;
	font-size: 22px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}

.neoweb-floor-map__subtitle {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #c28562;
	font-weight: 700;
}

.neoweb-floor-map__meta {
	margin: 0;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
	.neoweb-floor-map__info {
		width: 230px;
	}

	.neoweb-floor-map__info-box {
		width: 230px;
		padding: 26px 22px;
	}

	.neoweb-floor-map__title {
		font-size: 32px;
	}

	.neoweb-floor-map__meta {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.neoweb-floor-map {
		min-height: var(--neoweb-floor-map-mobile-min-height, 45svh);
		background-position: center center;
	}

	.neoweb-floor-map__inner {
		min-height: var(--neoweb-floor-map-mobile-min-height, 45svh);
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.46) 0%,
			rgba(0, 0, 0, 0.22) 18%,
			rgba(0, 0, 0, 0.05) 38%
		);
	}

	.neoweb-floor-map__map {
		min-height: var(--neoweb-floor-map-mobile-min-height, 45svh);
	}

	.neoweb-floor-map__info {
		width: 160px;
		max-width: calc(100% - 24px);
	}

	.neoweb-floor-map__info-box {
		width: 160px;
		max-width: calc(100vw - 24px);
		padding: 10px 10px;
		background: rgba(0, 0, 0, 0.62);
	}

	.neoweb-floor-map__kicker {
		margin: 0 0 6px;
		font-size: 7px;
		line-height: 1;
		letter-spacing: 0.14em;
	}

	.neoweb-floor-map__title {
		margin: 2px 0 6px;
		font-size: 12px;
		line-height: 1.1;
	}

	.neoweb-floor-map__subtitle {
		margin: 0 0 6px;
		font-size: 7px;
		line-height: 1.3;
		letter-spacing: 0.1em;
	}

	.neoweb-floor-map__meta {
		font-size: 9px;
		line-height: 1.3;
	}
}

@media (max-width: 480px) {
	.neoweb-floor-map__info {
		width: 170px;
		max-width: calc(100% - 20px);
	}

	.neoweb-floor-map__info-box {
		width: 170px;
		max-width: calc(100vw - 20px);
		padding: 9px 9px;
	}

	.neoweb-floor-map__kicker {
		font-size: 6px;
		letter-spacing: 0.12em;
		margin-bottom: 5px;
	}

	.neoweb-floor-map__title {
		font-size: 11px;
		margin-bottom: 5px;
	}

	.neoweb-floor-map__subtitle {
		font-size: 6px;
		letter-spacing: 0.08em;
		margin-bottom: 5px;
	}

	.neoweb-floor-map__meta {
		font-size: 8px;
		line-height: 1.28;
	}
}