/*
TABLE OF CONTENTS 

- Global
	-- Table
- Gravity Form
- Magnific Popup
- Widget
- Commment Form
- Category
  -- Reviews
- Distributor
- TM Options
- Page
- Product single 
  -- Upsells
  -- Reviews
- Knowledgebase
- Cart
- Checkout
- Contact
- Accordion
	- Ball Machine Drills page
	- FAQs
- GDPR
- Gutenberg
*/

/* Global */
:root {
	--white: #fff;
	--violet: #332a86;
	--sky-blue: #00aeef;
	--white: #fff;
	--black: #000;
	--red: #d63638;
	--gray: rgb(46, 46, 46); /* #e2e2e2 */
	--dark-gray: rgb(249, 249, 249); /* #f9f9f9 */
	--light-gray: rgb(111, 111, 111); /* #6f6f6f */

	--cover-offset: 0px;
	--global-font: Arial, san-serif;
	--global-font-size: 16px;
	--border-color: rgb(230, 230, 230);
	--input-border-radius: 3px;
}

html,
body {
	overflow-x: hidden;
}

img {
	width: auto;
	height: auto;
}

@keyframes loading {
	0% {
		transform: translateY(0) rotate(0deg);	
	}

	100% {

		transform: translateY(0) rotate(360deg);	
	}
}

.loading::after {
	content: '.';
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid var(--gray);
	border-top-color: transparent;
	border-radius: 50%;
	color: transparent;
	animation-name: loading;
	animation-duration: 0.6s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
}


/* Grid */
.row--middle {
	display: flex;
	align-items: center;
}

.row--center {
	display: flex;
	justify-content: center;
}

/* Menu */
.menu {
	list-style: none;
}

.menu > li {
	display: inline-block;
}

.menu > li > a {
	display: inline-block;
	padding: 6px 12px;
}

.menu--left {
	text-align: left;
}

.menu--center {
	text-align: center;
}

.menu--right {
	text-align: right;
}

/* Button */
.btn-group {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: right;
}

/* NOTE: .btn2 class is a button hack because of WooCoomerce's stupid default stylings */
.button,
.btn2,
.woocommerce-page.woocommerce .search-form-wrapper button.button,
.tax-product-cat.woocommerce .search-form-wrapper button.button,
.woocommerce ul.products li.product .button {
	display: inline-block;
	line-height: normal;
	padding: 12px 60px;
	border: 1px solid var(--white);	
	border-radius: 30px;
	background: var(--white);
	color: var(--violet);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.button:active,
.button:focus,
.button:hover,
.btn2:active,
.btn2:focus,
.btn2:hover,
.woocommerce-page.woocommerce .search-form-wrapper button.button:hover,
.tax-product-cat.woocommerce .search-form-wrapper button.button:hover,
.woocommerce ul.products li.product .button:hover {
	background: none;
	color: var(--white);
	text-decoration: none;
}


.button--hollow,
.woocommerce-page.woocommerce .search-form-wrapper button.button.button--hollow,
.tax-product-cat.woocommerce .search-form-wrapper button.button.button--hollow,
.woocommerce ul.products li.product .button.button--hollow {
	color: var(--white);
	background: none;
}

.button--hollow:active,
.button--hollow:focus,
.button--hollow:hover,
.woocommerce-page.woocommerce .search-form-wrapper button.button.button--hollow:hover,
.tax-product-cat.woocommerce .search-form-wrapper button.button.button--hollow:hover,
.woocommerce ul.products li.product .button.button--hollow {
	background: var(--white);
	color: var(--violet);
	text-decoration: none;
}

.button--primary {
	background: var(--violet);
	color: var(--white);
}

.button--primary:active,
.button--primary:focus,
.button--primary:hover {
	background: var(--sky-blue);
}

.button--full {
	display: block;
	width: 100%;
	text-align: center;
}

.learn-more {	
	position: relative;
	color: var(--sky-blue);
}

.learn-more::after {
	content: '.';
	position: relative;
	top: 6px;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 4px;
	background: url(../images/chevron-right.svg);
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: transparent;
}

/* -- Table */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* End of: -- Table */
/* End of: - Global */

/* - Gravity Form */
.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 0;
}

