/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');


html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }


/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#606060;
	line-height:1.3;
	font-weight:400;
}

/* Headings
______________________*/
/* h1{}
h2{
} */
h3{
	border-bottom: 3px solid #800a17;
    color: #333;
    font-family: "Roboto",sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 30px;
    padding: 0 0 10px;
    text-transform: uppercase;
}
/* h4{}
h5{} */


body.login{
	background:url(../images/bg.jpg) no-repeat right bottom;
	background-size:cover;
	height:100vh;
}

/* Links
______________________*/
a{
	-webkit-transition: 0.1s ease-out 0.1s;
	-moz-transition: 0.1s ease-out 0.1s;
	transition: 0.1s ease-out 0.1s;
}
a:hover{
	text-decoration:underline;
}

.align-right{
	float:right;
	margin:0 0 18px 30px;
	border:1px solid #dcdcdc;
}
.align-left{
	float:left;
	margin:0 30px 18px 0;
	border:1px solid #dcdcdc;
}

/* input , textarea , button
______________________*/

input, 
textarea,
select{
	display:block;
	width:100%;
	border:none;
	border-bottom:1px solid #ccc;
	transition:border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	padding:8px 10px;
	color:#000000;
	font-size:14px;
}
select{
	-webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background:#ffffff url(../images/down-icon.png) no-repeat 96% center / 15px 15px;
    cursor:pointer;
	padding:6px 30px 6px 10px;
	color:#888888;
}
input.button{
	background:#AECB36;
	border:none;
	text-transform:uppercase;
	box-shadow:none;
	color:#093E51;
	font-weight:600;
	border-radius:2px;
	-webkit-transition: 0.2s ease-out 0.12s;
	-moz-transition: 0.2s ease-out 0.2s;
	transition: 0.2s ease-out 0.2s;
	border:1px solid transparent;
	padding:7px 10px;
}
input.button:hover{
	background:#ffffff;
	color:#1D5068;
	border:1px solid #1D5068;
}

.default-btn{
	background:#F89B22;
	padding:8px 20px;
	color:#ffffff;
	font-size:14px;
	line-height:1;
	text-decoration:none;
	display:inline-block;
	border:1px solid #F89B22;
}
.default-btn:hover{
	background:#ffffff;
	color:#F89B22;
	text-decoration:none;
}

/* p, blockquote, address
______________________*/
p{
	font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom:10px;
	color:#ffffff;
}

/* Lists
______________________*/
/* ul,
ol{}

ul li,
ol li{} */


#login-wrap{
	padding-top:50px;
}
#login-wrap h2{
	font-family: 'Roboto', sans-serif;
	color:#ffffff;
	font-size:50px;
	line-height:1;
	margin:0;
	font-weight:300;
	padding:15px 0 10px;
}
#login-wrap h2 span {
    color: #fff;
    display: block;
    letter-spacing: 0;
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.7);
}
#login-wrap h2 {
    letter-spacing: 4px;
    line-height: 60px;
}
#login-wrap .social-media{
	margin-top:15px;
}
#login-wrap .social-media li{
	display:inline-block;
	margin-right:15px;
}
#login-wrap .social-media li i{
	font-size:25px;
	color:#ffffff;
}
#login-wrap .social-media li:hover i.fa-facebook-square{
	color:#425F9C;
}
#login-wrap .social-media li:hover i.fa-twitter-square{
	color:#1DA1F3;
}
#login-wrap .social-media li:hover i.fa-linkedin-square{
	color:#007AB9;
}
#header{
	padding:20px 0 30px;
}
#header .logo{
	margin: 20px 0 0 0;
    background: #fff;
    padding: 20px;
	border-bottom: 5px solid #800a17;
}
#header .logo a{
	background:url(../images/main-logo.png) no-repeat left top;
	background-size:100% auto;
	display:block;
    height:45px;
    text-decoration:none;
    width:150px;
	margin:0 auto;
}
.login-section{
	background:#ffffff;
	width:100%;
	box-shadow:2px 5px 25px #000;
	padding:30px 20px;
	-moz-border-radius:6px;
	-o-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}
