.default_modal_wrap{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
	
	top: 0;
	left: 0;
	
	pointer-events: none;
	
	z-index: 999;
}

.default_modal{
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	top: 0;
	left: 0;
	
	display: none;
}

.default_modal_close{
	background-color: transparent;
	border: none;
	color: white;
	font-size: 30px;
	line-height: 0.7em;
	padding: 0;
}

.default_modal > :first-child{
	pointer-events: initial;
}

.modal_opened .default_modal{
	display: block;
}