
/* Add styles for loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f15523;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
}

#loading-text {
    width: 163px;
    aspect-ratio: 1;
    display: grid;
    position: relative;
}

    #loading-text:before,
    #loading-text:after {
        content: '';
        grid-area: 1/1;
        --c: #0000 calc(100% / 3), #fff 0 calc(2 * 100% / 3), #0000 0;
        --c1: linear-gradient(90deg, var(--c));
        --c2: linear-gradient(0deg, var(--c));
        background: var(--c1), var(--c2), var(--c1), var(--c2);
        background-size: 300% 6px, 6px 300%;
        background-repeat: no-repeat;
        animation: l11 1s infinite linear;
    }

    #loading-text:after {
        margin: 20px;
        transform: scaleX(-1);
        animation-delay: -0.25s;
    }

    #loading-text img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 92px;
    }

@keyframes l11 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0;
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0;
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0;
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%;
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%;
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%;
    }
}


html,
body {
    /* overflow: auto; */
    /* Allows scrolling */
    scrollbar-width: none;
    touch-action: manipulation;
    /* For Firefox */
}

    /* For Chrome, Safari, and Edge */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }

.container_body {
    /* display: none; */
    position: relative;
    width: 100%;
    height: 100%;
    /* display: none; */
}

.container_body_scroll {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    will-change: transform;
    /* background: #000000; */
}


.mainSection {
    margin-top: 4%;
}

/* ------------------------sidebar Social section---------------------------------------------------- */
.socialSec {
    position: fixed;
    z-index: 1000;
}

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f4f4f4;
    padding: 7px;
    border-radius: 11px 0px 0px 11px;
    border: 4px solid #d3d3d3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

    .social-sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .social-sidebar ul li {
            margin: 0px -25px 10px 0px;
            width: 50px;
        }

            .social-sidebar ul li a i {
                font-size: 20px;
                color: white;
            }

.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    color: #333;
    /* margin-bottom: 20px; */
    text-align: center;
    margin-left: 22%;
    font-weight: 600;
}

/* -------------------------------------payment page 1st section css---------------------------------------------------- */
.techflow_new_topSection_services {
    align-items: center;
    /* height: 300px; */
    display: flex;
    margin-top: 4%;
    background: linear-gradient( to bottom right, #d3d3d3 40%, #ffffff 90%, transparent 50% );
    position: relative;
}

.techflow_new_topSection_services_ani {
    position: absolute;
    left: 0;
    bottom: 0;
}

.techflow_new_topSection_services_anix {
    width: 200px;
}

.techflow_new_topSection_servicesTopborder_right {
    border-right: 1px solid #b7bac1;
}

.topSectionContent1Text {
    font-size: 1.9rem;
    font-weight: 600;
    /* padding-top: 10%; */
    color: #f15523;
    /* line-height: 3.1vw; */
}

#topSectionContent1TextSpan {
    color: #535353;
}

/* -------------------------------------payment page 2nd section css---------------------------------------------------- */
.bd_b {
    border: 1px solid blue;
}

.mb_o {
    margin-bottom: 0rem !important;
}

.paymentSec_starts {
    width: 100%;
    margin: 4rem 0;
    position: relative;
}

.paymentSec_absBackDiv {
    position: absolute;
    right: 0;
    top: 53%;
}

    .paymentSec_absBackDiv img {
        width: 247px;
    }

