header > nav > #cart-toggle {
	right: 0;
	transition: right .3s ease;
}

#header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
}
#header .navbar-brand img,
#header #scroll_topbar,
#header .wa-breadcrumbs-wrapper {
	transition: all .4s ease;
}

#header.header-sticky .wa-breadcrumbs-wrapper {
	padding: 0.4rem;
}
#header.header-sticky #scroll_topbar {
	padding: 6px 0;
}




#sidebar_minicart {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	background: #fff;
	z-index: 10000;
	padding: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

#sidebar_minicart.open {
	transform: translateX(0);
	box-shadow: -2px 0 60px rgba(0, 0, 0, 0.5);
}

#sidebar_minicart #cart-close {
	padding: 0;
	width: 26px;
	height: 26px;
	color:black;
	background: transparent;
	border:0;
	border-radius:0;
}
#sidebar_minicart #cart-close::before,
#sidebar_minicart #cart-close::after {
	content: '';
	display: block;
	width: 100%;
	background: transparent;
	border-bottom: 2px solid var(--fpv-link-header);
	transition: all .3s ease;
}
#sidebar_minicart #cart-close::after {
	transform: rotate(-45deg) translate(1px, -3px);
	height: .45rem;
}
#sidebar_minicart #cart-close::before {
	transform: rotate(45deg) translate(4px, 3px);
	height: .3rem;
}


#sidebar_minicart .widget_shopping_cart_header {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #dedede;
}

#sidebar_minicart ul.cart_list li {
	display: flex;
	border-bottom: 1px solid #dedede;
}

#sidebar_minicart ul.cart_list li .remove-column a.remove_from_cart_button {
	background-color: #333333;
	-webkit-mask-image: url('../images/remuvefromcart.svg');
	mask-image: url('../images/remuvefromcart.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: background-color 0.2s ease-in-out;

}
#sidebar_minicart ul.cart_list li .remove-column a.remove_from_cart_button:hover {
	background: transparent;
	background-color: #c00;
}

#sidebar_minicart ul.cart_list li img {
	width: 88px;
}
#sidebar_minicart ul.cart_list li .quantity {
	padding-left: 0;
	color: var(--fpv-color-main);
	font-size: .9em;
}

#sidebar_minicart .quantity-ajax-wrapper {
	display: flex;
	align-items: center;
	width: 100px;
	height: 28px;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}
#sidebar_minicart .quantity-ajax-wrapper button,
#sidebar_minicart .quantity-ajax-wrapper input {
	font-size: 14px;
	background: #fff;
	color: var(--fpv-color-main);
	text-align: center;
	border: none;
	border-radius: 0;
}
#sidebar_minicart .quantity-ajax-wrapper button {
	margin-top: -2px;
	padding: 0;
	width: 29px;
	height: 28px;
	color: #585858;
	font-size: 18px;
	font-weight: 700;
	transition: none;
}
#sidebar_minicart .quantity-ajax-wrapper input {
	padding: 4px;
	width: 40px;
	font-size: 14px;
	border: none;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	outline: none;
}

#sidebar_minicart .quantity-ajax-wrapper.loading button.loading-plus,
#sidebar_minicart .quantity-ajax-wrapper.loading button.loading-minus {
	color:#fff;
	border-radius: 100%;
	background-image: url(../images/spinner.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
	animation: spin 2s linear infinite;
}


#sidebar_minicart .widget_shopping_cart_content {
	overflow-y: auto;
	position: absolute;
	width: 100%;
	height: calc(100vh - 80px - 234px);
}



