header {
    display: none !important;
}

footer {
    display: none !important;
}

.main_img {
    height: 100vh;
    width: 100%;
    background-image: url(../img/auth.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 27px 30px;
}
section.auth.login .main_img .img-fluid {
    max-width: 200px;
}

.form_start input,
.form_start select,
.form_start textarea {
    width: 100%;
    display: block;
    background: transparent;
    height: 41px;
    padding: 0px 19px 0px;
    border: 1px solid #B8AFAF;
    font-family: "Poppins-Regular";
    /* text-transform: uppercase; */
    outline: none;
    text-align: left;
    color: #000;
    border-radius: 7px;
}

.form_start input::placeholder,
.form_start select,
.form_start textarea::placeholder {
    color: #CFCCD2 !important;
    text-transform: capitalize;
}

.form_start select {
    appearance: none;
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
    background-size: contain;
    color: #000 !important;
}

.form_start textarea {
    height: 75px;
    resize: none;
    padding-top: 12px;
}

.auth_start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.auth_start .wraper {
    width: 100%;
    text-align: center;
}


.auth_start .wraper .top_text h4 span {
    font-weight: bold;
    color: #D29F45;
    font-size: 25px;
}

.auth_start .wraper .top_text span {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.auth_start .wraper .top_text span a {
    color: #D29F45;
    font-weight: 800;
    font-size: 17px;
}

/* Custom Checkbox Start here */
.custom_check_box {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Poppins-Regular";
    font-size: 11px;
    color: #1F162C;
}

/* Hide the browser's default checkbox */
.custom_check_box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom_check_box .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 19px;
    background-color: #eee;
    border: 1px solid #636060;
    border-radius: 0px;
    background: transparent;
}

section.checkout_section .checkout_start .save_details {
    margin-top: 14px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom_check_box input:checked~.checkmark {

    background: #000;
}

.custom_check_box input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom_check_box .checkmark:after {
    left: 6px;
    top: 0px;
    width: 5px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Custom Check Box End Here */
.auth_start .wraper .save_password {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    margin-top: 19px;
}

.auth_start .wraper .save_password a {
    color: #1F162C;
    font-family: "Poppins-Regular";
    font-size: 11px;
    color: #1F162C;
}

.form_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form_row .single_input {
    width: 48%;
}

.form_row .three_inputs {
    width: 32%;
}

section.auth.login.forgot_password {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.form_row .otp_input {
    width: 15%;
}

section.auth.login.forgot_password.text-center .logo_img {
    margin-bottom: 66px;
}

.wraper .top_text p {
    color: #5E5E5E;
}




.form_row .the_input {
    text-align: left;
    position: relative;
}

.auth_start .wraper p {
    color: #666666;
    max-width: 390px;
    margin: auto;
}

.auth_start .wraper p a {
    text-decoration: none;
    font-size: 13px;
    color: #1F162C;
    font-family: "Poppins-Bold";
}

.the_input.enter_email input {
    background-image: url(../img/email1.png);
    background-repeat: no-repeat;
    padding-right: 35px;
    background-position: center right 11px;
}

.the_input.w-100.enter_password {
    position: relative;
}

.the_input.w-100.enter_password span.eye_icon {
    position: absolute;
    right: 16px;
    top: 39px;
    cursor: pointer;
}

.nav.nav-tabs.tabs_btns {
    width: 100%;
    border: 0px;
    border: 1px solid #707070;
    border-radius: 5px;
    justify-content: space-between;
}

.nav.nav-tabs.tabs_btns li {
    width: 50%;
    margin: -1px 0px -2px;
}

.nav.nav-tabs.tabs_btns li button {
    width: 100%;
    border-radius: 4px;
    background: transparent;
    color: #191300 !important;
    font-size: 16px;
    box-shadow: none;
    font-family: "Poppins-Medium" !important;
}

.nav.nav-tabs.tabs_btns li button.active {
    background: #138FCB;
    color: #FFF !important;
}

.field_reduired {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
    padding-bottom: 3px;
}

.field_reduired span {
    display: block;
    color: #1F162C;
    font-size: 14px;
    font-family: "Poppins-Regular";
}



.custom_check_box1 {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Poppins-Regular";
    font-size: 13px;
    color: #1F162C;
    text-align: start;
}

/* Hide the browser's default checkbox */
.custom_check_box1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom_check_box1 .checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 19px;
    background-color: #eee;
    border: 1px solid #1190CB;
    border-radius: 5px;
    background: transparent;
}

section.checkout_section .checkout_start .save_details {
    margin-top: 14px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom_check_box1 input:checked~.checkmark1 {

    background: #1190CB;
}

.custom_check_box1 input:checked~.checkmark1:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom_check_box1 .checkmark1:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 11px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Custom Check Box End Here */


.all_check_boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.all_check_boxes .single_check_box {
    width: 22%;
}

.accept_payments .the_input.w-100.options {
    display: flex;
    justify-content: space-between;
}

.accept_payments .the_input.w-100.options span {
    font-family: "Poppins-Regular";
    font-size: 13px;
    color: #1F162C;
}

.accept_payments .the_input.w-100.options span.blue_text {
    color: #1190CB;
}

@media (min-width: 991px) {
    section.auth.signup .auth_start .for_over_flow_scroll {
        max-height: 622px;
        overflow: scroll;
        width: 100%;
    }

    section.auth.signup .auth_start .for_over_flow_scroll::-webkit-scrollbar {
        display: none;
    }

}

@media (max-width: 1200px) {
    .all_check_boxes .single_check_box {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .all_check_boxes .single_check_box {
        width: 33%;
    }
}

@media (max-width: 768px) {
    .auth_start {
        margin-top: 45px;
    }
}

@media (max-width: 576px) {
    .all_check_boxes .single_check_box {
        width: 50%;
    }

    .form_row .single_input {
        width: 100%;
    }

    .form_row .three_inputs {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .auth_start .wraper p.email_text {
        max-width: 328px;
        width: 100%;
        margin: 15px auto;
    }
}








/*Background color*/
#grad1 {
    background-color: #9C27B0;
    background-image: linear-gradient(120deg, #FF4081, #81D4FA);
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}


#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}




/*Blue Buttons*/
#msform .action-button {
    width: 100px;
    background: skyblue;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue;
}

/*Previous Buttons*/
#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}


/*Dropdown List Exp Date*/


select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}

/*The background card*/


/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    /* overflow: hidden; */
    color: lightgrey;
    display: flex;
    align-items: center;
    padding-left: 0px;
}

#progressbar .active {
    color: #2BA7FF;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: calc(100%/3);
    position: relative;
    font-family: "Poppins-Bold";
    font-size: 22px;
    color: #CFCCD2;
}

/*Icons in the ProgressBar*/
#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f023";
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f09d";
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}

/*ProgressBar before any progress*/
/* #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
} */

/*ProgressBar connectors*/
#progressbar li:before {
    content: '';
    width: 100%;
    height: 3px;
    background: #D0CDD3;
    left: 0;
    top: 25px;
    z-index: -1;
    margin-bottom: 17px;
    display: block;
}

