/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #000;
	--black-lt: #231f20;
	--error: #e6004c;

	--green: #175e34;
	--green-lt: #197949;

	--blue: #338abc;

	--grey-lt: #e1e1e1;
	--grey-md: #bfbfbf;
	--grey-md2: #a0a0a1;
	--grey-dk: #2c2c2c;

	--header-height: 120px;
	--header-height-scroll: 120px;
	--section-p: 4rem;
	--section-p-sm: 3rem;

	--card-p-xs: .5rem;
	--card-p-sm: 1rem;
	--card-p-sm2: 1.25rem;
	--card-p-md: 2rem;
	--card-p-lg: 2rem;
	--card-p-xl: 3rem;

	--swiper-theme-color:#fff;
	--swiper-navigation-size: 2rem;

	--container-side: 6%;

	--font-sans: 'Poppins', Arial, Helvetica, sans-serif;
	--font-slab: 'Rokkitt', Arial, Helvetica, sans-serif;
}

@media (min-width: 576px) {
	:root {
		--container-side: calc((100% - 530px) / 2);
	}
}

@media (min-width: 768px) {
	:root {
		--container-side: calc((100% - 710px) / 2);
	}
}

@media (min-width: 992px) {
	:root {
		--card-p-lg: 3rem;
		--card-p-xl: 4rem;

		--container-side: calc((100% - 950px) / 2);
	}
}

@media (min-width: 1200px) {
	:root {
		--container-side: calc((100% - 1130px) / 2);
	}
}

@media (min-width: 1400px) {
	:root {
		--section-p: 6rem;
		--section-p-sm: 4rem;

		--card-p-lg: 4rem;
		--card-p-xl: 6rem;

		--swiper-navigation-size: 4rem;

		--container-side: calc((100% - 1310px) / 2);
	}
}

@media (min-width: 1680px) {
	:root {
		--container-side: calc((100% - 1590px) / 2);
	}
}


/* ------------------------------------------------------------------------ Page Styles & Resets */


body {
	font: 400 100%/1.6 var(--font-sans); 
	color: var(--black);
	background-color: var(--white);
} 

@media (min-width: 992px) {
	/*this rule helps to offset a form with an id that could be used as an anchor*/
	/*accounts for the height of the fixed header*/
	.anchor[id]::before {
		content: '';
		height: var(--header-height);
		margin-top: calc(var(--header-height) * -1);
		display: block;
	}

	body {
		padding-top: var(--header-height);
	} 
}

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--grey-dk);
	color: var(--white);
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1050;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: var(--white);
	background-color: var(--grey-md);
}

a:focus, .btn:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {
	outline: solid thin rgba(255, 255, 255, 0.5);
}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3, h4
.h1, .h2, .h3, .h4  { 	
	font-family: var(--font-slab);
	font-weight: 700;	
	margin-bottom: 1rem;
}	

h1, .h1,
h2, .h2 {	
	font-size: 2rem;	
	line-height: .9;
}

.h2--sans {
	font-family: var(--font-sans);
}

		
h3, .h3 { 
	font-size: 1.5rem; 
	line-height: 1;
	text-transform: initial;
}	

.h3--lg {
	font-size: 1.75rem;
}

.h3--sans {
	font-family: var(--font-sans);
}

h4, .h4 { 
	font-size: 1.25rem; 
	line-height:1;
}	


h2, h3  { 
	margin-top: 3rem;
}

hr + h2, 
hr + h3, 
section h2:first-child,
section h3:first-child {
	margin-top: 0;
}

h2 + h3 {
	margin-top: 3rem;
}
	

@media (min-width: 992px) {	
	h1, .h1 ,
	h2, .h2 {
		font-size: 2.75rem;
	}

	h3, .h3 { 
		font-size: 2rem; 
	}

	.h3--md {
		font-size: 2.125rem;
	}

	.h3--lg {
		font-size: 2.5rem;
	}	

	h4, .h4 { 
		font-size: 1.75rem; 
	}		
}	

@media (min-width: 1400px) {	
	h1, .h1,
	h2, .h2 {
		font-size: 3rem;
	}
}	

@media (min-width: 1680px) {	
	h1, .h1,
	h2, .h2 {
		font-size: 3.5rem;
	}
}	


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style-position: outside;
	padding-left: 1rem;
}

/*ul li, .list__item {	
    padding: 0 0 0.25rem 1.125em;
	background-size: 0.75em 0.75em;
}
*/
ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-muted {
	color: var(--grey-md)!important;
}

.text-black {
	color: var(--black)!important;
}

.text-green {
	color: var(--green)!important;
}

.text-initial {
	text-transform: initial;
}

.intro-text,
.intro-text--sm,
.intro-text--md,
.intro-text--lg,
ul.intro-text li,
ul.intro-text--sm li,
ul.intro-text--md li,
ul.intro-text--lg li {
	font-size: 1.25rem;
}

.note {
	font-size: .75rem;
}

.note--lg {
	font-size: 1rem;
}

.slab {
	font-family: var(--font-slab);
	font-weight: 500;
}


sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}