.wa-compliance-fields {
	margin: 0 0 10px 0;
	padding: 12px;
	line-height: 1.35;
	font-size: 14px;
	border: 1px solid #dedede;
	border-radius: 10px;
}
.wa-compliance-fields label {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}
.wa-compliance-fields label[for="industry-select"] {
	margin-bottom: 0;
	font-weight: 700;
}
.wa-compliance-fields select {
	margin-top: 6px;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.widget-area .wa-compliance-fields a {
	color: #0000EE;
	text-decoration: underline;
	font-weight: 600;
}
.widget-area .wa-compliance-fields a:hover {
	color: #0000EE;
}
.wa-compliance-fields .field-error-message {
	margin-top: -8px;
	display:none;
	color:#b00020;
	font-size:12px;
	font-weight: 600;
}



#sidebar_minicart .buttons {
	position: fixed;
	bottom: 0;
	margin: 0;
	padding: 1rem;
	width: 100%;
	background: #f6f6f7;
	border-top: 1px solid #dedede;


}
#sidebar_minicart .buttons a.wc-forward {
	display: none;
}
#sidebar_minicart .buttons a.checkout.wc-forward {
	display: block;
	text-align: center;
	background: #868e92;
	border-radius: 0;
}
#sidebar_minicart .buttons a.checkout.wc-forward.minicart-valid {
	background: #062C3D;
}



.wa-product-accordion-wrapper {
	margin-bottom: 1rem;
	padding:1rem;
	border-radius: 10px;
	box-shadow: 0 0 1px 1px #000f1e03,0 2px 7px #000f1e08,0 1px 3px #000f1e03;
}


.wa-product-accordion-item {
	border-bottom: 1px solid #dedede;
}

.wa-accordion-header {
	display: flex;
	justify-content: flex-start;
	gap: 12px;
	align-items: center;
	padding: 16px 0;
	width: 100%;
	text-align: left;
	color: var(--fpv-color-main);
	font-size: 16px;
	font-weight: 500;
	background: #fff;
	border: none;
	border-radius: 0;
	cursor: pointer;
}

.wa-accordion-header:hover,
.wa-accordion-header:focus,
.wa-accordion-header:active {
	color: var(--fpv-color-main);
	background: #fff;
	box-shadow: none;
}

.wa-accordion-header::before {
	content: ' ';
	width: 20px;
	height: 20px;
	font-size: 20px;
	flex-shrink: 0;
	background: url(../images/icon-checkbox.svg) no-repeat center;
	background-size: cover;
}

.wa-accordion-header::after {
	content: ' ';
	margin-left: auto;
	width: 16px;
	height: 16px;
	font-size: 20px;

	transition: transform 0.3s ease;
	flex-shrink: 0;
	background: url(../images/icon-caret.svg) no-repeat center;
}

.wa-accordion-header.is-open::after {
	transform: rotate(180deg);
}

.wa-accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.wa-accordion-content {
	padding-bottom: 16px;
	color: #555;
}

.wa-accordion-link {
	text-align: center;
}


.custom-iconsline-summary span.iconsline {
	margin-right: 6px;
	width: 20px;
	height: 20px;
	display: inline-block;
	background-color: #41ba7d;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.custom-iconsline-summary span.iconsline.verified {
	-webkit-mask-image: url('../images/icon-checkbox-circle.svg');
	mask-image: url('../images/icon-checkbox-circle.svg');
}
.custom-iconsline-summary span.iconsline.ships-today {
	-webkit-mask-image: url('../images/icon-flash.svg');
	mask-image: url('../images/icon-flash.svg');
}
.custom-iconsline-summary span.iconsline.guaranteed {
	-webkit-mask-image: url('../images/icon-shield.svg');
	mask-image: url('../images/icon-shield.svg');
}


.wa-custom-variations-wrapper {
	display: flex;
	gap: 8%;
	margin: 20px 0;
	padding: 20px 0;
	width: 100%;
	border-top: 1px solid #dedede;
}

.wa-variation-btn-card {
	flex: 0 0 46%;
}

.wa-variation-title,
.woocommerce div.product .wa-variation-title span.price {
	font-size: 1.4rem;
}

.woocommerce div.product div.summary .wa-custom-variations-wrapper p {
	margin: 1rem 0;
}

.wa-variation-desc {
	color: #e03131;
	font-size: 1.3rem;
}
.woocommerce div.product .wa-variation-stock .stock {
	color: #1b872e;
	font-size: 1.3rem;
	font-weight: 600;
}

