@charset "utf-8";

#modal-form {
  display: none;
	margin:0;
	padding:20px 100px;
  position:fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
	background-color: rgba(0,0,0,0.7);
}
#modal-form .modal-body{
  height: 100%;
  width: 100%;
	max-width:1200px;
	position:relative;
	margin:0 auto;
}

#modal-form button.modalclose{
	position:absolute;
	right:20px;
	top:10px;
	font-size: 3.0rem;
}
html.modalopen,
html.body {
  overflow: hidden;
}

@media (max-width:768px) {
	#modal-form {
		padding:0 10px;
	}
}