@media (min-width: 1400px) {	
	p,
	li,
	label,
	table,
	.btn {
		font-size: 1.125rem;
	}


	.intro-text--md,
	ul.intro-text--md li {
		font-size: 1.5rem;
	}

	.intro-text--lg,
	ul.intro-text--lg li {
		font-size: 2rem;
	}

	.note--lg {
		font-size: 1rem;
	}
}

@media (min-width: 1680px) {	
	.intro-text,
	ul.intro-text li {
		font-size: 1.5rem;
	}

	.intro-text--sm,
	ul.intro-text--sm li {
		font-size: 1.25rem;
	}

	.intro-text--md,
	ul.intro-text--md li {
		font-size: 1.75rem;
	}

	.intro-text--lg,
	ul.intro-text--lg li {
		font-size: 2.25rem;
	}
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--blue); 
	font-weight: 500;
	transition: all .25s ease;
	text-decoration: underline;
}	

a:hover {
	color: var(--blue);
	text-decoration: none;
}

.a--no-underline {
	text-decoration: none;
}

.a--no-underline:hover {
	text-decoration: underline;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
	transition: opacity .25s ease;
}				

a img:hover { 
	opacity: .9;
}	


@media (min-width: 992px) {	
	/*Change value to header height*/
	.a--anchor {
	    border-top: var(--header-height-scroll) solid transparent;
	    margin-top: calc(var(--header-height-scroll) * -1)!important;
	    -webkit-background-clip: padding-box;
	    -moz-background-clip: padding;
	    background-clip: padding-box;
	}
}	


/* ------------------------------------------------------------------------ Button Styles */

.btn {
	font: 700 1.25rem/1.2 var(--font-slab);
	text-transform: uppercase;
	margin-top: 1rem; 
	padding: .75rem 2rem;
	border-radius: .5rem;
	cursor: pointer;
}

.btn-sm {
	font-size: 1rem;
	padding: .625rem 1.5rem;
	border-radius: .25rem;
}

.btn-sm--dealer {
	padding: .75rem 1.5rem;
}

.btn-table {
	font-size: 1rem !important;
	font-family: var(--font-sans);
	text-transform: initial;
	width: 6.75rem;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0;
}

.btn-primary {
	font-weight: 600;
	background-color: var(--green);
	border-color: var(--green);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle { 
	text-decoration: underline;
	background-color: var(--green);
	border-color: var(--green);
	filter: brightness(1.3);
	box-shadow: none;
}

.btn-secondary {
	background-color: var(--grey-lt);
	border-color: var(--grey-lt);
	color: var(--black) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle { 
	text-decoration: underline;
	background-color: var(--grey-lt);
	border-color: var(--grey-lt);
	filter: brightness(1.2);
	box-shadow: none;
}

.btn-secondary--md {
	background-color: var(--grey-md2);
	border-color: var(--grey-md2);
}

.btn-secondary--md:hover,
.btn-secondary--md:focus,
.btn-check:active+.btn-secondary--md,
.btn-check:checked+.btn-secondary--md,
.btn-secondary--md.active,
.btn-secondary--md:active,
.show>.btn-secondary--md.dropdown-toggle { 
	text-decoration: underline;
	background-color: var(--grey-md2);
	border-color: var(--grey-md2);
}

.btn-intro {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
	background-color: rgba(44, 44, 44, .9);
	border: 4px solid var(--green);
	border-radius: .75rem;	
	width: 18rem;
}

.btn-intro:hover,
.btn-intro:focus,
.btn-check:active+.btn-intro,
.btn-check:checked+.btn-intro,
.btn-intro.active,
.btn-intro:active,
.show>.btn-intro.dropdown-toggle { 
	text-decoration: underline;
	color: var(--white);
	background-color: rgba(44, 44, 44, .9);
	border-color: var(--green);
	filter: brightness(1.2);
	box-shadow: none;
}


@media (min-width: 1400px) {	
	.btn {
		font-size: 1.75rem;
	}

	.btn-sm {
		font-size: 1.125rem;
	}
}

@media (min-width: 1680px) {	
	.btn-intro {
		font-size: 2.25rem;
		width: 22rem;
		border: 6px solid var(--green);
	}
}


/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}

.img--icon-managers,
.img--icon-warehouse {
 	width: 4rem;
 	margin-right: 2rem;
}

.product-logo {
	max-width: 18rem;
}

.product-logo--lg {
	max-width: 22rem;
}


@media (min-width: 768px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem 1rem 0;
		width:33%;
	}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 1rem 1.5rem;
		width:33%;
	}
}

@media (min-width: 1400px) {	
	.product-logo {
		max-width: 22rem;
	}

	.product-logo--lg {
		max-width: 28rem;
	}

	.img--icon-managers,
	.img--icon-warehouse {
	 	width: 5.5rem;
	}
}

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
}	

@media (min-width: 1400px) {
	hr, .hr {
		margin: 3rem auto;
	}
}	


/* ------------------------------------------------------------------------ Additional Utility Classes/Bootstrap Overrides */

.p-section {
	padding: var(--section-p) 0;
}

.pt-section {
	padding-top: var(--section-p);
}

.pb-section {
	padding-bottom: var(--section-p);
}

.p-section-sm {
	padding-top: var(--section-p-sm) 0;
}

.pt-section-sm {
	padding-top: var(--section-p-sm);
}