.payment_subCon {
    width: 50%;
    margin: 0 auto;
    padding: 3rem 0;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.paymentSuccess_ImgDiv {
    width: 60%;
    margin: 0 auto;
}

    .paymentSuccess_ImgDiv img {
        width: 100%;
    }

.paymentSuccess_text {
    text-align: center;
}

.success_text {
    margin-top: 2rem;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.success_amount {
    font-size: 13px;
    letter-spacing: 0px;
    font-weight: 500;
    margin-top: -8px;
}

.success_ref {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0px;
}

.paymentSuccess_btn {
    margin-top: 1rem;
    background-color: rgba(241, 85, 35, 1);
    border: none;
    color: white;
    width: 350px;
    padding: 10px 0px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    outline: none;
    display: inline-block;
}
/* ----------------------------------------------------------location-TrainingCenter---------------------------------------------------- */
.locationTrainingCenter_Starts {
    width: 100%;
    position: relative;
}

.locationTraining_absDiv {
    position: absolute;
    position: absolute;
    left: 0;
    top: -57%;
}

    .locationTraining_absDiv img {
        width: 150px;
    }

.locationTrainingCenter_heading {
    text-align: center;
}

    .locationTrainingCenter_heading h3 {
        color: #565656;
        font-size: 45px;
        font-weight: 600;
    }

    .locationTrainingCenter_heading span {
        color: #f16529;
        font-size: 45px;
        font-weight: 600;
    }

.locationTrainingCenter_mainCon {
}

.locationTrainingCenter_subCon {
    width: 70%;
    margin: 0 auto;
}

.locationTrainingCenter_ImgDiv {
    display: flex;
    justify-content: center;
}

    .locationTrainingCenter_ImgDiv img {
        width: 390px;
    }

.locationTrainingCenter_Text {
    padding: 3rem 1rem;
}

.locationTrainingCenter_subDiv {
    display: flex;
    gap: 15px;
}

    .locationTrainingCenter_subDiv img {
        width: 22px;
        height: 27px;
    }

    .locationTrainingCenter_subDiv p {
        font-size: 15px;
        color: #5c5c5c;
        font-weight: 500;
    }

/* --------------------------------------------payment section-join us ---------------------------------------------- */

.mb_5 {
    margin: 8rem 0 4rem 0;
}

.techflow_new_services_joinus {
    position: relative;
    /* margin: 2rem 0 6rem 0; */
}

.techflow_new_services_joinUs_div {
    position: relative;
    border-radius: 45px;
    height: 220px;
    background: linear-gradient( to bottom right, #dddddd 40%, #e5e5e5 100%, transparent 50% );
    /* overflow: hidden; */
    align-items: center;
    display: flex;
    z-index: 1;
}

.all_btn {
    padding: 6px 25px;
    border-radius: 22px;
    background: #f04e23;
    color: white;
    border: 1px solid #f04e23;
    cursor: pointer;
}

.techflow_new_services_joinUs_div_bottom_ab {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

    .techflow_new_services_joinUs_div_bottom_ab img {
        width: 200px;
        border-bottom-left-radius: 45px;
    }

.techflow_new_services_joinUs_right_top_ab {
    position: absolute;
    top: 0;
    right: 280px;
    z-index: -1;
}

    .techflow_new_services_joinUs_right_top_ab img {
        width: 300px;
    }

.techflow_new_services_joinUs_right_big {
    width: 380px;
    position: absolute;
    right: 0px;
    height: 100%;
    top: -10%;
}

.techflow_new_services_joinUs_right {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 20px;
    aspect-ratio: 13 / 9;
    width: 100%;
    height: auto;
    mask-image: url('../uploads/pics/mask.svg');
    -webkit-mask-image: url('../uploads/pics/mask.svg');
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    overflow: hidden;
    transform: scaleX(-1);
}

    .techflow_new_services_joinUs_right img {
        width: 100%;
        height: 100%;
        transform: scaleX(-1);
    }

.techflow_new_services_joinUs_details {
    width: 95%;
    margin: auto;
}

.techflow_new_services_joinUs_div_title {
    font-size: 1.2rem;
    color: #565656;
    font-weight: 300;
    margin: 0 !important;
}

.techflow_new_services_joinUs_div_title_p {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
    color: #565656;
    margin: 0 !important;
}

    .techflow_new_services_joinUs_div_title_p span {
        color: #f16529;
        font-size: 2rem;
        font-weight: bold;
        display: block;
    }

.techflow_new_services_joinus_modal {
    /* width: ; */
}

/* --------------------------------------------payment details css---------------------------------------------------------------------------------------------------------------- */

.paymentDetailsSec_starts {
    width: 100%;
    margin: 8rem 0;
}

.paymentDetails_mainCon {
}

.paymentDetails_subCon {
}

.paymentDetails_RightDiv {
}

    .paymentDetails_RightDiv img {
        width: 105%;
    }

.cardDiv {
    width: 85%;
}

.paymentMethod {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: 2px dashed #cccccc;
    padding: 5px 0;
}

    .paymentMethod p {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 0rem !important;
    }

.methodImgDiv {
    display: flex;
    gap: 13px;
    justify-content: center;
    align-items: center;
}

    .methodImgDiv img {
        width: 30px;
        height: 30px;
    }

.creditcardDetails {
    margin-top: 1.5rem;
    margin-bottom: 0rem !important;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .creditcardDetails p {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0rem !important;
    }

    .creditcardDetails span {
        font-size: 15px;
        font-weight: 200;
        color: #b8b8b8;
    }

.contactinformation {
    margin-top: 2rem;
    margin-bottom: 0rem !important;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .contactinformation p {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0rem !important;
    }

.billingAddressDiv {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .billingAddressDiv p {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 0rem !important;
    }

.paymentDetails_codeQues {
    display: flex;
    justify-content: space-between;
}

.code_question {
    /* display: flex;
justify-content: space-between; */
}

.any_code_Div {
    border: 1px solid #ddd;
    padding: 1px 4px;
    border-radius: 50%;
    color: #ddd;
}

.anyCode {
    padding-top: 13px;
    font-size: 13px;
}

.input_paymentDetails {
    padding: 5px 12px;
    border: 1px solid #cccccc;
}

    .input_paymentDetails p {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0rem !important;
    }

    .input_paymentDetails input {
        border: none; /* Removes the border */
        outline: none;
    }

        .input_paymentDetails input:focus, input:active {
            border: none;
            outline: none;
        }

.cardexpireDetails {
    display: flex;
    gap: 10px;
    align-items: center;
}

.divider {
    height: 24px;
    width: 1px;
    background-color: #ddd;
}

select {
    border: none;
    outline: none;
    /* appearance: none; */
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    /* background-size: 12px 6px; */
    padding: 8px 4px 8px 8px;
    font-size: 14px;
    color: #535353;
    flex: 1;
    cursor: pointer;
}

.select_placeholder {
    color: #ddd;
}

select:focus {
    outline: none;
}


.paymentBtnDiv {
    border-radius:6px;
    padding: 0.6rem 12px;
    text-align: center;
    /* margin-top: 1.5rem; */
    background-color: #F15523;
    margin: auto;
    width: 60%;
    border: none;
    color: #fff;
}

    .paymentBtnDiv a {
        padding: 5px 12px;
        margin-bottom: 0rem !important;
        color: #ffffff !important;
        text-decoration: none;
    }

.billingAddressDetails {
    width: 85%;
}

.countryAddress {
    padding: 5px 12px;
    border: 1px solid #cccccc;
}

    .countryAddress p {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 0rem !important;
    }

    .countryAddress span {
        font-size: 15px;
        font-weight: 200;
        color: #b8b8b8;
        margin-bottom: 0rem !important;
    }

.total_billing_amount {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.total_bill {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F15523;
}

.course_name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0rem !important;
}

.mobile_repairing {
    font-size: 1.4rem;
    font-weight: 300;
}

@media (max-width: 668px) {
    .techflow_new_services_joinUs_right_big {
        display: none;
    }

    .techflow_new_services_joinUs_right_top_ab {
        right: 0;
        opacity: 0.6;
    }

    .techflow_new_services_joinUs_div_bottom_ab {
        opacity: 0.6;
    }

    .techflow_new_servicesBox .techflow_new_servicesBox_Card {
        margin-top: 2rem !important;
    }

    .techflow_new_servicesBox_side {
        top: 200px;
    }

    .techflow_new_topSection_servicesTopborder_right {
        border-right: none;
    }

    .techflow_new_topSection_servicesTopborder_left {
        padding-left: 10px !important;
    }

    .techflow_new_services_joinUs_div_title {
        font-size: 1rem;
    }

    .techflow_new_services_joinUs_div_title_p {
        /* line-height: 1; */
        font-size: 1.2rem;
    }

        .techflow_new_services_joinUs_div_title_p span {
            font-size: 1.6rem;
        }
}

@media (max-width: 991px) {
    .paymentSuccess_btn {
        width: unset;
        padding: 10px;
        font-size: 10px;
    }

    .success_text {
        font-size: 20px;
    }

    .cardDiv {
        width: unset;
    }

    .billingAddressDetails {
        width: 100%;
    }
}


/*
new css from akra */
.billingAddressDetails {
    width: 100%;
}
.form_details{
    display:flex;
    align-items:center !important;
}