
@media only screen and (max-width: 700px) and (min-width: 200px) {
    .goto_cart_page_PopUp_fullScreen_innerBody{
        max-width: 100%;
        flex-direction: column;
        justify-content: baseline;
        align-items: center;
    }
    .goto_cart_page_PopUp_fullScreen_innerBody_right {
        min-width: 100%;
        text-align: center;
    }
    .goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCard {
max-width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .goto_cart_page_PopUp_fullScreen_innerBody_left{
        padding-left: -4rem;
        min-width: 100%;
        display: flex;
        flex-direction: column;
    }
    .goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData_tags {
        justify-content: center;
    }
    .goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardIMG {
        width: 100%;
        height: 100%;
        background-color: #392D7D;
    }
    .goto_cart_page_PopUp_fullScreen_checkout_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    
    }
    
    .goto_cart_page_PopUp_fullScreen_checkout_left {
        max-width: 100%;
        height: 70%;
        background-color: #fff;
        padding: 1.2rem;   
    }
    .goto_cart_page_PopUp_fullScreen_checkout_right {
        width: 100%;
        background-color: #eee;
        padding: 4rem 10rem 1.2rem 1.2rem;
        height: 70%;
        padding: 1.2rem; 
    }
    
}


@media only screen and (max-width: 1000px) and (min-width: 200px) {
    .side-mene-menu {
        width: 100% !important;
        display: none;
        right: 0px;
        /* height: 100vh; */
        z-index: 1320;
    }

}

.side-mene-menu {
    width: 30%;
    /* display: none; */
    right: 0px;
    height: 100vh;
    z-index: 1320;
}



/* ========= go to cart ========= */

.goto_cart_page_PopUp_fullScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999999999;
    padding: 1.2rem 1.6rem;
    display: none;
}

.goto_cart_page_PopUp_fullScreen_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.goto_cart_page_PopUp_fullScreen_header h1 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #000;
}

.goto_cart_page_PopUp_fullScreen_header_closeBTN {
    padding: .6rem 1rem;
    /* background-color: red; */
    border: .1rem solid red;
    color: red;
    height: fit-content;
}

.goto_cart_page_PopUp_fullScreen_innerBody {
    width: 100%;
    min-height: 10vh;
    /* background-color: #dad; */
    display: flex;
    /* flex-wrap: wrap; */
    gap: 2rem;
    
}

