/* DIALOGS
================================================================================ */
#dialogs {
	position:absolute;
	top:0;
	left:0;
	z-index:20000000;
	width:100%;
	background:#666;
	background:rgba(0, 0, 0, 0.5);
	opacity:0;
	transition:opacity 0.2s ease;
}
#dialogs.show {
	opacity:1;
}
.dialog {
	position:relative;
	left:0;
	max-width:600px;
	margin:0 auto;
	padding:0 10px;
	outline:0;
	opacity:0;
	transition:opacity, transform 0.162s ease;
	transform:translateY(100px);
}
.dialog.show {
	opacity:1;
	transform:translateY(0);
}
.dialog ul {
	overflow:hidden;
	margin-left:0;
	list-style:none;
}
.dialog .dialog-content {
	padding:34px 15px;
	background:#fff;
}
.dialog-content form {
	margin-bottom:0;
}
.dialog img {
	margin:0 auto;
}
.dialog-close {
	position:absolute;
	top:20px;
	right:35px;
	min-width:0;
	margin:0;
	padding:0;
	border:none;
	cursor:pointer;
}
.dialog-close:focus {
	outline:1px dotted #666;
}

@media only screen and (min-width: 630px) {
	.dialog .dialog-content {
		padding:34px 45px;
	}
}

/* Blur the rest of the page
----------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
	.no-touch .blurry {
		-webkit-filter:blur(5px);
		filter:blur(5px);
		transition:all 0.2s ease;
	}
}