.cart-collection{
	padding-bottom: 36px;
}
.cart-table-wp{
	display: flex;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}
.cart-items-wp, .cart-contents{
	display: flex;
	width: 100%;
	max-width: 100%;
}
.cart-items{
	width: 100%;
}
.cart-items thead th{
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1.3px;
	line-height: calc(1 + .2 / 1);
}
.cart-items th{
	text-align: left;
	padding-bottom: 18px;
	opacity: 0.8;
	font-weight: 400;
	border-bottom: 1px solid transparent;
	color: #fff;
}
.cart-items td, .cart-items a{
	color: #fff;

}
.cart-item_img{
	position: relative;
}
.cart-item-link{
	display: block;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.cart-item-image{
	display: inline-flex;
	align-items: flex-start;
	position: relative;
	border: 0;
	border-radius: 0;
	background: #000;
	max-width: 100%;
}
.cart-item-image img{
	max-width: 100%;
	height: auto;
}
.product-option{
	font-size: 14px;
	word-break: break-word;
	line-height: 1.5;
	margin-top: 6px;
}
.cart-item_details, .cart-item_qty, .cart-item_total{
	padding-left: 30px;
}
.cart-item_total{
	position: relative;
}
.cart-item_total .loading-spinner{
	display: inline-flex;
	top: 50px;
	height: auto;
}
.cart-item_details a{
	text-decoration: none;
}
.cart-item_details a:hover{
	text-decoration: underline;
}
.cart-head-qty,.cart-head-total{
	padding-left: 30px;
}
.quantity-container{
	display: inline-flex;
	align-items: center;
	padding: 5px 5px 5px 0px;
	color: #fff;
}
.quantity{
	background: #000;
	color: #fff;
	position: relative;
	width: 140px;
	display: flex;
	border-radius: 0;
	min-height: 45px;

}
.quantity:before{
	background: #000;
	pointer-events: none;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 0;
	box-shadow: 0 4px 5px rgba(18,18,18,0);
	z-index: -1;
}
.quantity:after{
	pointer-events: none;
	content: "";
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	left: 1px;
	border: 1px solid transparent;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.55);
	z-index: 1;
}
.quantity-button{
	width: 45px;
	font-size: 18px;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	flex-shrink: 0;
	color: #fff;
}
.quantity-button .svg-wrapper{
	width: 10px;
    pointer-events: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
}
.quantity-button .svg-wrapper>svg{
	height: 100%;
	width: 100%;
}
.quantity-input{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	opacity: 0.85;
	text-align: center;
	border: 0;
	padding: 0 5px;
	background: transparent;
	box-shadow: none;
	outline: none;
	width: 100%;
	flex-grow: 1;
}
.cart-remove-btn{
	display: inline-flex;
	margin-left: 10px;
}
.cart-remove{
	min-width: 35px;
	min-height: 35px;
	padding: 0;
	margin: 0 1px 1px 0;
	font-size: 12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	color: #fff;

}
.cart-remove .svg-wrapper{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
}
.cart-remove .svg-wrapper>svg{
	width: 15px;
	height: 15px;
}
.cart-item-price-wp{
	margin-top: 15px;
}
.cart-footer{
	display: flex;
	justify-content: flex-end;
	padding: 20px 20px 0px 20px;
}
.cart-footer-inner{
	display: block;
	margin-left: auto;
	color: #fff;
	width: 350px;
}
.cart-footer-content .totals{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 16px;
	margin-bottom: 20px;
}
.cart-footer-content .totals p{
	margin-left: 15px;
}
@media screen and (min-width: 768px){
	.cart-items thead th:first-child{
		width: 50%;
	}
	.cart-items td{
		vertical-align: top;
		padding-top: 30px;
	}
	.cart-item_img{
		width: 100px;
	}
	.cart-item_details{
		width: 350px;
	}
	.desktop-hidden{
		display: none;
	}
}
@media screen and (min-width: 992px){
	.cart-items thead th:first-child{
		width: 60%;
	}
	.cart-item_details{
		width: 600px;
	}
}

@media screen and (max-width: 768px){
	.mobile-hidden{
		display: none;
	}
	.cart-items, .cart-items-head, .cart-items-body{
		display: block;
		width: 100%;
	}
	.cart-items-head tr{
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid rgba(255,255,255,.2);
		margin-bottom: 30px;
	}
	.cart-item{
		display: grid;
		grid-template: repeat(2, auto) / repeat(4, 1fr);
		gap: 15px;
		margin-bottom: 30px;
	}
	.cart-item_img{
		grid-row: 1/3;
	}
	.cart-item_details{
		grid-column: 2/4;
	}
	.cart-item_qty{
		grid-column: 2/5;
	}
	.cart-item-price-wp{
		margin-top: 0px;
		display: flex;
		justify-content: flex-end;
	}
	.cart-item-image{
		width: 100px;
	}
}
@media screen and (max-width: 368px){
	.cart-footer-inner{
		width: 100%;
	}
}