.gform_wrapper.gravity-theme .gfield_label {
	font-size: 10pt;
}

.gform_wrapper textarea, 
.gform_wrapper select, 
.gform_wrapper select.gfield_select, 
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	border-radius: var(--input-border-radius);
}
/* End of: - Gravity Form */

/* - Magnific Popup */
.mfp-gallery .mfp-counter {
	width: 50px;
	text-align: right;
}

.mfp-inline-holder .mfp-content {
	width: 100%;
	max-width: 900px;
	vertical-align: top;
	margin-top: 130px;
}

.mfp-inline-holder .mfp-close {
	top: -40px;
	right: -14px;
	color: var(--white);
	opacity: 0.65;
	transform: opacity 0.3s ease-in-out;
}

.mfp-inline-holder .mfp-close:hover {
	opacity: 1;
}
/* End of: - Magnific Popup */


/* - Widget */
.widget.widget--inline-popup,
.widget.widget--cheaper-shipping-popup {
	/* ^Hack: 
	 * Unintentionally styled by other CSS declaration that caused the popup widget
	 * to be 50% of the screen on mobile and tablet viewports.
	 */
	float: none;
	width: 100%;
	/* End of: ^Hack */

	display: grid;
	padding: 24px 32px; 
	border-bottom: 0;
	border-radius: 6px;
	background: var(--white);	
}

.widget--cheaper-shipping-popup .gform_wrapper {
	margin: 0;
	max-width: none;
}

.widget--cheaper-shipping-popup .widget__title {
	display: none;
}

.widget--cheaper-shipping-popup .textwidget > p {
	color: #757575;
}

@media screen and (max-width: 640px) {
	.widget--cheaper-shipping-popup .gform_wrapper {
		margin-right: 0;
	}
}
/* End of: - Widget */


/* - Comment Form */
.comment-form-author label,
.comment-form-email label {
	display: inline-block;
	min-width: 50px;
	margin-right: 6px;	
}

.comment-form-author input,
.comment-form-email input {
	min-width: 245px;
}
/* End of: - Comment Form */


/* - Category */
body.tax-product_cat,
body.tax-product_cat #main-wrap, 
body.tax-product_cat #main-content,
body.tax-product_cat #content-wrap {
	background: var(--dark-gray);
}

.woocommerce .woocommerce-ordering {
	margin-bottom: 24px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	margin-bottom: 24px;
	padding: 40px 0;
	border-radius: 6px;
	box-shadow: 0 5px 20px rgba(36, 36, 36, .12);
	background: var(--white);
}

.woocommerce ul.products li.product a img {
	margin-bottom: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
	display: block;
	line-height: 1.2;
	margin-bottom: 12px;
	padding: 0;
	font-size: 24px;
}

.woocommerce ul.products li.product .product__description,
.woocommerce ul.products li.product .prod-description {
	margin-bottom: 12px;
}

.woocommerce ul.products li.product .product__price,
.woocommerce ul.products li.product ..prod-price {
	font-size: 24px;
}

.woocommerce ul.products li.product .button {
	margin-right: 8px;
	padding: 8px 40px;
	background: var(--violet);
	color: var(--white);
	font-size: 16px;
	text-align: center;
}

.woocommerce ul.products li.product .button:last-of-type:not(:first-of-type),
.woocommerce ul.products li.product .button:hover {
	border-color: var(--violet);
	background: var(--white);
	color: var(--violet);
}

.woocommerce ul.products li.product .button:last-of-type:not(:first-of-type):hover {
	background: var(--sky-blue);
	border-color: var(--sky-blue);
	color: var(--white);
}

.woocommerce ul.products li.product .button.loading::after {
	border: 1px solid var(--white);	
	border-top-color: transparent;
	top: auto;
}

.woocommerce ul.products li.product .button.loading:hover::after {
	border: 1px solid var(--gray);
	border-top-color: transparent;
}

@media screen and (max-width: 991px) {
	.woocommerce ul.products[class*=columns-] li.product, 
	.woocommerce-page ul.products[class*=columns-] li.product,
	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 580px) {
	.woocommerce ul.products li.product > [class*='col-'] {
		width: 100%;
	}

	.woocommerce ul.products li.product a img {
		max-width: 400px;
		margin: 0 auto 24px;
	}

	.woocommerce ul.products li.product .button {
		display: block;
		width: 100%;
		padding: 12px 60px;
	}
}

