/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme via Freshy
Author: Freshy
Author URI: https://freshysites.com/
Template: Divi
Version: 4.2.0
*/
/* Add your own styles at the bottom */

/* -- COLORS -- */

.white, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.black, 
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary, 
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary, 
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary, 
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase, 
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase, 
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize, 
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none, 
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold, 
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal, 
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- TEMPLATE -- */



/* -- END TEMPLATE -- */


/* -- HEADER -- */

/* helps logo to not be pixelated when scaled down */
#logo {
	transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before,
#et-boc header .mobile_nav.opened .mobile_menu_bar::before {
	content: '\4d';
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu .menu-item-has-children .menu-item-has-children > a:first-child::after, 
#et-secondary-nav .menu-item-has-children .menu-item-has-children > a:first-child::after,
#et-boc header .menu-item-has-children  .menu-item-has-children > a:first-child::after {
	content: '5';	
}

/* if parent link of child menu is a deadlink, then make it not clickable */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a[href="#0"],
#et-boc header .et_mobile_menu .menu-item-has-children > a[href="#0"] { 
	pointer-events: none;
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children,
#et-boc header .et_mobile_menu .menu-item-has-children {
	position: relative;	
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle,
#et-boc header .et_mobile_menu .sub-menu-toggle {
	position: absolute;
	background-color: rgba(0,0,0,0.03);
	z-index: 1;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	top: 4px;
	right: 4px;
	cursor: pointer;
	text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped,
#et-boc header .et_mobile_menu .sub-menu-toggle.popped {
	background-color: rgba(0,0,0,0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before,
#et-boc header .et_mobile_menu .sub-menu-toggle::before {
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 36px;
	font-size: 24px;
	text-transform: none;
	speak: none;
	content: '\33';
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before,
#et-boc header .et_mobile_menu .sub-menu-toggle.popped::before {
	content: '\32';
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu,
#et-boc header .et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
	display: none !important;
	padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu,
#et-boc header .et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
	display: block !important;
	background-color: rgba(0,0,0,0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li,
#et-boc header .et_mobile_menu li li {
	padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a,
#et-boc header .et_mobile_menu li a {
	padding-left: 20px;
	padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a,
#et-boc header .et_mobile_menu li li a {
	padding-left: 40px;
	padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a,
#et-boc header .et_mobile_menu li li li a {
	padding-left: 60px;
	padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a,
#et-boc header .et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
	padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a,
#et-boc header .et_mobile_menu .menu-item-has-children > a {
	background-color: transparent;
	font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a,
#et-boc header .et_mobile_menu li.current-menu-item > a {
	font-weight: bolder;
}

/* -- END HEADER -- */


/* -- FOOTER -- */

/* - Bottom Bar - */

/* if the bottom bar has equal column height setting, then make it always be flex, and stack the columns initially (for mobile use)
* and make the columns vertical aligned to be vertically centered too */
#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
	display: flex;
	align-items: center;
}

/* copyright wrapper */
#freshy_copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	font-size: 13px;
	line-height: 1.25em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	background: rgba(255,255,255,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

/* add an FS logo via background */
#freshy_copyright a.copyright_fs {
	display: block;
	width: 68px;
	height: 20px;
	background-image: url("/wp-content/uploads/freshy_logo_WHITE.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
	margin: 4px 0 0 0;
	flex-shrink: 0;
	transition: all 0.4s ease-in-out;
}
/* FS logo link hover */
#freshy_copyright a.copyright_fs:hover {
	opacity: 0.8;
}

/* remove the bottom margin that Divi adds to the social media follow icons */
#fs-footer-bottom-bar .et_pb_social_media_follow li {
	margin-bottom: 0;
}

@media (min-width: 600px) {
	/* make the copyright elements be side by side at wider screens */
	#freshy_copyright {
		flex-direction: row;
	}
	/* change horizontal pipe divider to vertical on wider screens */
	#freshy_copyright span.copyright_via {
		width: 1px;
		height: 20px;
		margin: 0 10px;
	}
}

@media (max-width: 980px) {
	/* make sure the row has columns going side by side instead of stacked */
	#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
		flex-direction: column;
	}
	/* when stacked, adjust the gap between stacked columns */
	#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns > .et_pb_column {
		margin-bottom: 1rem;
	}
	/* swap the order of columns when stacked, to the first column is the last one 
	* and give no bottom margin to the first column, since we re-ordered it to the bottom */
	#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns > .et_pb_column:first-child {
		order: 1;
		margin-bottom: 0;
	}
	/* center the copyright stuff when columns are stacked */
	#freshy_copyright {
		justify-content: center;
	}
	/* remove left margin on first social icon in regular Divi footer (when not using Theme Builder) when stacked */
	#footer-bottom .et-social-icons li:first-child {
		margin-left: 0;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
	margin: 0;
	padding: 0 !important;
	list-style: none;
}

.checklist ul li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
		padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;	
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@media (min-width: 981px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;	
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		column-count: 3;
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;	
	}
	.checklist-columns-4-alt ul {
		column-count: 4;
	}
}

.checklist ul li::before {
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 36px;
	font-size: 24px;
	text-transform: none;
	speak: none;
	content: '\4e';
	width: 20px;
	margin: 0;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #32a709;
	/* set font size helps make icon sharper */
	font-size: 22px;
	font-weight: normal;
}
.pluslist ul li::before {
	content: '\e050';
}
.externallist ul li::before {
	content: '\e906';	
}

/* -- END CHECKLIST -- */


/* -- DIVI HACKS -- */

/* make parallax image be centered at the start */
.et_parallax_bg {
	background-position: center center;	
}

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type,
p:not(.has-background):last-of-type {
	padding-bottom: 1em;
}
p:last-child,
p:not(.has-background):last-child {
	padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
	padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */


/* -- PASSWORD PROTECTED -- */

/* set a max width to make it only as wide as most content */
.post-password-required .et_password_protected_form {
	width: 80%;
	margin: 10% auto;
	max-width: 1140px;
}

/* give the input a border */
.post-password-required .et_password_protected_form p input {
	border: 1px solid !important;
}

/* remove the arrow on hover of the submit button */
.post-password-required .et_password_protected_form .et_submit_button::after {
	display: none;
}

/* -- END PASSWORD PROTECTED -- */


/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
	transform: scale(-1,-1);
}

/* -- END TESTIMONIALS PLUGIN -- */


/* -- GRAVITY FORMS -- */

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
	font-size: 1.2rem;
	line-height: 1.5em;
	padding: 2rem;
	background: rgba(90, 90, 90, 0.1);
	text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth 
(NOTE: the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
	padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth 
(NOTE: the ROW module settings needs to be Gutter Width 1, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
	padding: 0;	
}
.fullwidth-row.et_pb_section .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
	padding: 50px 10%;
}
@media (min-width: 767px) {
	.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
		padding: 80px 6%;
	}
}
/* for some reason Divi removes bottom margin from modules if in column with no gutters, 
so we need to add margins back */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
	margin-bottom: 30px;
}
@media (min-width: 981px) {
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
		margin-bottom: 4.242%;
	}
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
		margin-bottom: 9.27%;
	}	
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
	margin-bottom: 3px;
}

@media (max-width: 980px) {
	/* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
	.stacked-flex {
		display: flex;
		flex-wrap: wrap; 
	}
	/* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
	.stacked-order-negative-4 {
		order: -4;
	}
	.stacked-order-negative-3 {
		order: -3;
	}
	.stacked-order-negative-2 {
		order: -2;
	}
	.stacked-order-negative-1 {
		order: -1;
	}
	.stacked-order-1 {
		order: 1;
	}
	.stacked-order-2 {
		order: 2;
	}
	.stacked-order-3 {
		order: 3;
	}
	.stacked-order-4 {
		order: 4;
	}
	/* adds margin to former "last" column that otherwise wouldn't have it */
	.stacked-flex:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}
}

/* -- END HELPERS -- */

/* -- BLOG -- */

/* sidebar recent posts */
.et_pb_widget.widget_recent_entries ul li  {
	margin-bottom: 1em;
}

/* sidebar recent posts dates */
.et_pb_widget.widget_recent_entries ul li span.post-date {
	display: table;
	font-size: 0.85em;
}

/* -- END BLOG -- */
/*CUSTOM*/
/* — RECAPTCHA BADGE — */
.grecaptcha-badge {
	width: 70px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	left: 4px !important;
	z-index: 9;
}
.grecaptcha-badge:hover {
	width: 256px !important;
}
body .grecaptcha-badge {
	visibility: initial !important;
}
#page-container{
	overflow:hidden;
}
.mp-vertical-align { 
	display: flex; 
	flex-direction: column; 
	justify-content: center;
}
.mp-vertical-align-bottom{ 
	display: flex; 
	flex-direction: column; 
	justify-content: flex-end;
}
.align-bottom{
	display: flex;
	flex-direction: column;
}
.inline-items{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}
.inline-items-left{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
}
.inline-items .item-end{
	margin-left:auto;
}