.wa-vial-variation-action {
	margin-top: 1.5rem;
}

.cgpshop.woocommerce div.product form.cart div.quantity {
	float: none;
	margin-right: 0;
}

.woocommerce .wa-vial-variation-action .quantity .qty.custom-qty-dropdown,
.cgpshop.woocommerce .quantity .qty.custom-qty-dropdown {
	margin-bottom: 1rem;
	padding: 0 1rem;
	width: 100%;
	text-align: left;
	border: 1px #000 solid;
	border-radius: 14px;
}

.woocommerce .wa-vial-variation-action a.button.alt,
.cgpshop.woocommerce div.product form.cart .button {
	display: inline-block;
	padding: 7px;
	width: 100%;
	color: #000;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	background-color: #ffdb3e;
	border-radius: 20px;

}
.woocommerce .wa-vial-variation-action a.button.alt:hover,
.cgpshop.woocommerce div.product form.cart .button:hover {
	color: #000;
	background-color: #ffd313;
}
.cgpshop.woocommerce div.product form.cart .button {
	height: 42px;
	line-height: 1.6;
}
.wa-ajax-add-to-cart.added:after,
.wa-ajax-add-to-cart-simple.added:after,
.woocommerce .cgp-productlist-wrapper ul.products li.product a.add_to_cart_button.added::after {
	content:' ';
	display: inline-block;
	margin-left: 5px;
	width: 16px;
	height: 21px;
	background: url(../images/added-checkbox.svg) no-repeat bottom;
}




/*product single*/
.custom-weaccept-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #dedede;
}
.custom-weaccept-summary span {
	min-width: 56px;
	height: 30px;
	border: 1px #dedede solid;
	border-radius: 4px;
}
.custom-weaccept-summary span.weaccept-title {
	color: #505d73;
	font-size: 16px;
	border: 0;
}
.custom-weaccept-summary span.weaccept-text {
	padding: 0 10px;
	line-height: 28px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}
.custom-weaccept-summary span.weaccept-icon {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}


.custom-claims-wrapper {
	display: flex;
	gap: 10px;
}

.custom-claims-wrapper span.claims-icon {
	margin-top: 4px;
	width: 24px;
	height: 24px;
	display: inline-block;
	background-color: #e03131;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.custom-claims-wrapper .claim-title {
	font-weight: 600;
}
.custom-claims-wrapper .claim-description {
	font-size: 16px;
	color: #505d73;
}
.custom-claims-wrapper .claim-description a {
	color: #c92a2a;
	font-weight: 600;
}
.woocommerce div.product div.summary .claim-description p {
	margin: 0 0 .5em 0;
}

.cgpshop .custom-tablist-wrapper {
	position: relative;
	z-index: 998;
}

.custom-tablist-wrapper {
	margin-bottom: 1rem;
	background: linear-gradient(8deg, rgba(6, 44, 61, 1) 14%, rgba(7, 75, 124, 1) 85%);
}

.custom-tablist-wrapper > .site-container {
	text-align: center;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: inline-flex;
	gap: 6px;
	justify-content: center;
	margin: 0 auto;
	padding: 3px;
	border-radius: 40px;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom:0;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	background: transparent;
	border: 0;
	border-radius: 40px;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-weight: 400;
	opacity: .9;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: #000;
}

.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	background: rgba(17,34,51, 0.7);
	border-radius: 40px;
}


.wa-product-faq-wrapper details {
	border-bottom: 1px solid #dedede;
}


.wa-product-faq-wrapper summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	list-style: none;
	color: #074b7c;
	font-weight: 600;
	cursor: pointer;
}
.wa-product-faq-wrapper summary::-webkit-details-marker {
	display: none;/*bug of safari*/
}
.wa-product-faq-wrapper summary::after {
	content: '+';
}
.wa-product-faq-wrapper details[open] summary::after {
	content: '-';
}



.wa-product-coa-wrapper {
	display: flex;
}