.pb-section-sm {
	padding-bottom: var(--section-p-sm);
}

.pe-section-sm {
	padding-right: var(--section-p-sm);
}

.ps-section-sm {
	padding-left: var(--section-p-sm);
}


.mt-section {
	margin-top: var(--section-p);
}

.mb-section {
	margin-bottom: var(--section-p);
}

.me-section {
	margin-right: var(--section-p);
}

.ms-section {
	margin-left: var(--section-p);
}


.mt-section-sm {
	margin-top: var(--section-p-sm);
}

.mb-section-sm {
	margin-bottom: var(--section-p-sm);
}

.me-section-sm {
	margin-right: var(--section-p-sm);
}

.ms-section-sm {
	margin-left: var(--section-p-sm);
}


.pt-4b,
.py-4b {
	padding-top: 2.25rem;
}

.pb-4b,
.py-4b {
	padding-bottom: 2.25rem;
}


.mt-4b,
.my-4b {
	margin-top: 2.25rem;
}

.mb-4b,
.my-4b {
	margin-bottom: 2.25rem;
}

.me-4b,
.mx-4b {
	margin-right: 2.25rem;
}

.ms-4b,
.mx-4b {
	margin-left: 2.25rem;
}

.mb-n1 {
	margin-bottom: -.25rem;
}


.sticky-top {
    top: calc(var(--header-height-scroll) + var(--section-p-sm));
}


.fw-500 {
	font-weight: 500;
}


.lh-11 {
	line-height: 1.1;
}

.lh-13 {
	line-height: 1.3;
}

.border-radius2 {
	border-radius: 2rem;
}

/*.d-flex.g-3>* {
    margin-top: var(--bs-gutter-y) !important;
}*/

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item a {
	color: var(--grey-dk);
	font-size: .875rem;
}

.breadcrumb-item a {
	font-weight: 400;
}


.container-ps {
    padding-left: var(--container-side) !important;
}

.container-pe {
    padding-right: var(--container-side) !important;
}


@media (min-width: 768px) {
	.container-lg-pe {
	    padding-right: var(--container-side) !important;
	}
}

@media (min-width: 992px) {
	.text-lg-nowrap {
	    white-space: nowrap !important;
	}

	.text-lg-left {
		text-align: left !important;
	}

	.mb-lg-4b {
		margin-bottom: 2.25rem;
	}
}

@media (min-width: 1400px) {
	.col-xxl-2b {
	    flex: 0 0 auto;
	    width: 20%;
	}
}

@media (min-width: 1680px) {
    .justify-content-xxxl-between {
        justify-content: space-between !important;
    }
}

.invalid-feedback.field-validation-error{
	display:initial;
}

/*For videos embedded through rte*/
.embeditem {
	position: relative;
	width: 100%;
	--bs-aspect-ratio: calc(9 / 16* 100%);
}

.embeditem::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.embeditem>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	width: 20.25rem; 
	transition: all .25s ease;
}

@media (max-width:1400px){
	.logo__img {
		max-width: 300px;
	}
}

.header { 
	z-index: 1040;
}

.navbar--fixed-top {
	transition: all .25s ease;
}

@media (min-width: 768px) {			
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}
}

@media (min-width: 992px) {
	.header--scroll .navbar--fixed-top {
	    border-bottom: 1px solid var(--green-lt);
	}
}

#product-search .btn,
#product-search .form-control{
	padding-top:5px;
	padding-bottom:5px;
}

#product-search .btn {
	margin:0;
	padding-left:10px;
	padding-right:10px;
	display: flex;
	align-items:center;
	font-size:1rem;
}


/* ------------------------------------------------------------------------ Social Icons */

.social__icon {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1.5rem;
}

.social__icon:last-child {
	margin-right: 0;
}

.social__icon:hover { 
	transform: translateY(-.25rem);
}

.social__icon--x { 
	background-image: url(/images/social-x.svg); 
}
	
.social__icon--facebook { 
	background-image: url(/images/social-facebook.svg); 
}
	
.social__icon--youtube { 
	background-image: url(/images/social-youtube.svg); 
}		
			
.social__icon--instagram { 
	background-image: url(/images/social-instagram.svg); 
}		

.social__icon--linkedin { 
	background-image: url(/images/social-linkedin.svg); 
}


.social--product .social__icon {
	display: block;
	width: 3rem;
	height: 3rem;
	margin: 0 .25rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 2.5rem;
}

.social--product .social__icon--x { 
	background-image: url(/images/social-x-green.svg); 
}
	
.social--product .social__icon--facebook { 
	background-image: url(/images/social-facebook-green.svg); 
}
	
.social--product .social__icon--youtube { 
	background-image: url(/images/social-youtube-green.svg); 
}		
			
.social--product .social__icon--instagram { 
	background-image: url(/images/social-instagram-green.svg); 
}		

.social--product .social__icon--linkedin { 
	background-image: url(/images/social-linkedin-green.svg); 
}

/* ------------------------------------------------------------------------ Navbar Nav */

.navbar {
	padding-top: 0; 
}

.nav-wrapper {
	background-color: var(--green);
}

