::-webkit-scrollbar-track {
	border-radius: 10px;
}

::-webkit-scrollbar {
	width: 16px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #cccccc;
	border: 3px solid rgba(255, 255, 255, .5);
	background-clip: padding-box;
	min-height: 4rem;
}

input[type=checkbox], input[type=radio] {
    accent-color: #000;
}

body {
	font-family: "Satoshi-VariableItalic", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	font-weight: normal;
	background: #f8f9fd;
	color: gray;
}

a {
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	color: #000;
}

a:hover, a:focus {
	text-decoration: none !important;
	outline: none !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #000;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
	line-height: 1.5;
	font-weight: 400;
	font-family: "Lato", Arial, sans-serif;
	color: #000;
}

.bg-primary {
	background: #000 !important;
}

.ftco-no-pt {
	padding-top: 0;
}

.ftco-no-pb {
	padding-bottom: 0;
}

.heading-section {
	font-size: 28px;
	color: #000;
}

.img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.wrap {
	width: 100%;
}

.text-wrap, .login-wrap {
	width: 50%;
	height:100vh;
}

@media ( max-width : 991.98px) {
	.text-wrap, .login-wrap {
		width: 100%;
	}
}

.text-wrap {
	color: #fff;
}

.text-wrap .text h2 {
	font-weight: 900;
	color: #fff;
}

.login-wrap {
	position: relative;
}

.login-wrap h3 {
	font-weight: 700;
	font-size: 1.2rem !important;
}

.form-group {
	position: relative;
}

.form-group .label, .signin-up .label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #000;
	font-weight: 700;
}

.form-group a {
	color: gray;
}

.form-group a {
	color: gray;
}

