@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,600;0,700;1,400&display=swap');
*, ::after, ::before {
    box-sizing: border-box;
}
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --text-color: #53627a;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    /*--bs-primary: #0d6efd;
    --bs-primary: #4582ff; */
    --bs-primary: #0080F9;
    --bs-secondary: #647689;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-body-color: #212529;
    --border-color: #c9d3dd;
    --para-text-color: #7b889e;
    --bs-danger-rgb: 247,119,119;
    --bs-success-rgb: 69,196,160;
    --font-family: "Montserrat", sans-serif;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bs-gray-500);
}
::-webkit-scrollbar-track {
    background: var(--bs-gray-100);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
    color: #9aabbb;
    font-family: var(--font-family);
}
body section{
    height: 100%;
}
.alert {
    position: relative;
    padding: 1rem;
	text-align: center;
    color: var(--bs-white);
    border-radius: 0.375rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}
.alert-success{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important;
}
.alert-danger{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important;
}
.row{
    height: 100%;
    display:flex;
    flex-wrap:wrap;
}
.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}
.col-lg-7 {
    flex: 0 0 auto;
    width: 49.333333%;
}
@media (max-width: 992px){
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}
@media (max-width: 768px){
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (max-width: 576px){
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
a, .bn-link, a:not([href],[class]), a:not([href],[class]):hover {
    text-decoration: none;
    color: var(--bs-primary);
    cursor: pointer;
}
.text-center{
    text-align: center!important;
}
.main_sign_up_in{
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #202630;
    padding-right: 2.8rem;
    padding-left: 2.8rem;
    overflow: hidden;
}
@media (min-width: 900px){
	.col-lg-4 {
		flex: 0 0 auto;
		width: 40%;
	}
	.col-lg-8 {
		flex: 0 0 auto;
		width: 60%;
	}
}
@media (min-width: 1300px){
	.col-lg-4 {
		flex: 0 0 auto;
		width: 30%;
	}
	.col-lg-8 {
		flex: 0 0 auto;
		width: 70%;
	}
}
@media (min-width: 992px){
.d-lg-flex {
    display: flex!important;
}
}
.bnAuthForm{
    width: 100%;
    max-width: 400px;
}
.websiteLogo{
    display: block;
    margin: auto;
    width: 250px;
    height: 55px;
    margin-bottom: 10px;
    background: url(../img/snapx-logo.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}
.authTitle {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
}
.authDescription {
    margin: 0.7143rem 0 15px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
}
@media (max-width: 400px){
    .authTitle{
        font-size: 22px;
    }
	.authDescription {
		font-size: 18px;
	}
	.main_sign_up_in{
		padding: 25px;
	}
}
.form-group{
    position: relative;
}
.bnAuthForm input{
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    width: 100%;
    line-height: 24px;
    padding: 10px;
    background: white;
    margin: 20px auto 12px auto;
    text-align: center;
    display: block;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: 7.2px;
    font-size: 15px;
    font-weight: 500;
}
.bnAuthForm button{
    appearance: none;
    border: 0;
    height: 45px;
    padding: 0px;
    float: none;
    border-radius: 4px;
    width: 100%;
    margin: 0px;
    color: #FFF;
    margin-top: 15px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    font-weight: 500;
    line-height: 0;    
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family);
	background: linear-gradient(171.02deg, #45A4FF 4.38%, #0080F9 111.49%);
    /*background: linear-gradient(171.02deg,#ffaf48 4.38%,#ff7854 111.49%);*/
}
.eyes_icon_set {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 25px;
    cursor: pointer;
}
.btn-link {
    display: flex;
    padding: 0px;
    color: #45A4FF;
}
.authHr{
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-top: 2.8572rem;
    flex-direction: row-reverse;
}
.authHr:before {
    margin-right: 1.07145rem;
}
.authHr:after, .authHr:before {
    content: "";
    height: 1px;
    width: 100%;
    display: inline-flex;
    vertical-align: top;
    opacity: .4;
    background-color: var(--border-color);
}
.authProviders {
    margin: 2.1429rem 0;
    text-align: center;
}
.authProvidersItem{
    display: inline-block;
    height: 34px;
    transition: transform .1s;
    -webkit-user-select: none;
    user-select: none;
}
.privacyTerms {
    margin-top: 15px;
    line-height: 1.5;
}
.not_available{
    padding: 8px;
    width: auto;
    color: #fff;
    font-size: 17px;
    text-align: center;
    background: rgb(247 119 119);
    border-radius: 3px;
    margin-bottom: 5px;
}
/*===================================================*/
.pace .pace-progress{
    background: linear-gradient(270deg, #399efe 4.38%, #0a81f3 111.49%);
}
.pace .pace-progress-inner{
    box-shadow:0 0 10px #2CAAF2,0 0 5px #2CAAF2;
}
.pace .pace-activity {
    border-top-color: #0a85fa !important;
    border-bottom-color: #45a4ff !important;
}
.pace{
    direction: rtl;
    -webkit-pointer-events:none;
    pointer-events:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none
}
.pace-inactive{
    display:none
}
.pace .pace-progress{
    position: fixed;
    z-index: 9999;
    right: 100%;
    width: 100%;
    height: 3px;
    top: 0px;
}
.pace .pace-progress-inner{
    display:block;
    position:absolute;
    right:0px;
    width:100px;
    height:100%;
    box-shadow:0 0 10px transparent,0 0 5px transparent;
    opacity:1.0;
    -webkit-transform:rotate(3deg) translate(0px,-4px);
    -moz-transform:rotate(3deg) translate(0px,-4px);
    -ms-transform:rotate(3deg) translate(0px,-4px);
    -o-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translate(0px,-4px)
}
.pace-width{
    margin: auto;
    width: 1170px;
}
.pace .pace-activity{
    display: block;
    z-index: 999999;
    width: 25px;
    height: 25px;
    top: 15px;
    left: 15px;
    position: fixed;
    border: dashed 3px transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}
@-webkit-keyframes pace-spinner{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    100%{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}