.wa-product-coa-items {
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 0 1px 1px #000f1e03,0 2px 7px #000f1e08,0 1px 3px #000f1e03;
}




/*product card*/
.cgpshop.woocommerce ul.products li.product a img,
.cgpshop.woocommerce div.product div.images .flex-control-thumbs li img {
	background: linear-gradient(180deg, rgba(0, 93, 127, 0.13) 1%, rgba(255, 255, 255, 1) 75%);
}




/*coa card*/
article.excerpt-coa {
	padding: 0;
}
article.excerpt-coa .file-download-wrapper {
	display: flex;
	justify-content: space-between;
	margin: 1rem auto;
}
article.excerpt-coa a.coa-product-details {
	width: 100%;
	text-align: center;
}
article.excerpt-coa a.coa-product-details::before {
	content: ' ';
	display: inline-block;
	position: absolute;
	margin-top: 4px;
	margin-left: -26px;
	width: 20px;
	height: 20px;
	background: #fff;
	-webkit-mask-image: url('../images/icon-link.svg');
	mask-image: url('../images/icon-link.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}





/*custom gutenblocks*/
.cgp-productlist-wrapper a.add_to_cart_button::after {
	content: ' ';
	display: inline-block;
	margin-left: .5em;
	width: 14px;
	height: 14px;
	background: url(../images/icon-arrow-right.svg) no-repeat bottom;
	background-size: cover;
}
.subs-hero-button a.button::after {
	-webkit-mask-image: url(../images/icon-arrow-right.svg);
	mask-image: url(../images/icon-arrow-right.svg);
}
.cgp-subs-hero.subs-hero-inline .subs-hero-info::before {
	-webkit-mask-image: url(../images/icon-solid-shield.svg);
	mask-image: url(../images/icon-solid-shield.svg);
}
.cgp-section-hero-col-1 {
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-size: 70%;
	background-position: center 40px;
}





/*contact form*/
.cgpshop .wpcf7-form-control-wrap input[type="text"],
.cgpshop .wpcf7-form-control-wrap input[type="email"],
.cgpshop .wpcf7-form-control-wrap input[type="tel"] {
	width: 100%;
}

.cgpshop input[type="submit"].wpcf7-submit {
	background: var(--cgp-color-fiolet);
	border-radius: 8px;
}





#wa_sticky_buy_bar {
	position: fixed;
	bottom: 0px;
	left: 0;
	z-index: 997;
	width: 100%;
}

#wa_sticky_buy_bar .sticky-buy-bar-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: fit-content;
	color: #fff;
	background: linear-gradient(8deg, rgba(6, 44, 61, 1) 14%, rgba(7, 75, 124, 1) 85%);
	border-radius: 12px;
	transition: all .3s ease;
}

#wa_sticky_buy_bar .sticky-buy-bar-wrapper.visible {
	opacity: 1;
	visibility: visible;
}
#wa_sticky_buy_bar .sticky-buy-bar-wrapper .wa-ajax-add-to-cart-simple {
	color: #062c3d;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	background: #fff;
	border-radius: 12px;
}



.site-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.site-overlay.active {
	opacity: 1;
	pointer-events: auto;
}