@media (min-width: 992px) {
	.nav-wrapper .nav-link {
		margin: 0 1.5rem;
	}
}

@media (min-width: 1400px) {
	.nav-wrapper .nav-link {
		margin: 0 4rem;
	}
}

.navbar-nav {
	padding-left: var(--bs-gutter-x, .75rem);
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar .nav-link {
	font-family: var(--font-slab);
	font-size: 1.5rem;
	text-transform: uppercase;
	color: var(--white);
	/*padding: .375rem 1.5rem .375rem 0;*/
	padding: .375rem 0 !important;
	position: relative;
}

.navbar .nav-link:hover {
	text-decoration: underline;
}

.navbar .nav-link--secondary {
	color: var(--black);
}

.navbar .nav-link--secondary:hover {
	color: var(--black) !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--white);
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: var(--green);
	margin:0 0 .5rem 0;
	padding:0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.navbar-nav .dropdown-menu li > .dropdown-item.active {
	color: var(--white);
	font-weight: 700;
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--white);
	background-color: transparent;
}

.dropdown-item.active {
	font-weight: 700;
}

.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
	color: var(--white);
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
	color: var(--white);
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--white);
	color: inherit;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: var(--white);
	padding-left: 1rem;
}

.icon-arrow:after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}

.g-2b {
    --bs-gutter-y: 0.75rem;
}

.dropdown-toggle::after{
    display:none;
}

.dropdown-toggle .icon-arrow {
    position: absolute;
    right: 0;
}



@media (min-width: 992px) {	
	.navbar--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
	}

	/*
	.navbar-nav {
		position:relative;
	}
		*/

	.navbar .nav-link {
		/*padding: .75rem 1rem .5rem !important;*/
		border-bottom: 0;
	}

	.navbar .nav-item--login {
		background-color: var(--black);
		position: absolute;
    	right: .75rem;
	}

	.navbar .nav-link--secondary {
		line-height: 1;
		padding: .125rem 0 0 0 !important;
	}


	.navbar-nav .nav-item.active:hover .nav-link, .navbar .nav-link:hover {
	    color: var(--white);
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 15rem !important;
		background-color: var(--white);
		max-height: calc(100vh - 150px); /*120px is approximate height of header. Gives extra*/
		overflow-y: auto;
	}

	.navbar-nav .dropdown-item,
	.navbar-nav .dropdown-menu li > .dropdown-item.active,
	.dropdown-item.active, .dropdown-item:active,
	.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
		color: var(--black);
	}

	.navbar-nav .dropdown-item {
		padding: .25rem 1.5rem;
	}

	.navbar-nav .dropdown-item:hover{
		color:var(--green);
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.dropdown-menu>li:hover {
	    background-color: transparent;
	}

	/*
	.navbar-nav .megamenu {   
	    padding: 1rem 0;
	    margin-top: -1rem !important;
	} 
		*/

	.dropdown-toggle:after {
	 	display: none;
	}
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

	.navbar .has-megamenu {
		position: static !important;
	}

	.nav-item.has-megamenu .nav-link.show{
		background:#FFF;
		color:var(--green);
		border-top-right-radius: 10px;
		border-top-left-radius: 10px;
	}

	.navbar .megamenu {
		left: 0;
		right: 0;
		top:100%;
		width: 100%;
		margin-top: 0;
	}

	.megamenu .nav-link{
		color:inherit;
		margin:0;
		padding: 0 !important;
		padding-left:20px !important;
		text-align:left;
	}

	.megamenu .nav-link:hover{
		color:inherit;
	}
}
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px) {
	.navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
		overflow-y: auto;
		max-height: 90vh;
		margin-top: 10px;
	}
}


/* ------------------------------------------------------------------------ Side Nav */

.sidenav li {
	padding: 0;
	background-image: none;
}

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: 400;
	color: var(--black);
}

.sidenav .nav-link:hover {
    text-decoration: underline;
    color: var(--grey-md);
}

.sidenav .nav-link.active {
	color: var(--grey-dk);
	font-weight: 700;
}

.sidenav .submenu {
	margin: 0 0 .5rem 0;
    padding: 0 0 0 1rem;
}

.sidenav .icon-arrow.show::after {
    content: '-';
    font-size: 1.125rem;
}

.sidenav .icon-arrow::after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}


@media all and (max-width: 991px) and (min-width: 0px) {	
	.sidenav {
		border: 1px solid var(--grey-md);
		padding: 1.5rem 2rem;
	}
}



/* ------------------------------------------------------------------------ Bootstrap Menu Off Canvas Mobile */

body.offcanvas-active {
	overflow:hidden;
}

.offcanvas-header { 
	display:none;
}

.offcanvas-header .btn-close {
	width: 1.75em;
    height: 1.5em;
    background-position: center .5rem;
}

.screen-darken {
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(0, 0, 0, 0.5);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index:10; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}


@media all and (max-width: 991px) {
	.offcanvas-header { 
		padding: 0;	
		display:block;
	}

	.mobile-offcanvas {
		visibility: hidden;
		transform:translateX(-100%);
	    border-radius:0; 
		display:block;
	    position: fixed;
	    top: 0; left:0;
	    height: 100%;
	    z-index: 1200;
	    width:100%;
	    overflow-y: scroll;
	    overflow-x: hidden;
	    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	}

	.mobile-offcanvas.show {
		visibility: visible;
    	transform: translateX(0);
	}

	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}
}	


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0;
	border: none;
	cursor: pointer;
	border-radius: 0;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
    background-image: url(/images/menu-icon.svg);
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(/images/menu-icon-open.svg);
}


