@import url('https://fonts.googleapis.com/css?family=Overpass:400,600,700,800&display=swap');
/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap'); */
*{outline: none !important;}
a:hover{text-decoration: none;}
body {
    font-family: 'Overpass',sans-serif;
    font-size: .875rem;
    font-weight: 400;
    background: #ffffff;
}
/*===========================
  Preloader
============================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    color: #31708F;
    font-weight: 400;
    padding: 0px;
    width: 100vw;
    height: 100vh;
    background: #0000008f;
    z-index: 999999999 !important;
    text-align: center; 
    border-top: none;
    border-bottom: none; 
    overflow: hidden;
}
.preloader .text {
    width: 300px;
    margin: 0 auto;
    height: 40px;
    background-color: #FFF3CD;
    border-top: none;
    border-left: 1px solid #ffeeba;
    border-right: 1px solid #ffeeba;
    border-bottom: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 0 0 5px 5px;
}
.bg-wrapper{
    /*
    background: url('../../../images/bg-top.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    */
    background-color: #ffffff;
    min-height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}
.site-navbar{
    height: 120px;
    padding-top: 15px;
}
.site-logo{
    position: relative;
}
.site-logo a > img{
    width: 300px;
}
.site-logo .text-logo{
    position: absolute;
    left: 80px;
    top: 15px;
    width: 120px;
    line-height: 1rem;
}
.site-logo .text-logo .line1{
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
}
.site-logo .text-logo .line2{
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding-top: 0.25rem;
    text-transform: uppercase;
}
.logo .img-logo{
    display: block;
    max-width: 180px;
    background: #fff;
    border-radius: 0.25rem;
    padding: 0.25rem 1rem;
}
.login-wrapper{
    min-height: calc(100vh - 250px);
}
.login-box{
    max-width: 450px;
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    background: #ffffff;
    margin: auto;
    margin-top: 30px;
    padding: 3rem;
    border-radius: 0.65rem;
}
.welcome-login{
    font-weight: 800;
    font-size: 1rem;
}

.pwdMask {
    position: relative;
}
.pwdMask .pwd-toggle {
    top: 7px;
    right: 15px;
    color: #ccc;
    position: absolute;
    z-index: 2;
}
.cursor-pointer{
    cursor: pointer;
}
.input-group > .pwdMask{
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.input-group .pwdMask .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.login-wrapper .input-group .input-group-text{
    background: #ffffff;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    /* border-bottom: 1px solid #ced4da; */
    border-radius: 0;
}
.login-wrapper .input-group .form-control{
    border-left: transparent;
    border-right: transparent;
    border-top: transparent;
    border-radius: 0;
}
.login-wrapper .input-group .form-control:focus{
    box-shadow: none;
}
/* SweetAlert */
.swal2-content{
    font-size: 0.875rem;
}
.swal2-content p{
    margin-bottom: 0.125rem;
}

/*===========================
  Navbar
============================= */
.header{
    margin-bottom: 30px;
}
.navbar {
	width: 100%;
	height: auto;
	padding: 10px 0 0 0;
	background: transparent; 
	z-index: 1039;
	/* box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);*/
	-webkit-transition: width 0.1s ease, left 0.1s ease;
	transition: width 0.1s ease, left 0.1s ease; 
}

.navbar .sidebar-toggler {
	height: 100%;
	border-right: 1px solid #e8ebf1;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 0 25px;
	display: none;
	text-align: center;
}

.navbar .sidebar-toggler i {
	width: 20px;
	height: 20px;
	color: #9b9b9b;
	font-size: 16px;
}

.navbar .navbar-content {
	display: -webkit-box;
	display: flex;
	width: 100%;
	height: 100%;
	padding-left: 25px;
	padding-right: 25px;
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link {
	padding: 1rem 0.5rem;
	color: rgba(0, 0, 0, 0.75);
}

@media (max-width: 640px){
    .header{
        margin-bottom: 70px;
    }
    .login-wrapper{
        width: 100%;
        padding: 1rem;
    }
}