/*
Theme Name: L&G Tools

WooCommerce styles override
*/

/**
 * Shop tables
 */
table.shop_table_responsive thead {
	display: none;
}

table.shop_table_responsive tbody th {
	display: none;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	clear: both;
}

table.shop_table_responsive tr td::before {
	content: attr(data-title) ": ";
	float: left;
}

table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
	display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
	display: none;
}

table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}

@media screen and (min-width: 48em) {

	table.shop_table_responsive thead {
		display: table-header-group;
	}

	table.shop_table_responsive tbody th {
		display: table-cell;
	}

	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
	}

	table.shop_table_responsive tr td {
		display: table-cell;
	}

	table.shop_table_responsive tr td::before {
		display: none;
	}
}

/**
 * Products
 */
ul.products {
	margin: 0;
	padding: 0;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 2em;
}

ul.products li.product img {
	display: block;
}

ul.products li.product .button {
	display: block;
}

@media screen and (min-width: 48em) {

	ul.products li.product {
		width: 30.79667%;
		float: left;
		margin-right: 3.8%;
	}

	ul.products li.product.first {
		clear: both;
	}

	ul.products li.product.last {
		margin-right: 0;
	}

	ul.products.columns-1 li.product {
		float: none;
		width: 100%;
	}

	ul.products.columns-2 li.product {
		width: 48.1%;
	}

	ul.products.columns-3 li.product {
		width: 30.79667%;
	}

	ul.products.columns-4 li.product {
		width: 22.15%;
	}

	ul.products.columns-5 li.product {
		width: 16.96%;
	}

	ul.products.columns-6 li.product {
		width: 13.49333%;
	}
}

/**
 * Single product
 */

span.onsale {
	display: none;
}

body.single-product.logged-in span.onsale {
    display: block;
    position: absolute;
    right: 0px;
    background-color: var(--color-light-blue);
    color: white;
    padding: 5px 10px;
    text-transform: uppercase;
}

.single-product div.product {
	position: relative;
}

.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 2em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.79667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

.stock:empty::before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {

	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}

	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}

	.col2-set .form-row-first,
	.col2-set .form-row-last {
		width: 48.1%;
	}
}

/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
	position: relative;
	margin: 0;
	padding: 0;
}

.site-header-cart .cart-contents {
	text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
	display: none;
}

.site-header-cart .product_list_widget {
	margin: 0;
	padding: 0;
}

/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	width: 5.3em;
	font-family: star;
	font-weight: 400;
}

.star-rating::before {
	content: "\53\53\53\53\53";
	opacity: 0.25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #4169e1;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: star;
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #0f834d;
	clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: #3d9cd2;
}

.woocommerce-error {
	background-color: #e2401c;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #3d9cd2;
	z-index: 9999;
}

@media screen and (min-width: 48em) {

	/**
	 * Header cart
	 */
	.site-header-cart .widget_shopping_cart {
		position: absolute;
		top: 100%;
		width: 100%;
		z-index: 999999;
		left: -999em;
		display: block;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}

	.site-header-cart:hover .widget_shopping_cart,
	.site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: #4169e1;
	box-sizing: border-box;
	margin-top: -0.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}

/*
-------------------------------------------------------------|
                                              	      	SHOP |
-------------------------------------------------------------|
*/

.shop-banner {
	margin-top: 95px;
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	padding: 50px 0;
	height: 390px;
  	position: relative;
}

.shop-banner .max-width-container {
	position: absolute;
	bottom: 65px;
	left: 0;
	right: 0;
}

.shop-banner h1 {
	color: var(--color-white);
	margin-bottom: 70px;
}

.jumpto-wrap span {
	margin-bottom: 2px;
	display: block;
}

.jumpto-wrap span img {
	margin-right: 5px;
}

