/**
 Bootstrap uses border-box box-sizing, which seems against convention and breaks default
 cs-cart layouts (& I hate it).  We're going to switch things up and use it only where necessary.
*/
/*
* {
	-moz-box-sizing: content-box;
}
*/

.bootstrapped, .bootstrapped * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.top-menu .navbar-toggle {
	margin: 12px auto;
	display: block;
	float: none;
}

.top-menu .navbar-collapse {
	clear: both;
}

@media(max-width: 767px) {
	
	/* stack cart and checkout buttons */
	.cm-cart-buttons.full-cart .view-cart-button, .cm-cart-buttons.full-cart div.float-right {
		float: none;
		margin: 2px auto;
		text-align: center;
	}
	
}