.woocommerce-cart-form {
	margin-top: 80px;
	margin-bottom: 0px;
}
.custom-cart-table {
	margin-bottom: 0px;
	border-collapse: collapse;
}
.custom-cart-table tr th{
	background: #F2F5FF;
	color: #151819;
	text-align: center;
	padding: 30px 10px;
	font-weight: normal;
    text-transform: capitalize;
    font-size: 18px;
}
.custom-cart-table tr th:first-child{
	border-top-left-radius: 20px;
	text-align: left;
	padding-left: 20px;
}
.custom-cart-table tr th:last-child{
	border-top-right-radius: 20px;
}
.custom-cart-table tbody tr {
	border-bottom: 1px solid #E6E6E6;
}
.custom-cart-table tbody tr td {
	padding: 30px 10px;
	text-align: center;
	vertical-align: middle;
}
.custom-cart-table tbody tr td.product-col{
	text-align: left;
}
.custom-cart-table .product-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.custom-cart-table .product-box .product-img {
	width: 100px;
	height: auto;
	margin: 0px;
	padding-left: 10px;
}
.custom-cart-table .product-box .product-img img {
	max-width: 100%;
}
.custom-cart-table .product-box .product-info{
	padding-left: 20px;
}
.custom-cart-table .product-box .product-info h4 {
	font-size: 20px;
}
.custom-cart-table tbody tr td .woocommerce-Price-amount{
	font-size: 24px;
	color: #151819;
}
.custom-cart-table tbody tr td .qty-box {
	max-width: 111px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.custom-cart-table tbody tr td .qty-box button{
	width: 36px;
	height: 34px;
	text-align: center;
	border:1px solid #ccc;
	padding: 0px;
    background: none;
    border-radius: 4px;
    line-height: normal;
    font-weight: normal;
    font-size: 22px;
}
.custom-cart-table tbody tr td .qty-box .qty-input {
	border: none;
	background: none;
	width: 36px;
	height: 34px;
	text-align: center;
	box-shadow: none;
}
.custom-cart-table tbody tr td.total-col{

}
.cart-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background: #fff;
	padding: 30px;
}
.cart-footer .continue-btn{
	border: 1px solid var(--ast-global-color-0);
	padding:12px 20px 11px 20px;
	line-height: normal;
	font-size: 18px;
	line-height: normal;
	display: block;
	color: var(--ast-global-color-0);
	border-radius: 12px;
	text-decoration: none !important;
}
.cart-footer .continue-btn:hover {
	background: var(--ast-global-color-0);
	color: #fff;
}
.cart-footer .subtotal-box h3{
	color: #070F12;
	font-size: 32px;
	line-height: 42px;
	margin-bottom: 10px;
}
.cart-footer .subtotal-box small {
	display: block;
	text-align: right;
	font-size: 14px;
	color: #797979;
}
.cart-footer .subtotal-box .checkout-btn {
	background: var(--ast-global-color-0);
	padding:12px 20px 10px 20px;
	font-size: 18px;
	line-height: 24px;
	display: block;
	margin-top: 30px;
	color: #fff;
	text-align: center;
	width: fit-content;
	border-radius: 12px;
	margin-left: auto;
	text-decoration: none;
}
.cart-footer .subtotal-box .checkout-btn:hover {
	background: var(--ast-global-color-0);
}
@media(max-width: 767px){
	.custom-cart-wrapper {
		padding-bottom: 0px;
	}
	.woocommerce-cart-form {
		margin-top: 40px;
	}
	.custom-cart-table thead{
		display: none;
	}
	.custom-cart-table tbody{
		display: block;
	}
	.custom-cart-table tbody tr {
		display: block;
		background: #fdfdfd;
		position: relative;
	}
	.custom-cart-table tbody tr td{
		padding: 10px;
	}
	.custom-cart-table tbody tr td.product-col{
		display: block;
		width: 100%;
	}
	.custom-cart-table tbody tr td.price-col{
		display: none;
	}
	.custom-cart-table tbody tr td.qty-col,
	.custom-cart-table tbody tr td.action-col,
	.custom-cart-table tbody tr td.total-col{
		display: inline-block;
	}
	.custom-cart-table tbody tr td.action-col {
		position: absolute;
		right: 10px;
		bottom: 0px;
	}
	.cart-footer .subtotal-box .checkout-btn {
		margin-top: 10px;
	}
}
@media(max-width: 575px)
{
	.cart-footer {
		flex-wrap: wrap;
		padding:20px 10px 10px 10px;
	}
	.cart-footer .subtotal-box {
		width: 100%; margin-top: 20px; text-align: center;
	}
	.cart-footer .subtotal-box small {
		text-align: center;
	}
	.cart-footer .subtotal-box .checkout-btn{
		margin: 0 auto; margin-top: 20px;
	}
	.cart-footer .continue-btn {
		width: 100%; text-align: center;
	}
}