@media (min-width: 992px) {
	.navbar-toggler {
		display: none;
	}
}



/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

@media (min-width: 1680px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	    max-width: 1600px;
	}
}


/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
}

.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt);
}

.section--green {
	background-color: var(--green);
	color: var(--white);
}

.section--pattern{
	background-image:url("/images/grey-block-bg.jpg");
	background-repeat: no-repeat;
	background-size:cover;
}

.youtube-callout{
	text-decoration:none;
}

.youtube-callout img {
	position: absolute;
	top: 50%;
	max-width:100%;
	transform: translateY(-50%);
	transition: 0.3s;
	transform-origin: center;
}
.youtube-callout:hover img {
	transform: translateY(-50%) scale(1.05);
}

/* ------------------------------------------------------------------------ Banner */

.section--banner,
.section--banner--home .section--banner__img-wrapper,
.section--banner--atv {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	background-color: var(--black-lt);
	position: relative;
	color: var(--white);
}

.section--banner .container {
    z-index: 2;
    position: relative;
}

.section--banner__link {
	text-decoration: none;
	color: var(--white) !important;
}


.section--banner__img-wrapper {
    overflow: hidden;
}

.section--banner__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: all .75s;
}

.section--banner__img:hover {
	opacity: 1;
}

.section--banner__link:hover .section--banner__img {
	transform: scale(1.04);
}


.card--banner {
	background-color: rgba(255, 255, 255, .9);
}

.quote {
	position: relative;
}

.quote:before,
.quote:after {
	content: "";
	position: absolute;
	width: 2.25rem;
	height: 2.25rem;
	background: url(/images/icon-quote.svg) no-repeat center;
	background-size: 2.25rem;
}

.quote:before {
	top: -2rem;
	left: -2rem;
}

.quote:after {
	bottom: -2rem;
	right: -2rem;
	transform: rotate(180deg);
}


@media (min-width: 992px) {		
	.section--banner--home,
	.section--banner--home .section--banner__img-wrapper,
	.section--banner--atv,
	.section--banner--inside {
		height: 33rem;
	}
}

@media (min-width: 1400px) {	
	.section--banner {
		height: 24rem;
	}

	.section--banner--home,
	.section--banner--home .section--banner__img-wrapper {
		height: 36rem;
	}

	.section--banner--atv,
	.section--banner--inside {
		height: 44rem;
	}
}


/* ------------------------------------------------------------------------ Section Brochures */

.section--brochures {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	background-color: var(--black-lt);
	position: relative;
	color: var(--white);
}

.brochures-wrapper {
	position: relative;
}

.brochures-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ------------------------------------------------------------------------ Section Intro */

.section--intro {
	overflow: hidden;
}

.section--intro__bar {
	max-width: 275%;
}

.section--intro__caption {
	box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75);
	position: relative;
	z-index: 2;
}

.section--intro__logo {
	width: 7.5rem;
}

.section--intro__img {
	width: 12rem;
	aspect-ratio: .826 / 1;
	margin-bottom: 2rem;
    margin-left: calc(50% - 7rem);
}

.green-bar {
	left: 0;
	position: absolute;
	bottom: calc(-3.75rem + 1.25rem);
	background-color: var(--green);
	color: var(--white);
	border-radius: .75rem;
	z-index: 3;
	font-weight: 200;
	letter-spacing: 2px;
	text-align: center;
	padding: .5rem 3rem;
}

.section--intro__btns {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (max-width: 991px) and (min-width: 0px) {
	.section--intro__logo {
		display: block;
		margin-left: calc(50% - 3.75rem) !important;
	}

	.green-bar {
		width: calc(100% - 1.5rem);
	    margin-left: .75rem;
	}
}

@media all and (max-width: 1199px) and (min-width: 991px) {
	.section--intro .h2 {
		font-size: 2.25rem;
	}
}

@media (min-width: 576px) {	
	.section--intro__bar {
		max-width: 150%;
	}
}

@media (min-width: 768px) {	
	.section--intro__bar {
		max-width: 125%;
	}
}

@media (min-width: 992px) {	
	.section--intro__bar {
		max-width: 100%;
	}

	.section--intro__logo {
		width: 7.5rem;
	}

	.section--intro__img {
		position: absolute;
		right: 3rem;
		bottom: 0;
		width: 12rem;
		margin-bottom: 0;
		margin-left: 0;
	}

	.green-bar {
		left: 50%;
		transform: translateX(-50%);
		bottom: calc(-3.25rem + 1.25rem);
	}
}

@media (min-width: 1200px) {	
	.section--intro__logo {
		width: 8.5rem;
	}
}

@media (min-width: 1400px) {	
	.section--intro__logo {
		width: 12rem;
	}

	.section--intro__img {
		right: 2rem;
		width: 17rem;
		bottom: 1rem;
	}

	.green-bar {
		bottom: calc(-4.188rem + 1.25rem);
		padding: .5rem 11rem;
	}
}

@media (min-width: 1680px) {	
	.section--intro__logo {
		width: 17rem;
	}

	.section--intro__img {
		right: 5rem;
		width: 19rem;
	}

	.green-bar {
		bottom: calc(-4.5rem + 1.25rem);
	}
}



/* ------------------------------------------------------------------------ Section Shop By Tabs */

.section--shopby {
	position: relative;
}

.section--shopby:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4rem;
	background-color: var(--green);
}