ul.products {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

ul.products .product-card {
	width: 100%;
	height: 100%;
}

.woocommerce-pagination {
	clear: both;
	text-align: center;
	margin: 30px 0 50px;
}

.woocommerce-pagination .page-numbers {
	list-style: none;
	display: flex;
	justify-content: center;
}

.woocommerce-pagination .page-numbers li > * {
	width: 24px;
	height: 24px;
	margin: 2px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	transition: 0.35s ease all;
}

.woocommerce-pagination .page-numbers li > a:hover,
.woocommerce-pagination .page-numbers li > .current {
	background-color: var(--color-light-blue);
	color: var(--color-white);
}

.woocommerce nav.woocommerce-pagination ul li a.next:before,
.woocommerce nav.woocommerce-pagination ul li span.next:before {
	content: '';
    background-image: url('/wp-content/uploads/2024/06/arrow-right-nav.svg');
    width: 9px;
    height: 15px;
    position: relative;
  	top: 4px;
  	right: -8px;
}

.woocommerce nav.woocommerce-pagination ul li a.prev:before,
.woocommerce nav.woocommerce-pagination ul li span.prev:before {
	content: '';
    background-image: url('/wp-content/uploads/2024/06/arrow-left-nav.svg');
    width: 9px;
    height: 15px;
    position: relative;
  	top: 4px;
  	right: -8px;
}

.next.page-numbers,
.prev.page-numbers {
	color: transparent !important;
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
	background-color: transparent !important;
}

.shop-wrap .woocommerce-breadcrumb, 
.shop-wrap .woocommerce-result-count, 
.shop-wrap .woocommerce-products-header {
	display: none;
}

.post-type-archive-product div:not(.site-footer) .brand-carousel .slick-prev,
.single-product div:not(.site-footer) .brand-carousel .slick-prev {
	background-color: transparent;
	top: -33px;
	left: auto;
	right: 10%;
	height: auto;
}

.post-type-archive-product div:not(.site-footer) .brand-carousel .slick-next,
.single-product div:not(.site-footer) .brand-carousel .slick-next {
	background-color: transparent;
	top: -33px;
	left: auto;
	right: 8%;
	height: auto;
}

.woocommerce-ordering {
	display: flex;
	justify-content: end;
}

.products-per-page {
	float: left;
	display: flex;
	color: var(--color-black);
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 1px;
	align-items: center;
	margin-bottom: 25px;
	font-weight: 500;
}

.woocommerce-products-per-page select {
	background-color: transparent;
	border: none;
	color: var(--color-dark-blue);
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}

.products-per-page span:last-child {
	font-weight: 600;
}

.woocommerce-ordering .orderby {
	background-color: transparent;
	border: none;
	color: var(--color-dark-blue);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	cursor: pointer;
}

.woocommerce-ordering::before {
	content: 'Sort By';
	color: var(--color-black);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	margin-right: 2px;
}

.woocommerce div.product div.images .flex-viewport {
	order: 2;
	box-shadow: 1px 1px 8px rgba(0,0,0,0.2);
/*	height: auto !important;*/
}

.woocommerce div.product div.images .flex-viewport .woocommerce-product-gallery__image {
	padding: 30px 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 88px;
	order: 1;
}

.woocommerce div.product div.summary {
	margin: 0;
	padding-bottom: 50px;
}

.woocommerce div.product div.images {
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.woocommerce div.product div.images .flex-control-thumbs {
	overflow: 1;
	width: 88px;
	position: absolute;
	top: 0;
	left: -100px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: 100% !important;
	box-shadow: 1px 1px 8px rgba(0,0,0,0.2);
	margin-bottom: 10px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
	position: relative;
	width: calc(48% - 88px);
	margin-left: 100px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: none;
}

.woocommerce div.product div.images img {
	max-height: 600px;
	text-align: center;
	margin: 0 auto;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	border: 3px solid var(--color-dark-blue);
}

.product_meta {
	display: none;
}

.woocommerce div.product div.images img {
	display: block;
}

.woocommerce div.product div.summary {
	margin: 0;
	padding-bottom: 50px;
	width: 48%;
	float: right;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom: none;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	border-bottom: 1.5px solid #BCBDC0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after, 
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: none;
	background-color: transparent;
	color: var(--color-white);
	margin: 0;
	padding: 0;
	transition: 0.35s ease all;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:not(:last-child) {
	margin-right: 25px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	background: transparent;
	color: var(--color-light-blue) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: #BCBDC0 !important;
	display: inline-block;
	padding: 10px 0;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 15px;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
}

.woocommerce-Tabs-panel p {
	font-weight: 400;
	line-height: 1.6;
	font-size: 15px;
	max-width: unset;
}

body.woocommerce div.product form.cart .variations {
	margin-bottom: 0;
}

.related-resources {
	width: 100%;
	float: none;
	clear: both;
}

.related.products {
	clear: both;
	padding-top: 0;
	position: relative;
}

.single-product .summary h1 {
	font-size: 35px;
}

.stock.in-stock {
	color: #0f834d;
	display: none;
}

form.cart {
	display: none;
}

.single-product-wrap {
	margin-top: 185px;
}

.single-product .store-locator {
	width: 100%;
}

.single-product #primary > .woocommerce-breadcrumb {
	display: none;
}

.woocommerce-breadcrumb {
	color: #BCBDC0;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.related-products-header {
	display: flex;
	align-items: baseline;
	border-bottom: 1px solid #BCBDC0;
	margin-bottom: 38px;
}

.related-products-header h2 {
	color: var(--color-dark-blue);
}

.related-products-header a {
	color: #BCBDC0;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	margin-left: 18px;
}

.single-product .related-resources article {
	width: 24%;
	background: var(--color-white);
	box-shadow: 0px 0px 13.2px -2px rgba(0, 0, 0, 0.24);
	margin-bottom: 25px;
	padding-bottom: 35px;
}

.single-product .related-resources article h3 {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 122%;
	text-transform: initial;
	padding-left: 35px;
	padding-right: 35px;
	padding-top :25px;
	margin-bottom: 20px;
}

.single-product .related-resources article a.view-link {
	color: #3D86C6;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding-left: 35px;
	padding-right: 35px;
}

.woocommerce-category-accordion {
	margin-bottom: 20px;
	width: 22%;
}

.accordion-header {
	display: block;
	padding: 10px;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	color: var(--color-dark-blue);
	font-weight: 500;
	font-size: 18px;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 10px;
	border-bottom: 2px solid var(--color-light-grey) !important;
	position: relative;
}

.accordion-header::after {
	content: "\f078";
	font-family: fontawesome;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 14px;
	transform: rotate(180deg);
	transition:all 0.2s ease 0s;
}

.accordion-header.open::after {
	transform: rotate(0deg);
}

.accordion-content {
	display: none;
	padding: 0;
	list-style: none;
}

.accordion-content.open {
	display: block;
}

.details_table p {
    margin-bottom: 10px;
}

.details_table ul {
    margin-bottom: 10px;
}

.details_table {
    border-collapse: collapse;
    margin-top: 10px;
}

.category-item {
	list-style: none;
	padding: 2px 10px;
	border-top: none;
	font-size: 15px;
}

.category-item a {
	text-decoration: none;
	color: var(--color-black);
	text-transform: capitalize;
	display: block;
	background-color: #fff;
	transition: all 0.1s ease 0s;
	padding-left: 10px;
	line-height: 25px;
}

.category-item a:hover,
.category-item.active > a {
	background-color: var(--color-light-blue);
	color: #fff;
}

/*.category-item.has-children > a {
	font-weight: bold;
	color: var(--color-dark-blue);
}*/

.category-item .children {
	margin-left: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
}

.category-item .children a {
	font-size: 13px;
	line-height: 25px;
	padding-left: 25px;
	background-color: #E5E6E7;
}

.category-item .children a:hover,
.category-item .children .current-cat > a {
	background-color: #BCBDC0;
	color: #000;
}

li.category-item.active li ul.children ul.children {
    display: none;
}

li.category-item.active li.current-cat-ancestor ul.children ul.children {
    display: initial;
}

.shop-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 80px;
}

.shop-wrap #primary {
	margin-top: 0;
	width: 76%;
}

