#dialog {
	position: fixed;
	bottom: 10em;
	width: 40%;
	left: 30%;
	/*padding: 3em;*/
	text-align: center;
	border-radius: 7px;

	height: 0;
	-o-transition: height .6s;

	z-index: 9999;
	overflow: hidden;

	border: 3px solid white;
	box-shadow: 1px 0 0 #333, -1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333;
}
#dialog {
	bottom: 0;
	width: 100%;
	left: 0;
	border: none;
	border-top: 1px solid #666;
	border-radius: 0;
	/*border-top-left-radius: 7px;
	border-top-right-radius: 7px;*/
	line-height: 2em;
}

#dialog.active {
	height: 2em;
}

#dialog.message.success {
	/*todo*/
}

#dialog::before {
	position: absolute;
	left: .5em;
	top: 2px;
	font-size: 2em;

	font-family: 'FontAwesome';
}

#dialog.success {
	background: #55AE3A;
}
#dialog.success::before {
	content: "\f05a";
}

#dialog.warning {
	background: yellow;
}
#dialog.warning::before {
	content: "\f071";
}

#dialog.error {
	background: red;
}
#dialog.error::before {
	content: "\f057";
}






#fullscreen-dialog {
	position: fixed;
	top: 20%;
	left: 20%;
	z-index: 500;
	height: 60%;
	width: 60%;
	background: white;
	box-shadow: 0 0 10px #000;
	border: 1px solid #ddd;

	border: 4px solid #666;
	
	border-radius: 5px;
	box-sizing: border-box;
	-o-transform: scale(1.4);
	opacity: 0;

	-o-transition: all .3s;
}

#fullscreen-dialog.visible {
	-o-transform: scale(1);
	opacity: 1;
}

#fullscreen-dialog header h1 {
	margin: 0;
}

#fullscreen-dialog header {
	box-sizing: border-box;
	height: 15%;
	padding: 0.4em 1em;
	border-bottom: 1px solid #ddd;
}

#fullscreen-dialog footer {
	height: 15%;
	border-top: 1px solid #DDDDDD;
	bottom: 0px;
	left: 0px;
	padding: 0px 1em;
	position: absolute;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
}

#fullscreen-dialog .content {
	height: 70%;
	overflow-y: scroll;
	box-sizing: border-box;
	padding: 0 1em;
}





div.lightbox-close-button:hover {
	color: #666;
}