/* -- Reviews */
body.search-results .woocommerce-product-rating,
body.tax-product_cat .woocommerce-product-rating {
	display: flex;
	margin-top: -12px;
	margin-bottom: 6px;
}

body.search-results ul.products li.product .star-rating,
body.tax-product_cat ul.products li.product .star-rating {
	margin: .5em 4px 0 0;
	font-size: 1em;
}

body.search-results .woocommerce-product-rating .woocommerce-review-link,
body.tax-product_cat .woocommerce-product-rating .woocommerce-review-link {
	pointer-events: none;
}
/* End of: -- Reviews */
/* End of: - Category */

/* - Knowledgebase */
body.mkb-search .mkb-widget.widget {
	margin: 0;
}
/* End of: - Knowledgebase */


/* - Cart */
.woocommerce-cart-form .product-name > a {
	color: var(--gray);
	font-weight: 700;
}

.woocommerce-cart-form .product-name > a.tm-edit-cart-options {

}

.woocommerce-cart-form .tc-epo-metadata.variation {
	margin-left: 0;
	color: var(--lightest-gray);
}

.woocommerce-cart-form .button[name="update_cart"] {
	color: var(--white) !important;
}

.cart_totals .ppc-button-wrapper > *:last-child {
	padding-bottom: 10px;
}

.cart_totals .ppc-button-wrapper #ppc-button-googlepay-container,
.cart_totals .ppc-button-wrapper #ppc-button-applepay-container {
	margin-top: 0 !important;
	margin-bottom: 1rem;
}

.wc-proceed-to-checkout__paypal-message {
	display: none;
	text-align: center;
	color: var(--light-gray);
}

.wc-proceed-to-checkout__paypal-message.loaded {
	display: block;
}

.wc-proceed-to-checkout__paypal-message__before {
	margin-bottom: 0;
	padding: 0;
}

.wc-proceed-to-checkout__paypal-message__after {
	position: relative;
}

.wc-proceed-to-checkout__paypal-message__after::before {
	content: '.';
	position: absolute;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	color: transparent;
	height: 1px;
	width: 100%;
	background: var(--border-color);
}

.wc-proceed-to-checkout__paypal-message__after > span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 12px;
	background: var(--white);
	text-transform: uppercase;
}


body.woocommerce-cart a.checkout-button {
	border-radius: 30px;
}

.woocommerce-cart .select2-container .select2-selection--single {
	min-height: 28px;
}
/* End of: - Cart */


/* Checkout */
.woocommerce-checkout #payment,
.woocommerce-checkout-payment {
	margin-bottom: 20px;
	background: var(--white);
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout-payment .wc_payment_methods {
	padding: 0;
	border: 1px solid var(--border-color);
	border-radius: 6px;
}


.woocommerce-checkout-payment .wc_payment_methods li {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout-payment .wc_payment_methods li:last-child {
	border-bottom: 0;
}

.woocommerce-checkout-payment .wc_payment_method input[type='radio'] {
	accent-color: var(--black);
}

.woocommerce-checkout-payment .wc_payment_method label {
	position: relative;
	top: -2px;
}

.woocommerce-checkout-payment .wc_payment_method label[for='payment_method_ppcp-applepay'] > img,
.woocommerce-checkout-payment .wc_payment_method label[for='payment_method_ppcp-googlepay'] > img,
.woocommerce-checkout-payment .wc_payment_method label[for='payment_method_ppcp-gateway'] > img {
	display: none !important;
}

.woocommerce-checkout #payment div.payment_box {
	margin: 20px 0 0;
	padding: 0;
	background: none;
	color: var(--light-gray);
}

.woocommerce-checkout #payment div.payment_box::before {
	content: none;
}

.woocommerce-checkout #payment div.payment_box > :first-child {
	padding-top: 0;
}

.woocommerce-checkout #payment #ppcp-cancel {
	width: 420px;
	margin-top: -8px;
	padding: 0;
	color: var(--light-gray);
	font-size: 0.92em;
}

.woocommerce-checkout #payment #ppcp-cancel br {
	display: none;
}