/*--arrow change on menu on hover --*/
#top-menu .menu-item-has-children.et-show-dropdown>a:first-child:after, .et-menu .menu-item-has-children.et-show-dropdown>a:first-child:after {
	content: "\42"!important;
	-webkit-transition: all .35s;
	transition: all .35s;
}
#top-menu .menu-item-has-children>a:first-child:after, #et-secondary-nav .menu-item-has-children>a:first-child:after {
	content: "\43";
	color:#E1251B;
}
.et-db #et-boc .et-l .nav li ul {
	min-width:250px;
	border: 1px solid #e7e7e7;
}
.et-db #et-boc .et-l .main-nav-section .menu-left li li>a, .main-nav-section .menu-right li li>a{
	font-weight:300 !important;
	font-size: 16px !important;
}
.et-db #et-boc .et-l .et-menu .menu-item-has-children>a:first-child:after{
	display:none;
}
.et-db #et-boc .et-l .et-menu .menu-item-has-children>a:first-child {
	padding-right: 0;
}
.et-db #et-boc .et-l .et_pb_menu .et-menu-nav>ul ul {
	padding: 0;
}
.et-db #et-boc .et-l .nav li li {
	padding: 0;
}
.et-db #et-boc .et-l ul.sub-menu li a {
	padding: 5px 10px !important;
}
/*autowidth submenu*/
/*set the Divi menu dropdown auto width*/
@media only screen and (min-width: 981px) {
	.nav li ul {
		width: fit-content;
		display: flex;
		flex-direction: column;
		min-width:250px;
		border: 1px solid #e7e7e7;
	}

	.nav li li {
		white-space: nowrap;
	}

	.nav li li a {
		width: auto !important;
	}
}
/*-- Desktop Menu --*/
.et-db #et-boc .et-l .top-menu-row .et_pb_column{
	display: flex;
	padding: 5px 5px;
	align-items: center;
	justify-content: space-between;
	flex-direction:row;
} 
.et-db #et-boc .et-l .custom-search form:before {
	display: inline-block;
	font-family: ETmodules !important;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\55";
	position: absolute;
	top: 12px !important;
	left: 18px !important;
	color: #999c9e !important;
	font-weight: 600;
	transform: scaleX(-1) !important;
}
.et-db #et-boc .et-l input[type="search"],  .et-db #et-boc .et-l .input-text,  .et-db #et-boc .et-l input.et_pb_s {
	border: 1px solid #CCCCCC !important;
	background: none;
	color: #1C75BC;
	border-radius: 0px !important;
	height: 49px !important;
	font-size: 16px !important;
}
.et-db #et-boc .et-l .custom-search .et_pb_widget{
	margin:0 !important;
}
.et-db #et-boc .et-l .custom-search .et_pb_widget.widget_search{
	width:100% !important;
}
.et-db #et-boc .et-l .custom-search .widget_search .wp-block-search__input{	
	padding-top: 0.715em !important;
	padding-right: 0.715em !important;
	padding-bottom: 0.715em !important;
	padding-left: 2.62em !important;
	font-weight:400;
	color: #2b2c30;
	font-family: 'Source Sans Pro', Helvetica, Arial, Lucida, sans-serif;
}
#et-boc .et-l .custom-search .widget_search .input-text:focus, input[type=email]:focus, #et-boc .et-l .custom-search .widget_search input[type=password]:focus, #et-boc .et-l .custom-search .widget_search input[type=search]:focus, #et-boc .et-l .custom-search .widget_search input[type=text]:focus, #et-boc .et-l .custom-search .widget_search input[type=url]:focus, #et-boc .et-l .custom-search .widget_search textarea:focus {
	background-color: #e6e5e5;
	color: #2b2c30;
}
.et-db #et-boc .et-l .phone-cta {
	text-align: center;
	width: 167px;
}
#et-boc .et-l .weglot-switch .et_pb_code_inner{
	width:92px;
	padding:7px;
	text-align:center;
}
.et-db #et-boc .et-l .top-menu-log .et_pb_menu__wrap {
	width: 151px;
}
.et-db #et-boc .et-l .login-button{
	width: 85px;
	text-align: center;
	margin-left: 0;
	margin-right: 0px;
	position: relative;
	justify-content:center;
}
.et-db #et-boc .et-l .login-button.account{
	width: auto;
	font-weight:400;
}
.et-db #et-boc .et-l .login-button.account:hover a{
	text-decoration:none;
}
.et-db #et-boc .et-l .login-button.account.menu-item-has-children>a:first-child:after{
	display:none;
}
.et-db #et-boc .et-l .login-button.account.menu-item-has-children>a{
	padding-right:0 !important;
}
.et-db #et-boc .et-l .login-button>a {
	padding-bottom: 6px;
	padding-top: 6px;
}
.et-db #et-boc .et-l .login-button:after {
	content: '' !important;
	height: 100%;
	width: 1px;
	background-color: black;
	position: absolute;
	right: 0px;
}
.et-db #et-boc .et-l span.et_pb_menu__cart-count {
	position: absolute;
	top: -1px;
	right: 11px;
	background-color: #1f75bc;
	color: white;
	padding: 2px;
	line-height: 14px;
	border-radius: 100px;
	font-size: 12px;
	min-width: 17px;
	text-align: center;
}
#et-boc .et-l .et_pb_menu__cart-button{
	max-width: 56px !important;
	margin-right:auto !important;
}
#et-boc .et-l a.et_pb_menu__icon{
	margin: 0 0 0 11px !important;
}
#et-boc .et-l .et_pb_menu__cart-button:after {
	content: "" !important;
	background: url(/wp-content/uploads/cart-icon.svg);
	background-size:contain;
	background-position: 70% 50% !important;
	background-repeat:no-repeat;
	width: 56px;
	height: 20px;
	margin-bottom: -6px;
}
.announcement-text .et_pb_text_inner p{
	display:none !important;
	padding-bottom:0 !important;
}
.anouncment-section {
	font-size: 16px;
}
b, strong {
	font-weight: 600;
}
a:not(.et_pb_button):focus, a:not(.et_pb_button):hover {
	text-decoration: underline;
}
a:not(.et_pb_button):focus{
	outline-offset: -2px;
}
#et-boc .et-l .et_pb_sticky.et_pb_sticky--top .hide-scroll{
	display:none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#et-boc .et-l .main-nav-section .menu-left li>a, .main-nav-section .menu-right li>a{
	font-weight:400 !important;
}
#et-boc .et-l .main-nav-section .menu-left li>a:hover, .main-nav-section .menu-right li>a:hover{
	text-decoration:none;
}
#et-boc .et-l .et_pb_menu ul li a:focus{
	text-decoration:none;
}
@media only screen and (min-width:981px){
	#et-boc .et-l .main-nav-section {
		display: flex;
		justify-content: space-between;
		padding: 0px 0px;
		width: 100%;
	}
}
@media only screen and (max-width:1100px) and (min-width:981px){
	#et-boc .et-l .main-nav-section .et_pb_menu ul li a {
		font-size: 18px !important;
	}
	#et-boc .et-l .main-nav-section .et_pb_menu .et-menu>li {
		padding-left: 6px;
		padding-right: 6px;
	}
}
/*-- mobile menu --*/
#et-boc .et-l .top-menu-log.et_pb_menu .et_mobile_nav_menu {
	display: none;
}
#et-boc .et-l .top-menu-log.et_pb_menu .et_pb_menu__menu,  #et-boc .et-l .top-menu-log.et_pb_menu .et_pb_menu__menu>nav,  #et-boc .et-l .top-menu-log.et_pb_menu .et_pb_menu__menu>nav>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media only screen and (max-width:980px){
	#et-boc header .container {
		width: 90%;
		display: flex;
		flex-direction: row;
		align-items: end;
		justify-content: center;
	}
	#et-boc .et-l .top-menu-log .et_pb_menu__menu{
		display:none !important;
	}
	#et-boc .et-l .top-menu-log  {
		width: 56px;
		margin-left: 0 !important;
	}
	#et-boc .et-l span.et_pb_menu__cart-count {
		top: -9px;
		right: 0;
	}
	#et-boc .et-l .et_pb_button_0_tb_header_wrapper{
		margin-left: 0;
	}
	#et-boc .et-l .et_pb_menu__cart-button:after {
		background-position: left center !important;
	}
	.et-db #et-boc .et-l span.et_pb_menu__cart-count {
		top: -8px;
	}
	.et_header_style_left .logo_container {
		position: relative;
	}
	.et_header_style_left #et-boc header #logo {
		max-width: 150px;
		width: 90%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#et-boc header .et_mobile_menu li, #et-boc header .et_mobile_menu li li {
		text-align: center;
	}
	#main-header #mobile_menu.et_mobile_menu li li a, #et-boc header .et_mobile_menu li li a {
		padding-left: 20px;
		padding-right: 20px;
	}
	#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a, #et-boc header .et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
		padding-right: 20px;
	}
	#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a, #et-boc header .et_mobile_menu li.current-menu-item > a {
		font-weight: 500;
	}
	.et_mobile_menu li a, .nav li li a {
		font-size: 18px;
	}
	.mobile_menu_bar:before {
		font-size: 50px;
	}
}
/*superfly*/
.nav-button:hover{
	text-decoration:none !important;
}
.nav-button:before {
	content: "a";
	font-size: 32px;
	position: relative;
	left: 0;
	top: 0;
	cursor: pointer;
	font-size: 50px;
	font-family: ETmodules !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 0 0;
	direction: ltr;
	color:#000;
}
@media only screen and (min-width:981px){
	.superfly-on .sfm-rollback,a#slideout_menu_pss  {
		display: none;
	}
	a#slideout_menu_pss {
		top: 0;
		margin: 0;
		margin-right: 10px;
	}
}
@media (max-width: 980px) {
	a#slideout_menu_pss {
		display: block;
	}
}


