/*
 ************************************************************
 * WOOCOMMERCE
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

#top .woocommerce,
#top .woocommerce p
{
	margin: 0;
	font-size: 16px;
}

#top .woocommerce form,
#top .woocommerce select
{
	width: 100%;
}

#top .woocommerce a:not(.button)
{
	text-decoration: underline;
}

#top .woocommerce a.button
{
	margin: 0;
}

#top .woocommerce .button
{
	float: none;
	display: block;
}

@media only screen and (max-width: 640px)
{
	.responsive #top .woocommerce .button
	{
		width: 100%;
	}
}

/* PRICE */

#top .price,
#top .price span
{
	line-height: 32px;
	font-weight: 300;
	font-size: 24px;
	color: var(--color-cvi-1);
}

#top .price
{
	display: flex;
	flex-direction: column;
}

#top .price .screen-reader-text
{
	display: none;
}

#top .price del
{
	order: 1;
}

#top  #wrap_all .price del,
#top  #wrap_all .price del span
{
	font-size: 18px;
	color: var(--color-gray-2);
}

#top .price ins
{
	order: 0;
}

#top #wrap_all .price ins::before
{
	display: none;
}

/* ONSALE */

#top #wrap_all .onsale
{
	position: absolute;
	top: -1px;
	left: -1px;
	right: auto;
	border-radius: 0;
	font-size: 18px;
	padding: var(--size-xs) var(--size-m);
	background: var(--color-cvi-1);
	color: var(--color-white);
}

/* COUPON */

#top .coupon,
#top .woocommerce-form-coupon
{
	display: flex;
	flex-direction: column;
	grid-gap: var(--size-s);
	width: 100%;
	margin: 0;
	padding: var(--size-s);
	border: 1px dashed var(--color-cvi-2);
}

@media only screen and (min-width: 1080px)
{
	.responsive #top .coupon,
	.responsive #top .woocommerce-form-coupon
	{
		width: 400px;
	}
}

#top .coupon
{
	float: right;
}

#top .coupon input
{
	padding: 16px 0;
	background: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

#top .coupon input:focus
{
	border-color: var(--color-cvi-2);
}

#top .woocommerce-form-coupon
{
	margin-bottom: var(--size-xl);
}

#top .woocommerce-form-coupon .clear
{
	display: none;
}

#top .woocommerce-form-coupon input
{
	text-align: center;
}

#top .woocommerce-form-coupon .button
{
	width: 100%;
}

/*
 * ----------------------------------------------------------
 * TABLE
 * ----------------------------------------------------------
 */

#top .shop_table
{
	margin: 0;
	border-radius: 0;
}

#top .shop_table,
#top .shop_table tr
{
	background-color: transparent;
}

#top .shop_table thead,
#top .shop_table:not(.woocommerce-orders-table, .woocommerce-table--order-details) th
{
	display: none !important;
}

/* CELLS */

#top .shop_table th,
#top .shop_table td
{
	border-left: none;
	border-right: none;
	vertical-align: middle;
	padding: var(--size-m) 0;
	font-weight: 300;
	font-size: 16px;
	color: var(--color-black);
}

#top .shop_table td:not(:first-child)
{
	text-align: right;
}

#top .shop_table td.product-name,
#top .shop_table td.product-total,
#top .shop_table td.product-subtotal > span
{
	font-weight: 300;
	font-size: 18px;
	color: var(--color-cvi-1);
}

#top .shop_table td.product-name
{
	text-align: left;
}

#top .shop_table td.product-total
{
	text-align: right;
}

#top .shop_table tfoot td > span,
#top .shop_table tfoot td > small,
#top .shop_table tfoot tr:last-child td
{
	line-height: 18px;
	font-weight: 300;
	font-size: 16px;
}

#top .shop_table tfoot td small
{
	font-size: 14px;
}

/* CART ITEM */

#top .shop_table tr.cart_item th,
#top .shop_table tr.cart_item td
{
	padding: var(--size-l) 0;
}

@media only screen and (max-width: 989px)
{
	.responsive #top .shop_table tr.cart_item td
	{
		padding: var(--size-xs);
	}
	.responsive #top .shop_table tr.cart_item .product-remove
	{
		padding: 0;
	}
	.responsive #top .shop_table tr.cart_item .product-remove a
	{
		position: absolute;
		top: var(--size-s);
		right: var(--size-s);
	}
	.responsive #top .shop_table tr.cart_item .product-name
	{
		padding: var(--size-l) var(--size-s);
		padding-bottom: 0;
	}
	.responsive #top .shop_table tr.cart_item .product-price
	{
		font-size: 14px;
		color: var(--color-gray-2);
	}
	.responsive #top .shop_table tr.cart_item .product-total,
	.responsive #top .shop_table tr.cart_item .product-subtotal
	{
		display: flex;
		padding-bottom: var(--size-l);
	}
	.responsive #top .shop_table tr.cart_item .product-total > span,
	.responsive #top .shop_table tr.cart_item .product-subtotal > span
	{
		margin: 0 auto;
	}
}

/* ORDER TOTAL */

#top .shop_table .order-total td
{
	padding: var(--size-s) 0;
	text-align: center;
	border-bottom: none;
	background: var(--color-cvi-2);
}

#top .shop_table .order-total strong
{
	line-height: normal;
	font-weight: 500;
	font-size: 32px;
	color: var(--color-white) !important;
}

#top .shop_table .order-total small
{
	font-weight: 400;
	font-size: 14px;
	display: block;
	opacity: .6;
	clear: both;
}

/* VARIATION */

#top .shop_table .variation
{
	display: flex;
	flex-direction: row;
	grid-gap: var(--size-xs);
}

@media only screen and (max-width: 989px)
{
	.responsive #top .shop_table .variation
	{
		justify-content: center;
	}
}

#top .shop_table .variation dt
{
	display: none;
}

#top .shop_table .variation dt,
#top .shop_table .variation dd
{
	margin: 0;
	line-height: 1.6;
	font-weight: 300;
	font-size: 14px;
	color: var(--color-cvi-1-dark);
}

/*
 * ----------------------------------------------------------
 * WOOCOMMERCE-NOTICES
 * ----------------------------------------------------------
 */

#top .woocommerce-info
{
	border: none;
}

#top .woocommerce-error,
#top .woocommerce-error li,
#top div.woocommerce-message
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-gap: var(--size-m);
}