.woocommerce-checkout #payment div.form-row {
	margin: 0;
	padding: 20px 14px;
	border-top: 1px solid var(--border-color);
}

.woocommerce-checkout #payment div.payment_box > :last-child {

}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce-checkout #payment div.form-row button {
	float: none;
	display: block;
	width: 420px;
	margin-bottom: 16px;
	padding: 1rem;
	border-radius: 50px;
	font-size: 1.25em;
}

.woocommerce-checkout #payment div.form-row #ppc-button-ppcp-googlepay  button {
	padding: 0.75rem;
}

.woocommerce-checkout .ppc-button-wrapper > div {
	width: 420px;
}

.woocommerce-checkout .ppc-button-wrapper > div > div:first-child {
}

.woocommerce-checkout .ppc-button-wrapper #ppc-button-ppcp-gateway > div {
	margin-top: 14px;
}

.woocommerce-checkout .ppc-button-wrapper > div > div:last-child {
	margin-bottom: 14px;	
}

@media screen and (max-width: 490px) {
	.woocommerce #payment #place_order, 
	.woocommerce-page #payment #place_order, 
	.woocommerce-checkout #payment div.form-row button,
	.woocommerce-checkout .ppc-button-wrapper > div {
		width: 100%;
	}
}
/* End of: Checkout */


/* - Distributor */
/* Hide the old distributor message on product page. 
 * To remove those entries on each product.
 */
.with-dist {
	display: none;
} /* End of old distributor message */

.distributors-container {
	margin-bottom: 20px;
	padding-top: 20px;
}

.distributors--product-view::after {
	content: '.';
	display: block;
	height: 1px;
	margin-right: -39%;
	background: #d6d6d6;
	clear: both;
	color: transparent;
}

.distributors--product-view .distributors__title {
	text-transform: none;	
}

.distributors__description {
	margin-bottom: 12px;
}

.distributors--product-view .distributor:nth-child(3n+2) {
	clear: none;
}

.distributors--product-view .distributor {
	width: 50%;
	margin-left: -10px;
	padding-bottom: 20px;
}

.tab-desktop {
	display: flex;
	justify-content: space-evenly;
}

.dis-region {
	display: inline-block;
	margin-bottom: 6px;
}

.distributor p,
.dis-store {
	line-height: 1.25rem;
}

.dis-tab {
	flex-grow: 1;
}

.dis-tab img {
	display: block;
	width: 100%;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.distributors--product-view::after {
		margin-right: 0;
	}

	.distributors--product-view .distributor {
		float: left;
		width: 50%;
	}
}

@media (max-width: 520px) {
	/* ^Hack: Gets hidden on mobile view */
	.product-features .distributors--product-view p {
		display: block;
	} /* End of: ^Hack */

	.distributors--product-view .distributor {
		width: 100%;
	}
}
/* End of - Distributor */

/* - TM Options */
#callout-cart ul.cart_list li a:not(.remove) {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	font-size: 1.05rem;
}

#callout-cart ul.cart_list li dl dd,
#callout-cart ul.cart_list li dl dt {
	float: left;
	padding-bottom: 0;
}

#callout-cart ul.cart_list li dl dt {
	display: inline-block;
	margin: 0 4px 0 0;
	clear: both;
}

#callout-cart ul.cart_list li dl dd {
	margin-bottom: 0;
}

#callout-cart ul.cart_list li dl dd .amount {
	display: inline-block;
}

#callout-cart .tc-price-in-cart, .tc-quantity-in-cart {
	font-size: smaller;
}

/* -- Tooltips */
#tm-tooltip {
	display: none !important;
}

.tc-tooltip {
	cursor: pointer;
}
/* End of: -- Tooltips */

/* Custom options gap */
.tm-extra-product-options .tc-row,
.tc-row {
	gap: 6px;
}

.tm-extra-product-options .tc-element-inner-wrap .tc-row {
	gap: 6px;
}

.user-manuals-downloader select,
.tm-epo-field.tmcp-select {
	height: 40px;
	padding-left: 12px;
	padding-right: 12px;
	-moz-appearance: none;
	-webkit-appearance: none; 
	appearance: none;
}

