html {
    width: 100%;
}

body {
    overflow-x: hidden !important;
}

body.show-spinner>main {
    overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
    opacity: 0;
}


/* Spinner */
body.show-spinner::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0.3);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    position: fixed;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}



.separator_bdcm {
    border-bottom: 1px solid #d7d7d7;
    width: 100%;
    margin: 0 15px 16px;
    /*margin-bottom: 16px;*/
}

.logo1 {
    width: 150px;
    height: auto;
}
.logo-single1 {
    background: none;
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}
.signup_heading {
    text-align: center;
    color: #000;
    font-weight: bolder;
    font-size: 24px;
}
.fixed-background{
    background: none;
}
.auth_card {
    width: 100%;
    padding:20px 80px;
}
.f_14{
    font-size: 14px;
}
 .a {
    color: #5E6EFB;
    text-decoration: underline;
}

.join_btn {
    width: 100%;
    border-radius: 4px;
    font-size: 19px;
}
.auth_card .card-body{
    padding: 1rem 1.75rem;
}
.fb_join_btn{
    width: 100%;
    border-radius: 4px;
    font-size: 17px;
    background: #4267B2;
    border-color: #4267B2;
    color: #fff;
    font-family: sans-serif;
}
.fb_join_btn:hover{
    color:#fff;
}
.fb_icon {
    background: #fff;
    color: #4267b2;
    border-radius: 50%;
    padding: 2px;
}
.usertype_select label.btn {
    padding: 0;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
}
.form_btn {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 6px 0px !important;
    background: #fff;
    color: #575757;
    border-color: #fff;
    display: flex;
    padding: 15px !important;
    border-radius: 30px;
    font-weight: 500;
    transition: .8s;
    cursor: pointer;
}
.form_btn img{
    width: 40px;
    height: 40px;
}
.form_btn i {
    line-height: 40px;
    font-weight: bolder;
    font-size: 13px;
}
.form_btn:hover {
    background: #fff;
    color: #575757;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    border-color: #fff;
}
.usertype_select label.btn input {
    opacity: 0;
    position: absolute;
}
.usertype_select label.btn span {
    text-align: center;
    padding: 6px 12px;
    display: block;
    line-height: 25px;
    font-weight: bold;
    font-size: 15px;
}
.check_btn {
    background-color: #82a54d !important;
    border-color: #82a54d !important;

}
.check_btn span {
    color: #fff !important;
}
.check_btn i {
    color: #fff !important;
}

/*Register page */
.form_btn .white_logo {
    display: none;
}

.check_btn .color_logo {
    display: none;
}

.check_btn .white_logo {
    display: block;
}
/*.form_btn:hover {*/
/*    background-image: linear-gradient(*/
/*        90deg, #5a9120 0, #6fb327 100%) !important;*/
/*    border-color: #5cb85c;*/
/*    color: #fff;*/
/*}*/

/* ------- Ajax loading spinner start ------- */

#overlay {
    position: fixed;
    top: 0;
    z-index: 1100;
    width: 100%;
    height: 100%;
    /*display: none;*/
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

/* ------- Ajax loading spinner end ------- */

/*Reset password page*/
.reset_password_page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_link:hover {
    color: #7acd26;
    text-decoration: initial!important;
}
.btn_link {
    color: #6fb327;
    text-decoration: initial!important;
}
.join_btn1 {
    width: 100%;
    border-radius: 4px;
    font-size: 14px;
}
