@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
 	100% {
		opacity: 1;
	}
}
@-o-keyframes fade-in {
	0% {
		opacity: 0;
	}
 	100% {
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		opacity: 0;
	}
 	100% {
		opacity: 1;
	}
}
@-ms-keyframes fade-in {
	0% {
		opacity: 0;
	}
 	100% {
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fade-in-back {
 	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}
 	100% {
		-webkit-filter: blur(3px);
		filter: blur(3px);
	}
}
@-o-keyframes fade-in-back {
 	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}
 	100% {
		-webkit-filter: blur(3px);
		filter: blur(3px);
	}
}
@-moz-keyframes fade-in-back {
 	0% {
		-webkit-filter: blur(0px);
		-moz-filter: blur(0px);
		filter: blur(0px);
	}
 	100% {
		-webkit-filter: blur(3px);
		-moz-filter: blur(3px);
		filter: blur(3px);
	}
}
@-ms-keyframes fade-in-back {
 	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}
 	100% {
		-webkit-filter: blur(3px);
		filter: blur(3px);
	}
}
@keyframes fade-in-back {
	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}
	100% {
		-webkit-filter: blur(3px);
		filter: blur(3px);
	}
}
html, body {
	margin: 0;
	padding: 0;
	position: fixed;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
body:after {
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	
	background: 0 0 no-repeat fixed;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-color: rgba(4, 70, 139, 0.6);
	
	-webkit-animation-name: fade-in-back;
	-webkit-animation-duration: 0.7s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-delay: 0;
	
	-ms-animation-name: fade-in-back;
    -ms-animation-duration: 0.7s;
	-ms-animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
	
    -moz-animation-name: fade-in-back;
    -moz-animation-duration: 0.7s;
	-moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
	
	-o-animation-name: fade-in-back;
    -o-animation-duration: 0.7s;
	-o-animation-timing-function: linear;
    -o-animation-iteration-count: 1;
	
	animation: fade-in-back 0.7s linear 1;
	
	transform: scale(1.02);
	-ms-transform: scale(1.02); /* IE 9 */
	-webkit-transform: scale(1.02);
	
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius=3); /* IE lte 9 */
}
a {
	color: rgb(4, 70, 139);
}
.btn.btn-primary {
	background: rgb(4, 70, 139);
	border-color: rgb(4, 70, 139);
}
.content-container {
	background: 0 0 no-repeat fixed;
	background-position: center;
	background-size: cover;
	height: 100%;
	overflow: hidden;
	
	-webkit-animation-name: fade-in;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-delay: 0;
	
	-ms-animation-name: fade-in;
    -ms-animation-duration: 1s;
	-ms-animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
	
    -moz-animation-name: fade-in;
    -moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
	
	-o-animation-name: fade-in;
    -o-animation-duration: 1s;
	-o-animation-timing-function: linear;
    -o-animation-iteration-count: 1;
	
	animation: fade-in 1s linear 1;
	opacity: 0;
}
.content-container.visible {
	opacity: 1;
}
.overlay {
	background: rgba(4, 70, 139,0.6);
	overflow: hidden;
	height: 100%;
	z-index: 2;
	margin: 0;
	padding: 0;
}
.login-card {
	overflow: hidden;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 11px 80px 0px #000000a1;
}
.card-header {
	min-height: 1px;
	border-bottom: 1px solid rgba(0,0,0,.125);
}
.card-header > img {
        -ms-interpolation-mode: bicubic;
}
.card-header > p {
	text-align: center;
	padding-top: 10px;
}


/*New footer .css code inserted here*/

.card-footer {
	border-top: 1px solid rgba(0,0,0,.125); 
	border-bottom: none;
}

.card-footer > p {
	text-align:center;
	padding-top: 10px;
}

/*End footer .css code*/

.login-card-body {
	max-height: 65vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.collapsing {
	overflow: hidden !important;
}
.ld-ext-left.running {
	padding-left: 2em !important;
}
