/* Display the Add to Cart and BuyNow buttons as block elements on mobile devices */
@media only screen and (max-width: 460px) {
	.product-info .right .cart div .button {
	    width: 100% !important;
	    margin-bottom: 10px;
	}
}

/* Journal3: Mobile product page usually has its own sticky/extra Buy Now button.
   Hide the injected duplicate Buy Now inside the qty/cart group. */

#product-product .stepper-group.cart-group #button-cart-buynow {
	display: none !important;
}

#product-product .stepper-group.cart-group #button-cart {
	width: 100% !important;
	margin-left: 0 !important;
}