.overlays {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;
}
.overlays .cancel {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: default;
}
.overlays:target {
	visibility: visible;
	opacity: 1;
}
.modals {
	padding: 20px;
	background: rgba(255, 255, 255, 1);
	border: 1px solid #666;
	width: 20%;
	max-width: 400px;
	max-height: 50%;
	border-radius:6px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 50px; right: 0px;
	z-index: 99;
}
.modals h3 {
	width: 100%;
	margin-top: 0;
	padding: 2px;
	text-align: center;
	vertical-align: middle;
	background: rgba(205, 225, 255, 0.5)
}
.modals .close {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 20px;
	right: 20px;
	opacity: 0.5;
	transition: all 200ms;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #777;
}
.modals .close:hover {
	opacity: 1;
}
.modals .content {
	padding: 0 20px;
	font-size: 13pt;
	overflow: auto;
}
.modals p:last-child {
	margin: 0;
}