/*****
cart: 
    * order
*****/  

/* 
---------------------------------
-----         order         -----
---------------------------------
 */  

 .mod_orders{

    max-width: 1200px;
    min-height: calc(100dvh - 17.5rem);
    margin: 0 auto;
    padding: 4rem;
}

.mod_orders_order {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem 0;
}

.mod_orders_order:not(:last-child) {

    border-bottom: 1px solid var(--border-color);
}

.mod_orders_order_actions {

    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
}

.mod_orders_order_item{

    display: flex;
    flex-direction: column;
    gap: .5rem;

    position: relative;
}

.mod_orders_order_item h3{

    font-size: 1rem;
}

.mod_orders_order_actions button{

    font-size: 1rem;

    border: none;
    background: none;
    text-decoration: underline;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {

    .mod_orders{
        
        padding: 1.5rem;
    }

    .mod_orders_order{

        flex-direction: column;
        gap: .5rem;
    }

    .mod_orders_order_item{
        
        width: 100%;
    }
}

.com_popup_order_products {

    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}


/* 
---------------------------------
-----         signin        -----
---------------------------------
 */ 

.mod_order_siging_head{

    margin-bottom: 1rem;
}

.mod_order_logout_btn{

    margin-bottom: 2rem;
}

.mod_order_siging_head h1{

    margin: 0; 
}

.mod_orders_wrapper p{

    font-size: 1rem;
}

.mod_order_siging_form, .mod_order_siging_form form{

    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 20rem;
}

.minimal{

    padding: 0.725rem 2.5rem;
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    background: none;
    color: var(--black);
    border: 1px solid var(--black);
    font-weight: bold;
    font-size: .9rem;
    cursor: pointer;
    font-family: var(--font-family);
}
.mod_order_siging_form_otp{

    width: 100%;
    box-sizing: border-box;
}

.com_order_input{
    
    max-width: 20rem;
}




/* 
---------------------------------
-----  order  verfication   -----
---------------------------------
 */ 

.com_popup_signin_form form{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.com_popup_signin_form input{

    width: 100%;
}

.com_popup_signin_form_desc{

    margin-bottom: 1rem;
    text-align: center;
}

.com_popup_signin_form_resend{

    text-decoration: underline;
}



/* 
---------------------------------
-----  order  popup         -----
---------------------------------
 */ 

.mod_orders_order_popup .com_popup_content_wrapper{
    padding: 3rem;
}
.mod_orders_order_popup .mod_cart_popup_title{
    margin: 0;
}
.com_popup_order_product_order_nubmer{
    margin-bottom: 2rem;
}

.com_popup_order_product{

    display: flex;
    align-items: center;
    gap: 1rem;

    width: 100%;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.com_popup_order_product:not(:last-child){

    border-bottom: 1px solid var(--border-color);
}

.com_popup_order_product_content{

    width: 100%;
    display: flex;
    flex-direction: column;
}

.com_popup_order_product .mod_shop_cart_product_details_price{

    font-weight: bold;
}

.com_popup_order_shipping{
    margin-top: 2rem;

}
.com_popup_order_total span,
.com_popup_order_shipping span{

    font-weight: bold;
}


@media only screen and (max-width: 768px) {

    .mod_orders_order_popup .com_popup_content_wrapper{

        padding: 2rem 0.5rem;
        width: 92%;
    }
}