/*-- scroll up --*/
.et_pb_scroll_top.et-pb-icon:hover {
	background: #001f60;
	border:2px solid #001f60;
	color:#fff;
}
.et_pb_scroll_top.et-pb-icon {
	background: #5394BC;
	bottom: 100px;
	right: 10px;
	border-radius:50%;
	font-size: 20px;
	padding: 10px;
	color:#fff;
	border:2px solid #5394BC;
}
@media only screen and (min-width:981px){
	span.et_pb_scroll_top.et-pb-icon.et-visible, span.et_pb_scroll_top.et-pb-icon.et-hidden{
		display:none !important;
	}
}
@media only screen and (max-width:760px){
	.et_pb_scroll_top.et-pb-icon {
		font-size:20px;
		font-weight:bold;
		bottom: 90px;
		right: 12px;
	}
}
/*-- stack--*/
@media all and (max-width: 980px) {
	/*** wrap row in a flex box ***/
	.custom_row {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap; /* Safari 6.1+ */
		flex-wrap: wrap;
	}

	/*** custom classes that will designate the order of columns in the flex box row ***/
	.first-on-mobile {
		-webkit-order: 1;
		order: 1;
	}

	.second-on-mobile {
		-webkit-order: 2;
		order: 2;
	}

	.third-on-mobile {
		-webkit-order: 3;
		order: 3;
	}
	.fourth-on-mobile {
		-webkit-order: 3;
		order: 4;
	}
	/*** add margin to last column ***/
	.custom_row .et_pb_column:last-child{
		margin-bottom: 30px !important;
	}
	/*stack specialty section*/
	.et_section_specialty.reverse-columns-mobile .et_pb_row {
		display: flex;
		flex-direction: column-reverse !important;
	}
	.et_section_specialty.reverse-columns-mobile .et_pb_row>.et_pb_column.et-last-child, .et_section_specialty.reverse-columns-mobile .et_pb_row>.et_pb_column.et_pb_column_single {
		padding-bottom: 40px !important;
	}
}
/*Forms*/
/* placeholder Fields */
.ginput_container_text ::placeholder {color: #737678; font-weight:500;}

/* gform placeholders*/
.gform_wrapper .gform_fields .gfield input::-webkit-input-placeholder{
	color: #737678 !important; font-weight:500;
}
select::-webkit-input-placeholder {color: #737678 !important;font-weight:500;}
select:-moz-placeholder { /* Firefox 18- */color: #737678 !important; font-weight:500; }
select::-moz-placeholder {  /* Firefox 19+ */color: #737678 !important;font-weight:500;  } 
select:-ms-input-placeholder {  color: #737678 !important; font-weight:500; }
::-webkit-input-placeholder { color:#737678 !important;font-weight:500; }
:-moz-placeholder { opacity: 1; color: #737678 !important;font-weight:500; } /* Firefox 18- */
::-moz-placeholder { opacity: 1; color: #737678 !important;font-weight:500; } /* firefox 19+ */
:-ms-input-placeholder { color: #737678 !important;font-weight:500; } /* ie */
input:-moz-placeholder { color: #737678 !important;font-weight:500; }

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	font-size: 16px;
	padding: 8px 0px !important;
	margin-bottom: 0;
	margin-top: 0;
	border-bottom: 0.5px solid #1f75bc !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	border-radius: 0 !important;
	background-color: white;
	box-shadow: none;
	height: 45px;
	box-shadow: none;
	color: #222;
	font-weight:500 !important;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
	width: auto !important;
}
.gform_wrapper.gravity-theme #field_6_39.gfield_html div, .gform_wrapper.gravity-theme #field_6_38.gfield_html div{
	font-weight:600 !important;
}
.gform_wrapper.gravity-theme .gfield_label {
	display: none !important;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text] {
	background-color: transparent;
	font-size:16px !important;
}
.gform_wrapper.gravity-theme .gfield textarea.large {
	height: 288px;
	border: 0.5px solid #1f75bc !important;
	margin-top: 30px;
	padding: 20px 30px !important;
}
body .gform_wrapper #field_submit input, body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_page_footer input.button, body div.form_saved_message div.form_saved_message_emailform form input[type=submit]{
	border: 0;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 12px 28px !important;
	text-decoration: none;
	text-shadow: none;
	font-weight: 400 !important;
	letter-spacing: 1px !important;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	font-family: 'SequelSans Heavy Disp', Helvetica, Arial, Lucida, sans-serif;
}

.gform_wrapper button, .gform_wrapper input[type=button]:hover, .gform_wrapper input[type=reset]:hover, body .gform_wrapper input[type=submit]:hover, .gform_wrapper.button:hover, .wc-block-grid__products:hover .wc-block-grid__product:hover .wp-block-button__link:hover, .added_to_cart:hover {
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
	color:#fff !important;
}
.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {
	margin-bottom: 8px;
	font-size: 20px !important;
	font-weight: 700 !important;
	border-radius: 6px;
}
.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
	width: 100%;
}
.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
	max-width: 100%;
}
/*buttons*/
body #page-container .et_pb_module .et_pb_button:not(.phone-cta), body #page-container .et_pb_module .et_pb_button_module_wrapper .et_pb_button:not(.phone-cta), body #page-container .et_pb_module .et_button_no_icon .et_pb_button:not(.phone-cta){
	padding: 10px 35px !important;
}
body #page-container .et_pb_module .grey-button.et_pb_button{
	padding: calc(.667em + 2px) calc(1.333em + 2px) !important;
	text-transform:capitalize !important;
}
body #page-container .et_pb_module .grey-button.et_pb_button:hover{
	text-decoration:underline;
	padding: calc(.667em + 2px) calc(1.333em + 2px) !important;
}
@media only screen and (max-width:580px){
	.fullwidth-button-mobile.et_pb_button{
		width:100% !important;
		text-align:center;
	}
}
/*Footer*/
.widget-wrapper {
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
	row-gap: 0;
	align-items: flex-start;
	box-sizing: border-box;
}

.widget-footer {
	flex: 0 1 25%;  /* do NOT grow, can shrink, basis 25% */
	max-width: 25%;
	box-sizing: border-box;
	margin: 0;
}
.widget-footer:last-child {
	flex: 0 1 33.333%;  /* do NOT grow, can shrink, basis 25% */
	max-width: 33.333%;
	box-sizing: border-box;
	margin: 0;
}
.widget-footer .et_pb_widget{
	width:100% !important;
	font-weight:400;
}
.widget-footer .et_pb_widget a:hover{
	color:#fff!important;
	text-decoration:none !important;
	opacity:0.6;
}
.widget-footer .et_pb_widget li{
	padding: 0px !important;
	padding-bottom: 16px !important;
	margin-bottom:0 !important;
}
.widget-footer .et_pb_widget .title{
	padding-bottom:15px !important;
}
@media only screen and (max-width:980px){
	.widget-footer {
		flex: 0 1 45%;  /* do NOT grow, can shrink, basis 25% */
		max-width: 45%;
		margin-bottom: 20px !important;
	}
	.widget-footer:last-child {
		flex: 0 1 100%;  /* do NOT grow, can shrink, basis 25% */
		max-width: 100%;
		box-sizing: border-box;
		margin: 0;
	}
}
@media only screen and (max-width:340px){
	.widget-footer {
		flex: 0 1 100%;  /* do NOT grow, can shrink, basis 25% */
		max-width: 100%;
		margin-bottom: 20px !important;
	}
	.widget-footer:last-child {
		flex: 0 1 100%;  /* do NOT grow, can shrink, basis 25% */
		max-width: 100%;
		box-sizing: border-box;
		margin: 0;
	}
}

@media (max-width: 767px) {
	.widget-footer .et_pb_widget li {
		padding-bottom: 7px !important;
	}
}
/*Typo colors*/
.accent-blue.bold strong{
	font-weight:700 !important;
}
.accent-blue strong{
	color:#2075BC;
	font-weight:inherit;
}

/* manufacturer pages */
.accent-blue h1 .blue {
	color:#2075BC;	
}

/*HOME*/

@media (min-width: 1201px) {
	.header-hero .hero-left {
		height: 553px;
		width: 44% !important;
	}
}
/*flex-row industries icons*/
@media only screen and (min-width:981px){
	.flex-row-container {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content:flex-start;
		grid-column-gap: 3%;
		grid-row-gap: 0px;
		align-items: center;
	}
	.flex-row-container .et_pb_blurb{
		flex-basis: 22.7%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom:20px !important;
	}
}
@media only screen and (max-width:980px){
	.flex-row-container {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content:center;
		grid-column-gap: 3%;
		grid-row-gap: 0px;
		align-items: flex-start;
	}
	.flex-row-container .et_pb_blurb{
		flex-basis: 47.7%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom:20px !important;
	}
}
.tile-blurbs .et_pb_main_blurb_image {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 0.5px solid #2075BC;
}
.tile-blurbs:hover img {
	transition: all 0.3s ease;
	opacity: 0.5 !important;
}
.title-no-space h1, .title-no-space h2{
	padding-bottom:0;
}
@media only screen and (max-width:980px){
	.tile-blurbs .et_pb_main_blurb_image, .tile-blurbs .et_pb_main_blurb_image img{
		width: 100%;
	}
}
.showcase img {
	transition: all 0.3s ease;
}
.showcase:hover img {
	transform: scale(1.1);
}
.grey-image img {
	width: 178px;
	transition: all 0.3s ease;
	filter: grayscale(100%);
	opacity: 0.5;
}
.grey-image:hover img {
	transition: all 0.3s ease;
	opacity: 1;
	filter: grayscale(0%);
}

.inline-logos{
	display:flex;
	flex-direction:row;
	justify-content:space-evenly;
	align-items:center;
}

@media only screen and (max-width:595px){
	.inline-logos{
		flex-wrap:wrap;
	}
	.inline-logos .et_pb_image{
		flex-basis: 30.7%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom:30px !important;
	}
}

/*faqs toggles*/
/* Wrapper for all FAQs */
.faq-wrapper {
	margin: 30px 0;
}

/* Each FAQ item */
.faq-item {
	margin-bottom: 15px;
}

/* Question Button */
.faq-question {
	width: 100%;
	padding: 15px 20px;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	text-align: left;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: 0px 0px 8px 5px rgb(0 0 0 / 7%);
	padding: 14px;
	position: relative;
	padding-left: 40px;
	font-weight:500;
	color:#43454b;
	background-color:transparent;
	line-height:1.6em;
}

.faq-question:hover {
	background: #e9e9e9;
}
.faq-question:before {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: 37%;
	left: 15px;
	background-image: url(/wp-content/uploads/plus-toggle.svg);
	background-size: cover;
}
/* Answer (Initially hidden) */
.faq-answer {
	display: none;
	padding: 15px 20px;
	background: #ffffff;
	border-top: 0 solid #ddd;
	font-size: 16px;
	line-height: 1.6;
	transition: all 0.3s ease;
}

/* Optional: Add a transition effect */
.faq-answer {
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.strong-400 strong{
	font-weight:400;
}
.icon-blurb .et_pb_blurb_container{
	padding:0 8%;
}
.transform-text h2{
	text-transform:none !important;
}

.contact-icons .et_pb_code_inner{
	display: flex;
	align-content: center;
	/* align-items: center; */
	align-items: baseline;
	margin-bottom: 30px;
	font-family: 'FiraSans Light', Helvetica, Arial, Lucida, sans-serif;
}
.contact-icons a {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	margin-right: 30px;
	font-family: 'FiraSans Light', Helvetica, Arial, Lucida, sans-serif;
}
small {
	font-size: 75%;
}

@media (max-width: 599px) {
	.contact-icons .et_pb_code_inner{
		display: block;
	}	
}

/*WOOCOMMERCE*/
.woocommerce-info, .woocommerce-noreviews, p.no-comments {
	background-color: #3d9cd2;
}
body #page-container .woocommerce a.button, .woocommerce-page a.button{
	padding:10px 23px !important;
	border-radius:0 !important;
}
.button, .wc-block-grid__products .wc-block-grid__product .wp-block-button__link, .added_to_cart {
	border: 0;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 12px 28px !important;
	text-decoration: none;
	font-weight: 600 !important;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
/*my account*/
body.logged-in .my-account-row .my-account-box{
	max-width:1100px;
	margin:auto;
	width:95%;
	border-left: 1px solid #ccd0d4;
	border-right: 1px solid #ccd0d4;
	background:#fff;
}
body.logged-in .my-account-section{
	background:#F1F1F1;
	width:100% !important;
}
nav.woocommerce-MyAccount-navigation ul {
	margin-left: 0;
	border-top: 1px solid rgba(0, 0, 0, .05);
}
nav.woocommerce-MyAccount-navigation ul li a {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: .875em 15px;
}
nav.woocommerce-MyAccount-navigation ul li {
	list-style: none;
	font-size: 18px;
	font-weight: 300;
	padding: 10px;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}
nav.woocommerce-MyAccount-navigation ul li:last-child{
	border-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a:before {
	display: inline-block;
	font-family: ETmodules !important;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0f6";
	line-height: 1.618;
	margin-left: 0.5407911001em;
	width: 1.41575em;
	text-align: right;
	float: right;
	opacity: .25;
	background-position:contain !important;
	background-repeat:no-repeat !important;
}
.woocommerce-MyAccount-navigation ul li:hover a:before {
	filter: brightness(0) invert(1);
	opacity:1;
}
.woocommerce-MyAccount-navigation ul li a:focus {
	color: #043959 !important;
	box-shadow: 0 0 0 2px #2271b1;
	outline: 2px solid transparent;
	text-decoration: none;
}
nav.woocommerce-MyAccount-navigation ul li:hover {
	background-color: #1f75bc;
	text-decoration: none;
}
nav.woocommerce-MyAccount-navigation ul li:hover a {
	color: #fff;
	text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a:before {
	opacity:1;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
	content: "";
	background:url(/wp-content/uploads/gauge-solid-1.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
	content: "";
	background:url(/wp-content/uploads/basket-shopping-solid.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
	content: "";
	background:url(/wp-content/uploads/house-chimney-solid.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
	content: "";
	background:url(/wp-content/uploads/credit-card-solid.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
	content: "";
	background:url(/wp-content/uploads/user-large-solid.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--tax-exemption a:before {
	content: "";
	background:url(/wp-content/uploads/file-lines-solid.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
	content: "";
	background:url(/wp-content/uploads/right-from-bracket-solid.svg);
}

button#create-cert{
	border: 0;
	border-radius: 0;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 10px 22px;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	line-height: 1.618;
}
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
	content: " ";
	display: table;
}
.woocommerce-MyAccount-content .woocommerce-Address hr {
	display:none;
}
.woocommerce-address-fields__field-wrapper {
	margin-bottom: 30px;
}
.woocommerce-address-fields input[submit], .woocommerce-page.et_pb_button_helper_class input.button {
	border: 0;
	border-radius: 0;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 10px 22px !important;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.woocommerce-address-fields input[type=submit]:hover,  .woocommerce-page.et_pb_button_helper_class input.button:hover {
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
	color:#fff !important;
}

.input-text:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=text]:focus, input[type=url]:focus, textarea:focus {
	background-color: #e6e5e5;
	color: #2b2c30;
}
.woocommerce-MyAccount-content p {
	margin-bottom:25px;
}
@media only screen and (min-width: 768px) {
	.col2-set.addresses {
		width: 100%;
		float: left;
		margin-left: 0;
		margin-right: 0;
	}
	.address.col-xs-12.col-md-3 {
		width: 50%;
		position: relative;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		float: left;
	}
	.u-column1.woocommerce-Address.col-xs-12.col-md-3 {
		width: 50%;
		margin-top: 3%;
		float: left;
		position: relative;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
	}
	.u-column2.woocommerce-Address.col-xs-12.col-md-3 {
		width: 50%;
		margin-top: 3%;
		float: left;
		position: relative;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
	}
	.addresses header.title a {
		float: right;
		display: block;
		width: 1em;
		height: 1em;
		text-indent: -9999px;
		position: relative;
		padding: 0.875em;
		margin-top: 0.6180469716em;
	}
	.addresses header.title a:before {
		display: inline-block;
		font: normal normal normal 14px / 1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f044";
		line-height: 1.618;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		text-align: center;
		text-indent: 0;
	}
}
/*popup*/
.create-col ul {
	list-style: disc;
	font-size: 16px;
	font-weight: lighter;
	line-height: 1.618;
}
a.register-button, .et_pb_newsletter_button.et_pb_button{
	height: 46px;
	width: 100%;
	text-align: center;
	border: 0;
	border-radius: 0 !important;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 0.6180469716em 1.41575em;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
a.register-button:hover,  .et_pb_newsletter_button.et_pb_button:hover{
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
	color: #fff !important;
}
form.lwa-form, form.lwa-remember, div.lwa-register form {
	position: relative;
}
.lwa-status {
	margin: 0px 0px 5px;
	padding: 10px 10px;
	color: #333;
	border-radius: 3px;
	display: none;
}
.lwa-form table {
	width: 100% !important;
	margin: 0px !important;
	border: none !important;
	border-spacing: 0;
	border-collapse: collapse;
}
.lwa-form tbody, .lwa-form .lwa-username, .lwa-form .lwa-password, .lwa-form .lwa-submit {
	display: flex;
	flex-direction: column;
}
.lwa td {
	padding-top: 7px;
	vertical-align: top;
	background-color: none;
}
.lwa td, .lwa th {
	padding: 0;
	border-spacing: 0;
	border: none !important;
}
.lwa-form input{
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	color: #43454b;
	line-height: 1.618;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
}
.lwa-form .lwa-submit {
	margin-top: 25px !important;
}
.lwa-submit-button #lwa_wp-submit {
	width: 100%;
}
.lwa-submit-button input[type=submit]{
	border: 0;
	border-radius: 0;
	background: none;
	background-color: #1f6cab;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 0.6180469716em 1.41575em;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	margin-bottom:15px;
}

.lwa-form .input-text, .lwa-form input[type=email], .lwa-form input[type=password], .lwa-form input[type=search], .lwa-form input[type=text], .lwa-form input[type=url], .lwa-form textarea {
	padding: .6180469716em;
	background-color: #f2f2f2;
	color: #43454b;
	outline: 0;
	border: 0;
	-webkit-appearance: none;
	box-sizing: border-box;
	font-weight: 400;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
	width:100% !important;
}
.lwa-submit-links label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
}
.lwa-form .et_pb_forgot_password a {
	color: #1f74bb;
	text-decoration: none;
	font-weight: 400;
	font-size:16px;
}
.lwa-form form {
	display: flex;
	flex-direction: column;
}
.lwa-form p.et_pb_contact_form_field:first-of-type {
	order: 1;
}
.lwa-form p.et_pb_contact_form_field:nth-of-type(2) {
	order: 2;
}
.lwa-form p:not(.et_pb_forgot_password):not(.et_pb_contact_form_field) {
	order: 3;
	margin-bottom:10px;
}
.lwa-form p.et_pb_forgot_password {
	order:4;
}
.create-col {
	display: flex;
	height: 256px !important;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.pum-theme-380433 .pum-content + .pum-close:hover, .pum-theme-default-theme .pum-content + .pum-close:hover {
	color: #808080;
}

/*slider*/
/*slick equal slides height*/
.custom-slider-fullwidth .slick-track{
	display: flex !important;
}
.custom-slider-fullwidth .slick-slide{
	height: inherit !important;
}
.custom-slider-fullwidth .slick-list.draggable {
	margin-bottom: 0;
}
@media only screen and (max-width:480px){
	.custom-slider-fullwidth .slick-list.draggable {
		margin-bottom: 0;
	}
}
.custom-slider-fullwidth .slick-track{
	display: flex !important;
}
.custom-slider-fullwidth .slick-slide{
	height: inherit !important;
}

.dp-dfg-items.slider.custom-slider-items .dp-dfg-item{
	padding: 0 !important;
	margin: 15px 15px !important;
	overflow: visible;
}

.dp-dfg-items.slider.custom-slider-items .dp-dfg-item .dp-dfg-header.entry-header .entry-title{
	margin-bottom: 20px;
	margin-top: 18px;
	max-width: 300px;
	min-height: 75px;
}
.custom-slider-fullwidth .dp-dfg-header.entry-header {
	flex-grow: 1;
}
.custom-slider-fullwidth .slick-initialized .slick-slide {
	display: flex;
	flex-direction: column;
}
body #page-container .dp-dfg-container .dp-dfg-items.slider.custom-slider-items .dp-dfg-item:hover .dp-dfg-image{
	opacity:0.5;
}
body #page-container .dp-dfg-container .dp-dfg-items.slider.custom-slider-items .dp-dfg-item:hover .dp-dfg-header.entry-header .entry-title{
	text-decoration:underline;
}
body #page-container #et-boc .et-l .dp-dfg-container .dp-dfg-items.slider.custom-slider-items .dp-dfg-item:hover a.et_pb_button.dp-dfg-more-button{
	background-color: #1f75bc !important;
	color: #fff !important;
}
.dp-dfg-items.slider.custom-slider-items .dp-dfg-item .dp-dfg-header.entry-header .entry-title {
	display: flex;
	flex-direction: row;
	align-items:flex-start;
}
.dp-dfg-items.slider.custom-slider-items .dp-dfg-item .dp-dfg-image, .dp-dfg-items.slider.custom-slider-items .dp-dfg-item .dp-dfg-overlay{
	margin:0 !important;
}
/*cards*/
.custom-slider-fullwidth .dp-dfg-image.entry-thumb {
	padding:60px 0 !important;
	box-shadow: 0px 0 14px 4px rgb(0 0 0 / 10%);
}
.custom-slider-fullwidth .dp-dfg-image.entry-thumb img{
	width:80%;
	margin:auto;
}
.custom-slider-fullwidth .dp-dfg-item {
	border:0 !important;
}
a.et_pb_button.dp-dfg-more-button {
	width: 100%;
}
.dp-dfg-product-price {
	width: 100% !important;
	padding-bottom:2px;
}
.volume-pricing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0px;
	border-top: 0.5px solid #2075BC;
	clear: both;
}
.volume-pricing span {
	font-weight: 700;
	color: #1f75bc;
	margin: 0px 5px;
	font-family: 'Fira Sans', Helvetica, Arial, Lucida, sans-serif;
}
.custom-slider-fullwidth .dp-dfg-skin-default .dp-dfg-item>* {
	padding: 0;
}
/*arrows*/
.slick-prev {
	opacity: 1 !important;
	padding: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -25px;
	padding: 0;
	margin: 0px;
	border: none;
	font-size: 0;
	line-height: 0;
	background-size: contain;
	background-position-x: center;
	border-radius: 6px;
	z-index: 999;
	cursor: pointer;
	transition: 0.2s all ease-in-out !important;
	background:transparent;
}

.slick-next {
	display: block !important;
	opacity: 1 !important;
	padding: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right:-25px;
	padding: 0;
	margin: 0px;
	border: none;
	font-size: 0;
	line-height: 0;
	background-size: contain;
	background-position-x: center;
	border-radius: 6px;
	z-index: 999;
	cursor: pointer;
	transition: 0.2s all ease-in-out !important;
	background:transparent;
}
.slick-prev:before {
	font-family: "ETmodules" !important;
	content: '\34';
	color: #1f73b8 !important;
	font-size: 40px;
	line-height: 1;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: 0.2s all ease-in-out !important;
}
.slick-next:before {
	font-family: "ETmodules" !important;
	content: '\35';
	color: #1f73b8 !important;
	font-size: 40px;
	line-height: 1;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: 0.2s all ease-in-out !important;
}
.slick-prev:hover:before, .slick-next:hover:before{
	opacity:0.7;
}
ul.slick-dots {
	text-align: center;
	padding-bottom: 29px;
	padding-top: 0;
	margin-top: -15px;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li.slick-active button { 
	background-color: #1f6fb0 !important;; 
}

@media (min-width: 981px) {
	.slick-dots li button {
		font-size: 0;
		line-height: 0;
		display: block;
		width: 8px;
		height: 8px;
		padding: 0;
		cursor: pointer;
		color: transparent;
		border: 0;
		outline: none;
		background-color: #ccc;
		margin-left: 3px;
		margin-right: 3px;
		opacity:0.7;
	}
}

@media (max-width: 980px) {
	.slick-dots li button {
		font-size: 0;
		line-height: 0;
		display: block;
		width: 8px;
		height: 8px;
		padding: 0;
		cursor: pointer;
		color: transparent;
		border: 0;
		outline: none;
		background-color: #ccc;
		margin-left: 3px;
		margin-right: 3px;
		opacity:0.7;
		border-radius: 50%;
	}
}
/*shop*/
.woocommerce-loop-category__title .count{
	display:none;
}
.product-category.product img {
	box-shadow: 0px 0px 11px 1px rgb(0 0 0 / 13%);
	padding: 14%;
	border-radius: 3px;
}
.product-category .woocommerce-loop-category__title{
	text-align:center;
}

.prod-cats-wrapper h6 {
	text-transform: uppercase;
	margin-top: 10px;
	font-weight: 600;
	font-family: 'Fira Sans';
	font-size: 14px !important;
	letter-spacing: 0.5px;
	text-align:center;
}

.prod-cats-wrapper img {
	background-color: #fff;
}

.prod-cat-link:hover, .prod-cat-link:focus{
	text-decoration:none !important;
}
.prod-cats-wrapper img {
	box-shadow: 0px 0px 11px 1px rgb(0 0 0 / 13%);
}
.prod-cats-wrapper img {
	padding: 14%;
}
.et-db #et-boc .et-l .toggle-button{
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	color:#fff !important;
}
.et-db #et-boc .et-l .toggle-button button#toggleChunksBtn:hover {
	background-color: #4a4a4a !important;
	transition: 0.3s ease;
	color:#fff !important;
	cursor: pointer;
}
@media only screen and (min-width:981px){
	.categories-grid .et_pb_text_inner .prod-cats-wrapper .term-chunk{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		grid-column-gap: 3%;
		grid-row-gap: 0px;
		align-items: flex-start;
	}
	.categories-grid .et_pb_text_inner a{
		flex-basis: 11.7%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom:20px !important;
	}
}
@media only screen and (max-width:980px){
	.categories-grid .et_pb_text_inner .prod-cats-wrapper .term-chunk{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		grid-column-gap: 3%;
		grid-row-gap: 0px;
		align-items: flex-start;
	}
	.categories-grid .et_pb_text_inner a{
		flex-basis: 47.7%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom:20px !important;
	}
}
.prod-cats-toggle-btn {
	background: none;
	border: none;
	color: #0073aa; /* WP link blue color or your brand color */
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0;
	transition: color 0.3s ease;
}

.prod-cats-toggle-btn:hover,
.prod-cats-toggle-btn:focus {
	color: #005177; /* Darker blue on hover/focus */
	outline: none;
}

.prod-cats-toggle-btn .btn-icon {
	display: inline-block;
	font-weight: bold;
	font-size: 1.25rem;
	transition: transform 0.3s ease;
	line-height: 1;
	user-select: none;
}

.prod-cats-toggle-btn.expanded .btn-icon {
	transform: rotate(45deg); /* plus rotates to become an 'x' */
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{
	color: #767676 !important;
}
.widget_manufacturers {
	background: #fff;
	padding: 15px 20px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.widget_manufacturers .widget-title {
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 15px;
	border-bottom: 2px solid #007cba; /* example highlight color */
	padding-bottom: 5px;
}

.manufacturer-list-widget {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.manufacturer-list-widget li {
	position: relative;
	padding-left: 24px; /* space for the box */
	margin-bottom: 10px;
}

.manufacturer-list-widget li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-color: #ccc; /* grey color */
	border-radius: 2px;     /* slightly rounded corners */
	box-sizing: border-box;
}
.manufacturer-list-widget li a {
	color: #007cba;
	text-decoration:underline;
	font-weight: 500;
	font-size: 14px;
	display: block;
	transition: color 0.3s ease;
}

.manufacturer-list-widget li a:hover {
	color: #004a75;
	text-decoration: none;
}

/* --- manufacturer pages --- */
/* inline collapsable text */
.collapsible-wrapper .collapsible {
	color: #1f74bb;
	font-size: 16px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}

.collapsible-wrapper .collapsible::after {
	content: '>>';
	display: inline;
	margin-left: 3px;
}

/*splat accent*/
.splat-image:after{
	content:"";
	background:url(/wp-content/uploads/splat3.png);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	display:block;
	position: absolute;
	z-index: -49;
	bottom: -80px;
	width: 715px;
	height: 810px;
}
/*manufacturer directory*/
.manufacturer-index {
	margin-bottom: 30px;
	text-align: left;
	font-size: 16px;
	flex-wrap: wrap;
}

.manufacturer-index a,
.manufacturer-index span {
	display: inline-block;
	margin: 4px;
	padding: 6px;
	border: 1px solid #ccc;
	text-decoration: none;
	color: #1f75bc;
	text-align: center;
	line-height: 1em;
	text-transform:lowercase;
}

.manufacturer-index a:hover {
	background-color: #f0f0f0;
	border-width: 2px;
	padding: 5px;
	text-decoration: none;
	outline-offset: -2px;
}

.manufacturer-index .disabled {
	color: #aaa;
	border-color: #eee;
	background-color: #fafafa;
	cursor: not-allowed;
}

.manufacturer-directory {
	margin-top: 20px;
}

.manufacturer-group {
	margin-bottom: 50px;
}

.manufacturer-group h2 {
	margin-top: 40px;
	font-size: 1.6em;
	padding-bottom: 15px;
}

.manufacturer-list {
	list-style: none !important;
	margin: 0;
	padding-left: 0 !important;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(27.33%, 1fr));
	gap: 0 6.5%;
}

.manufacturer-list li {
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
@media only screen and (max-width:761px){
	.manufacturer-list {
		grid-template-columns: repeat(auto-fill, minmax(75%, 1fr));
	}
}
.back-to-top {
	margin-top: 15px;
	text-align: right;
}

.back-to-top a {
	border: 1px solid #ccc;
	padding: 4px;
	line-height: 1em;
	float: right;
	text-decoration: none;
	font-size: 13px;
}

.back-to-top a:hover, .back-to-top a:focus {
	text-decoration: none;
}

/* --- PRODUCT PAGE TEMPLATE --- */
/* breadcrumbs */
.et_pb_gutters3 .et_pb_column_4_4 .et_pb_module.custom-breadcrumbs {
	margin-bottom: 0;
}

/* model, part number, and upc */
.product-details-row .separator {
	font-weight: bold;
	color: #2075BC;
	padding: 0 4px;
}
@media only screen and (max-width:600px){
	.product-details-row .separator {
		padding: 0 1px;
	}
}
/* image */
.woocommerce-product-gallery__trigger {
	display: none !important;
}

.woocommerce-product-gallery__image {
	cursor: zoom-in; /* shows user it's clickable */
}
/*volume pricing single product page*/
.volume-discounts-horizontal {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom:30px;
}
.flex-vp-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	border: none;
}



.flex-vp-container th.header, .flex-vp-container td.header {
	font-weight: 700;
	font-family: 'Fira Sans',Helvetica,Arial,Lucida,sans-serif;
	color: #fff !important;
	text-transform:uppercase;
}
span.savings {
	font-size: 12px;
	margin: 0;
	color: #1f74bb;
	font-weight: 700;
	display: flow-root;
}
.flex-vp-container th:nth-child(odd), .flex-vp-container td:nth-child(odd){
	background-color: #eee;
}
.flex-item:last-child {
	border-right: 1px solid #4e4e4e !important;
}
.flex-vp-container .flex-item{
	margin: 0;
	border: .0 solid #2075bc;
	padding: 10px;
	height: 70px;
	flex-grow: 1;
	flex-basis: 0;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	max-width: 150px;
	min-width: 100px;
}
.fast-shipping-message{
	font-weight: 800;
	color: #7f7f7f;
	display: flex;
	align-items: center;
	align-content: center;
}
.fast-shipping-message p {
	font-size: 13px;
	width: 100%;
	line-height: 1;
	color: black;
}
.fast-shipping-message b {
	font-weight: 700;
	font-family: 'Source Sans Pro';
	color: #7f7f7f;
}
.fast-shipping-message svg {
	margin-right: 10px;
}
.fast-shipping-message a {
	font-weight: 800;
	text-decoration: underline;
}
.fast-shipping-message a:focus, 
.fast-shipping-message a:hover {
	color: #23527c;
}

/* coupon area */
@media (min-width: 1574px) and (max-width: 1767px) {
	.woocommerce-cart .coupon {
		display: flex;
	}

	.woocommerce-cart .coupon input,
	.woocommerce-cart .coupon button {
		width: 100%;
	}
}

@media (max-width: 1573px) {
	.woocommerce-cart .coupon input,
	.woocommerce-cart .coupon button {
		width: 100% !important;
	}

	.woocommerce-cart .coupon button {
		margin-left: 0 !important;
		margin-top: 10px;
	}
}
/*tabs single product*/
.woo-tabs ul.et_pb_tabs_controls {
	background-color: transparent;
	border-bottom: none;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.woo-tabs .et_pb_tabs_controls li {
	float: left;
	margin-bottom: -1px;
	margin: 20px 2%;
	font-family: 'Fira Sans';
	color: #4F4F4F;
	border-right:0;
}
.woo-tabs .et_pb_tabs_controls li a{
	margin-right: 2px;
	border: 0!important;
	border-radius: 0;
	cursor: pointer;
	background-color: #fff;
	border: none;
	border-bottom-color: transparent !important;
	text-decoration:none;
}
.woo-tabs .et_pb_tabs_controls li.et_pb_tab_active:after {
	content: '';
	width: 50%;
	background-color: #2075BC;
	height: 0.5px;
	position: absolute;
	bottom: 0px;
	margin: auto;
	left: 0;
	right: 0;
}
.woo-tabs ul.et_pb_tabs_controls:after {
	border-top:0 !important;
}
.woo-tabs .et_pb_all_tabs {
	background-color: #fff;
	max-width: 950px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.woo-tabs h3{
	font-size: calc(16px + 6 * ((100vw - 320px) / 680));
}
@media only screen and (max-width:980px){
	.woo-tabs ul.et_pb_tabs_controls {
		flex-wrap:wrap;
	}
	.woo-tabs .et_pb_tabs_controls li {
		border-bottom: 0 !important;
	}
	.woo-tabs .nav-tabs>li {
		margin: 10px 50px;
	}
	.woo-tabs .et_pb_tab {
		padding: 0 0 24px !important;
	}
	.woo-tabs .et_pb_tabs_controls li {
		margin: 10px 0 0;
	}
	.et_pb_tabs_controls li a {
		padding: 4px 12px;
	}	
}
/*end tabs woo*/

/*quantity and add to cart*/
.qty-stock-wrap {
	display: flex;
	/* 	flex-direction: column; */
	align-items: center;
	/*     gap: 0; */
	margin-bottom: 1.618em;
}
.qty-stock-wrap a {
	align-self: flex-start;
}
.buttons-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.618em;
}

.qty-stock-wrap .quantity input.qty {
	max-width: 80px;
}

.qty-stock-wrap .stock-menu {
	display: flex;
	flex-direction: column;
}

.qty-stock-wrap .stock {
	margin: 0;
	font-size: 14px;
	white-space: nowrap;
	padding-bottom:0 !important;
}

.qty-stock-wrap .stock.in-stock,
.qty-stock-wrap .stock.out-of-stock {
	width: 100%;
	display: none; /* hide this. custom generated by snippet instead */
}

.single_add_to_cart_button {
	display: block;
	margin-top: 10px;
}

.woocommerce #content div.product form.cart div.quantity, .woocommerce-page #content div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity, .woocommerce div.product form.cart div.quantity {
	margin: 0 5px 0 0 !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
	color: #43454b;
	font-size: 16px;
}
/*wishlist button*/
.et-db #et-boc .et-l .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{
	border-radius:0;
	width: 100% !important;
	min-width:156px;
	max-width:156px;
	padding:10px 23px !important;
	background:#2EA3F2;
	color:#fff !important;
}
.et-db #et-boc .et-l .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
	min-width: 178px;
	max-width: 178px;
}
.et-db #et-boc .et-l  .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button:hover{
	background-color: #286090 !important;
	color:#fff !important;
}
.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
	margin-top: 0;
}
@media only screen and (max-width:760px){
	.buttons-wrap {
		display: flex;
		flex-direction:column;
	}
	.et-db #et-boc .et-l .buttons-wrap .button, .et-db #et-boc .et-l .buttons-wrap .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{
		width: 100% !important;
		max-width:100% !important;
	}
	.et-db #et-boc .et-l .buttons-wrap .tinv-wraper.tinv-wishlist {
		width: 100%;
		text-align: center;
	}
}
/*coupons*/
.et-db #et-boc .et-l .Value-Props {
	grid-area: Value-Props;
	padding-top: 25px;
	color: #4f4f4f;
	text-align: center;
	text-transform: uppercase;
}
body #page-container .et_pb_section .et_pb_wc_cart_totals_0_tb_body .coupon button.button{
	width: auto;
	height: 47px;
	background-color: #f4f4f4 !important;
	color: #1f6cab !important;
	margin-left: 10px;
	border: 1px;
	border-color: #4f4f4f !important;
}
.et-db #et-boc .et-l .coupon .input-text{
	background-color: #e6e5e5;
	color: #2b2c30;
	padding:10px;
}
.et-db #et-boc .et-l .wc-braintree-cart-text{
	display:none !important;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 15px 0px;
}
/*end cart coupons*/
.et-db #et-boc .et-l .woocommerce .return-to-shop a.button{
	color:#fff !important;
}
.et-db #et-boc .et-l .woocommerce a.button:hover:after{
	display:none !important;
}
.et-db #et-boc .et-l .message__logo img {
	max-width: 46px;
}
.wp-image-382015 {
	max-width: 61px !important;
	margin-top: 17px;
	margin-bottom: -5px;
	margin-left: -8px;
}
/* --- FACETWP PRODUCT LISTING --- */
/* card */
.product-card .image {
	box-shadow: 0px 0px 11px 6px #f4f4f4;
	margin-bottom: 20px;
}