.user-manuals-downloader select:active,
.user-manuals-downloader select:focus,
.tm-epo-field.tmcp-select:active,
.tm-epo-field.tmcp-select:focus {
	outline: 1px solid var(--black);
}

.user-manuals-downloader > div .field-wrapper,
.tm-extra-product-options-select .tm-epo-field-label  {
	position: relative;
}

.user-manuals-downloader > div .field-wrapper::after,
.tm-extra-product-options-select .tm-epo-field-label::after {
	content: '\f078';
	font-family: Fontawesome;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
}

.tm-epo-field.tm-error {
	border: 1px solid var(--red-01);
}

.tm-extra-product-options .tc-cell.tm-error {
	margin: -8px 0 0 !important;
	color: var(--red-01);
	font-size: 0.75rem;
	font-weight: 400;
}
/* End of: - TM Options */


/* - Page */
.page-modified-date {
	display: block;
	margin-top: 8px;
	color: var(--light-gray);
}
/* End of: - Page */


/* - Product single */
.tm-extra-product-options .tm-epo-field-label {
	
}
@media screen and (max-width: 768px) {
	#main-content .product-features {
		margin-top: 20px;
	}

	#main-content .product-features::before {
		content: '.';
		display: block;
		width: 100%;
		clear: both;
		color: transparent;	
	}
}

.buy-product--has-tm-options .tm-extra-product-options-totals .tm-options-totals,
.buy-product--has-tm-options .tm-extra-product-options-totals dt.tm-final-totals,
.buy-product--has-tm-options .price {
	display: none;
}

.cpf-section:not(.tm-hidden) {
	margin-bottom: 12px;
}

.cpf-section:last-of-type {
	margin-bottom: 24px;
}

.cpf-section .tc-container {
	margin-bottom: 12px;
}

.cpf-section .tc-container:last-of-type {
	margin-bottom: 0;
}

.tm-extra-product-options ul.tmcp-ul-wrap.tm-element-ul-checkbox {
	gap: 8px;
}

/* -- Upsells */
.woocommerce .upsells ul.products li.product, 
.woocommerce-page .upsells ul.products li.product {
	display: flex;
	flex-direction: column;
	padding: 0 0 20px;
}

.upsells .products .product .add_to_cart_button::after {
	content: none;
}

.upsells .products .product .prod-image {
	margin-bottom: 20px;
}

.upsells .products .product .prod-details {
	display: flex;
	flex-direction: column;
	flex-grow: 2;
}

.upsells .products .product .prod-price {
	flex-grow: 2;	
}

.woocommerce .upsells ul.products li.product .button,
.upsells .products .product .button {
	width: 100%;
	margin-top: 0.5rem;
	/*
	 * Since this button is taking the whole width of its parent
	 * we can afford to reduce its side padding so it looks decent
	 * on small screen devices.
	 */
	padding: 12px 20px; 
}

@media screen and (max-width: 991px) {
	.woocommerce .upsells ul.products li.product, 
	.woocommerce-page .upsells ul.products li.product {
		flex: 0 0 31%;
	}
}


@media screen and (max-width: 767px) {
	.woocommerce .upsells ul.products li.product, 
	.woocommerce-page .upsells ul.products li.product {
		flex: 0 0 47%;
	}
}

@media screen and (max-width: 580px) {
	.woocommerce .upsells ul.products li.product a img {
		margin-bottom: 0;
	}
}

@media (max-width: 479px) {
	.woocommerce .upsells ul.products li.product, 
	.woocommerce-page .upsells ul.products li.product {
		padding-bottom: 20px !important;
	}
}

@media screen and (max-width: 450px) {
	.woocommerce .upsells ul.products li.product, 
	.woocommerce-page .upsells ul.products li.product {
		flex: 0 0 100%;
	}
}

/* End of: -- Upsells */


/* -- Reviews */
.woocommerce-Reviews-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.woocommerce-Reviews-title a.write-review {
	font-size: 12px;
	font-weight: 400;
	text-transform: none;
	text-decoration: underline;
}

.single-product #review_form_wrapper {
	border-top: 1px solid #d6d6d6;
}

.single-product .comment-form {
	display: flex;
	flex-wrap: wrap;
}

