/**
 * checkout.css - Shipping Orders Plugin
 */

/* Sắp xếp thứ tự hiển thị ô Checkout Billing Fields bằng CSS Flexbox Order */
.woocommerce-billing-fields__field-wrapper {
    display: flex !important;
    flex-direction: column !important;
}

#billing_full_name_field {
    order: 1 !important;
}

#billing_phone_field {
    order: 2 !important;
}

#billing_email_field {
    order: 3 !important;
}

#billing_address_1_field {
    order: 4 !important;
}

#billing_state_field {
    order: 5 !important;
}

#billing_city_field {
    order: 6 !important;
}

#billing_shipping_service_field {
    order: 7 !important;
}

#billing_shipping_extra_service_field {
    order: 8 !important;
}
