.modal-backdrop {
	width: 100%;
	height: 100%;
	position: fixed;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ModalContainer {
	z-index: 1000;
	width: 100%;
	height: 100%;
	align-items: center;
	position: fixed;
	justify-content: center;
	display: flex;
}

.WindowManager .WindowWrapper {
	position: fixed;
	display: flex;
		flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
}

.WindowManager {
	z-index: 1000;
	width: 100%;
	height: 100%;
	position: absolute;
}

.modal {
	background-color: #0077B5;
	border: 1px solid #005E93;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	z-index: 1000;
	margin-top: 10vh;
	margin-bottom: 10vh;
	margin-left: 10vw;
	margin-right: 10vw;
}

.modal .modal-header h3 {
	font-size: 15px;
	margin: 2px;
}

.modal .modal-content {
	display: flex;
	flex-direction: column;
}

.modal .modal-dialog {
	display: flex;
	flex-direction: column;
	background-color: #005E93;
}

.modal .modal-header {
	background-color: #0077B5;
	padding: 3px;
	display: flex;
	flex-direction: row;
	color: white;
	border-radius: 4px 4px 0px 0px;
}

.modal .modal-header .close {
	background-color: transparent;
	color: gray;
	padding: 4px;
	margin: 0;
}

.modal .modal-header .close:hover {
	background-color: gray;
}

.modal .modal-header .modal-title {
	background-color: transparent;
}

.modal .modal-body {
	background-color: #EEEEEE;
	padding: 10px;
	display: flex;
	flex-direction: column;
}

.modal .modal-body:last-child {
	border-radius: 0px 0px 4px 4px;
}

.modal .modal-footer {
	border-top: 1px solid #BBBBBB;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	background-color: #EEEEEE;
	padding: 10px;
	border-radius: 0px 0px 4px 4px;
}

.modal .modal-footer:empty {
	padding: 0;
}

.GridForm {
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 5px;
	margin-top: 10px;
	align-items: center;
}

.GridForm input[type="checkbox"] {
}

.modal-footer button {
	margin-right: 10px;
}

button {
	border: 1px solid transparent;
	background-color: transparent;
	border-radius: 5px;
	cursor: pointer;
	padding: 6px;
}

button:not([disabled]):hover {
	background-color: #DDDDDD;
}

button[disabled], button[disabled] > * {
	cursor: not-allowed;
	background-color: #EEEEEE;
}

button.primary, .primary button {
	border: 1px solid #008CC9;
	color: #008CC9;
}

button.success, .success button {
	border: 1px solid #95C753;
	color: #95C753;
}

button.danger, .danger button {
	border: 1px solid #F16D64;
	color: #F16D64;
}

button img {
	cursor: pointer;
}

input, select {
	padding: 4px;
	margin: 0;
}