#dialog{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
	border-radius:0;
	z-index:500;
	display:none;
}

.dialist{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
	border-radius:0;
	z-index:500;
	display:block;
}

.dialogFlex{
	display:flex;
	align-items: center;
	width:100%;
	height:100%;
}
.dialogData{
	position:relative;
	margin:0 auto;
	width:400px;
	max-height:100%;
	padding:50px 0 50px;
	border-radius:6px;
	overflow:hidden;
	border:1px solid #888;
	box-shadow:0 0 8px #888;
}
.dialogNoTitle{
	padding-top:0;
}
.dialogNoTitle .dialogBody{
	padding:25px 20px;
}

.dialogTitle{
	position:absolute;
	top:0;
	width:100%;
	height:50px;
	line-height:50px;
    font-size:18px;
	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:60px;
	max-height:350px;
	overflow-y:auto;
	background:#fff;
	color:#555;
	padding:10px 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: grid;
	width:100%;
	grid-column-gap: 1px;
	height:100%;
	position: relative;
	background: #d5d5d5;
	border-top:1px solid #d5d5d5;
}
.buttonCell{
	background:#fff;
}
.buttonCells1{
	grid-template-columns: 100%;
}
.buttonCells2{
	grid-template-columns: 50% 50%;
}
.buttonCells3{
	grid-template-columns: 33.5% 33.5% 33.5%;
}
.dialogButtonItem{
	display:block;
	text-transform: uppercase;
	color:#06c;
	text-align: center;
	font-size:14px;
	font-weight:bold;
	cursor: pointer;
	background:#fff;
}
.dialogButtonItem:hover{
	background:#e5e5e5;
}
.dialogButtonItem:active{
	background:#ccc;
}

@media(max-width:768px){
	#dialogData{
		max-width:360px;
	}
}

@media(max-width:480px){
	#dialogData{
		max-width:80%;
	}
}

.dialogList .dialogBody{
	padding:0;
	text-align: left;
}