/*Color number of the step and the connector before it*/
/* #progressbar li.active:before, */
#progressbar li.active::before {
    background: #2BA7FF;
    border-radius: 4px;
    height: 4px;
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px;
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image {
    width: 100%;
    object-fit: cover;
}

.auth_start .wraper .pay_now_flex {
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 19px;
    box-shadow: rgb(97 97 97 / 21%) 1px 3px 15px;
    background: #F3FBFF;
    border-radius: 7px;
}

.auth_start .wraper .pay_now_flex h5 {
    font-size: 23px;
    color: #2BA7FF;
    margin-bottom: 0px;
}

.auth_start .wraper .pay_now_flex .btn {
    font-size: 15px;
    border-radius: 4px;
    padding: 8px 20px;
}

@media (max-width: 1400px) {
    .auth_start .wraper .pay_now_flex h5 {
        font-size: 22px;
    }

    .auth_start .wraper .pay_now_flex .btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

@media (max-width: 1200px) {
    .auth_start .wraper .pay_now_flex h5 {
        font-size: 19px;
    }

    .auth_start .wraper .pay_now_flex .btn {
        font-size: 12px;
        padding: 7px 14px;
    }
}

@media (max-width: 991px) {
    .auth_start .wraper .pay_now_flex h5 {
        font-size: 14px;
    }

    .auth_start .wraper .pay_now_flex .btn {
        font-size: 9px;
        padding: 5px 13px;
    }

}

@media (max-width: 768px) {
    .main_img {
        height: 55vh;
    }
}
@media (max-width: 576px) {
    .auth_start .wraper .pay_now_flex h5 {
        font-size: 13px;
    }

    .auth_start .wraper .pay_now_flex p {
        font-size: 10px;
    }

    .auth_start .wraper .pay_now_flex .btn {
        font-size: 8px;
        padding: 5px 10px;
    }

}

.wraper.for_pay_now .form_start h6 {
    font-family: "Poppins-Bold";
    margin-top: 18px;
    margin-bottom: 19px;
}

section.auth .main_img .img-fluid {
    max-width: 200px;
}