/* Tiered Price Table tweaks */
/* - Remove outer border and make internal borders more compact */
.woocommerce table.shop_table.price-rules-table { border: none; border-collapse: collapse }
/* - Reduce padding on rows and headers */
.woocommerce table.shop_table.price-rules-table th, .woocommerce table.shop_table.price-rules-table td { padding: 6px 10px; }

/* WooCommerce Tweaks
   - Make quantity input inline */
.quantity input, .quantity { display: inline !important; }

/* - Fix padding on add to cart button and add margin to quantity
     input field so they are roughly in line. */
.woocommerce button.button { padding: 7px 12px 9px !important; }
.woocommerce .quantity input.qty { margin-bottom: 2px !important; }

/* - Variations Tweaks
   -- Right align and bold variation labels */
table.variations .label label { font-weight: bold; }
table.variations .label { text-align: right; }

/* -- Add padding to label and reset button */
table.variations .label { padding-right: 10px; }
table.variations .reset_variations { padding-left: 10px;}

/* -- Remove bottom margin to bring label and value in line vertically */
table.variations label { margin-bottom: 0px; }

/* -- Increase select and price font size, add additional margin */
table.variations select { font-size: 16px; }
.woocommerce-variation-price { font-size: 20px; margin-bottom: 20px; }

/* -- Increase bottom margin for table */
table.variations { margin-bottom: 20px; }

/* Recolour, resize and make bold stock status text for "out of stock" and "available on back order" products */
.woocommerce .stock.available-on-backorder {
color: #eaa600 !important;
font-weight: bold !important;
font-size: 18px !important;
}

.woocommerce .stock.out-of-stock {
color: #a44 !important;
font-weight: bold !important;
font-size: 18px !important;
}
