﻿@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	color: #231f20;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	/*background: #f2f2f2;*/
	/* background: url(http://employee.slnsoftwares.com/Login/images/login-background.jpg) no-repeat bottom;
    background-size: cover;*/
	width: 100%;
	height: 100%;
	background-attachment: fixed;
}
img {
	max-width: 100%;
}
a, a:hover {
	color: #000;
}
.none {
	display: none !important;
}
.logo {
	display: none;
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
}
.login-container {
	width: 1050px;
	margin: 0 auto;
	padding: 10px 0;
}
.login-container-box {
	padding: 20px;
	border-radius: 5px;
	background: #f2f2f261;
	position: relative;
	border: 1px solid #dadada;
	margin-bottom: 20px;
}
.login-container-box h1 {
	margin: 0;
	padding: 0 0 10px 0;
	color: #ff4800;
	font-size: 24px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.login-container strong {
	font-weight: 500;
}
.login-container h2 {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 18px;
}
.card-style {
	margin-top: 20px;
}
.card-style h4 {
	background: #000;
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
	padding: 5px 10px;
	display: inline-block;
	margin-top: 0;
}
.login-header {
	border-bottom: 1px solid #f0ecec;
	padding: 0 0 20px 0;
	margin-bottom: 25px;
}
.login-header:after {
	content: '';
	display: block;
	clear: both;
}
.login-header .left {
	float: left;
}
.login-header .right {
	float: right;
}
label {
	font-weight: 400 !important;
}
.input-control {
	border: 1px solid #e8e8e8;
	padding: 8px 10px;
	background: #fff;
	width: 100%;
	border-radius: 3px;
}
.input-control:focus {
	border-color: #f0ecec;
	outline: 0;
	box-shadow: none;
}
.inputstyle {
	position: relative;
}
.inputstyle input {
	padding-right: 150px;
}
.inputstyle .rightSide {
	position: absolute;
	right: 0px; /*10px;*/
	line-height: 36px;
	bottom: 0;
	top: 0;
}
.btn {
	padding: 8px;
}
.btn-primary {
	background: #ff4800;
	padding: 8px;
	border: 2px solid #ff4800;
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}
.btn-primary:hover {
	background: #fff;
	box-shadow: 0;
	color: #000;
	border: 2px solid #ff4800;
}
.btn-primary:focus {
	box-shadow: 0;
}
.check-field ul {
	width: 100%;
	position: relative;
	display: table;
}
.check-field ul:nth-child(2) {
	margin-top: 15px;
}
.check-field ul li {
	float: left;
	margin-right: 12px;
	width: 15%;
	position: relative;
	margin-top: 5px;
}
.check-field label {
	position: relative;
	padding-left: 26px;
	padding-top: 2px;
	font-size: 14px;
	cursor: pointer;
}
.check-field label:before, .check-field label:after {
	position: absolute;
	top: 0;
	left: 0;
}
.check-field label:before {
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 3px;
	box-sizing: border-box;
	border: solid 1px #e4e4e4;
	background: #fff;
}
.check-field label:after {
	content: url(../images/check-mark-new.png);
	width: 20px;
	height: 20px;
	display: block;
	max-width: 0;
	overflow: hidden;
	opacity: .5;
	transition: all .35s;
}
.check-field input[type=checkbox] {
	display: none;
}
.check-field input[type=checkbox]:checked + label:after {
	max-width: 25px;
	opacity: 1;
}
.check-field .social-icon:before {
	font-family: 'FontAwesome';
	font-size: 18px;
	float: none;
	top: 2px;
	position: relative;
	left: 0px;
}
.radio {
	display: inline-block;
	padding-right: 15px;
	font-size: 14px;
	cursor: pointer;
	margin-top: 7px;
}
.radio:hover.inner {
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	opacity: .5;
}
.radio input {
	width: 0;
	height: 0;
	opacity: 0;
	display: none;
}
.radio input:checked + .outer .inner {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.radio input:checked + .outer {
	border: 1px solid #ccc;
}
.radio input:focus + .outer .inner {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	background-color: #028cff;
}
.radio .outer {
	width: 16px;
	height: 16px;
	display: block;
	float: left;
	margin: 0 5px 0 0;
	border: 1px solid #d9d9d9;
	border-radius: 50%;
	background-color: #fff;
	box-sizing: border-box;
}
.radio .inner {
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	width: 10px;
	height: 10px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	display: block;
	margin: 0;
	border-radius: 50%;
	border: 0px solid #2083f7;
	background-color: #2083f7;
	opacity: 0;
	position: relative;
	top: 2px;
	left: 2px;
}
.forgot-password {
	font-size: 13px;
}
.login-bottom {
	color: #fff;
	text-align: center;
	margin-top: 30px;
	font-weight: 300;
	width: 100%;
	margin-bottom: 30px;
}
.mt-20 {
	margin-top: 20px;
}
.pt-15 {
	padding-top: 15px;
}
.pt-10 {
	padding-top: 10px;
}
.login-footer {
	border-top: 2px solid #f2f2f2;
	width: 100%;
	margin-top: 30px;
	padding: 10px 0;
	text-align: center;
}
.login-footer a {
	display: inline-block;
	padding: 3px 10px;
	color: #000;
}
.modal-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(2, 66, 131, 0.7);
	visibility: hidden;
	opacity: 0;
	transition: all 0.25s ease-in-out;
}
.modal-wrapper.open {
	opacity: 1;
	visibility: visible;
}
.modal {
	width: 500px;
	display: block;
	margin: 0 auto;
	position: relative;
	border-radius: 10px;
	background: #fff;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.modal-wrapper.open .modal {
	margin-top: 100px;
	opacity: 1;
}
.content-wrapper {
	position: relative;
}
.text-primary {
	color: #129fdd;
}
.btn-close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 25px;
	height: 25px;
	opacity: 0.3;
}
.btn-close:hover {
	opacity: 1;
}
.btn-close:before, .btn-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 26px;
	width: 2px;
	background-color: #333;
}
.btn-close:before {
	transform: rotate(45deg);
}
.btn-close:after {
	transform: rotate(-45deg);
}
.loader-btn {
	position: relative;
	background: #129fdd;
	height: 40px;
	border: 1px solid #129fdd;
	border-radius: 3px;
}
.loader-btn .spinner {
	top: 4px;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0 auto;
	border: 2px solid rgba(0, 82, 236, 0.25);
	border-top-color: #fff;
}
.spinner {
	width: 30px;
	height: 30px;
	border: 2px solid rgba(0, 82, 236, 0.25);
	border-top-color: #0052ec;
	border-radius: 50%;
	position: absolute;
	animation: loader-rotate 1s linear infinite;
}
 @keyframes loader-rotate {
 0% {
 transform: rotate(0);
}
 100% {
 transform: rotate(360deg);
}
}
.pageLoader {
	text-align: center;
	padding-top: 300px;
	font-size: 32px;
	position: relative;
	width: 400px;
	margin: 0 auto;
}
.pageLoader .spinner {
	width: 60px;
	height: 60px;
	border: 8px solid rgba(0, 0, 0, 0.7);
	border-top-color: #0052ec;
	margin-top: -70px;
	margin-left: -35px;
}
.btn-style-one {
	position: relative;
	line-height: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #ff4800;
	background: #fff;
	padding: 4px 10px;
	display: block;
	text-align: center;
	border-radius: 50px;
	text-transform: uppercase;
	border: 2px solid #ff4800;
}
 @media (max-width: 768px) {
.login-container {
	width: 90%;
}
.logo {
	display: block;
}
.logo img {
	width: 200px;
}
.login-header h2 {
	margin-bottom: 15px;
}
.login-header .left, .login-header .right {
	float: none;
	text-align: center;
	width: 100%;
}
.card-style .pt-15 {
	padding-top: 0;
}
.modal {
	width: 90% !important;
	height: 200px !important;
}
.modal-wrapper.open .modal {
	margin-top: 50px !important;
	opacity: 1;
}
.login-footer {
	text-align: left;
}
.login-footer a {
	display: block;
	padding: 5px 0;
}
}
