body {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}
.jumbotron {
	/* https://stackoverflow.com/questions/22196587/how-to-center-align-vertically-the-container-in-bootstrap */
	display: table-cell;
	vertical-align: middle;
	background: #f8f8f8;
	padding: 0px;
}
.jumbotron p {
	font-size: inherit; /* Remove the default font-size of .jumbotron */
}
div#login img {
	margin: 0 auto 1em;
}
div#login .logo {
	max-height: 250px;
}
div#login .alert {
	padding: 5px;
	margin-bottom: 0px;
}
div#login .powered {
	margin-top: 0px;
	margin-bottom: 0px;
}
div#login .serverinfo {
	font-family: Verdana,Helvetica,Arial,sans-serif;
}
div#login .delivery {
	height: 100px;
	width: 125px;
}
div#login .box {
	padding: 2em 3em;
}
div#login .form-group {
	margin-bottom: 5px;
}
div#login .btn {
	width: 100%;
}
/*
.login .btn {
	background: #eee;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.login .btn:hover {
	background: #156A8B;
	color: #fff;
}
*/
.spinner {
	display: inline-block;
	opacity: 0;
	max-width: 0;
	-webkit-transition: opacity 0.25s, max-width 0.45s; 
	-moz-transition: opacity 0.25s, max-width 0.45s;
	-o-transition: opacity 0.25s, max-width 0.45s;
	transition: opacity 0.25s, max-width 0.45s; /* Duration fixed since we animate additional hidden width */
}
.has-spinner.active {
	cursor: progress;
}
.has-spinner.active .spinner {
	opacity: 1;
	max-width: 50px; /* More than it will ever come, notice that this affects on animation duration */
}