.product-card .title {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 16px;
	font-family: 'SequelSans Heavy Disp',Helvetica,Arial,Lucida,sans-serif;
	margin-bottom: 10px;
}

.product-card .price {
	margin-bottom: 10px;	
}

.product-card .brands,
.product-card .part-number,
.product-card .facet-stock {
	font-size: 14px;
}

.product-card .facet-button a {
	width: 100%;
	display: block;
	border-radius: 0px;
	background-color: #fff;
	color: #1f6cab;
	border: 1px solid #1f6cab;
	transition: all 0.3s ease;
	padding: 7px 10px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 14px;
}

.product-card .facet-button a:hover {
	background-color: #1f6cab;
	color: #fff !important;
	text-decoration: none;
}

.product-card .brands a {
	pointer-events: none;
	color: #43454b !important;
}

/* filters */
.filter-col {
	border: 1px solid #BBD5EB;
	padding: 20px;
}

.filter-col .facetwp-facet .facetwp-checkbox {
	font-size: 14px;
}

/*Facetwp categories listing*/
.fwpl-item.image {
	padding: 30px;
}
@media only screen and (max-width:1200px) and (min-width:1000px){
	.fwpl-layout.el-f47hy {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media only screen and (max-width:999px) and (min-width:767px){
	.fwpl-layout.el-f47hy {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media only screen and (max-width:767px){
	.fwpl-layout.el-f47hy {
		grid-template-columns: repeat(1, 1fr) !important;
	}
	.fwpl-layout.el-f47hy .fwpl-item.image {
		text-align: center;
	}
}
/*manufacturers modal*/
.modal {
	display: none;
	position: fixed;
	z-index: 10010;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
}
.modal.modal-visible {
	display: block;
}
.modal-dialog {
	margin: 10% auto;
	max-width: 600px;
	background: white;
	padding: 20px;
	position: relative;
}

/* checkbox */
.filter-col .facetwp-checkbox {
	background: url("/wp-content/uploads/custom-checkbox-v4.png") 0 50% no-repeat;
	background-size: 14px 13px !important;
}

.filter-col .facetwp-facet {
	margin-bottom: 0;
}

.filter-col .facetwp-checkbox.checked {
	background-image: url("/wp-content/uploads/custom-checkbox-checked.png");
}

/* sort */
.facet-sort .facetwp-type-sort select {
	width: auto;
	height: 40px;
	padding: 10px;
	border-radius: 0px;
	border-color: #d7d7d7;
}

.facet-sort .facetwp-type-sort {
	margin-bottom: 0;
	text-align: right;
}

/* responsive */
@media (max-width: 767px) {
	.facet-listing .fwpl-layout {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.facet-listing .fwpl-layout .fwpl-item.image {
		text-align: center;
	}
}

/* --- CART / CHECKOUT --- */
/* cart thumbnails */
.woocommerce-cart table.cart img {
	width: 127px;
}

/* Cart - hide total */
.woocommerce-cart .shop_table .order-total {
	display: none;
}

/* cart product details */
.woocommerce-cart .shop_table thead th,
.woocommerce-cart .shop_table .cart_item td {
	border-bottom: 1px solid #ccc;
}

/* cart summary */
.cart-summary .cart_totals h2::after {
	content:'';
	display: block;
	width: 75%;
	background-color: #ccc;
	height: 1px;
	margin: auto;
	margin-top: 5px;
}

.cart-summary .cart_totals th,
.woocommerce .cart-summary .cart_totals td,
.woocommerce .cart-summary table.shop_table th {
	padding: 0 12px;
}

.woocommerce ul#shipping_method li {
	margin: 0;
}

@media (min-width: 1755px) {
	.woocommerce .cart-summary table.shop_table th {
		width: 100px;
	}	
}

@media (min-width: 1316px) and (max-width: 1754px) {
	.woocommerce .cart-summary table.shop_table th {
		width: 88px;
	}	
}

@media (min-width: 981px) and (max-width: 1315px) {
	.woocommerce .cart-summary table.shop_table tr {
		display: flex;
		flex-direction: column;
	}

	.woocommerce .cart-summary .shop_table td {
		margin-bottom: 10px;
	}

	.woocommerce .cart-summary .shop_table td li,
	.woocommerce ul#shipping_method li {
		margin: 0;
	}

	.woocommerce .cart-summary table.shop_table {
		margin-bottom: 0 !important;
	}
}

/* forget anything */
.no-padding h4 {
	padding-bottom: 0;
}

/* - checkout - */
.woocommerce-checkout #payment div.payment_box {
	background-color: transparent;
}

.checkout-row .woocommerce-billing-fields h3,
.checkout-row #order_review_heading  {
	display: none;
}

/* checkout button on cart page  */
html .woocommerce-cart .et_pb_wc_cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
html .woocommerce .et_pb_wc_cart_totals a.checkout-button.button:hover, 
html .woocommerce-page .et_pb_wc_cart_totals a.checkout-button.button:hover,
.woocommerce #payment #place_order:hover, 
.woocommerce-page #payment #place_order:hover {
	background-color: #286090 !important;
	color: #fff !important;
}

