
/** Base Body Styles **/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    overflow: hidden;
    line-height: 1.5;
    color: #6c757d;
    text-align: left;
    background:#f3f3f3;
    height: 100%;
    width: 100%;
    min-height: 800px;
}
.authentication-bg.enlarged,
.auth-fluid-pages.enlarged,
body.auth-fluid-pages[data-leftbar-compact-mode=condensed] {
    min-height: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 16px;
}
h4 {
    font-size: 14px;
}
h5 {
    font-size: 12px;
}
h6 {
    font-size: 10px;
}
h3,
h4,
h5 {
    margin-top: 5px;
    font-weight: 600;
}
.block {
    display: block;
}
.clear {
    display: block;
    overflow: hidden;
}
a {
    cursor: pointer;
}
a:hover,
a:focus {
    text-decoration: none;
}
input[type=radio],input[type=checkbox] {
    border:0;
    background:transparent;
    width: auto;
    height: auto;
    display: inline;
}
label {
    font-weight: 600;
}
.small, small {
    font-size: .75rem;
    font-weight: 400;
}
.font-weight-bold {
    font-weight: 700 !important;
}


/* Form */
.form-horizontal .controls > .label {
    font-size:12px;
    background-color:transparent;
    display: inline-block;
    margin-top: 7px;
    padding: 0;
}
.checkbox, .radio {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    position:static;
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal;
}
.btn-primary {font-family: "Nunito"; font-weight: 600;}


/* Login page */
#main{
    width:100%;
    height:100%;
    position: relative;
    background:#eee;
    background-size: cover;
    min-height: 800px;
    overflow: hidden;
}
#content_wrapper {
    width:100%;
    height:100%;
    overflow: hidden;
}
#canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.account-container {
    max-width: 500px;
	display: block;
    background:transparent;
	margin: 6% auto 0 auto;
	border:none;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	box-shadow:none;
}
.content {
	padding: 16px 28px 23px;
} 
.logo {
    padding-top:25px;
    text-align:center;
}
span.login-checkbox {
	float: left;
	margin-top: 31px;
}
span.login-checkbox > input[type='checkbox'] {
    opacity: 0;
    float: left;
    width: 15px;
}
span.login-checkbox > input[type='checkbox'] + label {    
    clear: none;
	height: 15px; 
	display: block;
    padding: 0 0 0 22px;
    margin: 0;
    font-size: 12px;
    line-height: 1.2em;
    background: url(../img/login/check.png) no-repeat 0 0;
    cursor: pointer;
}
span.login-checkbox > input[type='checkbox']:checked + label {	
	background-position: 0 -15px;
}


/* card */
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eef2f7;
    border-radius: 0.25rem;
}
.card-header {
    padding: 0.75rem 1.5rem;
    margin-bottom: 0;
    border:none;
}

/* modal */
.modal .close, .close {background:none!important}


