﻿.dlg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	transition: .6s;
}

.dlg-inner {
	position: absolute;
	background-color: #ffffff;
	z-index: 2;
	border: solid 1px #666666;
	box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 20%);
}

.dlg-header {
	cursor: move;
	width: 100%;
	height: 30px;
	line-height: 30px;
	background-color: #EEEEEE;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	user-select: none;
	padding-left: 10px;
	padding-right: 10px;
}

.dlg-btn {
	height: 60px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
	float: right;
	margin-left: 10px;
	padding: 2px 10px;
	width: 100%;
	margin: 15px auto;
	background-color: lightskyblue;
	border: none;
}

	.dlg-btn:hover {
		box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 20%);
	}

.dlg-modal-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	z-index: 1;
	cursor: pointer;
}
