body.LM_open {
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
}

#LM_overlay {
	z-index: 20000;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.2s ease 0s 1 normal;
}

#LM_container {
	z-index: 20001;
	position: fixed;
	top: 0px;
	left: 0px;
}

.LM_modal_bg {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.LM_modal_body {
	position: absolute;
	transform: translate(calc(50vw - 50%), calc(50vh - 50%));
}

.LM_topBar {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 5.3vw;
	text-align: right;
}

.LM_topBar .LM_close {
	display: block;
	width: 8vw;
	height: 8vw;
	background-image: url(../svg/ic-cross-l-02.svg);
	background-size: 100% 100%;
	cursor: pointer;
	transition: opacity .2s;
}

.LM_topBar .LM_close:hover {
	opacity: .5;
}

.LM_content {
	overflow-y: scroll;
	background-color: #FFF;
	box-sizing: border-box;
}

.LM_btmBar {
	display: flex;
	background-color: #FFF;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.LM_topBar {
		padding-bottom: 20px;
	}

	.LM_topBar .LM_close {
		width: 40px;
		height: 40px;
		cursor: pointer;
	}

	.LM_btmBar {
		height: 20px;
	}
}