/* Cart Remove Buttons: Fixes non-centred "x" spacing issues */
.woocommerce-cart a.remove{
	height: 1.1em;
	width: 1.14em;
}

/* Cart Proceed Button spacing issues */
.woocommerce-cart .wc-proceed-to-checkout a.button.alt{
	padding-top: 1em;
	padding-bottom: 1em;
  text-transform: uppercase;
}
 
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error, .woocommerce-page .woocommerce-message, .woocommerce-page .woocommerce-info, .woocommerce-page .woocommerce-error{
    font-weight: normal;
}

/** WooComm Buttons **/
.woocommerce-page .fl-page button.button{ line-height: 1.1; }
.woocommerce button.button.disabled{ padding: 6px 12px; } /* Matches BB Defaults */
.fl-page .woocommerce-message a.button{  /* Button inverted for this location */
	color: white; 
	text-align: center;
	border: none !important; 
}

/** Full Width Order Button **/
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
    width: 100%;
    font-size: 1.2em;
    padding: 0.8em;
    height: auto;
    text-transform: uppercase;
}

.woocommerce form .form-row select{ display: inline; }

.woocommerce-checkout .select2-container .select2-selection{
  height: auto;
}

.woocommerce-checkout #payment div.payment_box:before{
	border: 1em solid #f7f7f7;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
}

.woocommerce table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text{ height: 34px; }

/* Do not prompt to enter coupon at checkout. Cart is sufficient */
.woocommerce-checkout .woocommerce-form-coupon-toggle{
  display:none;
}

.woocommerce table.shop_table, .woocommerce-page table.shop_table,
.woocommerce #order_review, .woocommerce-page #order_review,
.woocommerce #payment, .woocommerce-page #payment{
	background-color: transparent;
	border: none;
	padding: 0;
}

.woocommerce table.cart a.remove:hover, .woocommerce-page table.cart a.remove:hover{ background: red; }

/* PayPal Radio Button on checkout */
.woocommerce-checkout #payment ul.payment_methods li input#payment_method_paypal.input-radio{ vertical-align: top; margin-top: 15px; }
/* Fixed font size for select2 dropdowns */
.woocommerce form .form-row.woocommerce-validated .select2-container{
  font-size: 15px;
}

/* Client Area Dashboard Pages */
.woocommerce-account table.shop_table tr.order_item td.product-name > a{
	pointer-events: none;
	cursor: default;
}
.woocommerce-account table.shop_table tr.order_item td.product-name .download-url a{
	text-decoration: underline;
}

/* Select dropdowns font color. Ensures dark backgrounds, light text doesn't have a problem */
.woocommerce .woocommerce-ordering select{ color: black; }

/* Single Product: Hide Extended Description Header */
.woocommerce div.product .woocommerce-tabs .panel h2:first-child, .woocommerce-page div.product .woocommerce-tabs .panel h2:first-child{
	display:none;
}

/* Quantity inputs */
.single-product .quantity{
	width: 50%;
	margin-right: 0 !important;
}
.single-product .quantity input.qty{ width: 40px; }
.single-product .single_add_to_cart_button.button.alt{
	width: 50%;
	margin: 1px 0 0 0;
	padding-top: 11.5px;
	padding-bottom: 11.5px;
}
@media screen and (max-width:500px){
	
	.single-product .quantity{
		padding-bottom: 20px;
	}
	.single-product .quantity,
	.single-product .single_add_to_cart_button.button.alt{
		width: 100%;
		text-align:center;
	}
	
}

.single-product .quantity input{
	display:inline-block;
	padding-top: 6px;
	border-color: transparent !important;
}

.single-product .quantity .qty-btn{
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 200;
	color: white;
	border: 1px solid #efefef;
	border-radius: 100px;
	display: inline-block;
	padding: 0 0 3px;
  height: 45px;
	width: 45px;
	font-size: 1.4em;
	transition: background-color 0.3s;
}
.single-product .quantity input::-webkit-inner-spin-button,
.single-product .quantity input::-webkit-outer-spin-button{
	-webkit-appearance: none;
  margin: 0;
	opacity: 0
}

.woocommerce #order_review .shop_table .product-total,
.woocommerce #shipping_method,
.woocommerce #order_review tfoot .cart-subtotal td,
.woocommerce #order_review tfoot .order-total td{ text-align: right; }

.woocommerce-checkout #payment ul.payment_methods{ max-width: 100%; }

/* If placeholder only, don't display images */
.woocommerce-product-gallery--without-images{
  display:none;
}

@media (min-width: 768px){
  .woocommerce .woocommerce-product-gallery--without-images + div.summary{
    width: 75% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    float: none !important;
  }
}
@media (max-width: 767px){
  /* Leave space for onsale badge */
  .woocommerce.single-product span.onsale + .woocommerce-product-gallery--without-images{
    display: block;
    visibility: hidden;
    height: 30px !important;
  }
  .woocommerce.single-product span.onsale{
    left: 0;
  }
}