.wc-block-cart-items__header th span, 
.wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title {
	color: var(--color-dark-blue) !important;
	text-transform: initial !important;
	font-size: 18px !important;
}

.wc-block-components-sidebar .button.blue-border {
	display: block;
	text-align: center;
}

.wc-block-cart-item__remove-link, 
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address__link {
	color: var(--color-light-blue) !important;
}

.wc-block-components-product-name {
	color: var(--color-dark-blue) !important;
	font-weight: 700;
	margin-bottom: 0 !important;
}

.wc-block-components-product-metadata {
	display: none;
}

.wc-block-cart-item__prices {
	font-size: 15px;
}

.wc-block-components-form .wc-block-components-text-input input[type="email"], 
.wc-block-components-form .wc-block-components-text-input input[type="number"], 
.wc-block-components-form .wc-block-components-text-input input[type="tel"], 
.wc-block-components-form .wc-block-components-text-input input[type="text"], 
.wc-block-components-form .wc-block-components-text-input input[type="url"], 
.wc-block-components-text-input input[type="email"], 
.wc-block-components-text-input input[type="number"], 
.wc-block-components-text-input input[type="tel"], 
.wc-block-components-text-input input[type="text"], 
.wc-block-components-text-input input[type="url"], 
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, 
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-radius: 0 !important;
	border-color: var(--color-dark-blue) !important;
}