.version-messages,
.single-product #review_form #respond .comment-form .comment-notes,
.single-product .comment-form .comment-notes {
	padding: 12px 18px;
	border-radius: 6px;
	border-color: #faebcc;
	background: #fcf8e3;
	color: #8a6d3b;
	font-size: 14px;
}

.single-product .comment-form > * {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 20px;
}

.single-product #review_form #respond p {
	margin-bottom: 20px;
}

.single-product .comment-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 400;
	color: #757575;
}

.single-product #review_form label {
	font-weight: 400;
}

.single-product #review_form #respond p.stars {
	margin-bottom: 0;
}

.single-product #review_form #respond p.comment-form-author,
.single-product .comment-form .comment-form-author {
	padding-right: 20px;
}

.single-product .comment-form .comment-form-author,
.single-product .comment-form .comment-form-email {
	display: flex;
	flex-direction: column;
	flex: 0 0 50%;
	width: 50%;	
}

.single-product .comment-form .comment-form-author label,
.single-product .comment-form .comment-form-email label {
}

.single-product .comment-form .comment-form-author input,
.single-product .comment-form .comment-form-email input {
	flex-grow: 2;
	height: 40px;
	padding: 0.75rem 1rem;
	border-radius: var(--input-border-radius);
	border: 1px solid #d6d6d6;
}

.single-product #respond input:active,
.single-product #respond input:focus,
.single-product .comment-form input:active,
.single-product .comment-form input:focus,
.single-product #respond textarea:active,
.single-product #respond textarea:focus,
.single-product .comment-form textarea:active,
.single-product .comment-form textarea:focus {
	outline: none;
	border-color: var(--black);
}

.single-product #commentform .gglcptch,
.single-product .comment-form .gglcptch {
	margin-top: 0;
	margin-bottom: 20px;
	padding: 0;
}


.gform_wrapper .gform_footer input[type=submit] {
	line-height: 1 !important;
}

.gform_wrapper .gform_footer input[type=submit], 
.single-product #review_form #respond .form-submit input[type="submit"] {
	padding: 12px 60px !important;
	border-radius: 30px;
	background-color: var(--sky-blue);
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
}

.gform_wrapper .gform_footer input[type=submit]:active, 
.gform_wrapper .gform_footer input[type=submit]:focus, 
.gform_wrapper .gform_footer input[type=submit]:hover, 
.single-product #review_form #respond .form-submit input[type="submit"]:active,
.single-product #review_form #respond .form-submit input[type="submit"]:focus,
.single-product #review_form #respond .form-submit input[type="submit"]:hover {
	background: var(--magenta);
}

@media screen and (max-width: 560px) {
	.single-product .comment-form .comment-form-author,
	.single-product .comment-form .comment-form-email {
		flex: 0 0 100%;
		width: 100%;
	}
	
	.single-product #review_form #respond p.comment-form-author,
       	.single-product .comment-form .comment-form-author {
		padding-right: 0;
	}

	.single-product #respond .comment-form .comment-form-author input,
	.single-product #respond .comment-form .comment-form-email input {
		margin-bottom: 0;
	}
}
/* End of: -- Reviews */

/* -- Gallery */
.flex-direction-nav a {
	z-index: 1;
}
/* End of: -- Gallery */
/* End of - Product single */


/* - Checkout */
.woocommerce form .form-row {
	padding: 3px 0;
}

.woocommerce-checkout .notes textarea {
	font-family: var(--global-font);
}
/* End of - Checkout */

/* - Contact */
body.contact #main-content .entry > p:first-child {
	font-size: 16px;
}
/* End of: - Contact */

/* - Accordion */
.btn-group {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: right;
}

.to-top-wrapper {
	position: fixed;
	right: 15px;
	bottom: 15px;
}

.to-top {
	position: relative;
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: none;
	border-color: var(--gray);
	color: var(--gray) /* #484848 */;
	padding-left: 40px;
}

.to-top.visible {
	display: inline-block;
	visibility: visible;
	opacity: 1;
}

.to-top.visible:focus::before,
.to-top.visible:hover::before {
	background: url(../images/dropdown.svg);
}

.to-top::before {
	content: '.';
	position: absolute;
	transform: translateY(-50%) rotate(180deg);
	top: 50%;
	left: 15px;
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../images/dropdown--alt.svg);
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: transparent;
}