.goto_cart_page_PopUp_fullScreen_innerBody_left {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    min-width: 70%;
    height: max-content;
  
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_head p {
    font-size: 2rem;
    font-weight: 500;
    color: #000;
    margin: .5rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_Empty {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_Empty #emptyCart {

    position: relative;
}

#emptyCart img {
    height: 20rem;
    width: 20rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCards {
    width: 100%;
    height: fit-content;
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCard {
    min-height: 18vh;
    width: 100%;
    border-top: .01rem solid #777;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardIMG {
    width: 20rem;
    height: 10rem;
    background-color: #392D7D;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardIMG img {
    width: 100%;
    height: 100%;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData h1 {
    font-size: 1.6rem;
    margin: 0;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData p {
    font-size: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData_tags {
    display: flex;
    gap: 1rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData_tags h1 {
    font-size: 1.1rem;
    font-weight: 600;
    padding: .3rem .5rem;
    color: #000;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData_tags h1:first-child {
    background-color: #ECEB98;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_CourseCardData_tags h1:last-child {
    background-color: #ACD2CC;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_prize {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_prize span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #392d7d;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_prize span h1 {
    font-size: 1.4rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_prize span i {
    font-size: 1rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_left_prize {
    border: none;
    font-size: .8rem;
    color: #392d7d;
    background-color: transparent;
}
.goto_cart_page_PopUp_fullScreen_innerBody_left_prize button{
    background-color: #392D7D;
    color: white;
    padding: 2px 5px;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    padding: 2rem;
    display: none;
    background-color: aliceblue;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_amount {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_total {
    width: 100%;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_total p {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: #585858;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_total h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_checkOutBTN button {
    width: 100%;
    border: none;
    background-color: #392d7d;
    color: #fff;
    padding: .8rem;
    font-weight: 500;
    font-size: 1.2rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion {
    padding: 1rem 0rem;
    border-top: .02rem solid #777;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion h1:first-child {
    font-size: 1rem;
    color: #000;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_coupons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_coupon {
    width: 100%;
    border: .02rem dotted #777;
    padding: .8rem;
    display: flex;
    align-items: center;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_couponTXT h1 {
    font-size: .7rem;
    margin: 0;
    color: #585858;
    font-weight: 400;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_coupon_form form {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    padding: 1rem 0;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_coupon_form input {
    padding: .2rem .8rem;
    width: 100%;
    border-radius: 0;
    border: .01rem solid #585858;
}

.goto_cart_page_PopUp_fullScreen_innerBody_right_promotion_coupon_form button {
    padding: .2rem 1rem;
    background-color: #392d7d;
    color: #fff;
    font-weight: 500;
    border: none;
}

/* form */

.checkout_inputForm_Popup {
    width: 32%;
    background-color: #fff;
    position: fixed;
    top: 0;
    display: none;
    transition: all .2s ease-in-out;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    z-index: 99999999999;
    animation: leftToRight 1s alternate;
}

@keyframes leftToRight {
    0% {
        width: 0;
    }

    100% {
        width: 32%;
    }
}

.button-89 {
    font-size: 1rem;;
    padding: .6rem .8rem;
    color: red;
    border: .08rem solid red;
    position: relative;
    right: -80%;
    top: 4%;
    background-color: transparent;
}

.content-item-content-heading {
    padding: .3rem;
}

.content-item-content-heading h4 {
    font-size: 1.4rem;
    color: #000;
}

.checkout_inputForm_Popup_form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: .8rem;
    padding: 1rem;
    font-size: medium;
}

.checkout_inputForm_Popup_form input {
    padding: .6rem 1rem;
}

.checkout_inputForm_Popup_form select {
    padding: .6rem 1rem;
}

/* checkout screen  */

.goto_cart_page_PopUp_fullScreen_checkout {
    height: 100vh;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999999999999;
    display: none;
}

.goto_cart_page_PopUp_fullScreen_checkout_inner {
    padding: 5rem;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 2rem;
}

.goto_cart_page_PopUp_fullScreen_checkout_left {
    width: 100%;
    height: 70%;
    background-color: #fff;
    padding: 1.2rem;   
    display: flex;
    flex-direction: column;
    align-items: center;
}
.goto_cart_page_PopUp_fullScreen_checkout_right {
    width: 100%;
    background-color: #eee;
    padding: 4rem 10rem 1.2rem 1.2rem;
    height: 70%;
    padding: 1.2rem; 
}

.goto_cart_page_PopUp_fullScreen_checkout_Address {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.goto_cart_page_PopUp_fullScreen_checkout_Address_form .form-control,.form-select{
    font-size: 1.6rem;
    padding: 0.5rem;
}
.goto_cart_page_PopUp_fullScreen_checkout_Address_form {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 1.2rem;
    margin-top: 1rem;
    border-radius: .2rem;
    font-size: 1.4rem;
}



.goto_cart_page_PopUp_fullScreen_checkout_Address_title {
    font-size: 1.8rem !important;
    color: #000;
}

.goto_cart_page_PopUp_fullScreen_checkout_right_amount {
    width: 80%;

}

.goto_cart_page_PopUp_fullScreen_checkout_right_amount span {
    /* padding-right: 10rem; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.goto_cart_page_PopUp_fullScreen_checkout_right_amount span p {
    font-size: 1.8rem;
    margin: 0.4rem;
    font-weight: 400;
}
.goto_cart_page_PopUp_fullScreen_checkout_right_amount span h5 {
    font-size: 2rem;
    margin: 1.4rem;
}

.goto_cart_page_PopUp_fullScreen_checkout_Address_terms_check {
    display: flex;
    gap: .6rem;
}

.goto_cart_page_PopUp_fullScreen_checkout_Address_termsP {
    font-size: 1.4rem;
    margin: 2rem 0rem;
}

.goto_cart_page_PopUp_fullScreen_checkout_right_ConfirmBTN {
    border: none;
    background-color: #392d7d;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
    padding: .8rem;
    width: 80%;
}

#addedAlertMsg {
    position: fixed;
    right: 2rem;
    bottom: 1rem;
    z-index: 9999;
}


/*Alert*/
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px
}

.alert_info {
    background-color: #4285f4;
    border: 2px solid #4285f4
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.close {
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
    font-weight: normal
}

.alert_success {
    background-color: #09c97f !important;
    border: 2px solid #09c97f !important
}

.alert_warning {
    background-color: #f8b15d !important;
    border: 2px solid #f8b15d !important
}

.alert_error {
    background-color: #f95668 !important;
    border: 2px solid #f95668 !important
}

.fade_info {
    background-color: #d9e6fb !important;
    border: 1px solid #4285f4 !important;
    width: 100%;
    font-size: 1.2rem;
    text-align: justify;
}

.fade_info .close {
    color: #4285f4
}

.fade_info strong {
    color: #4285f4
}

.fade_success {
    background-color: #c9ffe5 !important;
    border: 1px solid #09c97f !important
}

.fade_success .close {
    color: #09c97f
}

.fade_success strong {
    color: #09c97f
}

.fade_warning {
    background-color: #fff0cc !important;
    border: 1px solid #f8b15d !important;
    width: 100%;
    font-size: 1.2rem;
    text-align: justify;
}

.fade_warning .close {
    color: #f8b15d
}

.fade_warning strong {
    color: #f8b15d
}

.fade_error {
    background-color: #ffdbdb;
    border: 1px solid #f95668
}

.fade_error .close {
    color: #f95668
}

.fade_error strong {
    color: #f95668
}

.hero_addcart_btns {
    position: relative;
    display: flex;
    height: fit-content;
    /* justify-content: center; */
}

#heroGoToCartBTN {
    display: none;
    background-color: #392D7D;
    /* margin: .4rem 0; */

}

/* ============ payment success msg modal start ============= */

.payment_success_msg_modal {
    width: 40%;
    min-height: 50vh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    /* padding: 1.2rem; */
    border-radius: 1rem;
    z-index: 999999999999999;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    overflow: hidden;
    display: none;
}

.payment_success_msg_modal_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.payment_success_msg_modal_inner_head {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 1.2rem;
    display: flex;
    position: relative;
}

.payment_success_msg_modal_inner_head h4 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 500;
}

#paymentSuccessMsgModalCloseBTN {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    color: #d8232a;
}

.payment_success_msg_modal_inner_content {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment_success_msg_modal_inner_contentIMG {
    height: 5rem;
    width: 5rem;
    margin: auto;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment_success_msg_modal_inner_contentIMG i {
    color: #09c97f;
    font-size: 4rem;
    animation: tickScale 1s linear infinite alternate;
}

@keyframes tickScale {
    form {
        scale: 1;
    }

    to {
        scale: .8;
    }
}

/* .payment_success_msg_modal_inner_contentIMG img{
        width: 100%;
        height: 100%;
    } */

.payment_success_msg_modal_inner_contentMSG {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
	font-size: 18px;
}

.payment_success_msg_modal_inner_contentMSG h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.payment_success_msg_modal_inner_query {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    padding: 1rem 0;
    border-top: .1rem solid #eee;
    border-bottom: .1rem solid #eee;
}

.payment_success_msg_modal_inner_query p {
    font-size: 14px;
    margin-bottom: .6rem;
}

.payment_success_msg_modal_inner_query span {
    display: flex;
    /* gap: .8rem; */
    justify-content: space-between;
}

.payment_success_msg_modal_inner_query span h6 {
    display: flex;
    gap: .6rem;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .1rem;
}

.payment_success_msg_modal_inner_query span h6 i {
    font-size: 1.4rem;
}

.payment_success_msg_modal_inner_goHomeBTN {
    border: none;
    padding: 12px;
    /* background-color: lightseagreen; */
    background-color: #eee;
    font-weight: 500 !important;
    color: green;
    font-weight: 400;
    border-radius: .6rem;
    text-decoration: none;
    text-align: center;
	font-size: 13px;
}

.payment_failed_msg_modal .payment_success_msg_modal_inner_head,
.payment_failed_msg_modal .payment_success_msg_modal_inner_goHomeBTN {
    background-color: #d8232a;
    color: #fff;
}

.payment_failed_msg_modal #paymentFailedMsgModalCloseBTN {
    color: #fff;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
}

.payment_failed_msg_modal .payment_success_msg_modal_inner_contentIMG i {
    color: #d8232a;
}

/* ============ payment success msg modal end ============= */





/* register form modal start */
#registerModal {
    z-index: 99999999999999999999999;
}

#registerModal .modal-header img {
    width: 8rem;
}

.get_in_touch_inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.get_in_touch_inner .section_heading_main {
    color: var(--bs-white);
}

.get_in_touch_innerForm {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get_in_touch_innerForm form {
    width: 60rem;
    min-width: 25rem;
    padding: 1.5rem;
    padding-top: 0;
    border-radius: .8rem;
    background-color: #fff;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    z-index: 9;
    color: #ddddddcc;
}

.get_in_touch_innerForm_title h4 {
    font-size: 2rem;
    color: #392d7d;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

/* .get_in_touch_innerForm_title p{
    font-size: 1.5rem;
    color: var(--bs-gray);
    margin: 1rem 0;
   } */
.get_in_touch_innerForm_input {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.get_in_touch_innerForm_input .form-control {
    border-radius: 0px;
    border: none;
    background-color: #f2f2f3;
    font-size: 1.5rem !important;
    color: #777;
    padding: 0.5rem;
    border-radius: .3rem;
}

.get_in_touch_innerForm_input .form-control:focus {
    width: 100%;
    box-shadow: none;
    outline: none;
    background-color: #f2f2f3;
}

.get_in_touch_innerForm_input span {
    display: flex;
    gap: 1.2rem;
}

.get_in_touch_innerForm_input select {
    padding: 1rem 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    /* font-size: 1.6rem; */
    border: none;
    color: #777;
}

.get_in_touch_innerForm_input .form-control::placeholder {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #777;
}

.get_in_touch_innerForm_input button {
    padding: .8rem 1.6rem;
    color: #fff;
    background-color: #392d7d;
    border: none;
    border-radius: .4rem;
    /* font-size: 1.6rem; */
    font-weight: 500;
}


/* ========================== footer section start ========================== */



/* ========================== footer section end ========================== */
