body {
	margin: 0;
	position: relative;
}
button {
	all: unset;
	cursor: pointer;
	display: block;
}

.hidden {
	display: none;
}
.popup {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
}

#wrap {
	display: flex;
	justify-content: space-between;
}

#sidebar {
	min-width: 250px;
	height: 100vh;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
#sidebar_one {
	height: calc(100% - 100px);
}
#sidebar_title {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid black;
	box-sizing: border-box;
}
#sidebar_button {
	font-size: 0.9rem;
	padding: 8px 12px;
	background: #f0f0f0;
	margin: 20px auto;
	height: 20px;
}
#sidebar_list {
	width: 100%;
	padding: 0 8px;
	box-sizing: border-box;
	max-height: calc(100% - 40px - 36px - 50px);
	overflow-y: auto;
}
#sidebar_list .list_item_header {
	display: flex;
	justify-content: space-between;
}
#sidebar_list .list_item_line {
	margin-top: 4px;
	position: relative;
}
#sidebar_list .item_delete_button {
	position: absolute;
	right: 0;
	bottom: 0;
}
#sidebar_impexp {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	text-align: center;
	height: 50px;
	margin: 25px 0;
}

#popup {
	background: white;
	padding: 50px;
}
#popup_submit {
	float: right;
}
#popup_group {
	margin-bottom: 8px;
}
#popup_item {
	background: white;
	padding: 50px;
}
#popup_close {
	position: absolute;
	top: 8px;
	right: 8px;
}
#popup_item_coord {
	margin-bottom: 10px;
}
#popup_item_submit {
	float: right;
}
#popup_item_x, #popup_item_y, #popup_item_z {
	margin-bottom: 8px;
}
#popup_item_close {
	position: absolute;
	top: 8px;
	right: 8px;
}

#map {
	width: 100%;
	height: 100vh;
}
