/*
 * Showcase Content Management System - Commerce Package
 * HTML5 layout for screens >= 960px
 *
 * Copyright (C) Damian Walker 2016
 * Created: 05-Mar-2016
 */

/*----------------------------------------------------------------------
 * Content section
 */

/* basket order buttons */
.content .basket-buttons {
    display: inline;
    white-space: nowrap;
}

/*
 * Basket - styling for the shopping basket page
 */

/* the table */
#basket .content table,
#thankyou .content table {
    width: 100%;
}
#basket .content table th,
#basket .content table td,
#thankyou .content table th,
#thankyou .content table td {
    text-align: left;
}
#basket .content table .price,
#basket .content table .quantity,
#basket .content table .total,
#thankyou .content table .price,
#thankyou .content table .quantity,
#thankyou .content table .total {
    width: 20%;
    text-align: right;
}

/*
 * Mini-basket - sidebar basket for all pages
 */

/* mini-basket in additional section */
.mini-basket {
    width: 100%;
}

/* numbers in the mini-basket */
.mini-basket .numeric {
    text-align: right;
}

/* buttons in the mini-basket */
.mini-basket-buttons {
    text-align: right;
}

/* checkout button */
.mini-basket .checkout-button {
    display: inline;
}

/* price section of product listing */
.mini-basket div.price {
    margin-bottom: 16px;
}


