/* Cart 'theme' elements */
#checkout-container {
	width:100%;
	max-width:1000px;
	margin:auto;
}
#checkout-step {
	font-size: 35px;
}
#checkout-box {
	margin-top:1.5%;
	width:100%;
	border:1px solid #999;
	color:black;
}
/* End Cart 'theme' elements */

/* Cart Controls */
#cart-controls {
	margin-top:3%;
}
.cart-control {
	border:none;
	padding:10px 20px;
	font-size:13px;
	margin-right:2%;
	background-color:#666;
	color:white;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.cart-control:hover {
	background-color:#333;
}
#checkout-button {
	border:1px solid #FFCC00;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color:#FFCC00;
	color:white;
	font-size:18px;
	text-shadow:1px 1px 2px #DD4506;
	padding:15px 40px;
	cursor: pointer;
	background-image: linear-gradient(#FFCC00,#FF9900);
}
#checkout-button:hover {
	background-image: linear-gradient(#FFAB00,#FC5607);
}
/* End Cart Controls */