/* inputs */
.et-db #et-boc .et-l .checkout-row .input-text, 
.et-db #et-boc .et-l .checkout-row input[type=email], 
.et-db #et-boc .et-l .checkout-row input[type=password], 
.et-db #et-boc .et-l .checkout-row input[type=search], 
.et-db #et-boc .et-l .checkout-row input[type=text], 
.et-db #et-boc .et-l .checkout-row input[type=url], 
.et-db #et-boc .et-l .checkout-row textarea,
.et-db #et-boc .et-l .checkout-row span.select2-selection--single {
	padding: 10px;
	background-color: #f2f2f2;
	color: #43454b;
	outline: 0;
	border: 0;
	-webkit-appearance: none;
	box-sizing: border-box;
	font-weight: 400;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);	
}

/* error */
.et-db #et-boc .et-l .checkout-row .woocommerce-error li a {
	color: #fff;
}

.checkout-inline-error-message {
	font-size: 14px;
	color: #e2401c;
	font-weight: bold;
}

/* coupon callout */
.woocommerce-form-coupon-toggle .woocommerce-info a {
	text-decoration: underline;
	font-weight: bold;
}

/* - checkout and cart - */
.woocommerce table.shop_table {
	border: none;
}

.woocommerce table.shop_table tbody th, 
.woocommerce table.shop_table tfoot td, 
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table td,
.woocommerce-checkout #main-content .et_pb_wc_checkout_order_details table.shop_table tr.cart-subtotal td {
	border-top: none;
}

