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

#CM_overlay {
	z-index: 20000;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}


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

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

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

.CM_topBar {
	display: flex;
	justify-content: flex-end;
	margin-top: -45px;
	padding-bottom: 13px;
	text-align: right;
}

.CM_topBar .CM_close {
	display: block;
	width: 32px;
	height: 32px;
	background: transparent url(../svg/icon_close_white.svg) no-repeat center center;
	background-size: 32px 32px;
	cursor: pointer;
	transition: opacity .2s;
}

.CM_topBar .CM_close:hover {
	opacity: .5;
}

.CM_content {
	overflow-y: scroll;
	height: 100%;
	background-color: #FFF;
	box-sizing: border-box;
}

.CM_btmBar {
	display: none;
}

@media screen and (max-width: 768px) {
	.CM_topBar {
		margin-top: -12vw;
		padding-bottom: 4.26vw;
	}

	.CM_topBar .CM_close {
		width: 8vw;
		height: 8vw;
		background-size: 8vw 8vw;
	}
}