body.woocommerce-cart .entry-header::after {
	content: "All the below products have been added to your cart.  You can either proceed to checkout or download a product import CSV file.";
	font-size: 16px;
	color: var(--color-black);
	display: block;
	margin-bottom: 50px;
}

/*caffeine checkout overrides*/

#customer_details {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}

#customer_details .col-1, #customer_details .col-2 {
	width: 100%;
	column-count: 1;
}

h3#order_review_heading, .woocommerce-additional-fields h3, .woocommerce-shipping-fields h3, .woocommerce-billing-fields h3 {
	color: var(--color-dark-blue);
	text-transform: unset;
	font-size: 20px;
}

#customer_details.col2-set .form-row-first, 
#customer_details.col2-set .form-row-last,
.woocommerce-address-fields .form-row-first, 
.woocommerce-address-fields .form-row-last {
	width: calc(50% - 10px);
	margin: 0 0 10px;
	float: left;
}

#customer_details.col2-set .form-row-last,
.woocommerce-address-fields .form-row-last {
	float: right;
}

#customer_details.col2-set .form-row-wide,
.woocommerce-address-fields .form-row-wide {
	margin: 0 0 10px;
}

#customer_details label,
.woocommerce-address-fields label {
	display: block;
	font-size: 14px;
}

.woocommerce-input-wrapper input[type="text"], 
.woocommerce-input-wrapper input[type="email"], 
.woocommerce-input-wrapper input[type="tel"], 
.woocommerce-input-wrapper input[type="number"], 
.woocommerce-input-wrapper textarea {
	width: 100%;
	border-radius: 0;
	font-size: 14px;
	height: 35px;
	padding: 5px 10px;
}

.woocommerce-input-wrapper .select2-container--default .select2-selection--single {
	border-radius: 0;
	font-size: 14px;
	height: 35px;
	padding-top: 4px;
}

.woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 4px;
}

#order_review {
	background-color: #fff;
	padding: 0;
}

#order_review table {
	border: 1px solid #cccccc;
	border-collapse: collapse;
	background-color: #ffffff;
}

#order_review table th, #order_review table td {
	border: 1px solid #cccccc;
	font-size: 14px;
	padding: 2px 5px;
}

.wc_payment_methods.payment_methods.methods {
	padding: 0;
	margin: 0;
	display: none;
}

.woocommerce-privacy-policy-text p {
	font-size: 14px;
}

.ui-selectmenu-icon.ui-icon.ui-icon-triangle-1-s {
	display: none;
}

#select_saved_address_field .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

#select_saved_address-button {
	display: block;
	width: 100%;
	border-radius: 0;
	border: 1px solid var(--color-dark-blue);
	background-color: #fff;
	height: 55px;
	padding: 0px 0 0 10px;
	line-height: 53px;
	font-size: 13px;
}

#select_saved_address_field {
	max-width: 600px;
}

#order_comments {
	border-radius: 0;
	border: 1px solid var(--color-dark-blue);
	resize: none;
	padding: 10px 10px;
	height: 100px;
	max-width: 600px;
	font-size: 14px;
}

#customer_details {
	width: 50%;
	float: left;
}

#order_review_heading, #order_review {
	width: calc(50% - 50px);
	float: right;
	clear: none;
}

#order_review_heading {
	margin-top: 50px;
	margin-bottom: 35px;
}

#order_review table th {
	text-align: left;
	color: var(--color-dark-blue);
	font-weight: 600;
}

.page-id-9 #colophon {
	margin-top: 50px;
}

