/* Make checkout/order form full width */
.order-container .col-md-9 {
    width: 100% !important;
    float: none !important;
}

.order-container .col-md-3 {
    display: none !important; /* hides unused sidebar */
}

/* Kill cart sidebar and make main column full width */
#orderfrm .sidebar, #orderfrm .order-summary, #orderfrm .col-md-3 { display: none !important; }
#orderfrm .main-content, #orderfrm .col-md-9 { width: 100% !important; max-width: 100% !important; float: none !important; }

/* Smash any container caps applied by the bundled CSS */
#orderfrm .container, #order-standard_cart .container { max-width: 100% !important; width: 100% !important; padding-left: 0; padding-right: 0; }

/* Safety: rows/cols that still try to float */
#orderfrm .row > [class*="col-"] { float: none !important; width: 100% !important; max-width: 100% !important; }