.form-control {
	height: 40px;
	background: rgba(0, 0, 0, 0.05);
	color: #000;
	font-size: 14px;
	border-radius: 0.25rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid transparent;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

@media ( prefers-reduced-motion : reduce) {
	.form-control {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

.form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(0, 0, 0, 0.2) !important;
}

.form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:focus, .form-control:active {
	outline: none !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: rgba(0, 0, 0, 0.07);
	border-color: transparent;
}

.checkbox-wrap {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-wrap input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "\f0c8";
	font-family: "FontAwesome";
	position: absolute;
	color: rgba(0, 0, 0, 0.1);
	font-size: 20px;
	margin-top: -4px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

@media ( prefers-reduced-motion : reduce) {
	.checkmark:after {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
	display: block;
	content: "\f14a";
	font-family: "FontAwesome";
	color: rgba(0, 0, 0, 0.2);
}

/* Style the checkmark/indicator */
.btn {
	cursor: pointer;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 15px;
	padding: 10px 20px;
	border-radius: 0.25rem;
}

.btn:hover, .btn:active, .btn:focus {
	outline: none;
}

.btn.btn-primary {
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

.btn.btn-primary:hover {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}

.btn.btn-primary.btn-outline-primary {
	border: 1px solid #000;
	background: transparent;
	color: #000;
}

.btn.btn-primary.btn-outline-primary:hover {
	border: 1px solid transparent;
	background: #000;
	color: #fff;
}

.btn.btn-white {
	background: #fff;
	border: 1px solid #fff;
	color: #fff;
}

.btn.btn-white:hover {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.btn.btn-white.btn-outline-white {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.btn.btn-white.btn-outline-white:hover {
	border: 1px solid transparent;
	background: #fff;
	color: #000;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active,
	.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.small, small {
    font-size: 65% !important;
    font-weight: 400;
    text-align:center !important;
}

.main_logo {
	width: 11em;
	height: 2.5rem;
}
.view_text {
	font-size: 1.1rem;
    color: #000 !important;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
    width: 90%;
}

#alertMessageWidth, #alertMessageDiv {
	z-index: 1090;
	width: 100%;
	display: flex;
	justify-content: center;
	top: 10px;
}
.error {
	font-size: 0.9rem;
	padding: 1px 8px;
	color: crimson;
}
.password_Show {
	top: 0;
    padding: 6px 11px;
    right: 0;
    text-decoration: none;
}
.carousel-indicators li{
	background-color: #616161 !important;
    border-radius: 14px !important;
    border: 0 !important;
    height: 7px !important;
    width: 7px !important;
}
.carousel-indicators{
	bottom: 5%;
}
.pswd_info {
	position: absolute;
	/* width: 220px; */
	padding: 15px;
	background: #fefefe;
	font-size: 17px;
	border-radius: 15px;
	box-shadow: 0 1px 3px #ccc;
	border: 1px solid #ddd;
	display: none;
	z-index: 1000;
	top: 92px;
	right: 0;
	background-color: rgb(238, 238, 238);
	box-shadow: 5px 5px 5px #888888;
}

.pswd_info:before, .pswd_info:after {
	position: absolute;
	bottom: 100%;
	content: '';
}

.pswd_info:before {
	right: 52px;
	border-right: 17px solid transparent;
	border-bottom: 17px solid #ddd;
	border-left: 17px solid transparent;
}

.pswd_info:after {
	right: 53px;
	border-right: 16px solid transparent;
	border-bottom: 16px solid rgb(238, 238, 238);
	border-left: 16px solid transparent;
}

.pswd_info h4 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
	font-size: 1em;
	font-size: 0.7em;
}

.pswd_info ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.pswd_info ul li {
	visibility: visible !important;
	min-height: 20px !important;
	line-height: 20px;
	font-size: 0.7em;
	/* padding-left: 24px !important; */
}

.pswd_info .invalid {
	/* background:url(images/invalid.png) no-repeat 0 50%; */
	color: #ec3f41;
}

.pswd_info .valid {
	/* background:url(images/valid.png) no-repeat 0 50%; */
	color: #3a7d34;
}

.password-eye {
	margin-left: -30px;
	cursor: pointer;
}

.password-policy-eye {
	right: 10px;
	cursor: pointer;
	top: 10px;
}

.inline-must {
	display: inline !important;
}
/* password policy css end*/
.sign_in_social_media_text{
	font-size: 0.8rem !important;
	line-height: 1.2 !important;
}
.sign_in_or_span{
	display: flex;
    justify-content: center;
    width: 100%;
}
#signin_container,
#signup_container{
	width: 28rem !important;
    padding: 0rem 2rem;
    box-shadow: 0px 0px 8px 0px #e3e3e3;
    border-radius: 20px;
    background-color: white;
}
.sign_in_with_google_img{
	background-image: url("../images/loadImageFileServlet/google-logo.svg");
}
.sign_in_with_account_img{
	width: 1.5rem;
    height: 1rem;
}
.forget_close {
	cursor: pointer;
}
.carousel-item img{
	width:90%
}
.social_mediaBtn{
	padding: 5px 20px;
}
.sub_fontsize{
	font-size:0.9rem;
}
.google_auth,.apple_auth {
	position: absolute;
    z-index: 1080;
    opacity: 0;
}
#appleid-signin > div {
	width: auto !important;
    min-width: fit-content !important;
}
.form-group {
    margin-bottom: 0 !important;
}
#signupIndividual,
#signupReseller, 
#signupEnterprise{
	border: 1px solid #ccc;
	font-size: 0.85rem;
}
.main_btnGroup {
	background-color: white !important;
    border-radius: 50px !important;
    padding: 0.2rem !important;
    box-shadow: 0rem 0rem 0.3rem 0rem rgba(0, 0, 0, .15) !important;
}
.main_btnGroup .active{
	background-color: #000 !important;
    color: #ffff !important;
    font-weight: bold !important;
    border-radius: 50px !important; 
}
.main_btnGroup .btn{
	border: 0px !important;
	margin: 0px 1px;
    transition: 0.25s ease-out;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
.logoPadding{
	padding-bottom: 1.1rem !important;
    padding-top: 0.5rem !important;
}
.cursol_div .lexel_left_banner .carousel-inner{
	height: calc(100% - 100px);
}
.cursol_div .lexel_left_banner .carousel-inner .carousel-item,
.cursol_div .lexel_leftnonsaas_banner .carousel-inner .carousel-item{
	height: 100%;
    display: flex;
    align-items: center;
}
.ftco-section .flex-row-reverse.wrap{
	height: 100vh;
}
.ftco-section .lexel_left_banner{
	height: calc(100vh - 82px) !important;
}

.anchorBtn {
    color: #fff !important;
    background-color: #000 !important;
    text-transform: capitalize !important;
    border-radius: 9px !important;
    min-width:80px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.label
{
	display: inline-block;
	margin-bottom: .5rem;
}
/* Non saas starts here */
.cursol_div .lexel_leftnonsaas_banner .carousel-inner{
	height: calc(100% - 94px);
}
/* Non saas ends here */


