/**********table of content************/

/***********************************

1. common css
2. header 
3. body content
4. forms
5. footer

/**********************************/

/********************common**********/

html,body{
	height: 100%;
}
body{
	display: flex;
	flex-direction: column;
}
body, .theme-logo-bg {
	color: #000;
	background: #fff;
}
.main_wrapper {
	position: relative;
	flex: 1 0 auto;
}
.overlay{
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
}
html body .bg-blue, html body .info-number .bg-blue {
	color: #fff;
	background-color: #144675;
}

html body .bg-success, html body .info-number .bg-success {
	color: #fff;
	background-color: #53d192;
}


html body .bg-warning, html body .info-number .bg-warning {
	color: #fff;
	background-color: #F7941D;
}
html body .bg-voilet, html body .info-number .bg-voilet {
	color: #fff;
	background-color: #652c90;
}
html body .bg-danger, html body .info-number .bg-danger {
	color: #fff;
	background-color: #652c90;
}
html body .bg-dark, html body .info-number .bg-dark {
	color: #fff;
	background-color: #2b2b2c;
}


.navbar-inverse .navbar-brand {
    color: #fff;
    padding: 5px;
}



/***********header**************/

.nav-wrapper .navbar {
	border-radius: 0;
	border: none;
	margin-bottom: 0;
}

.navbar-inverse .navbar-nav > li > a {
	color: #fff;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	color: #fff;
	background-color: rgba(255,255,255,0.2);
}
.navbar-brand {
	float: left;
	padding: 0px 15px;
	font-size: 18px;
	line-height: 20px;
	height: 50px;
}
.nav.navbar-nav.navbar-right.mega-menu a {
    height: 50px;
    padding-top: 15px;
}
/************footer***********/
footer {
	background: #000;
	padding: 13px 0;
}
footer p{

	color:#fff;
	}


	.main-logo{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
.fix-header{
	margin-top: -50px;
	position: relative;
}
header{
	z-index: 9;
}
.login-form{
	padding-top: 25vh;
}
.btn-theme{
	background: #ff6600;
	border-color: #ff6600;
	border-radius: 0px;
}
.btn-theme:hover{
	opacity: .7;
	background: #ff6600;
	border-color: #ff6600;
}

.form-control{
	border-radius: 0px;
	box-shadow: none;
}

.login-form .panel{
	border-radius: 0px;
}
