:root {
	--vw-main-color: #ff6701;
	--vw-light-color: #fffaf7;
	--vw-body-text-color: #191919;
	--vw-premium-color: #d1a23e;
}

/**
 * Hide Thumbnail Container
 * Inner removed via hook
 */
.woocommerce-cart .product-thumbnail {
	display: none !important;
}

/** Cart Table Main */
.woocommerce table.shop_table,
.delivery-options,
.cart_totals .shop_table {
	margin: 0;
	border: 2px solid var(--vw-main-color);
	border-radius: 5px;
	background-color: var(--vw-light-color);
}

/* Product Row */
.woocommerce table.shop_table_responsive tr td.product-name {
	/* WC uses an important for this style, override with our own */
	text-align: left !important;
}

/* Title (pseudo element) */
.woocommerce table.shop_table_responsive tr td.product-name:before {
	float: none;
	display: block;
	margin-bottom: .35rem;
}

.woocommerce table.shop_table_responsive tr td.product-name a,
.woocommerce table.shop_table td.product-name a {
	display: block;
	color: var(--vw-main-color);
	text-decoration: underline;
}

.cart-meta {
	display: block;
	margin-top: .35rem;
}

/* Qty */
.woocommerce table.shop_table_responsive .qty {
	width: 100px;
	margin: 0;
}

/* Actions */
.woocommerce .actions .button,
.woocommerce .actions .button[type="submit"] {
	margin: 1em 0;
	padding: .65em .85em !important;
	background-color: transparent !important;
	color: var(--vw-body-text-color) !important;
}

@media screen and (max-width: 768px) {
	/* Remove Product */
	.woocommerce table.shop_table_responsive tr td.product-remove {
		display: flex;
		justify-content: flex-end;
		padding: 1px 12px 4px;
	}
	.woocommerce a.remove {
		font-size: 1.75em;
	}
}

@media screen and (min-width: 769px) {
	.woocommerce table.shop_table tr th,
	.woocommerce table.cart td.actions {
		padding: 14px 12px;
	}

	/* Actions */
	.woocommerce .actions .button,
	.woocommerce .actions .button[type="submit"] {
		margin: 0;
	}
}

/** Delivery Options */
.delivery-options-wrapper {
	margin-top: 2em;
}

.delivery-options-wrapper h2,
.cart_totals h2 {
	margin: 0 0 1.25rem;
}

.delivery-options {
	padding: 1.5em 1em;
}

/* Delivery Option Groups */
.delivery-options__group {
	margin-top: 1em;
}

.delivery-options__group:first-of-type {
	margin-top: 0;
}

.delivery-options__group p {
	margin-top: .45rem;
	margin-bottom: 0;
}

/* Delivery Date Picker Clear */
#clear-delivery-date {
	margin-top: .35rem;
	background: none;
	border: none;
	color: var(--vw-main-color);
	font-size: .85rem;
	font-weight: 700;
	text-decoration: underline;
}

/* Delivery Next Day Notice */
.woocommerce-notices-wrapper .woocommerce-info p:first-of-type {
	margin-top: 0;
}
.woocommerce-notices-wrapper .woocommerce-info p:last-of-type {
	margin-bottom: 0;
}
.cart-collaterals .woocommerce-notices-wrapper {
	width: 100%;
}
.cart-collaterals .woocommerce-notices-wrapper .woocommerce-info {
	margin-bottom: 0;
}

/* Cart Totals */
.woocommerce-cart .cart-collaterals .cart_totals {
	margin-top: 2em;
}

.woocommerce-cart .cart-collaterals .cart_totals table {
	margin: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.woocommerce .cart_totals table.shop_table_responsive tr {
	display: flex;
	border-bottom: 1px solid #e9e6ed;
}

.woocommerce .cart_totals table.shop_table_responsive tbody th,
.woocommerce .cart_totals table.shop_table_responsive tbody td {
	display: block;
	border: none;
}

.woocommerce .cart_totals table.shop_table_responsive tr td {
	width: 65%;
}

.woocommerce .cart_totals table.shop_table_responsive tr td::before {
	display: none;
}

.woocommerce .cart_totals table.shop_table_responsive tr:nth-child(2n) td {
	background-color: transparent;
}

.woocommerce-shipping-methods li label,
.woocommerce-shipping-destination {
	font-size: initial;
}

/* Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin-top: 0;
	margin-bottom: 0;
	background-color: var(--vw-main-color) !important;
	border-top: none !important;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	color: #fff;
	transition-property: color, background-color;
	transition-duration: .35s;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background-color: var(--vw-light-color) !important;
	color: var(--vw-main-color) !important;
}

.woocommerce .cart-collaterals::after,
.woocommerce
.cart-collaterals::before,
.woocommerce-page .cart-collaterals::after,
.woocommerce-page .cart-collaterals::before {
	display: none;
}

@media screen and (min-width: 769px) {
	.delivery-options-wrapper,
	.woocommerce-cart .cart-collaterals .cart_totals {
		margin-top: 3em;
	}

	.cart-collaterals {
		display: block;
	}

	.delivery-options-wrapper {
		float: left;
		width: 48%;
	}

	.woocommerce-cart .cart-collaterals table.shop_table th,
	.woocommerce-cart .cart-collaterals table.shop_table td {
		padding: 14px 12px;
	}
}

@media screen and (min-width: 1024px) {
	.delivery-options-wrapper,
	.woocommerce-cart .cart-collaterals .cart_totals {
		margin-top: 4em;
	}
}