/* space for the footer */
.woocommerce-checkout .cart-subtotal th,
.woocommerce-checkout .cart-subtotal td {
	padding-top: 30px !important;
}

/* table rates */

#shipping_method label span.woocommerce-Price-amount {
	font-size: 16px;
}

.woocommerce-cart .woocommerce-shipping-destination {
	display: none;
}

.shop_table label[for="shipping_method_0_table_rate32"] {
	font-size: 0;
}

/* place order button */
.woocommerce #payment #place_order, 
.woocommerce-page #payment #place_order {
	float: none;
	width: 100%;
	border-radius: 0;	
}

/* responsive */
@media (max-width: 767px) {
	.woocommerce-checkout .et_pb_title_container h1 {
		font-size: 25px;
	}

	#ship-to-different-address {
		font-size: 17px;
	}
}

/* --- HOME --- */
@media (max-width: 479px) {
	.four-icons .et_pb_column {
		width: 50% !important;
	}	
}

/* --- FOOTER --- */
@media (max-width: 980px) {
	.google-reviews-widget {
		display: flex;
		justify-content: center;
		margin-left: 70px;
	}

	.custom_row .et_pb_column.flex-footer {
		margin-bottom: 0 !important;
	}
}

@media (max-width: 399px) {
	.google-reviews-widget {
		margin-left: 25%;
	}
}
/*Register form*/
.my-account-box .register {
	border:0 !important;
	padding:0 !important;
	margin-top:0 !important;
}
.my-account-box #customer_login .woocommerce-form{
	border-radius:0;
	margin:0;
}