@media (min-width: 769px) {

	#header.header-sticky .navbar-brand img {
	width: 90px;
	}
	#sidebar_minicart {
	width: 440px;
	}
	.logged-in.admin-bar #sidebar_minicart {
	padding-top: 32px;
	}
	#sidebar_minicart .widget_shopping_cart_header {
	padding: 1rem 1.75rem;
	}
	.logged-in.admin-bar #sidebar_minicart .widget_shopping_cart_content {
	height: calc(100vh - 80px - 266px);
	}
	#sidebar_minicart ul.cart_list li {
	padding: 1.75rem;
	}
	#sidebar_minicart ul.cart_list li .image-column {
	flex-basis: 30%;
	}
	#sidebar_minicart ul.cart_list li .info-column {
	flex-basis: 65%;
	}
	#sidebar_minicart ul.cart_list li .remove-column {
	flex-basis: 5%;
	}
	#sidebar_minicart .woocommerce-mini-cart__empty-message {
	padding: 1.75rem;
	}

	.wa-product-accordion-wrapper {
	width: 48%;
	}

	.cgpshop.woocommerce div.product form.cart div.quantity,
	.cgpshop.woocommerce div.product form.cart .button {
	width: 275px;
	}

	.custom-tablist-wrapper {
	padding: 1.5rem 0;
	}
	.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs {
	background: rgba(33, 71, 109, 0.7);
	}
	.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: 100%;
	}

	.wa-product-coa-wrapper {
	gap:4%;
	}
	.wa-product-coa-description,
	.wa-product-coa-items {
	flex:0 0 48%;
	}

	#wa_sticky_buy_bar .sticky-buy-bar-wrapper {
	gap: 3rem;
	margin: 1rem auto;
	padding: .5rem 1.2rem;
	min-width: 320px;
	}
	.sticky-buy-bar-title {
	font-weight: 700;
	}

	article.excerpt-coa.loop-entry .entry-content-wrap {
	padding: 1.5rem;
	}

}



@media (max-width: 768px) {
	#header.header-sticky .navbar-brand img {
	width: 60px;
	}
	#sidebar_minicart {
	width: 84%;
	}
	.logged-in.admin-bar #sidebar_minicart {
	padding-top: 46px;
	}
	#sidebar_minicart .widget_shopping_cart_header {
	padding: 1rem;
	}
	#sidebar_minicart .widget_shopping_cart_content {
	height: calc(100vh - 80px - 250px);
	}
	.logged-in.admin-bar #sidebar_minicart .widget_shopping_cart_content {
	height: calc(100vh - 80px - 296px);
	}
	#sidebar_minicart ul.cart_list li {
	padding: 1rem;
	}
	#sidebar_minicart ul.cart_list li .image-column {
	flex-basis: 40%;
	}
	#sidebar_minicart ul.cart_list li .info-column {
	flex-basis: 55%;
	}
	#sidebar_minicart ul.cart_list li .remove-column {
	flex-basis: 5%;
	}
	#sidebar_minicart .woocommerce-mini-cart__empty-message {
	padding: 1rem;
	}
	#sidebar_minicart .wa-compliance-fields {
	padding: 10px;
	}
	#sidebar_minicart .wa-compliance-fields label {
	gap: 6px;
	}

	.wa-product-accordion-wrapper {
	width: 100%;
	}
	.cgpshop.woocommerce div.product form.cart div.quantity,
	.cgpshop.woocommerce div.product form.cart .button {
	width: 100%;
	}

	.custom-tablist-wrapper {
	padding: 1rem 0;
	}
	.cgpshop.woocommerce div.product .woocommerce-tabs ul.tabs {
	background: rgba(24, 81, 138, 0.9);
	}

	.wa-product-coa-wrapper {
	gap:0;
	flex-wrap: wrap;
	}
	.wa-product-coa-description,
	.wa-product-coa-items {
	flex:0 0 100%;
	}

	#wa_sticky_buy_bar .sticky-buy-bar-wrapper {
	gap: .8rem;
	margin: .5rem auto;
	padding: .5rem .8rem;
	width: calc(100% - 48px);
	}
	.sticky-buy-bar-title {
	line-height: 1.2;
	font-weight: 600;
	font-size: 16px;
	}
	#wa_sticky_buy_bar .sticky-buy-bar-wrapper .wa-ajax-add-to-cart-simple {
	padding: 0 .7em;
	font-weight: 600;
	text-transform: none;
	}
	#wa_sticky_buy_bar .sticky-buy-bar-wrapper .wa-ajax-add-to-cart-simple.added::after {
	margin-left: 0;
	}

	article.excerpt-coa.loop-entry .entry-content-wrap {
	padding: 1rem;
	}
	article.excerpt-coa a.button {
	padding: .4em .8em;
	font-size: 1rem;
	}


}


@keyframes spin {
	100%{transform:rotate(360deg)}
}