.modal.fader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 80000;
}

.modal>div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	min-height: 150px;
	margin-left: -250px;
	background-color: white;
	box-shadow: 0 1px 70px rgba(0,0,0,0.5);
	padding: 2.7em 3em 3em 3em;
	border-radius: 5px;
}

.modal>div.error {
	/*color: rgb(255, 50, 91);*/
}


.modal .okButton {
	position: absolute;
	bottom: 2em;
	right: 2em;
	padding: 0.5em 2em;
	margin-bottom: 0;
}

.modal>div.form {
	width: 800px;
	margin-left: -400px;
}

.modalTitle {
	word-break: break-all;
}

.modalCloseButton {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	font-size: 2em;
	line-height: 1;
	color: #bbb;
	background-color: transparent;
	cursor:pointer;
}

.modalCloseButton:hover {
	color: black;
}

.modal input {
	width: 100%;
}

.modal button {
	margin-bottom: 0;
}