.to-top:focus,
.to-top:hover {
	background: var(--violet);
	color: var(--white);
}

#main-content ul.accordion,
.accordion {
	margin-top: 20px;
	margin-left: 0;
	margin-bottom: 40px;
	list-style: none;
}

.accordion__item {
	padding: 0 24px;
	border-bottom: 2px solid var(--border-color);
}

.accordion__item:first-child {
	border-top: 2px solid var(--border-color);
}

.accordion__item__name,
.accordion__item__link {
	color: var(--gray);
}

.accordion__item__link {
	position: relative;
	display: block;
	padding: 12px 0;
}


.accordion__item__link:hover {
	text-decoration: none;
}

.accordion__item__link::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
	content: '.';
	display: inline-block;
	width: 28px;
	height: 28px;
	background-image: url(../images/dropdown--alt.svg);
	background-size: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	transition: all 0.3 ease-in-out;
	color: transparent;
}

.accordion__item--active .accordion__item__link::after {
	transform: translate(50%, -50%) rotate(180deg);
}


.accordion__item--active .accordion__item__content {
	max-height: 2500px;
	transition-duration: 0.5s;
}

.accordion__item__content {
	height: auto;
	max-height: 0;	
	overflow: hidden;
	transition: max-height 0.25s ease-in-out;
}

.accordion__item__description {
	margin: 12px 0 36px;
}

.accrodion__item__image-wrapper {
	padding-right: 60px;
}

.accordion__item__image {
	width: 100%;
}

.accordion__item__videos {
	color: var(--light-gray);	
	font-size: 0.8rem;
}

.accordion__item__notes {
	margin-top: 42px;
	margin-bottom: 42px;
	padding-left: 24px;
	border-left: 2px solid var(--border-color);
	color: var(--light-gray);	
}

#main-content .accordion__item__notes ol,
.accordion__item__notes ol {
	margin-top: -8px;
	margin-left: 14px;
	list-style: decimal;	
}

@media screen and (max-width: 767px) {
	.accordion__item__image-wrapper {
		padding-right: 0;
		margin-bottom: 40px;
	}
}
/* End of - Accordion */


/* WooCommerce Notices */
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
	background-color: #f2f2f2;
}

/* Sidebar */
/* TODO: Remove html instances of the sidebar. */
#main-content.not-full {
	width: 100%
}

#sidebar {
	display: none;
}


/* - GDPR */
#cmplz-cookiebanner-container {

}

#cmplz-cookiebanner-container .cmplz-cookiebanner {
	padding: 30px;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header {
	grid-template-columns: 250px 1fr 100px;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-title {
	grid-column-start: 1;
	justify-self: left;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
}

.cmplz-close {
	background-image: url(../images/close-alt.svg);
	background-repeat: no-repeat;
	background-size: 85%;
	background-position: 50% 50%;
}

.cmplz-close svg {
	display: none;
}

.cmplz-message > br {
	display: none
}

.cmplz-message p {
	margin-bottom: 12px;
	padding: 0;
}

.cmplz-buttons {
	display: flex;
	flex-direction: column !important;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
	font-weight: 700;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
	background: var(--sky-blue);
	border: 0;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:active,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:focus,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:hover {
	background: var(--sky-blue--dark);
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
	background: transparent;
	border-color: var(--sky-blue);
	color: var(--sky-blue);
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny:active,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny:focus,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny:hover {
	background: var(--black);
	color: var(--white);
	border-color: var(--black);
}

@media (min-width: 1024px) {
	#cmplz-cookiebanner-container .cmplz-cookiebanner {
		margin: 30px;
		width: calc(100% - 60px);
	}
}

@media (max-width: 425px) {
	#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header {
		display: flex;
		justify-content: space-between;
		margin-bottom: 12px; 
		text-align: right;
	}

	#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header .cmplz-title {
		display: block;
	}

	#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-close {
		display: inline-block;
	}
}
/* End of: - GDPR */

/* - Gutenberg */
@media (max-width: 991px) {
	.wp-block-columns {
		flex-wrap: wrap !important;
	}

	.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
		flex-basis: 100% !important;
	}
}
/* End of: - Gutenberg */
