
.dialog{
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 999;
	visibility: hidden;
}

.dialog >*{
	display: block !important;
	position: absolute !important;
	background-color: #eee;
	padding: 16px;
	padding-left: 52px;
	color: #333;
	min-height: 100px;
	border: 1px solid #ddd;
	box-shadow: 0 0 1px 0px #000;
	text-align: initial;
}

.dialog form table{
	border: none;
	table-layout: fixed;

}
.dialog form>table tbody tr td:frst-child{
	min-width: 200px;
}
.dialog form>table tbody tr td:last-child{
	min-width: 200px;
}

.dialog form #controls{
	padding: 0px;
	padding-top: 8px;
	clear: both;
	height: auto;
	overflow-y: auto;
	border-top: 1px solid #ddd;
}
.dialog form #controls>*{
	float: right;
	margin-left: 8px;
	padding: 4px 8px;
	cursor: pointer;
}
.dialog input[type=submit],.dialog input[type=button] {
   
    background-color: #4CAF50;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
