#floor-selector {
	position: relative;
}

#floor-selector, #floor-selector-svg, #floor-selector-bcg {
	display: block;
	width: 100%;
	aspect-ratio: 3000 / 1688;
}

#floor-selector-svg {
	height: 100%;
	position: relative;
	z-index: 1;
}

#floor-selector-bcg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 0;
}

#floor-selector .floor-area {
	pointer-events: none;
	fill: transparent;
}

#floor-selector .floor-area .area {
	pointer-events: auto;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	fill: transparent;
}

#floor-selector .floor-area .cover {
	pointer-events: none;
	opacity: 0;
	fill: #000000;
}

#floor-selector.selector-hover .floor-area .cover {
	transition: opacity 0.3s ease;
}

#floor-selector .floor-area.active .area, #floor-selector .floor-area.hover .area {
	fill: #000000;
	opacity: 0;
}

#floor-selector .floor-area.active .cover, #floor-selector .floor-area.hover .cover {
	opacity: 0.5;
}

/* desc */

#floor-selector .floor-desc {
	font-family: var(--font-family-everett);
	font-size: 125px;
	fill: #ffffff;
	letter-spacing: var(--letter-spacing-everett-xs-font);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

#floor-selector .floor-area.hover .floor-desc {
	opacity: 1;
}

#floor-selector .floor-desc-text {
	font-size: 50px;
}

#floor-selector .superscript {
	font-size: 50%;
}
