@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------
cart.css
-----------------------------------------------*/
.cart-layout {
	clear: both;
}
.cart-wrap {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto 60px;
	padding: 25px;
	background: #fff;
	border: 1px solid #ccc;
}
.cart-wrap a,
.cart-wrap input {
	transition: 0.4s;
}
.cart-wrap a:hover,
.cart-wrap input:hover {
	opacity: 0.6;
}
.cartjs_box {
	width: 100%;
	display: inline-block;
	/* box-shadow: 0px 5px 10px -3px rgb(0 0 0 / 10%); */
}
.cartjs_product_form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 1120px;
	width: 100%;
	margin: 0 auto !important;
}
.cartjs_product_name {
	font-size: 18px !important;
	text-align: left;
	color: #000;
	width: 100%;
	order: 1;
}
.cartjs_product_img {
	max-width: 260px;
	padding: 0 !important;
	background: none !important;
	order: 2;
}
.cartjs_product_img img {
	border: 1px solid #ccc;
}
.cartjs_product_table {
	max-width: calc(100% - 280px);
	width: 100%;
	margin-left: 20px !important;
	order: 3;
}
.cartjs_product_table > table {
	width: 100% !important;
	background: #fff;
	margin: 0 0 20px !important;
	border-top: 1px solid #000 !important;
	border-right: 1px solid #000 !important;
}
.cartjs_product_table > table th {
	min-width: 100px;
	max-width: 100px;
	width: 100px;
	padding: 15px 0;
	border-left: 1px solid #000 !important;
	border-bottom: 1px solid #000 !important;
	color: #000 !important;
	background: #eee;
}
.cartjs_product_table > table td {
	text-align: left;
	padding: 15px !important;
	border-left: 1px solid #000 !important;
	border-bottom: 1px solid #000 !important;
	color: #000;
}
.cartjs_product_table > table td select {
	max-width: 100%;
	padding: 0.45em 0.15em;
}
.cartjs_cart_in {
	margin: 0 auto !important;
	order: 4;
	width: 100%;
}
.cartjs_cart_in > input {
	background: #f50;
	color: #fff;
	font-weight: 600;
	padding: 15px 30px;
	border: none;
	width: 100%;
}
.to-shop-btn {
	width: 94%;
	margin: 30px auto 0;
}
.to-shop-btn a {
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 20px 50px 20px 20px; */
	padding: 15px 30px;
	color: #fff;
	background-color: #f2c02a;
	/* border: 3px solid #ffe808; */
	position: relative;
}
.to-shop-btn a:after {
	content: "";
	background: url("../img/common/cart_logo.png") center center/contain no-repeat;
	width: 30px;
	height: 30px;
	display: block;
	margin-left: 10px;
}

@media (max-width: 767px) {
	.cart-wrap {
		max-width: 350px;
		width: 100%;
		margin: 30px auto 0;
	}
	/* .cartjs_product_form {
		flex-direction: column;
	} */
	.cartjs_product_table {
		max-width: 100%;
		margin-left: 0 !important;
	}
	.cartjs_product_table > table tr {
		display: flex;
		flex-direction: column;
	}
	.cartjs_product_table > table th {
		max-width: 100%;
		width: 100%;
		padding: 10px 0;
	}
	.cartjs_product_table > table td select {
		width: 100% !important;
	}
	.to-shop-btn a {
		padding: 15px;
	}
	.cart-layout {
		padding-bottom: 60px;
	}
	.cart-wrap a,
	.cart-wrap input {
		font-size: 14px;
	}
}