.my-account-box .woocommerce-Input, .my-account-box .input-text{
	background-color: #e6e5e5 !important;
	color: #2b2c30 !important;
}
.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
#customer_login form.register div.form-row {
	margin: 0 0 1.41575em;
}
.my-account-box .form-control {
	display: block;
	width: 100%;
	height: 42px !important;
	max-width: 237px !important;
	padding: 6px 12px !important;
	font-size: 16px;
	line-height: 1.42857143;
	color: #9b9b9b;
	background-color: #fff;
	background-image: none;
	border: 0.5px solid #c7daed !important;
	border-radius: 0px !important;
	font-weight: inherit;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-row input, .form-row select, .form-row textarea {
	width: 100%;
}
.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.form-row input[type=checkbox], .form-row input[type=radio] {
	width: auto;
}
.form-row.read-agree div:nth-child(2) {
	display: none;
}
.form-row.read-agree {
	display: flex;
	margin-top: 15px;
	margin-bottom: 15px;
}
.form-row .woocommerce-Button.button {
	width: auto;
	border-radius:0 !important;
	border: 0;
	border-radius: 0;
	background: none;
	background-color: #1f6cab !important;
	border-color: #1f6cab !important;
	color: #fff;
	cursor: pointer;
	padding: 0.6180469716em 1.41575em;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	color:#fff !important;
}
.form-row .woocommerce-Button.button:hover{
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
	color:#fff !important;
}

@media (min-width: 768px) {
	.my-account-box .col2-set#customer_login .col-2, .my-account-box .col2-set.addresses .col-2 {
		width: 52.9411764706%;
		float: right;
		margin-right: 0;
	}
	.my-account-box .col2-set#customer_login .col-1, .my-account-box .col2-set.addresses .col-1 {
		width: 41.1764705882%;
		float: left;
		margin-right: 5.8823529412%;
	}
}

.product-attribute-table {
	text-align: left!important;
	min-width: 100%;
}
.make-model.prod-info-section{
	margin-bottom: 3%;
}
.product-attribute-table tr:nth-of-type(odd) {
	background-color: #eee;
}
.product-attribute-table th{
	font-weight: normal;
	padding-left: 10px;
	width: 45% !important;
}
.message__logo img {
	max-width: 46px;
}
.wp-image-382015 {
	max-width: 61px !important;
	margin-top: 17px;
	margin-bottom: -5px;
	margin-left: -8px;
}

/*wishlist*/
.et-db #et-boc .et-l .tinv-wishlist .product-action {
	width: 218px;
}
.et-db #et-boc .et-l .tinvwl-input-group .form-control {
	height: 51px;
}
.et-db #et-boc .et-l .woocommerce button.button.alt, .et-db #et-boc .et-l .woocommerce button.button{
	color:#fff !important;
	border-radius:0 !important;
}
.et-db #et-boc .et-l .woocommerce button.button.alt:after, .et-db #et-boc .et-l .woocommerce button.button:not(.button-confirm):after{
	display:none !important;
}
.et-db #et-boc .et-l .woocommerce button.button.alt:hover, .et-db #et-boc .et-l .woocommerce button.button:hover {
	background-color: #286090 !important;
	color: #fff !important;
}

/* --- MY ACCOUNT --- */
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .title {
	border-bottom: #3550a1 solid 3px;
}

@media (min-width: 1300px) {
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
		width: 17.6470588235%;
	}

	.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
		width: 80%;
	}	
}

@media (min-width: 769px) and (max-width: 1299px) {
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
		width: 30%;
	}

	.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
		width: 70%;
	}	

	.woocommerce-account .addresses .title h3 {
		font-size: 23px;
	}
}

@media (max-width: 768px) {
	nav.woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav.woocommerce-MyAccount-navigation ul li a {
		padding: 0;
		font-size: 15px;
	}

	.woocommerce-account .addresses .title h3 {
		font-size: 23px;
	}
}

/* --- GRAVITY FORMS --- */
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), 
body .gform_wrapper textarea.textarea, 
body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body .gform_wrapper select {
	color: #43454b;
}


/* --- My Account link in header --- */
li#menu-item-480009:after {
	content: '';
	height: 100%;
	width: 1px;
	background-color: black;
	position: absolute;
	right: 0px;	
}

li#menu-item-480009 a {
	padding-bottom: 6px;
	padding-top: 6px;	
}

/* --- FAQ --- */
@media (max-width: 767px) {
	.et_pb_text .faq-category-title {
		font-size: 23px;
	}

	.page-id-523 hr {
		margin: 0px 0 15px 0;
	}
}



/* --- facetwp --- */
/* load more button */
.facetwp-type-pager {
	text-align: center;
	margin: auto;
}

button.facetwp-load-more {
	color: #fff !important;
	border-radius: 0px;
	font-size: 14px;
	background-color: #1f6cab;
	width: 200px;
	display: block;
	border: 1px solid #1f6cab;
	transition: all 0.3s ease;
	padding: 7px 10px;
	margin: 30px auto 0 auto;
	text-align: center;
	text-transform: uppercase;
	font-weight: 900;
	cursor: pointer;
}

button.facetwp-load-more:hover {
	color: #1f6cab !important;
	background-color: #fff;
}

/* vertical alignment */
@media (min-width: 981px) {
	.vertically-align {
		margin: auto;
	}
}


/* --- REGISTRATION PAGE --- */
@media (min-width: 768px) {
	.page-id-380375 .woocommerce .woocommerce-MyAccount-navigation {
		width: 30% !important;
	}	
}

@media (max-width: 767px) {
	.page-id-380375 .woocommerce .woocommerce-MyAccount-navigation {
		width: 100% !important;
	}	
}
/*Product Gallery*/
.woocommerce-product-gallery .flex-viewport{
	margin-left: 10px;
	padding: 50px 0;
	min-height: fit-content;
	border: 1px solid #cfcfcf;
}
.et_pb_wc_images .woocommerce-product-gallery:not(.gallery-thumbnail)>.woocommerce-product-gallery__wrapper{
	padding: 50px 0 !important;
	min-height: fit-content;
	border: 1px solid #cfcfcf;
}
.woocommerce div.product div.images .flex-control-thumbs li img{
	opacity:1;
}
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	opacity:.5;
}

@media only screen and (min-width:981px){
	.woocommerce-product-gallery.woocommerce-product-gallery--with-images.images.gallery-thumbnail {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs {
		display: flex;
		flex-direction: column;
	}
	.woocommerce-product-gallery .flex-viewport{
		flex: 1 1 100%;
		border: 1px solid #333;
		margin-left: 10px;
		padding: 50px 0;
		min-height: fit-content;
		border: 1px solid #cfcfcf;
	}
	.woocommerce div.product div.images .flex-control-thumbs{
		flex: 1 1 21%;
	}
	.woocommerce div.product div.images .flex-control-thumbs li{
		width: 100% !important;
		margin-right:0 !important;
		margin-bottom:0;
	}
	.woocommerce div.product div.images .flex-control-thumbs {
		margin-top: 0;
	}
	.woocommerce-product-gallery .flex-control-thumbs img{
		margin-bottom:6.66%
	}
	.woocommerce-product-gallery img.flex-active {
		display: none !important;
	}
	.woocommerce div.product div.images .flex-control-thumbs li img {
		padding-bottom: 17px;
	}

}

/* woocommerce thank you page */
.woocommerce-order-received #title-and-notice,
.woocommerce-order-received #billing-col,
.woocommerce-order-received #shipping-col,
.woocommerce-order-received #your-order-col .ships-text,
.woocommerce-order-received #your-order-col .please-select-text,
.woocommerce-order-received #your-order-col .your-order-heading,
.woocommerce-order-received #your-order-col .shipped_via {
	display: none;
}

.woocommerce-order-received #your-order-col {
	width: 100% !important;
}

.woocommerce-order-received #your-order-col .woocommerce-order {
	padding: 0 !important;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
	font-family: 'SequelSans Heavy Disp', Helvetica, Arial, Lucida, sans-serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 1.1em;
}

@media (max-width: 767px) {
	.woocommerce-order-received .woocommerce-thankyou-order-received {
		font-size: 26px;
	}
}

/* --- WEGLOT --- */
.weglot-switch .country-selector.weglot-dropdown {
	background-color: transparent;
	border: none;
	width: auto;	
}

.weglot-switch .country-selector.weglot-dropdown .wgcurrent,
.weglot-switch  .country-selector.weglot-dropdown ul {
	border: none;
}

.weglot-switch .country-selector.weglot-dropdown a, 
.weglot-switch .country-selector.weglot-dropdown span {
	padding: 0 !important;
	height: auto;
	color: #1F75BC;
	font-size: 16px;
}

.weglot-switch .country-selector.weglot-dropdown a:hover {
	text-decoration: underline;
}

.weglot-switch .country-selector.weglot-dropdown .wgcurrent:after {
	background: none;
}

.weglot-switch .country-selector.weglot-dropdown li::marker {
	content: '';
}

.et-l--header .country-selector.weglot-inline ul {
	padding: 0 !important;
}

.weglot-switch label.wgcurrent,
html[lang="en-US"] .sfm-menu-item-weglot-785554-en,
html[lang="es"] .sfm-menu-item-weglot-785554-es {
	display: none;
}

/* --- product page --- */
.product-image img {
	max-height: 365px;
	object-fit: contain;
}

/* CART PAGE - add to cart section */
.woocommerce-cart .product-remove a {
	height: 26px;
	width: 26px;	
	text-decoration: none;
}

/* CART PAGE - hide tax text */
.shop_table .tax-total small {
	display: none;
}


/*-- Products document tab style --*/
.single-product .prod-info-section li:nth-of-type(odd) {
	background-color: #eee;
}
.single-product .prod-info-section li {
	list-style-type: none;
	padding-left: 10px;
	display: block;
}
.single-product .prod-info-section li a {
	color: #1f74bb;
	text-decoration: none;
	font-weight: 400;
}
.single-product .prod-info-section li a:focus, .single-product .prod-info-section li a:hover {
	color: #23527c;
	text-decoration: underline;
}
.single-product .prod-info-section li img {
	margin-right: 10px;
	vertical-align: middle;
}
/*update cart button*/

.woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled]{
	font-size: 16px;
	background-color: #1f75bc;
	border-width: 0px !important;
	border-color: #1f75bc;
	border-radius: 0;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 35px !important;
}

.et_pb_wc_cart_totals{
	background: #fff;
}
.et_pb_wc_cart_products .shop_table .actions .coupon{
	display:none;
}


