@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
main .cart h1 {
	display: block;
	font-weight: normal;
	margin: 0;
	padding: 40px 0;
	font-size: 24px;
	text-align: center;
	width: 100%;
}
main .cart table {
    width: 100%;
    clear: both;
    border-spacing: 2px 2px;
    border: 2px solid hsla(0,0%,56%,1.00);
}
main .cart table thead th {
	padding: 10px 0;
	margin: 2px;
	border-bottom: 1px solid #EEEEEE;
	text-align: center;
	background-color: #EEEEEE;
}
main .cart table thead td:last-child {
	text-align: center;
}
main .cart table tbody td {
	text-align: center;
	padding: 10px 0;
	border-bottom: 1px solid #EEEEEE;
}
main .cart table tbody td:last-child {
	text-align: center;
}
main .cart table .img {
	width: 100px;
}
main .cart table .remove {
	color: #777777;
	font-size: 12px;
	padding-top: 3px;
}
main .cart table .remove:hover {
	text-decoration: underline;
}
main .cart table .price {
	color: #999999;
}
main .cart table a {
	text-decoration: none;
	color: #555555;
}
main .cart table input[type="number"] {
	width: 100px;
	padding: 10px;
	border: 1px solid #ccc;
	color: #555555;
	border-radius: 5px;
}
main .cart .subtotal {
	float: right;
	width: 40%;
	padding: 40px 20px 40px 0;
}
main .cart .subtotal .price {
	font-size: 18px;
	color: #999999;
}
main .cart .buttons {
	clear: right;
	float: right;
	width: 40%;
	margin: 0;
	padding-bottom: 40px;
}
main .cart .buttons input[type="submit"] {
	width:97%;
	margin: 1.5%;
	padding: 0px;
	border: 0;
	background: #4e5c70;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
}
main .cart .buttons input[type="submit"]:hover {
	background: #434f61;
}
main .placeorder h1 {
	display: block;
	font-weight: normal;
	margin: 0;
	padding: 40px 0;
	font-size: 24px;
	text-align: center;
	width: 100%;
}
main .placeorder p {
	text-align: center;
}