.nav-tabs li.nav-item {
    background-image: none;
    padding: 0;
    flex: 1 1 0;
	max-width:50%;
}

.nav.nav-tabs{
	gap: 2rem;
}

.nav-tabs .nav-link {
    border: 0;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    color: var(--black);
    width: 100%;
    height: 4rem;
    background-color: var(--grey-lt);
}

.nav-tabs .nav-link:hover {
	text-decoration: underline;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--black); 
}

.d-flex.g-4>*  {
	margin-top: var(--bs-gutter-y) !important;
}



/* ------------------------------------------------------------------------ Section About Intro */

.section--about-intro .map{
	position:absolute;
	top:0;
	right:0;
	max-width:100%;
}

@media (min-width: 768px) {
	.section--about-intro .container {
		position: relative;
	}
	/*
	.section--about-intro .container:after {
		content: "";
		position: absolute;
		top: 3rem;
		right: 0;
		width: 22.5rem;
		aspect-ratio: 1 / 95;
		background: url(/images/about-map.png) no-repeat;
		background-size: 100%;
	}
		*/
}

/*
@media (min-width: 992px) {
	.section--about-intro .container:after {
		width: 28rem;
	}
}

@media (min-width: 1400px) {
	.section--about-intro .container:after {
		width: 30rem;
	}
}

@media (min-width: 1680px) {
	.section--about-intro .container:after {
		width: 35.125rem;
	}
}

*/



/* ------------------------------------------------------------------------ Events Listing */

.h2--events {
	padding-bottom:.5rem;
	margin-top: 1rem !important;
	border-bottom: 4px solid var(--green);
	font-weight: 400;
}

.event-item {
	border-bottom:1px solid var(--grey-md);
	padding: var(--card-p-sm2) 0 var(--card-p-sm) 0;
}

.event-item:first-child {
	padding-top: 0;
}

.event-item:last-child {
	border-bottom: none;
}

.event__img-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	aspect-ratio: 1 / .56;
	margin-bottom: .25rem;
}

.event__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: all .5s;
}


@media (min-width: 1400px) {
	.event-item {
		padding: var(--card-p-md) 0;
	}

	.event-item:first-child {
		padding-top: .75rem;
	}
}

/* ------------------------------------------------------------------------ Callouts (Calls to Action) */

.cta {
	display: block;
	font-weight: 400;
	position: relative;
	cursor:pointer;
	text-decoration: none;
	color: inherit;
	border-radius: 1rem;
	background-color: var(--white);
	color: var(--black);
/*	box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.2);*/
}

.cta:hover {
	color: var(--black);
}

.cta:hover .h4 {
	text-decoration: underline;
}

.cta-body {
	padding: var(--card-p-md);
	display: block;
}

.cta-body-sm {
	padding: var(--card-p-sm);
	display: block;
}

.cta-body-xs {
	padding: var(--card-p-xs);
	display: block;
}



.cta__img-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
    transition: all .5s;
}

.cta__img:hover {
	opacity: 1;
}

.cta:hover .cta__img {
	transform: scale(1.05);
}



/* ------------------------------------------------------------------------ Brand Callouts */

.cta--brands .cta__img-wrapper {
	aspect-ratio: 1 / .65;
}



/* ------------------------------------------------------------------------ Category Callouts */

.cta--category .cta__img-wrapper {
	background-color: var(--green);
	border-radius: 1rem;
	aspect-ratio: 1 / .75;
}

.cta--category:hover .intro-text {
	text-decoration: underline;
}



/* ------------------------------------------------------------------------ Sub Category Callouts */

.cta--subcategory-group {
	border-left: 4px solid var(--green);
	padding-left: 2rem;
}

.cta--subcategory-group .col-sm-6:first-child {
	margin-top: 0;
}

.cta--subcategory .cta__img-wrapper {
	background-color: var(--grey-lt);
	border-radius: 0;
	aspect-ratio: 1 / .75;
}

.cta--subcategory .cta__icon {
	width: auto;
}

.cta--subcategory:hover .intro-text {
	text-decoration: underline;
}

.cta--subcategory--viewmore .cta__img-wrapper {
	background-color: var(--green);
	flex-direction: column;
	color: var(--white);
	font-weight: 500;
	transition: all .25s ease;
}