/*fake variants style*/
.rightpart {
	margin-bottom: 10px;
	color: gray;
	font-family: 'Source Sans Pro';
	font-weight: 600;
}
.rightpart {
	margin-bottom: 0px !important;
}
.innerfull {
	display: flex;
	flex-direction: column;
}
span.from-group {
	margin-bottom: 20px !important;
	padding: 0px !important;
}
span.from-group label:nth-child(1) {
	font-family: 'Fira Sans';
	text-transform: uppercase;
	font-weight: 600;
	color: #256eb2;
}
span.from-group label {
	margin-bottom: 0px;
	transition: all 0.3s ease;
}
.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
span.from-group label:hover {
	border: 1px solid #2875bc;
	transition: all 0.3s ease;
	color: black;
	cursor: pointer;
}
.form-control {
	display: block;
	width: 100%;
	height: 42px;
	max-width: 237px;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.42857143;
	color: #9b9b9b;
	background-color: #fff;
	background-image: none;
	border: 0.5px solid #c7daed;
	border-radius: 0px;
	font-weight: inherit;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.radioSelectContainer {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
}
.radioSelectContainer select {
	display: none;
	width: 0;
	opacity: 0;
}
.radioSelectContainer label {
	position: relative;
	height: 42px;
	text-align: center;
	display: inline-flex;
	width: 100%;
	max-width: 236px;
}
.radioSelectContainer label {
	border: 1px solid #c7daed;
	padding: 0px;
	margin: 5px;
	margin-left: 0px;
}
.radioSelectContainer label.active, .radioSelectContainer label.active:hover {
	border: 1px solid #2875bc;
	background: #2875bc;
	color: #fff;
}
.radioSelectContainer [type="radio"]:not(:checked) {
	width: 0px;
}
.radioSelectContainer [type="radio"]:checked, .radioSelectContainer [type="radio"]:not(:checked) {
	position: relative;
	left: 14px;
	z-index: 1;
	/*width: 100%;*/
	height: 40px;
	border: none;
	left: 0;
	bottom: 0px;
	margin: 0px;
	padding: 0px;
}
.radioSelectContainer label span {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 6px;
	z-index: 32;
}
.radioSelectContainer input[type="radio"] {
	position: absolute;  /* Remove from document flow */
	opacity: 0;          /* Hide visually */
	width: 0;
	height: 0;
	pointer-events: none; /* Prevent mouse interaction on the radio itself */
}

/* Keep the labels visible and clickable */
.radioSelectContainer label {
	cursor: pointer;
}
.color-label {
	display: flex;
	margin-bottom: 10px;
}

label.custom-color-label {
	padding-right: 5px;
}
.colorbox span.active {
	outline: none;
	border: 2px solid #2874bb !important;
}
.colorbox span {
	width: 55px;
	height: 55px;
	float: left;
	background: #ccc;
	border: #fff solid 0;
	margin: 0;
	vertical-align: top;
	border-radius: 100px;
	margin-right: 8px;
	margin-bottom: 10px !important;
	border: .5px solid #c7daed;
	transition: all .3s ease;
}
@media only screen and (max-width:760px){
	.form-control {
		max-width: 100%;
	}
	.radioSelectContainer label{
		max-width:100%;
		margin-bottom: 10px !important;
	}
}

/*modal*/
.modal-dialog {
	max-width: 700px;
	width: 100%;
	max-height: 85vh;
	overflow: scroll;
}
.modal {
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%);
	right: auto;
	bottom: auto;
}
.modal-content {
	border-radius: 0px;
	padding: 3%;
	margin: 0px;
	background-image: url(/wp-content/uploads/modal-bg.svg);
	background-size: cover;
	background-position: bottom left;
}
.modal-footer {
	margin-top:15px;
	padding: 15px 0;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}
.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}
@media (min-width: 992px) {
	.modal-footer .col-md-6 {
		width: 50%;
		padding-right: 15px;
		padding-left: 15px;
	}
}
.modal-header {
	padding: 15px 15px 0 15px;
	border-bottom: none;
	line-height: 1.618;
}

input.ic_buy_multi.ctm_SFM_mode_cancel_btn.checkout-button.button.wc-forward.wc-forward-checkout,
input.ic_buy_multi.ctm_SFM_mode_cancel_btn.checkout-button.button.wc-forward.wc-forward-checkout:hover,
button.ic_buy_multi.ctm_need_more_than_btn.checkout-button.button.alt.wc-forward.wc-forward-checkout.checkout-as-guest {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px 22px !important;
	border-radius: 0;
}
button.ic_buy_multi.ctm_need_more_than_btn.checkout-button.button.alt.wc-forward.wc-forward-checkout.checkout-as-guest:hover {
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
	color:#fff !important;
}
a.ic_buy_multi:focus, a.ic_buy_multi:hover {
	color: #23527c;
	text-decoration: underline;
}
.modal-header button.close span {
	font-size: 50px !important;
	font-weight: 100;
	position: absolute;
	top: 0%;
	right: 2%;
	transition: all .3s ease;
}
.modal-header .close {
	margin-top: -2px;
}
.close:focus, .close:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5;
}
.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
	border:0;
}
.et-db #et-boc .et-l input.ic_buy_multi.ctm_SFM_mode_cancel_btn.checkout-button.button.wc-forward.wc-forward-checkout {
	border: 0;
	border-radius: 0;
	background: none;
	background-color: #1f6cab !important;
	border-color: #1f6cab;
	color: #fff;
	cursor: pointer;
	padding: 0.6180469716em 1.41575em;
	text-decoration: none;
	font-weight: 600;
	text-shadow: none;
	display: inline-block;
	-webkit-appearance: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.et-db #et-boc .et-l input#sfm_modal_btn.ic_buy_multi.checkout-button.button.wc-forward.wc-forward-checkout:hover{
	transition: all 0.3s ease;
	background-color: #4e4e4e;
	text-decoration: none;
}
.et-db #et-boc .et-l #sfm_mode_off .modal-content .ctm_need_more_than_btn{
	background-color: #fff !important;
	border: 1px solid #1f75bc !important;
	color: #1f75bc !important;
}
.et-db #et-boc .et-l input.ic_buy_multi.ctm_SFM_mode_cancel_btn.checkout-button.button.wc-forward.wc-forward-checkout:hover{
	transition: all 0.3s ease;
	background-color: #4e4e4e !important;
	text-decoration: none;
}
#sfm_mode_off .modal-footer .row {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
#sfm_mode_off .modal-footer .row .col-md-6 form{
	margin-right:10px;
}
.modal-header .modal-title b{
	display:block;
}
@media only screen and (max-width:980px){
	.modal-header span:not(.modal-title){
		font-size:23px !important;
	}
	.modal-header span.modal-title{
		font-size:20px !important;
	}
	.modal-body{
		padding: 20px 20px 54px !important;
	}
}
@media only screen and (max-width:415px){
	#sfm_mode_off .modal-footer .row {
		justify-content:flex-end;
		flex-wrap:wrap-reverse;
	}
}

/*incomplete cart popup*/
.l_c_h {
	width:300px;
	position:fixed;
	bottom:0;
	right:30px;
	background:#fff;
	border-radius:3px;
	z-index:5000;
	display:block;
	display: flex;
	flex-direction: column-reverse;
}
.l_c_h .c_h {
	cursor: pointer;
	background: #2075bc;
	line-height: 33px;
	padding: 5px 14px 5px 5px;
	border-radius: 5px 5px 0 0;
}
.l_c_h .left_c {
	color: #ebebeb;
	width: 100%;
	font-weight: 500;
	font-family: 'Fira Sans',sans-serif;
	font-style: normal;
	display: inline-block;
	float: left;
}
.l_c_h .left_c .center_icons{
	text-align: left;
	padding: 0px 0px 0px 0px;
	font-size: 13px;
	line-height: 20px;
	width: calc(100% - 65px);
	float: left;
}
.l_c_h .right_c {
	text-align:center;
	/* background:#ff8f32;*/
	line-height: 36px;
}
.l_c_h .right_c  a {
	color:#ebebeb;
	border-radius: 3px;
	cursor: pointer !important;
	font-size: 16px;
	line-height: normal !important;
	margin-top: 0 !important;
	padding: 1px 0px !important;
	text-align: center !important;
	text-decoration:none;
	font-weight:600;
}
.ctm_invalid{
	color: #ff0000 !important;
	padding: 3px;
	border-radius: 5px;
}
.ctm_valid{
	color: #008000 !important;
	padding: 3px;
	border-radius: 5px;
}
h5.ctm_invalid{
	font-size: 14px;
	color: #ff0000 !important;
	margin-bottom: 4px !important;
}
h5.ctm_valid{
	font-size: 14px;
	color: #008000 !important;
	margin-bottom: 4px !important;
}
h4.ctm_go_to_my_cart {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700 !important;
	border-top: 2px solid #eaeaea;
	width: 238px;
	padding-top: 10px;
	background: #fff;
	padding-bottom: 10px !important;
	margin:0px !important;
	text-align: center;
}
h4.ctm_go_to_my_cart a {
	font-size: 15px;
	font-weight: 500;
	color: #2075bc !important;
	transition: all .3s ease-in-out;
}
.left_icons{
	width:35px;
	color:#999;
	font-size:15px;
	background-color: transparent !important;
	line-height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	height: 35px;
	float: right;
	margin-top: 3px;
}
.left_icons a{
	font-size: 16px !important;
	font-weight: 400 !important;
}
.left_icons.ctm_open_window{
	background: #53bef1c7 !important;
}
.left_icons.ctm_open_window a{
	font-size: 23px !important;
}
.left_icons a{
	color:#fff;
	font-weight:normal;
}
.chat_container {
	padding: 15px 20px 0 20px;
	border: 2px solid #cccccc6b;
	height: min-content;
	overflow-y: auto;
	max-height: 400px;
}
.chat_container .no_provider {
	text-align:left;
	color:#5E5652;
	font-size:12px;
	width:300px;
	padding:5px;
	font-family: 'Fira Sans',sans-serif;
	font-style: normal;
	margin-left:5px;
}
.chat_container .footer_c {
	text-align:left;
	color:#5E5652;
	font-size:12px;
	margin-left:10px;
	margin-bottom:10px;
	font-family: 'Fira Sans',sans-serif;
	font-style: normal;
}
.chat_container .footer_c a {
	text-decoration:underline;
	color:#777;
	font-size:11px;
}
.chat_container .chat_entry {
	margin:10px;
	margin-top:0px;
}
.chat_container .chat_entry p {
	margin-top:10px;
	margin-bottom:10px;
}
.chat_container .chat_entry h4 {
	text-align:left;
	color:#1A1A1A;
	font-weight:400;
	font-size:16px;
	margin-top:0px;
}
.chat_container .chat_entry input[type="text"] {
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius:2px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	color: #999;
	font-size: 13px;
	padding: 8px 8px;
	margin-bottom:5px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	width:100%;
	font-family: 'Fira Sans',sans-serif;
	font-style: normal;
}
.chat_container .chat_entry input[type="text"]:focus {
	box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
	-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
	-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
	outline:0 none;
	border-color:#66afe9;
}
.chat_container .chat_entry input[type="submit"]{
	padding: 5px 12px;
	margin-bottom: 0;
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius:0px;
	color: #fff;
	background-color: #2dc3e8 !important;
}
.chat_container .chat_entry input[type="submit"]:hover {
	background-color: #C64545;
}
.chat_container p{
	font-family: 'Fira Sans',sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	color: #000;
	padding: 0;
	margin: 0 0 15px 0;
}
.chat_container p a{
	font-weight: 500;
	color: #1c75bc !important;
	text-decoration: underline;
}
.l_c_h span.woocommerce-Price-amount.amount, .cart span.woocommerce-Price-amount.amount {
	font-family: 'Fira Sans Light';
	font-size: 16px;
	font-weight: 100;
	color: #4F4F4F;
}
span.new-price span.woocommerce-Price-amount.amount {
	color: green;
}

.woocommerce .cart .quantity input.qty {
	width: 90%;
	text-align:center;
}

.woocommerce .woocommerce-info, 
.woocommerce .woocommerce-message {
	background: #2ea3f2;
}

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

span.discount-info,
span.price-discount {
	display: flex;
	flex-direction: column;
}
span.volume-discount-text,
span.price-discount bdi {
	color: green;
}
/*reviews*/
.rating-menu.menu-item {
	margin-top: 4px !important;
}
.rating-menu.menu-item .bv-inline-header{
	padding:0 !important;
}