.woocommerce-cart .page-content{
	padding-block: 20px;
}

/* Empty Cart */
.empty-cart .page-content .empty-cart-content{
	border: solid 20px #f9f9f9;
    padding: 20px 25px;
	margin-block: 40px;
	text-align: center;
}

/* Cart layout */
.woocommerce-cart-form-wrapper{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.woocommerce-cart-form{
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

@media screen and (min-width: 992px){
	.woocommerce-cart-form{
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
		padding-right: 30px;
	}
}

@media screen and (max-width: 992px){
	.woocommerce-cart-form{
		flex-direction: column-reverse;
	}
	.woocommerce-cart-form,
	.cart-collaterals{
		margin-bottom: 32px;
	}
}

/* Cart Product Table  */
.woocommerce table.shop_table{
	border-collapse: unset;
	border: none;
	margin: 0;
}

.woocommerce table.shop_table thead {
	text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
	color: var(--color-secondary);
}

.woocommerce-cart-form__cart-item .product-name a{
	display: block;
	font-weight: 600;
}

.woocommerce-cart-form__cart-item th.product-quantity, 
.woocommerce-cart-form__cart-item th.product-subtotal{
	text-align: center;
}

.woocommerce-cart-form__cart-item .product-sku{
	display: block;
	font-size: 14px;
	padding-bottom: 15px;
}

.woocommerce-cart table.cart img{
	width: 155px;
	max-width: 100%;
}

.woocommerce table.shop_table td.actions{
	padding: 0;
}

/* Remove Button */
.woocommerce a.remove{
	font-size: 0;
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: var(--border-radius);
    position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce a.remove:hover{
	background-color: transparent;
}

.woocommerce a.remove:after{
	content: '';
	-webkit-mask-image: url('../../../icons/trash-outline.svg');
	mask-image: url('../../../icons/trash-outline.svg');
	background-color: var(--color-text);
	width: 24px;
    height: 24px;
	display: inline-block;
	transition: var(--transition);
}

.woocommerce a.remove:hover:after{
	background-color: var(--color-red);
}

/* Return to Shop Button */
.woocommerce a.return-to-shop{
	padding: 25px 45px;
	background: #f6f6f6;
	font-size: 13px;
	border-radius: 0;
	align-items: center;
    justify-content: center;
    display: inline-flex;
	margin-bottom: 50px;
	color: var(--color-text);
}

.woocommerce a.return-to-shop:before{
	content: '';
	-webkit-mask-image: url('../../icons/chevron-back-outline.svg');
	mask-image: url('../../icons/chevron-back-outline.svg');
	background-color: currentColor;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 10px;
}

/* Mobile */
@media screen and (max-width: 768px){
	.woocommerce table.shop_table.cart td{
		border-top: none;
	}
	.woocommerce table.shop_table_responsive tr td, 
	.woocommerce-page table.shop_table_responsive tr td {
		text-align: left !important;
	}
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
		background-color: transparent;
	}
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		display: none;
	}
	.woocommerce #content table.cart .product-thumbnail, 
	.woocommerce table.cart .product-thumbnail, 
	.woocommerce-page #content table.cart .product-thumbnail, 
	.woocommerce-page table.cart .product-thumbnail{
		display: block;
	}
	.woocommerce-cart-form__cart-item td.product-thumbnail{
		position: absolute;
		top: 0;
    	left: 0;
	}
	.woocommerce-cart-form__cart-item{
		position: relative;
		padding: 0 30px 15px 180px;
		border-bottom: 1px solid var(--border-color);
	}
	.woocommerce-cart-form__cart-item+.woocommerce-cart-form__cart-item{
		margin-top: 20px;
	}
	.woocommerce-cart-form__cart-item td.product-remove{
		position: absolute;
		right: -5px;
		top: 0;
		transform: none;
		padding-inline: 0;
	}
	.woocommerce table.shop_table.cart td.product-subtotal{
		position: relative;
	}
	.woocommerce table.shop_table.cart td.product-subtotal:before{
		content: 'Kwota:';
		display: block;
		font-family: inherit;
		font-size: inherit;
		margin-right: 8px;
	}
	.woocommerce td.product-name dl.variation{
		margin-bottom: 0;
	}
	.woocommerce-cart-form__cart-item .product-sku{
		padding-bottom: 0;
	}
}

@media screen and (max-width: 480px){
	.woocommerce .return-to-shop{
		width: 100%; 	
		justify-content: center;
	}
	.woocommerce-cart table.cart img{
		width: 80px;
	}
	.woocommerce-page table.cart .product-thumbnail{
		padding-inline: 0;
	}
	.woocommerce-cart-form__cart-item .product-name a{
		padding-right: 32px;
	}
	.woocommerce-cart-form__cart-item{
		padding: 0 0 15px 80px;
	}
}