.modal-dialog {
	display:none;
	position: absolute;
	width: auto;
	pointer-events: none;
	z-index: 2;
	width1: fit-content;
	justify-content:start;
	background-color: #fff;
	flex-direction: column;
	position:fixed;
	left: 50%; 
	transform: translateX(-50%); 
}

.modal-title {
	display: flex;
	pointer-events: auto;
	flex-direction: row;
	border-bottom: 1px solid rgba(0,0,0,.2);
}

.modal-title-name {
	display:flex;
	justify-content:center;
	width:100%;
	background-color: lightgray;
	padding-left: 0px;
}

.modal-title-close {
	display:flex; 
	justify-content:end;
}

.modal-content {
	margin:30px;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
}

.modal-background
{
	position:fixed;
	padding:0;
	margin:0;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0.8;
	background-color:gray;
	z-index:1;
	display:none;
}