/* modal */
.blocker {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	width: 100%; height: 100%;
	overflow: auto;
	z-index: 19;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.50);
	text-align: center;
}
.blocker:before{
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}
.blocker.behind {}
.jmodal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 20;
	min-width: 30vw;
	max-width: 60vw;
	min-height: 20vw;
	box-sizing: border-box;
	background: #fff;
	padding:0;
	text-align: left;
	-webkit-box-shadow: 0 -10px 80px #333333;
	-moz-box-shadow: 0 -10px 80px #333333;
	-o-box-shadow: 0 -10px 80px #333333;
	-ms-box-shadow: 0 -10px 80px #333333;
	box-shadow: 0 -10px 80px #333333;
	overflow:hidden;
	white-space:nowrap;	
}
.jmodal a.close-modal {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width:5vh;
	height: 5vh;
	text-indent: -9999px;
	background-color: #218fbc;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/btn_popupClose.svg');
}
.jmodal h1 {
	display: block;
	margin: 0;
	padding: 0 0 0 1.5rem;
	background-color: #00a3e0;
	color: #fff;
	height: 5vh;;
	font-size: 1.2em;
	font-weight: 600;
	line-height: 3rem; /* 3.2rem */
}
.jmodal .modal-body {
	border:0px solid blue;overflow: auto; /* max-height = .model의 높이에서 -6을 뺀 높이로 설정한다 */
}