.login-section form{
	text-align:center;
}
.login-section input{
	margin-bottom:10px;
	font-size:12px;
}
.login-section form label{
	font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
	text-align:left;
	display:block;
}
.login-section .default-btn{
	display: inline-block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px 40px;
    width: auto;
    color: white;
    background: rgb(116,7,7);
    background: linear-gradient(190deg, rgba(116,7,7,1) 0%, rgba(158,4,4,1) 100%);
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    border: 1px solid #720606;
}
.login-section .default-btn:hover{
	background: none;
	color: #800a17;
}

body.other-pages .container{
	width:100%;
}
body.add-user .container{
	width:100%;
}

/* Dummy color testing*/
#sidebar{
	background:#f1f1f1;
	height:100vh;
	border-right: 1px solid #ddd;
}
#sidebar .logo{
	padding: 20px 0 10px;
}
.topcontent-wrap{
	background:#f1f1f1;
	/* height:10vh; */
	border-top: 1px solid #ddd;
}
.maincontent-wrap{
	/* background:rgb(241, 241, 241); */
	height:85vh;
}
.bottomcontent-wrap{
	background:#f1f1f1;
	height:5vh;
	border-top: 1px solid #ddd;
}
.bottomcontent-wrap p{
	color: #333;
	font-weight: bold;
	text-align: center;
}


.main-wrapper > .container{
	padding:0;
}
.main-wrapper > .container > .row{
	margin:0;
}
.main-wrapper > .container > .row .col-sm-2,
.main-wrapper > .container > .row .col-sm-10{
	padding:0;
}


.fl{ float:left}
.fr{ float:right}
.cl{ clear:both; font-size:0; height:0; }
.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* Alignments */
.center { text-align:center }
.right { text-align:right }
.top {vertical-align:top }
.middle { vertical-align:middle }


/* hasnainCss */
/* aside Styling */
/* div.logo{
	padding: 29px 0 20px 0;
	border-bottom: 1px solid #f7911c;
} */
div.logo img{
	width: 115px;
    height: auto;
    margin: 0 auto;
    display: block;
}
/* ul.side-menu{
	margin-top: 50px;
} */
ul.side-menu li{
	margin: 10px 0 ;
}
ul.side-menu li a{
	display: block;
	color: #333;
}
.menu-li a{
	padding: 15px 0;
	text-decoration: none;
	outline: none;
	display: block;
  }
  .menu-li a:hover{
	
	box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.3);
	background: #800a17;
	color: #fff;
  }
  .active{
	box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.3);
	background: #800a17;
  }
  li.active a{
	color: #fff !important;
  }
ul.side-menu{
	text-align: center;
}


/* topNav css */
span.dashboard{
	color: #333333;
	display: inline-block;
	padding: 25px;
	font-weight: bold;
}
ul.user{
	display: inline-block;
	float: right;
	/* margin-top: 8px; */
}
ul.user:after{
	content: '';
	clear: both;
	display: block;
}
ul.user li{
	padding-top: 15px;
	padding-right: 15px;
	display: inline-block;
	color: #333;
	font-weight: bold;
}
ul.user li a{
	color: #333;
}
ul.user li img{
	vertical-align: middle;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}





h2#title{
	font-size: 2em;
	color: #333333;
	font-weight: bold;
	padding: 20px;
}

/* Table css */
div.table{
	padding: 20px 0 0 0;
}
.check-icon {
	color: #38aa38;
  }
  
  .cross-icon {
	color: rgb(197, 130, 5);
  }
  
  #user-table {
	margin-top: 10px;
  }
  
  tr:nth-child(even) {
	background: rgb(224, 224, 224);
  }
  tr td:hover {
	background: #000;
	color: #f4f4f4;
  }
  
  td a #delete:hover {
	color: crimson;
  }
  
  td a #edit:hover {
	color: lightgreen;
  }
  
/* Nav bottom css */
p.copyright{
	margin: 0 !important;
	padding: 4px 0 5px;
}
.maincontent-wrap{
	overflow-y: scroll;
}


/* adduser Page css */
body.add-user .login-section{
	box-shadow: none !important;
}
body.add-user .login-section form{
	text-align:right;
	font-size: 14px;
}

.edit-form > form input{
	margin-bottom: 18px;
}


/* Responsive */
@media (max-width: 1200px){}

@media (max-width: 1024px){}

@media (max-width: 800px){}

@media (max-width: 640px){}

@media (max-width: 480px){}