Файл: sys/static/css/modal.css
Строк: 25
.ds-modal {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh; 
	z-index: 100; 
	box-sizing:
border-box;
}
.ds-modal-handle {
	position: absolute;
	width: 100vw;
	height: 100vh; 
	background-color: rgba(0,0,0,.6);
}
.ds-modal-container {
	position: absolute;
	width: 100vw;
	height: 100vh; 
	border: 1px solid red;
	display:
flex;
	justify-content: center;
	align-items: center;
	flex-direction:
column;
}
.ds-modal-content,
.ds-modal-title {
	width: 100%;
	background-color: #fff; 
	max-width: 560px; 
	margin: 0 auto;
	padding: 10px;
}
.ds-modal-content {
	height:
100%;
}
.ds-modal-title {
	background-color: blue; 
	color: #fff; 
}