@media (min-width: 576px) {
	.cta--subcategory-group .col-sm-6:nth-child(2) {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	.cta--subcategory-group .col-sm-6:nth-child(3),
	.cta--subcategory-group .col-sm-6:nth-child(4) {
		margin-top: 0;
	}
}

@media (min-width: 1400px) {
	.cta--subcategory-group .col-sm-6:nth-child(5) {
		margin-top: 0;
	}
}

/* ------------------------------------------------------------------------ Dealer Locator */

.cta--tm .cta__img-wrapper{
	max-width:150px;
	margin:auto;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius:1000px;
	border:1px solid #000;
}

/* ------------------------------------------------------------------------ Team Callouts */

.cta--team {
	cursor: auto;
}

.contact-team img{
	transition:0.3s;
}



.cta--team .cta__img-wrapper {
	aspect-ratio: .93 / 1;
	overflow: visible;
	text-align: center;
	margin-left: 10%;
    margin-right: 10%;
}

.cta--team:hover .cta__img {
	transform: scale(1);
}

.contact-team:hover .cta__img {
	transform: scale(1.2);
}

.cta--subcategory--viewmore:hover .cta__img-wrapper {
	filter: brightness(1.3);
	text-decoration: underline;
}

.cta--subcategory--viewmore .cta__icon {
 	width: 3rem;
}



/* ------------------------------------------------------------------------ Brochures/Video Callouts */

.cta--brochures {
	cursor: auto;
}

.cta--brochures .cta__img-wrapper {
	aspect-ratio: .84 / 1;
	overflow: visible;
}

.cta--brochures:hover .cta__img {
	transform: scale(1);
}


.cta--videos {
	cursor: auto;
}

.ratio-16x9 {
	background: var(--grey-md) url(/images/icon-loading.svg) no-repeat center;
	background-size: 5rem;
}






/* ------------------------------------------------------------------------ Full Image Callouts (eg: History) */

.cta--history {
	cursor: auto;
	height: calc(100% - 3.5rem);
}

.cta--history .cta__img-wrapper {
	aspect-ratio: 1 / .563;
	overflow: visible;
}

.cta--history .cta__img {
	object-fit: cover;
	border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.cta--history:hover .cta__img {
	transform: scale(1);
}


.cta--history .cta__img-wrapper {
	aspect-ratio: 1 / .563;
	overflow: visible;
}


/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	z-index: 1;
	transition: all .25s ease;
}

.cta--stacked:hover:before {
	background: rgba(0,0,0,0.5);
}

.cta--stacked .cta__heading {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: var(--white);
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.cta--stacked:hover .cta__heading {
	color: var(--white);
	transform: translate(-50%,-60%);
}



/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: 1rem;
	border: 0;
}

.card--border {
	border:  2px solid var(--grey-lt);
}

.card--green {
	background-color: var(--green);
}

.card-body {
	padding: var(--card-p-md);
}

.card-body--md-lg {
	padding: var(--card-p-md) var(--card-p-lg);
}

.card-body--xl {
	padding: var(--card-p-xl);
}

.card a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in-out;
}


/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
}

.list-group-item {
    padding: .75rem 1rem;
    color: var(--black);
    background-image: none;
}

.list-group-item:last-child {
    padding-bottom: .75rem;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion-button {
	border: 1px solid transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--grey-lt);
}

.accordion-button:not(.collapsed)::after { 
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item:last-child {
	border-bottom: 1px solid rgba(0,0,0,.125);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.accordion-flush .accordion-body {
    padding: 1rem .5rem;
}


/* ------------------------------------------------------------------------ Tables */

/*Override table inline styles*/

.table[style] {
	width:100% !important;
	height:auto !important;
}

.table td[style],
.table th[style] {
	height:auto !important;
}


.table {
	margin-bottom: 0;
}

.table--992 {
 	min-width: 58.375rem;
 }


.table td, .table th {
    border-bottom: transparent;
    padding: .5rem 1rem;
    vertical-align: middle;
    line-height: 1.3;
}

.table thead th {
    font-weight: 700;
    background-color: var(--green);
    color: var(--white);
}

.table tbody th,
.td--green {
    font-weight: 700;
    color: var(--green);
}

.th--models {
	width: 14rem;
}

.th--weight,
.th--price {
	width: 9rem;
}

.th--availability {
	width: 9rem;
}


@media (min-width: 1400px) {
	.th--models {
		width: 22rem;
	}

	.th--weight,
	.th--price {
		width: 15rem;
	}
}


/* ------------------------------------------------------------------------ Pagination */

.pagination {
	flex-wrap: wrap;
	margin-top: 3rem;
	align-items: center;
}

.page-item {
	background-image: none;
	padding: 0;
	margin: 0 0.5rem 0 0;
}

.page-link {
	width: 2.5rem;
    height: 2.5rem;
    border-radius: 50% !important;
    background: var(--green) url(/images/arrow-white.svg) no-repeat center left .875rem;
    background-size: 0.75rem;
    transition: all .25s;
}

#prevPage {
	transform: rotate(-180deg);
	margin-right:.25rem;
}

#nextPage {
	margin-left:.25rem;
}

.page-link:hover, .page-link:focus {
    z-index: 2;
    background-color: var(--green);
    filter: brightness(1.3);
}

#prevPage:hover {
	transform: translateX(-.5rem) rotate(-180deg);
}

#nextPage:hover {
	transform: translateX(.5rem);
}

.page-item .form-select {
    padding: 0.25rem 2.25rem 0.25rem 0.75rem;
    height: 2.75rem;
    width:5rem;
}

