/* modal, base */
.modal{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.modal button.modal-close{
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	float: right;
}
.modal-flex-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #a8bacaa3;
}
.modal-content-wrap{
	max-width: 1300px;
	background: #fefefe;
	border: 10px solid #9abe92;
	max-height: 100%;
	overflow-y: scroll;
}
.modal .modal-header{
	position: sticky;
	top: 0;
	background: #111;
	padding: 10px;
	z-index: 1;
}
.modal .modal-title{
	font-size: 32px;
	font-weight: bold;
	color: yellow;
}
.modal .modal-content{
	padding: 10px;
}
.modal table.data thead{
	position: sticky;
  	top: 52px;
}
/* end of modal base */