@media only screen and (max-width: 989px)
{
	.responsive #top .woocommerce-error,
	.responsive #top .woocommerce-error li,
	.responsive #top div.woocommerce-message
	{
		flex-direction: column;
	}
}

@media only screen and (min-width: 640px)
{
	.responsive #top .woocommerce-error a,
	.responsive #top div.woocommerce-message a
	{
		width: 240px;
	}
}

/* BLOCK */

#top .woocommerce-error,
#top div.woocommerce-message
{
	margin-bottom: 50px;
	padding: var(--size-l);
	border-radius: 0;
	background-color: var(--color-white);
	border-width: 1px;
	border-style: solid;
	border-color: var(--color-cvi-2);
	color: var(--color-cvi-2);
	outline: none !important;
}

/* ERROR */

#top .woocommerce-error
{
	padding: var(--size-l);
	outline: none !important;
}

#top .woocommerce-error li
{
	width: 100%;
	margin-left: 0;
}

/* MESSAGE */

#top #wrap_all div.woocommerce-message a.button
{
	order: 1;
	position: relative;
	top: 0;
	right: 0;
	float: none;
	width: auto !important;
	margin: 0;
	border-radius: 32px;
	padding-top: var(--size-s);
	padding-bottom: var(--size-s);
}

/*
 * ----------------------------------------------------------
 * FORM-ROW
 * ----------------------------------------------------------
 */

#top .woocommerce .form-row
{
	padding: 0;
}

#top .woocommerce .form-row-first,
#top .woocommerce .form-row-last
{
	width: 100%;
	float: none;
}

/* ELEMENT */

#top .woocommerce .form-row textarea,
#top .woocommerce .form-row input.input-text,
#top .woocommerce .form-row .select2-selection__rendered
{
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 16px;
}

