#dialog{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.4);
	border-radius:0;
	z-index:500;
	display:none;
}

.dialogFlex{
	display:flex;
	align-items: center;
	width:100%;
	height:100%;
}
.dialogData{
	position:relative;
	margin:0 auto;
	width:380px;
	max-height:100%;
	padding:40px 0 50px;
	border-radius:6px;
	overflow:hidden;
	border:1px solid #888;
	box-shadow:0 0 8px #888;
}
.dialogNoTitle{
	padding-top:0;
}
.dialogNoTitle .dialogBody{
	padding:20px;
}

.dialogTitle{
	position:absolute;
	top:0;
	width:100%;
	height:40px;
	line-height:40px;
    font-size:16px;
	background:#fff;
	text-align:center;
	padding:0 20px;
	color:#000;
	font-weight:bold;
	user-select: none;
}
.dialogS1{
	color:#090;
}
.dialogS2{
	color:#d00;
}
.dialogS3{
	color:#07c;
}
.dialogBody{
	position:relative;
	width:100%;
	min-height:40px;
	max-height:350px;
	overflow-y:auto;
	background:#fff;
	color:#222;
	padding:0 20px 20px;
	text-align:center;
	font-size:16px;
}
.dialogFooter{
	position:absolute;
	bottom:0;
	width:100%;
	line-height:50px;
	background:#e5e5e5;
	user-select: none;
}
.dialogButtons{
	display: flex;
	gap: 1px;
	height:100%;
	position: relative;
	background: #d5d5d5;
	border-top:1px solid #d5d5d5;
}
.buttonCell{
	flex:1;
	background:#ececec;
}
.dialogButtonItem{
	display:block;
	text-transform: uppercase;
	color:#000;
	text-align: center;
	font-size:14px;
	font-weight:bold;
}
.dialogButtonItem:hover{
	background:#e5e5e5;
}
.dialogButtonItem:active{
	background:#ccc;
}

@media(max-width:768px){
	.dialogData{
		width:80%;
	}
}