@media (min-width: 1400px) {
	.page-link {
		width: 3.5rem;
	    height: 3.5rem;
	    background: var(--green) url(/images/arrow-white.svg) no-repeat center left 1.25rem;
	    background-size: 1rem;
	}
}
	
/* ------------------------------------------------------------------------ Forms */
	
.required-input {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight:700;
}

legend {
	font-size: 1rem;
}

.form-label,
.form-check-label {
	font-family: var(--font-slab);
	font-weight: 500;
	font-size: 1.25rem;
}

.form-control, .form-select {
	border-radius: .5rem;
	border-color: var(--grey-lt);
	padding: .625rem .75rem;
	color: var(--black);
	font-size: 1rem;
}

.form-control--grey, .form-select--grey {
	background-color: var(--grey-lt);
}

.form-control--lg {
    padding: .75rem .75rem;
}

.form-control--search {
    background-image: url(/images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: 1rem;
    background-size: 1.5rem;
    padding-left: 3.25rem !important;
}

.form-control::placeholder {
	color: var(--black);
}

.form-control-lg.form-control--file {
	font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    color: var(--black);
    border-color: var(--grey-lt);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check-input {
    border: 1px solid var(--grey-lt);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--grey-dk);
    border-color: var(--grey-dk);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2em;
}

.form-switch .form-check-input:focus {
	background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
}

.form-text {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--grey-md);
}


@media (min-width: 1400px) {
	legend,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file {
		font-size: 1.125rem;
	}

	.form-control--lg {
	    padding: .938rem .75rem;
	}

	.form-label,
	.form-check-label {
        font-size: 1.375rem;
    }

	.form-check-input {
	    margin-top: .625rem;
	}

	.form-text {
	    margin-top: .5rem;
	    font-size: 1rem;
	    color: var(--grey-md);
	}	

	.event-filters div {
		width: calc(100% - 18rem);
	}

}

@media (min-width: 1680px) {
    .form-label,
	.form-check-label {
        font-size: 1.5rem;
    }
}


/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--grey-dk) url(/images/arrow-white.svg) no-repeat center;
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: all .25s ease;
}

.to-top:hover {
	background-color: var(--grey-md)
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


/* ------------------------------------------------------------------------ Swiper */

.featuredSwiper.swiper-container,
.similarSwiper.swiper-container {
	padding-left: 2rem;
	padding-right: 2rem;
}

.swiper-slide {
	height: auto;
}

.swiper-pagination-bullet {
    width: 1.125rem;
    height: 1.125rem;
    background-color: var(--grey-md2);
    border: 3px solid var(--grey-md2);
    opacity: 1;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background-color: var(--grey-dk);
}

/*.featuredSwiper,
.similarSwiper {
	padding-top: 1rem;
	padding-bottom: 1rem;
}*/

.swiper-button-next, .swiper-button-prev {
    background: url(/images/arrow-swiper-white.svg) no-repeat center;
}

.swiper-button-next--green, .swiper-button-prev--green {
    background: url(/images/arrow-swiper-green.svg) no-repeat center;
}

.swiper-button-next:after, .swiper-button-prev:after {
	display: none;
}

.swiper-button-next {
    transform: rotate(180deg);
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: 0;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
}

.productSwiper {
	padding-bottom: 3rem;
}


.productSwiper .swiper-pagination-bullet {
    width: 1.125rem;
    height: 1.125rem;
    background-color: var(--grey-lt);
    border: 3px solid var(--grey-lt);
    opacity: 1;
    border-radius: 0;
}

.productSwiper .swiper-pagination-bullet-active {
    background-color: var(--grey-md);
}


@media (min-width: 1400px) {	
	.featuredSwiper.swiper-container,
	.similarSwiper.swiper-container {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

#filters-container {
	width: 250px;
}

.filter-container.disabled label{
	opacity:0.5;
}

.product-container a{
	color:inherit;
	text-decoration: none;
	font-weight: normal;
}

.product-container .cta__img-wrapper{
	height:145px;
}

/* =============================================================================================
	FOOTER
============================================================================================= */
.print-footer {
	display: none;
}

.footer { 
	margin-top: auto!important;
	padding: var(--section-p-sm) 0;
}

.footer .logo__img {
	width: 37.5rem;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}

.col-footer-link {
	flex: 0 0 auto;
    width: 100%;
}

.footer-link {
	display: block;
	font-weight: 400;
	color: var(--black);
	font-size: .75rem;
	text-decoration: none;
}	

.footer-link:hover {
	text-decoration: underline;
}

@media all and (max-width: 991px) and (min-width: 576px) {	
	.col-footer-link {
	    width: 50%;    
	    padding-right: calc(var(--bs-gutter-x) / 2);
	    padding-left: calc(var(--bs-gutter-x) / 2);
	    margin-top: var(--bs-gutter-y);
	}
}

@media (min-width: 576px) {	
	.row-footer-link {
		flex-wrap: wrap;
	}

	.col-footer-link {
	    width: 50%;    
	}
}	

@media (min-width: 768px) {	
	.col-footer-link {
	    width: 33.3333333333%;    
	}
}

@media (min-width: 992px) {	
	.col-footer-link {
		width: auto;
	}
}