#modal_wrapper
{
	position: fixed;
	background: rgba(0,0,0,.75);
	backdrop-filter: blur(20px);
	height: 100vh;
	width: 100%;
	z-index: 5;
	display: none;
	align-items: center;
	justify-content: center;
}

@keyframes _modal
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

@keyframes _modalclose
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
	}
}

#modal_box
{
	
	margin: auto;
	padding: 10px;
	max-height: calc(100vh - 40px);
	max-width: 90%;
	background: #fff;
	border: 1px #444 solid;
	box-shadow: 0 0 10px #000;
	animation: _modal .33s linear;
}

.modal_box_close
{
	animation: _modalclose .5s linear !important;
}

#modal_box img
{
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 80px);
}