
@keyframes loadingBackground{
	from {
		background-position: 0 0;
	}
	to {
		background-position: 3em 3em;
	}
}

a[email]{
	cursor: pointer;
}


dialog{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	text-align: center;
	line-height: 100vh;
	vertical-align: middle;
	background-color: rgba(0,0,0,.2);
	z-index: 999999999;
	backdrop-filter: blur(5px);
}

dialog:after{
	content: "\00D7";
	color: #fff;
	line-height: 1em;
	border: 2px solid #fff;
	font-weight: bold;
	cursor: pointer;
	font-size: 20px;
	width: 1.35em;
	height: 1.35em;
	display: block;
	position: fixed;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 1em;
}


/* Form loading */
dialog iframe{
	min-width: 980px; 
	width: 980px; 
	max-width: 960px;
	max-height: 96%;
	min-height: 96%;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #000;
	border-radius: 5px;
	background-color: #FFF;
	background-image: linear-gradient(-45deg,
		rgba(255, 255, 255, .1) 0%,
		rgba(255, 255, 255, .1) 25%,
		rgba(0,	0, 0, .1) 25%,
		rgba(0, 0, 0, .1) 50%,
		rgba(255, 255, 255, .1) 50%,
		rgba(255, 255, 255, .1) 75%,
		rgba(0, 0, 0, .1) 75%,
		rgba(0, 0, 0, .1) 100%
	) !important;
	background-size: 3em 3em !important;
	background-repeat: repeat !important;
	animation: loadingBackground 1s linear infinite !important;
}

@media only screen and (max-width: 800px) {
	dialog{
		padding: 1%;
	}
	dialog iframe{
		width: 98%;
		height: 98%;
		max-width: 98%;
		max-height: 98%;
		min-width: 98%;
		min-height: 98%;
	}
}