.woocommerce-cart-form{
	padding-top:30px;
}
.shop_table{
	margin-bottom: 30px;
    padding: 0px 20px;
    box-shadow: 0px 4px 16px 5px #51555D29;
    border: none;
    border-radius: 16px;
}

form.woocommerce-cart-form table tbody tr td {
    padding: 20px 10px;
}
form.woocommerce-cart-form table tbody tr td:first-child {
    padding-left: 0px;
}

.product-thumbnail a{
	display:grid;
}
.woocommerce-cart table.cart img {
    width: unset !important;
    max-width: 50px;
}

form.woocommerce-cart-form table tbody tr td.product-name a{
	font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
	color:#333333;
}

form.woocommerce-cart-form table tbody .quantity{
	display: flex;
	gap:5px;
}
form.woocommerce-cart-form table tbody .quantity .affinity-qty-btn{
	aspect-ratio: 1/1;
	cursor: pointer;
}
form.woocommerce-cart-form table tbody .quantity .affinity-qty-btn:hover{
	opacity:0.6;
}
form.woocommerce-cart-form table tbody .quantity input.qty{
	max-width: 60px;
	padding: 4px 10px;
	text-align: center;
}

input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.qty {
  -moz-appearance: textfield;
}

button[name="update_cart"]{
	display:none;
}

.product-subtotal .woocommerce-Price-amount.amount {
    color: #CA232C;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
}
.product-remove a{
	text-decoration: none;
	font-size: 24px;
	color:#333333;
}

.cart__actions{
	display:none;
}

.cart__coupon-container{
	display:flex;
	justify-content:flex-start;
	gap:10px;
}
.cart__coupon-container .coupon{
	display:flex;
	gap:10px;
	align-items:center;
}
.cart__coupon-container .coupon input{
	color: #333333;
    border: 1px solid #D1D1D1;
    border-radius: 3px;
    padding: 8px 10px;
	font-size:16px;
	font-weight:400;
	line-height:20px;
	letter-spacing:0.5px;
}

.cart__coupon-container .coupon .button{
	border-radius: 5px;
	background: linear-gradient(180deg, #F0F2F5 0%, #E3E6E8 100%);
	color:#333333;
	font-size:16px;
	font-weight:700;
	line-height:20px;
	letter-spacing:0.5px;
	padding:10px 20px;
	border:none;
}

.cart-collaterals{
	display:flex;
	justify-content:flex-end;
}
.cart_totals {
	display:flex;
	flex-direction:column;
	gap:10px;
	max-width:50%;
}
.cart_totals h2{
	font-size:24px;
	font-weight:700;
	line-height:30px;
	letter-spacing:0.5px;
	color:#333333;
	text-align:right;
	margin-bottom:0;
}
.cart_totals table{
	box-shadow:none;
	border:none;
	border-radius:0;
	padding:0;
	margin:0;
}
.cart_totals table tr td,
.cart_totals table tr th{
	color:#333333;
	padding:3px;
}
.cart_totals table tr td{
	text-align:right;
}
.cart_totals table .order-total td{
	color: #CA232C;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
}
.cart__bottom{
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;	
	margin-top:30px;
}
.cart__bottom-left a{
	cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(180deg, #F0F2F5 0%, #E3E6E8 100%);
    color: #333333;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 16px 20px;
	text-decoration: none;
}
.cart__bottom-right a{
	cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(0deg, #00AC00 0%, #3EC000 100%);
    box-shadow: 0px 2px 0px 0px #090, 0px 3px 13px 0px rgba(0, 153, 0, 0.36);
    color: #FFF;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 16px 20px;
	text-decoration: none;
}
.cart__bottom-left a:hover{
	opacity:0.6;
}
.cart__bottom-right a:hover{
	opacity:0.6;
}

@media screen and (max-width: 1000px) {
	form.woocommerce-cart-form table tbody tr td.product-name a{
		font-size:1rem;
	}
	.product-subtotal .woocommerce-Price-amount.amount,
	.product-price{
		font-size:1rem;
		white-space:nowrap;
	}
}
@media screen and (max-width: 760px) {
	.woocommerce-cart-form__cart-item{
		display:flex;
		flex-wrap:wrap;
		position:relative;
	}
	form.woocommerce-cart-form table tbody tr td{
		padding-top:10px;
		padding-bottom:10px;
	}
	.product-thumbnail{
		padding:0 10px;
		width:60px;
	}
	.product-name{
		display:flex;
		align-items:center;
		width:calc(100% - 60px);
	}
	.product-quantity{
		width:33%;
		padding-left:0;
	}
	.product-price{
		display:flex;
		align-items:center;
		width:33%;
	}
	.product-subtotal{
		display:flex;
		justify-content:flex-end;
		align-items:center;
		width:33%;

	}
	.product-remove{
		position:absolute;
		right:0;
		top:0;
	}
	.cart_totals{
		max-width:100%;
	}
}

@media screen and (max-width: 520px){
	.cart__bottom{
		display: grid;
		grid-template-columns:1fr;
		justify-content:center;
		row-gap:10px;
	}
	.cart__bottom-left{
		display:grid;
		justify-content:center;
		width:100%;
	}
	.cart__bottom-right{
		display:grid;
		justify-content:center;
		width:100%;
	}
}