@charset "utf-8";

/* floorBtn */
.lowerLayer .floorBtn {
	display: flex;
	justify-content: center;
	gap: 0 20px;
}
.lowerLayer .floorBtn li {
	width: 248px;
}
.lowerLayer .floorBtn li a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	font-size: 15px;
	font-weight: 600;
	background: var(--whiteColor);
	border-radius: 8px;
	line-height: 1.2;
	padding: 0 10px;
	text-align: center;
}
.lowerLayer .floorBtn li a[aria-current="page"] {
	border: 2px solid var(--greenColor);
}
@media (max-width: 768px) {
	.lowerLayer .floorBtn {
		gap: 10px;
	}
	.lowerLayer .floorBtn li {
		width: calc((100% - 10px) / 2);
	}
	.lowerLayer .floorBtn li a {
		height: 41px;
		font-size: 12.5px;
		border-radius: 6px;
		padding-bottom: 1px;
	}
}

/* floorMap */
.lowerLayer .floorMap {
	padding: 50px 0 10px;
	text-align: center;
}
.lowerLayer .floorMap .floorImg {
	overflow: hidden;
	position: relative;
	cursor: default;
	padding: 0 50px;
}
.lowerLayer .floorMap .floorImg.draggable {
	cursor: grab;
}
.lowerLayer .floorMap .floorImg:active {
	cursor: grabbing;
}
.lowerLayer .floorMap .floorImg .floorInner {
	display: inline-block;
	position: relative;
	transition: transform 0.3s ease-out;
	transform-origin: top center;
	will-change: transform;
	width: auto;
	height: auto;
	margin: 0 auto;
}
.lowerLayer .floorMap .floorImg img {
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
}
.lowerLayer .floorMap .floorInfo {
	margin-top: 45px;
	padding: 0 50px;
}
@media (max-width: 768px) {
	.lowerLayer .floorMap {
		padding: 25px 0 10px;
	}
	.lowerLayer .floorMap .floorImg {
		padding: 0;
	}
	.lowerLayer .floorMap .floorInfo {
		margin-top: 20px;
		padding: 0;
	}
}

/* btnZoom */
.lowerLayer .floorMap .btnZoom {
	position: absolute;
	right: 60px;
	bottom: 5px;
	display: flex;
	flex-direction: column;
}
.lowerLayer .floorMap .btnZoom button {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--greenColor);
	color: var(--whiteColor);
	cursor: pointer;
	position: relative;
}
.lowerLayer .floorMap .btnZoom .zoomInButton::before,
.lowerLayer .floorMap .btnZoom .zoomInButton::after {
	display: block;
	content: '';
	width: 20px;
	height: 2px;
	background: var(--whiteColor);
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 10px);
	transform: rotate(0);
	transition: all 0.3s ease-out;
}
.lowerLayer .floorMap .btnZoom .zoomInButton::before {
	transform: rotate(-90deg);
}
.lowerLayer .floorMap .btnZoom .zoomOutButton {
	margin-top: 10px;
	position: relative;
}
.lowerLayer .floorMap .btnZoom .zoomOutButton::after {
	display: block;
	content: '';
	width: 20px;
	height: 2px;
	background: var(--whiteColor);
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 10px);
	transform: rotate(0);
	transition: all 0.3s ease-out;
}
@media (max-width: 768px) {
	.lowerLayer .floorMap .btnZoom {
		right: 5px;
		bottom: 10px;
	}
	.lowerLayer .floorMap .btnZoom button {
		width: 34px;
		height: 34px;
	}
	.lowerLayer .floorMap .btnZoom .zoomInButton::before,
	.lowerLayer .floorMap .btnZoom .zoomInButton::after {
		width: 16px;
		height: 2px;
		top: calc(50% - 1px);
		left: calc(50% - 8px);
	}
	.lowerLayer .floorMap .btnZoom .zoomOutButton {
		margin-top: 8px;
	}
	.lowerLayer .floorMap .btnZoom .zoomOutButton::after {
		width: 16px;
		height: 2px;
		top: calc(50% - 1px);
		left: calc(50% - 8px);
	}
}