#top .woocommerce .form-row textarea,
#top .woocommerce .form-row input.input-text,
#top .woocommerce .form-row .select2-selection--single
{
	padding: 16px 0;
	background: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

#top .woocommerce .form-row textarea:focus,
#top .woocommerce .form-row input.input-text:focus,
#top .woocommerce .form-row .select2-selection--single:focus
{
	border-color: var(--color-cvi-2);
}

#top .woocommerce .form-row label
{
	margin-bottom: 0;
	font-size: 14px;
}

#top .woocommerce .form-row .woocommerce-invalid-required-field input
{
	border-color: var(--color-error) !important;
}

#top .woocommerce .form-row .select2-selection--single
{
	height: 46px;
	padding: 0;
	background-color: var(--color-white);
	border-color: var(--color-lightgray-2);
	border-radius: 0;
}

#top .woocommerce .form-row .select2-container--default,
#top .woocommerce .form-row .select2-selection--single
{
	height: 46px;
}

#top .woocommerce .form-row .select2-selection__rendered
{
	padding-left: 0;
	padding-right: 12px;
	line-height: 46px;
	color: var(--color-cvi-1-dark);
}

/* PASSWORD */

#top .woocommerce form .password-input
{
	position: relative;
	display: block;
}

#top .woocommerce form .show-password-input
{
	position: absolute;
	right: 12px;
	top: 50%;
	width: var(--size-m);
	height: var(--size-m);
	padding: 0;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
}

#top .woocommerce form .show-password-input::after
{
	content: "👁";
	font-size: 18px;
}

#top .woocommerce form .show-password-input.display-password::after
{
	content: "👁";
}

/*
 ************************************************************
 * WOOCOMMERCE-PRODUCT
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

#top .product_meta,
#top .product_meta > span,
#top .product_meta ul,
#top .product_meta ul li
{
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

#top .product_meta
{
	grid-gap: var(--size-l);
	font-size: 16px;
}

#top .product_meta a
{
	text-decoration: underline;
}

#top .product_meta > span
{
	grid-gap: var(--size-xs);
}

#top .product_meta > span > span
{
	text-transform: uppercase;
	color: var(--color-cvi-2);
}

#top .product_meta ul
{
	grid-gap: var(--size-xxs);
}

@media only screen and (min-width: 768px)
{
	.responsive #top .product_meta ul
	{
		flex-direction: row;
	}
}

#top .product_meta ul li
{
	flex-direction: row;
	grid-gap: 0;
	line-height: 40px;
}

#top .product_meta ul li:last-child .separator
{
	display: none;
}

/*
 ************************************************************
 * WOOCOMMERCE-SINGLE
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

#top.single-product .variations_form .label,
#top.single-product .variations_form .quantity,
#top.single-product .variations_form .single_variation,
#top.single-product .variations_form .reset_variations,
#top.single-product .woocommerce-tabs h2,
#top.single-product .woocommerce-tabs ul.tabs,
#top.single-product .single-product-main-image .sidebar
{
	display: none !important;
}

#top.single-product .variations_form,
#top.single-product .variations_form > div,
#top.single-product .variations_form .single_variation_wrap,
#top.single-product .woocommerce-variation-add-to-cart,
#top.single-product .template-shop div.product div.summary
{
	display: flex;
	flex-direction: column;
	grid-gap: var(--size-l);
	padding-bottom: 0px;
}

#top.single-product .single_variation_wrap,
#top.single-product .variations_form > table
{
	margin: 0;
}

#top.single-product .variations_form > table tr:not(:last-child) select
{
	margin-bottom: var(--size-xs);
}

/* SUMMARY */

#top.single-product .template-shop div.product div.summary > *
{
	margin: 0;
}

#top.single-product .template-shop div.product div.summary .title h2
{
	margin-bottom: var(--size-xs)
}

#top.single-product .template-shop div.product div.summary .title span
{
	font-size: 24px;
	color: var(--color-cvi-2);
}

#top.single-product .template-shop div.product div.summary .price span
{
	font-size: 32px;
}

#top.single-product .template-shop div.product div.summary .stock
{
	padding: 0;
	text-transform: uppercase;
	font-size: 18px;
}

#top.single-product .template-shop div.product div.summary .in-stock
{
	display: none;
	color: var(--color-cvi-3);
}

#top.single-product .template-shop div.product div.summary .out-of-stock
{
	color: var(--color-gray-2);
}

/* VARIATIONS */

#top.single-product .variations_form
{
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
}

#top.single-product .variations_form .price,
#top.single-product .variations_form .price span
{
	font-size: 36px;
}

#top.single-product .variations_form td.value
{
	padding: 0;
}

#top.single-product .variations_form .button
{
	max-width: 240px;
}

@media only screen and (max-width: 640px)
{
	.responsive #top.single-product .variations_form .button
	{
		max-width: 100%;
	}
}

/* TABS */

#top.single-product div.product .woocommerce-tabs
{
	padding-top: var(--size-xl);
	margin-bottom: 0;
}

#top.single-product div.product .woocommerce-tabs table,
#top.single-product div.product .woocommerce-tabs table tr
{
	background: none;
}

#top.single-product div.product .woocommerce-tabs table
{
	margin: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: var(--color-lightgray-2);
}

#top.single-product div.product .woocommerce-tabs table tr
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

#top.single-product div.product .woocommerce-tabs table th,
#top.single-product div.product .woocommerce-tabs table td
{
	padding: var(--size-s) 0;
	font-style: normal;
	font-size: 16px;
	color: var(--color-cvi-1);
}

#top.single-product div.product .woocommerce-tabs .panel
{
	padding: 0;
	border: none;
	background: none;
}

/*
 ************************************************************
 * WOOCOMMERCE-CART
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

#top.woocommerce-cart .woocommerce
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	grid-gap: var(--size-xl);
	min-height: 400px;
}

#top.woocommerce-cart .woocommerce-notices-wrapper
{
	display: none;
}

/* EMPTY CART */

#top.woocommerce-cart .wc-empty-cart-message
{
	width: 100%;
	text-align: center;
}

#top.woocommerce-cart .return-to-shop
{
	margin: 0 auto;
}

/* TABLE */

#top.woocommerce-cart h2,
#top.woocommerce-cart .shop_table .cart-subtotal,
#top.woocommerce-cart .shop_table .product-price,
#top.woocommerce-cart .shop_table .product-quantity,
#top.woocommerce-cart .shop_table .product-thumbnail,
#top.woocommerce-cart .shop_table .button[name="update_cart"]
{
	display: none !important;
}

#top.woocommerce-cart .shop_table .product-remove
{
	position: relative;
	width: 48px;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-cart .shop_table,
	.responsive #top.woocommerce-cart .shop_table tr,
	.responsive #top.woocommerce-cart .shop_table tbody
	{
		display: flex;
		flex-direction: column;
		border-radius: 0;
		border: none;
	}

	.responsive #top.woocommerce-cart .shop_table th,
	.responsive #top.woocommerce-cart .shop_table td
	{
		width: 100%;
		text-align: center;
		font-size: 18px;
		border: none;
	}

	.responsive #top.woocommerce-cart .shop_table tr
	{
		border: 1px solid var(--color-lightgray-2);
	}

	.responsive #top.woocommerce-cart .shop_table tbody
	{
		grid-gap: var(--size-s);
	}
}

/* ACTIONS */

#top.woocommerce-cart .shop_table .actions
{
	padding-top: var(--size-l);
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	text-align: left;
	border-bottom: none;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-page .shop_table .actions
	{
		padding: 0;
	}
}

/* COUPON */

#top.woocommerce-cart .shop_table .actions .coupon input,
#top.woocommerce-cart .shop_table .actions .coupon .button
{
	width: 100%;
	margin: 0;
}

#top.woocommerce-cart .shop_table .actions .coupon .input-text
{
	font-family: var(--font-body);
	text-align: center;
}

/* COLLATERALS */

#top.woocommerce-cart .cart-collaterals .shop_table
{
	border: none;
}

#top.woocommerce-cart .cart-collaterals .cart_totals,
#top.woocommerce-cart .cart-collaterals .cart_totals table
{
	margin: 0;
}

#top.woocommerce-cart .cart-collaterals .cart_totals,
#top.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .button
{
	width: 100%;
}

#top.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout
{
	margin-top: var(--size-s);
}

@media only screen and (min-width: 1080px)
{
	.responsive #top.woocommerce-cart .cart-collaterals
	{
		max-width: 400px;
	}
}

/*
 ************************************************************
 * WOOCOMMERCE-CHECKOUT
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 * 
 * ELEMENTS
 */

#top.woocommerce-checkout .cart_dropdown,
#top.woocommerce-checkout .checkout-inline-error-message,
#top.woocommerce-checkout #customer_details .form-row label,
#top.woocommerce-checkout #order_review .shop_table thead,
#top.woocommerce-checkout #order_review .shop_table tfoot th,
#top.woocommerce-checkout #order_review .shop_table .cart-subtotal
{
	display: none !important;
}

#top.woocommerce-checkout .form-row
{
	padding: 0;
}

#top.woocommerce-checkout .checkout h3:not(#ship-to-different-address)
{
	display: none;
	margin-bottom: var(--size-l) !important;
}

/*
 * COLS
 */

#top.woocommerce-checkout .checkout
{
	display: flex;
	flex-flow: row wrap;
	grid-gap: var(--size-xl);
}

#top.woocommerce-checkout .col-1,
#top.woocommerce-checkout .col-2,
#top.woocommerce-checkout .woocommerce-NoticeGroup-checkout
{
	width: 100% !important;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-checkout .checkout
	{
		flex-direction: column;
		grid-gap: 0;
	}
}

@media only screen and (max-width: 767px)
{
	.responsive #top.woocommerce-checkout .col-1,
	.responsive #top.woocommerce-checkout .col-2
	{
		width: 100%;
		margin-bottom: var(--size-m);
	}
}

@media only screen and (min-width: 990px)
{
	.responsive #top.woocommerce-checkout .checkout > div
	{
		width: calc(50% - 20px);
	}
}

/* COUPON */

#top.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
#top.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info
{
	padding: 0;
	margin-bottom: var(--size-m);
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
	.responsive #top.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info
	{
		font-size: 14px;
	}
}

/* 
 * LOGIN
 */

#top.woocommerce-checkout .woocommerce-form-login
{
	display: flex;
	flex-direction: column;
	grid-gap: var(--size-s);
	margin: var(--size-m) 0;
	border-radius: 0;
	border: 1px solid var(--color-lightgray-2);
}

@media only screen and (min-width: 640px)
{
	.responsive #top.woocommerce-checkout .woocommerce-form-login
	{
		width: 400px;
	}
}

#top.woocommerce-checkout .woocommerce-form-login p,
#top.woocommerce-checkout .woocommerce-form-login .form-row
{
	margin: 0;
	padding: 0;
}

#top.woocommerce-checkout .woocommerce-form-login .clear
{
	display: none;
}

#top.woocommerce-checkout .woocommerce-form-login .button
{
	margin-top: var(--size-m);
}

#top.woocommerce-checkout .woocommerce-form-login .lost_password
{
	top: 0;
	left: 0;
}

#top.woocommerce-checkout .woocommerce-account-fields p.create-account
{
	margin-top: var(--size-s);
}

#top.woocommerce-checkout .woocommerce-account-fields div.create-account
{
	margin: var(--size-s) 0;
}

/* 
 * FLEX
 */

#top.woocommerce-checkout .woocommerce-shipping-fields,
#top.woocommerce-checkout .woocommerce-account-fields,
#top.woocommerce-checkout .woocommerce-form .form-row,
#top.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
#top.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper
{
	display: flex;
	flex-direction: column;
}

#top.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
#top.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper
{
	grid-gap: var(--size-xs);
}

#top.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper
{
	margin-bottom: var(--size-xs);
}

#top.woocommerce-checkout .woocommerce-shipping-fields h3
{
	margin-bottom: var(--size-s);
}

#top.woocommerce-checkout.logged-in .woocommerce-shipping-fields h3
{
	margin: var(--size-s) 0;
}

@media only screen and (min-width: 768px)
{
	.responsive #top.woocommerce-checkout .woocommerce-additional-fields__field-wrapper
	{
		margin-bottom: var(--size-xl);
	}
}

/*
 * ----------------------------------------------------------
 * SHIPPING
 * ----------------------------------------------------------
 * 
 * PICKUP
 */

#top.woocommerce-checkout .makecommerce-pickuppoint-wrapper .select2-container--default .select2-selection--single,
#top.woocommerce-checkout .makecommerce-pickuppoint-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
#top.woocommerce-checkout .makecommerce-pickuppoint-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder
{
	display: flex;
	width: 100%;
	height: 48px;
	line-height: 48px;
}

#top.woocommerce-checkout .makecommerce-pickuppoint-wrapper .mcSelectContainer
{
	width: 100%;
	padding: 0 !important;
	max-width: none !important;
}

#top.woocommerce-checkout .makecommerce-pickuppoint-wrapper .select2-container--default .select2-selection--single
{
	border-radius: 0;
	border-color: var(--color-lightgray-2);
}

/* 
 * METHODS
 */

#top.woocommerce-checkout .woocommerce-shipping-methods,
#top.woocommerce-checkout .woocommerce-shipping-methods li,
#top.woocommerce-checkout .woocommerce-shipping-methods li > *
{
	display: flex;
	grid-gap: var(--size-xs);
	margin: 0;
}

#top.woocommerce-checkout .woocommerce-shipping-methods
{
	flex-direction: column;
}

#top.woocommerce-checkout .woocommerce-shipping-methods li
{
	padding: 0;
}

#top.woocommerce-checkout .woocommerce-shipping-methods span
{
	order: -1;
}

#top.woocommerce-checkout .woocommerce-shipping-methods input
{
	margin: 0;
	margin-right: var(--size-xxs);
}

/*
 * ----------------------------------------------------------
 * PAYMENT
 * ----------------------------------------------------------
 */

#top.woocommerce-checkout #payment
{
	margin-top: var(--size-l);
	border-radius: 0;
	border: none;
	background: none;
}

#top.woocommerce-checkout #payment p
{
	line-height: 1.6;
	font-weight: 300;
	font-size: 14px;
}

#top.woocommerce-checkout #payment .woocommerce-privacy-policy-text p
{
	margin: var(--size-l) 0;
}

#top.woocommerce-checkout #payment #place_order
{
	width: 100%;
	margin-top: var(--size-l);
}

#top.woocommerce-checkout #payment .place-order
{
	margin-bottom: 0;
	padding: 0 !important;
}

#top.woocommerce-checkout #payment div.payment_box
{
	width: 100%;
	padding: var(--size-m) var(--size-s);
	margin: var(--size-l) 0;
	background: var(--color-lightgray-1);
}

/* METHODS */

#top.woocommerce-checkout #payment ul.payment_methods,
#top.woocommerce-checkout #payment ul.payment_methods li
{
	padding: 0 !important;
}

#top.woocommerce-checkout #payment ul.payment_methods li
{
	border: none;
	background: none;
}

#top.woocommerce-checkout #payment ul.payment_methods li.payment_method_cod div.payment_box
{
	margin-bottom: 0;
}

#top.woocommerce-checkout #payment ul.payment_methods li label
{
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

#top.woocommerce-checkout #payment ul.payment_methods li img
{
	order: -1;
	margin: 0;
	margin-right: var(--size-xs);
}

/*
 * ----------------------------------------------------------
 * CUSTOMER DETAILS
 * ----------------------------------------------------------
 */

#top.woocommerce-checkout #customer_details
{
	display: flex;
	flex-direction: column;
	padding-bottom: 0;
}

#top.woocommerce-checkout #customer_details label span
{
	font-size: 16px;
	font-weight: 300;
	color: var(--color-cvi-1);
}

#top.woocommerce-checkout #customer_details .input-checkbox
{
	margin: -4px 8px 0 0;
}

#top.woocommerce-checkout #customer_details .create-account label
{
	display: block !important;
}

/*
 * ----------------------------------------------------------
 * REVIEW ORDER
 * ----------------------------------------------------------
 */

#top.woocommerce-checkout .woocommerce-checkout-review-order-table,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table tr,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table td,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot
{
	display: flex;
	flex-direction: column;
	grid-gap: var(--size-m);
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table th,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table td,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table td small
{
	border: none;
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table tr
{
	flex-direction: row;
	justify-content: space-between;
	grid-gap: 0;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table tr
	{
		flex-direction: column;
	}
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table td
{
	grid-gap: 0;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table th,
	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table td
	{
		width: 100%;
		text-align: center;
		border: none;
	}

	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table th a
	{
		font-size: 24px;
	}
}

/* 
 * CELLS
 */

#top.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity
{
	display: none !important;
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total
{
	color: var(--color-cvi-2);
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name
	{
		padding-bottom: 0;
	}

	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-total
	{
		padding-top: 0;
	}
}

/* 
 * BODY
 */

#top.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr
{
	border: 1px solid var(--color-cvi-2);
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table tbody
{
	grid-gap: var(--size-xs);
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-checkout .woocommerce-checkout-review-order-table tbody
	{
		grid-gap: var(--size-s);
	}
}

/* 
 * FOOT
 */

#top.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr
{
	background: none;
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td
{
	width: 100%;
	padding: 0;
}

/* 
 * ITEM
 */

#top.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td,
#top.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td
{
	padding: var(--size-m);
}

#top.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td strong
{
	font-weight: 400;
	font-size: 15px;
	color: var(--color-cvi-1);
}

/*
 ************************************************************
 * WOOCOMMERCE-ACCOUNT
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

/* COLS */

#top.woocommerce-account .col2-set,
#top.woocommerce-account .col2-set > div
{
	display: flex;
	flex-direction: row;
	grid-gap: var(--size-xl);
}

#top.woocommerce-account .col2-set > div
{
	flex-direction: column;
	grid-gap: var(--size-m);
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
}

@media only screen and (max-width: 989px)
{
	.responsive #top.woocommerce-account .col2-set
	{
		flex-direction: column;
		grid-gap: var(--size-l);
	}

	.responsive #top.woocommerce-account .col2-set > div
	{
		width: 100%;
	}
}

/* FORM */

#top.woocommerce-account form
{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	grid-gap: var(--size-xl);
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: none;
	background: none;
}

#top.woocommerce-account form .lost_password
{
	top: 0;
	left: 0;
}

#top.woocommerce-account form fieldset:not(.password-change) label
{
	display: none !important;
}

/* LOGIN & REGISTER */

#top.woocommerce-account .woocommerce-form,
#top.woocommerce-account .woocommerce-ResetPassword
{
	grid-gap: var(--size-m);
	padding: var(--size-m);
	border: 1px solid var(--color-lightgray-2);
}

#top.woocommerce-account .woocommerce-form input.input-text,
#top.woocommerce-account .woocommerce-ResetPassword input.input-text,
#top.woocommerce-account .woocommerce-EditAccountForm input.input-text
{
	padding-top: var(--size-xs)!important;
}

#top.woocommerce-account .woocommerce-form-login .button
{
	margin-top: var(--size-m);
}

/* ADDRESSES */

#top.woocommerce-account .addresses
{
	flex-direction: column;
	align-items: center;
	grid-gap: var(--size-m);
}

#top.woocommerce-account .addresses > div
{
	padding: var(--size-m);
}

#top.woocommerce-account .addresses .title .edit
{
	float: none;
}

/* NOTICES */

#top.woocommerce-account .woocommerce-error,
#top.woocommerce-account div.woocommerce-message
{
	margin-bottom: var(--size-m) !important;
	border-left-width: 4px;
	border-left-style: solid;
}

#top.woocommerce-account .woocommerce-error
{
	border-color: var(--color-error);
}

#top.woocommerce-account div.woocommerce-message
{
	border-color: var(--color-success);
}

/* CONTENT */

#top.woocommerce-account .woocommerce-MyAccount-content
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-gap: 40px;
	min-height: 320px;
	padding-top: var(--size-xl);

}

#top.woocommerce-account .woocommerce-MyAccount-content h2
{
	margin-bottom: var(--size-m);
	font-size: 20px;
}

#top.woocommerce-account .woocommerce-MyAccount-content .form-row:not(:last-child)
{
	margin-bottom: var(--size-s);
}

#top.woocommerce-account fieldset,
#top.woocommerce-account .col2-set > div,
#top.woocommerce-account .woocommerce-MyAccount-content > *
{
	width: 100%;
	margin: 0;
}

@media only screen and (min-width: 990px)
{
	.responsive #top.woocommerce-account fieldset,
	.responsive #top.woocommerce-account .col2-set > div,
	.responsive #top.woocommerce-account .woocommerce-MyAccount-content > *
	{
		width: 640px;
		margin: 0 auto;
	}
}

/*
 * ----------------------------------------------------------
 * NAV
 * ----------------------------------------------------------
 */

/* ICON */

#top.woocommerce-account .woocommerce-MyAccount-navigation-link a::before
{
	font-family: "Font Awesome 7 Free";
	font-weight: 400;
	margin-right: 10px;
}

#top.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::before
{
	content:"\f015";
}

#top.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before
{
	content:"\f15c";
}

#top.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before
{
	content:"\f2bb";
}

#top.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before
{
	content:"\f2bd";
}

#top.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before
{
	font-weight: 600;
    content:"\f08b";
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation-link a::before
	{
		float: right;
		margin-right: 0;
	}
}

/* LINK */

#top.woocommerce-account .woocommerce-MyAccount-navigation-link a
{
	text-decoration: none;
	font-size: 16px;
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation-link a
	{
		padding: var(--size-m);
		text-align: left;
	}
}

@media only screen and (min-width: 640px)
{
	.responsive #top.woocommerce-account .woocommerce
	{
		display: flex;
		flex-direction: column;
	}

	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation
	{
		margin: 0;
	}

	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation ul
	{
		display: flex;
	}
	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation-link
	{
		width: 20%;
	}
	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation-link a
	{
		min-width: auto;
		padding: var(--size-m) var(--size-xs);
		border: none;
	}
}

@media only screen and (min-width: 640px) and (max-width: 989px)
{
	.responsive #top.woocommerce-account .woocommerce-MyAccount-navigation-link a
	{
		font-size: 14px;
	}
}

/* COLOR */

#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link a
{
	color: var(--color-cvi-1);
}

#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link a::before
{
	color: var(--color-gray-2);
}

#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link.is-active
{
	background-color: transparent;
}

#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link.is-active a
{
	font-weight: 300;
}

#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link a:hover,
#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link a:hover::before,
#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link.is-active a,
#top.woocommerce-account .main_color .woocommerce-MyAccount-navigation-link.is-active a::before
{
	color: var(--color-cvi-2);
}

/*
 * ----------------------------------------------------------
 * WOOCOMMERCE-ORDERS
 * ----------------------------------------------------------
 */

#top.woocommerce-orders .woocommerce-info
{
	display: none;
}

/* TABLE */

@media only screen and (max-width: 539px)
{
	.responsive #top.woocommerce-orders .shop_table,
	.responsive #top.woocommerce-orders .shop_table tbody,
	.responsive #top.woocommerce-orders .shop_table tbody tr
	{
		display: flex;
		flex-direction: column;
		border-radius: 0;
		border: none;
	}

	.responsive #top.woocommerce-orders .shop_table tbody
	{
		grid-gap: var(--size-m);
	}

	.responsive #top.woocommerce-orders .shop_table tbody tr
	{
		background-color: var(--color-lightgray-1);
	}

	.responsive #top.woocommerce-orders .shop_table th,
	.responsive #top.woocommerce-orders .shop_table td
	{
		width: 100%;
		padding: var(--size-l) var(--size-s);
		text-align: center;
		font-size: 18px;
		border: none;
	}

	.responsive #top.woocommerce-orders .shop_table th
	{
		padding-bottom: var(--size-m);
	}

	.responsive #top.woocommerce-orders .shop_table td
	{
		padding-top: 0;
		padding-bottom: 0;
		font-size: 16px;
	}
}

/* CELLS */

#top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-number a
{
	font-weight: 600;
	font-size: 18px;
}

@media only screen and (max-width: 539px)
{
	.responsive #top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-number a
	{
		font-size: 22px;
	}
}

#top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-total
{
	font-size: 0 !important;
}

#top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-total span
{
	font-size: 16px !important;
}

#top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-actions a.button
{
	max-width: 160px;
	margin: 0 auto;
}

/* ACTIONS */

@media only screen and (max-width: 539px)
{
	.responsive #top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-actions
	{
		padding: var(--size-s);
		padding-bottom: var(--size-l);
	}
}

@media only screen and (min-width: 540px)
{
	.responsive #top.woocommerce-orders .shop_table .woocommerce-orders-table__cell-order-actions
	{
		display: none !important;
	}
}

/* CONTENT */

@media only screen and (max-width: 539px)
{
	.responsive #top.woocommerce-orders .woocommerce-MyAccount-content
	{
		padding: 0;
		background-color: transparent !important;
	}
}

/*
 * ----------------------------------------------------------
 * WOOCOMMERCE-ORDER-VIEW
 * ----------------------------------------------------------
 * 
 * DETAILS
 */

#top.woocommerce-view-order .woocommerce-order-header h2
{
	font-size: 27px;
}

#top.woocommerce-view-order #main .shop_table.order_details
{
	border: none;
	padding: 0;
}

#top.woocommerce-view-order #main .order_details
{
	margin: 0;
}

#top.woocommerce-view-order .shop_table .includes_tax
{
	display: none;
}

#top.woocommerce-view-order .shop_table tfoot th,
#top.woocommerce-view-order .shop_table tfoot td
{
	padding: var(--size-xs) 0;
	border: none;
}

#top.woocommerce-view-order .shop_table tfoot tr:first-child th,
#top.woocommerce-view-order .shop_table tfoot tr:first-child td
{
	padding-top: var(--size-m);
}

@media only screen and (max-width: 639px)
{
	.responsive #top.woocommerce-view-order .shop_table,
	.responsive #top.woocommerce-view-order .shop_table tr,
	.responsive #top.woocommerce-view-order .shop_table tbody,
	.responsive #top.woocommerce-view-order .shop_table tfoot
	{
		display: flex;
		flex-direction: column;
		grid-gap: var(--size-m);
		border-radius: 0;
		border: none;
	}

	.responsive #top.woocommerce-view-order .shop_table th
	{
		padding-bottom: var(--size-m);
		font-size: 16px;
	}

	.responsive #top.woocommerce-view-order .shop_table td
	{
		padding-top: 0;
		padding-bottom: 0;
		font-size: 16px;
	}

	.responsive #top.woocommerce-view-order .shop_table tbody tr
	{
		grid-gap: 0;
		padding: var(--size-m) 0;
		border: 1px solid var(--color-lightgray-2);
	}

	.responsive #top.woocommerce-view-order .shop_table tbody th,
	.responsive #top.woocommerce-view-order .shop_table tbody td
	{
		width: 100%;
		text-align: center;
		border: none;
	}

	.responsive #top.woocommerce-view-order .shop_table tfoot tr
	{
		grid-gap: 0;
	}

	.responsive #top.woocommerce-view-order .shop_table tfoot th,
	.responsive #top.woocommerce-view-order .shop_table tfoot td
	{
		text-align: left;
		padding: 0 !important;
	}
}

@media only screen and (min-width: 640px)
{
	.responsive #top.woocommerce-view-order .shop_table tbody
	{
		margin-bottom: var(--size-m);
	}

	.responsive #top.woocommerce-view-order .shop_table tfoot td > span
	{
		float: right;
		margin-left: var(--size-xs);
	}
}