.modal {
	background-color: #666;
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1200;
	display: none;
}
.modal:target,
input:checked + .modal {
	display: block;
}
.modal > .btn-close {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.modal-content {
	background-color: #FFFFFF;
	background-color: rgba(255, 255, 255, 0.95);
	width: 80em;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
	max-height: 87%;
	overflow: auto;
	padding: 1.5em;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.modal-content::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: -2px;
	width: 1px;
}
.modal-content .btn-close.top {
	cursor: pointer;
	font-size: 32px;
	position: absolute;
		top: 0;
		right: 10px;
	text-decoration: none;
}
.modal-msg:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.modal button {
	margin-top: 1em;
}
.modal-template {
	display: none;
}