@charset "UTF-8";
.modal_content {
	margin: 0 ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	left: 0;
	display: none ;
	z-index: 2000 ;
	max-height: 80%;
	max-width: 80%;
	box-sizing: border-box;
}
#modal-overlay {
	z-index: 1000 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
	box-sizing: border-box;
}

@media screen and (max-width: 767px){
.modal_content {
	max-width: 90%;
	max-height: 70%;
	}
}