/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
	font-weight: 100 !important;
}
h1{
	font-size: 32px !important;
	line-height: 36px !important;
}
h1.big-title{
	font-size: 96px !important;
	line-height: 94px !important;
}
h1.title{
	font-size: 56px !important;
	line-height: 60px !important;
}
h1.small-title{
	font-size: 44px !important;
	line-height: 48px !important;
}
h2{
	font-size: 24px !important;
	line-height: 28px !important;
}
h3{
	font-size: 20px !important;
	line-height: 24px !important;
}

@media(max-width: 767px){
	h1{
		font-size: 24px !important;
		line-height: 100% !important;
	}
	h2{
		font-size: 20px !important;
		line-height: 100% !important;
	}
	h3{
		font-size: 18px !important;
		line-height: 100% !important;
	}
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

.con-default{
	padding: 80px 48px;
}
.con-reduced{
	padding: 48px;
}



.btn-wrapper{
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.btn-wrapper.left{
	justify-content: flex-start;
}
.btn-wrapper.right{
	justify-content: flex-end;
}
.btn-wrapper.center{
	justify-content: center;
}
.custom-btn,
.envisor-conf input[type="submit"]{
	width: max-content;
}
.custom-btn, .custom-btn img, .custom-btn svg, .custom-btn svg path{
	transition: all ease-in-out 0.25s;
}
.custom-btn{
	text-align: center;
	max-width: 100%;
	word-break: break-word;
    white-space: normal;
}
.custom-btn.solid_green{
	padding: 10px 24px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	background: #49783D;
	border: 1px solid #49783D;
	border-radius: 100px;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.custom-btn.solid_green:hover{
	opacity: 0.75;
}
.custom-btn.solid_dark,
.envisor-conf input[type="submit"], .envisor-conf input[type="submit"]:focus, .envisor-conf input[type="submit"]:active{
	padding: 10px 24px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	background: #332F2C;
	border: 1px solid #332F2C !important;
	border-radius: 100px !important;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.envisor-conf input[type="submit"]{
	width: max-content !important;
	margin: 40px auto 0;
	font-family: Montserrat;
}
.modal-wrapper .modal .right input{
	outline: 0;
}
.envisor-conf input[type="submit"]:hover{
	opacity: 0.75;
	background: #332F2C;
}
.modal-wrapper .modal .right p a{
	color: #332F2C;
}
.custom-btn.solid_green{
	padding: 10px 24px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	background: #49783D;
	border: 1px solid #49783D;
	border-radius: 100px;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.custom-btn.solid_secondary:hover{
	opacity: 0.75;
}
.custom-btn.solid_dark:hover{
	background: #544E4A;
}
.sub-products .additional-text svg path{
	fill: #49783D;
}
.custom-btn.empty_dark{
	padding: 10px 24px;
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 600;
	color: #332F2C;
	background: none;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.custom-btn.empty_dark svg path{
	fill: #332F2C;
}
.custom-btn.empty_dark:hover{
  color: #49783D;
}
.custom-btn.empty_light{
	padding: 10px 24px;
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	background: none;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.custom-btn.empty_light svg path{
	fill: #ffffff;
}
.custom-btn svg{
	margin-top: -2px;
}
.custom-btn.outline_dark{
	padding: 10px 24px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
	color: #332F2C;
	background: transparent;
	border: 1px solid #332F2C;
	border-radius: 100px;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.02rem;
	line-height: 150%;
}
.custom-btn.outline_dark:hover{
	background: #332F2C;
	color: #ffffff;
}
.custom-btn.outline_dark:hover svg path{
	fill: #fff;
}
.custom-btn.outline_dark:hover img{
	filter: brightness(0) invert(1);
}
.custom-btn.outline_light{
	padding: 10px 24px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	background: transparent;
	border: 1px solid #ffffff;
	border-radius: 100px;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 2%;
	line-height: 150%;
}
.custom-btn.outline_light:hover{
	background: #ffffff;
	color: #332F2C;
}
.custom-btn.outline_light:hover img{
	filter: invert(1);
}
.envisor-conf .intro{
	border: 1px solid #dddddd;
	border-radius: 4px;
}
.header-main > ul > li:hover > a{
	color: #49783D;
}
#backToTop{
	transition: all ease-in-out 0.25s;
	background: #49783D;
}
#backToTop svg{
	fill: #ffffff;
}
#backToTop:hover{
	background: #7BA068;
}


.sub-products .envelope svg{
	fill: #49783D;
	transition: all ease-in-out 0.25s;
}
.sub-products .envelope:hover svg{
	fill: #7BA068;
}
.title-text{
	font-family: Montserrat;
	text-transform: unset !important;
	font-weight: 300 !important
}
.title-text.black{
	color: #332F2C;
}
.title-text.white{
	color: #ffffff;
}
.title-text.left{
	text-align: left;
	justify-content: flex-start;
}
.title-text.right{
	text-align: right;
	justify-content: flex-end;
}
.title-text.center{
	text-align: center;
	justify-content: center;
}
.title-text.big{
	font-size: 96px !important;
	line-height: normal !important;
}
.title-text.medium{
	font-size: 56px !important;
	line-height: normal !important;
}
.title-text.small{
	font-size: 44px !important;
	line-height: normal !important;
}
.title-text.extra_small{
	font-size: 32px !important;
	line-height: normal !important;
	font-weight: 500 !important;
}
.title-text.tiny{
	font-size: 24px !important;
	line-height: normal !important;
	font-weight: 500 !important;
}
.title-text.light{
	font-weight: 300;
}
.title-text.normal{
	font-weight: 400;
}
.title-text.semi_bold{
	font-weight: 500;
}
.title-text.bold{
	font-weight: 600;
}
.products-grid .product::before{
	background: linear-gradient(transparent, #332F2C);
}
.products-grid .product .product-title{
	color: #ffffff;
}
.label-text{
	font-size: 14px;
	line-height: 20px;
}
.elements-wrapper .elements .element .images{
	background: #F9F7F5;
}
.sub-products .sub-product-card.active .label-text{
  color: #49783D;
	font-weight: 600 !important;
}
.sub-products .sub-product-card .img-back{
	background: #F9F7F5;
}
.categories .category.active{
	border-color: #49783D;
}
.sub-products .sub-product-card.all:hover .all-text{
	color: #49783D;
}
.sub-products .sub-product-card.all:hover .all-text svg path{
	fill: #49783D;
}
.envisor-conf .step-type h3, 
.envisor-conf .step-material h3,
.envisor-conf .step-trim h3,
.envisor-conf .step-color h3,
.envisor-conf .step-contact h3,
.envisor-conf .thank-you h3, .envisor-conf .thank-you h2{
	font-family: Montserrat;
}
.envisor-conf .step-type .type p, .envisor-conf .step-material .type p{
	color: #5e5e5e;
}
.envisor-conf .step-color .color .p-tag.green{
	background: #DDF7CF;
}
.envisor-conf .step-color .color .p-tag.gray{
	background: rgba(221, 221, 221, 0.5);
}
.envisor-conf .thank-you-message p{
	color: #7BA068;
}
.envisor-conf .error-log .message .msg-head h2{
	font-family: Montserrat;
}
.envisor-conf .error-log{
	border: 1px solid #dddddd;
}

@media(max-width: 1080px){
	.title-text.big{
		font-size: 32px !important;
		line-height: normal !important;
	}
	.title-text.medium{
		font-size: 32px !important;
		line-height: normal !important;
	}
	.title-text.small{
		font-size: 24px !important;
		line-height: normal !important;
	}
	.title-text.extra_small{
		font-size: 22px !important;
		line-height: normal !important;
	}
	.title-text.tiny{
		font-size: 18px !important;
		line-height: normal !important;
	}
	.custom-btn{
		font-size: 14px;
	}
	.con-default{
		padding: 40px 20px;
	}
	.con-reduced{
		padding: 32px 20px;
	}
	.sub-products .sub-product-card.all{
		background: #F9F7F5;
	}
	.btn-wrapper.left{
		align-items: flex-start
	}
	.btn-wrapper.right{
		align-items: flex-end;
	}
	.btn-wrapper.center{
		align-items: center;
	}
	.custom-btn{
		font-size: 14px !important;
		padding: 5px 12px !important;
	}
}



.hero:before{
	background: linear-gradient(transparent, #332F2C);
}
.main-product.top_left:before,
.main-product.top_center:before,
.main-product.top_right:before{
	background: linear-gradient(#332F2C, transparent);
}
.main-product.bottom_left:before,
.main-product.bottom_center:before,
.main-product.bottom_right:before{
	background: linear-gradient(transparent, #332F2C);
}
.main-product .custom-btn{
	padding-left: 0;
	padding-right: 0;
}

.product-type-wrapper .product-type.green .top{
	background: linear-gradient(0deg,#F9F7F5 0%, #F9F7F5 50%, #DDF7CF 50%, #DDF7CF 100%);
}
.product-type-wrapper .product-type.gray .top{
	background: linear-gradient(0deg,#F9F7F5 0%, #F9F7F5 50%, #D8DCD6 50%, #D8DCD6 100%);
}
.btn-label{
	padding: 10px 16px;
	border: 1px solid #49783D;
	color: #49783D;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.02rem;
}
.small-heading{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.02rem;
}
.product-type-wrapper .product-type .bottom .features .feature{
	color: #332F2C;
}
.product-type-wrapper .product-type.green .bottom .bottom-txt{
	background: #DDF7CF;
}
.product-type-wrapper .product-type.gray .bottom .bottom-txt{
	background: #D8DCD6;
}
.wide-card .left{
	background: #F9F7F5;
}
.txt-description{
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 10px;
}
.logo-slider .custom-pagination .custom-dot{
  background: #F2F6F0;
}
.logo-slider .custom-pagination .custom-dot.is-active{
  background: #49783D;
}
.logo-slider .splide__arrow svg path {
	fill: #dddddd;
}
.tabs-wrapper{
	background: #D8DCD6;
}
.tabs-wrapper.resources{
	background: none;
	border: 1px solid #dddddd;
}
.tabs-wrapper .tab{
	border: 1px solid transparent;
	transition: all ease-in-out 0.25s;
}
.tabs-wrapper.resources .tab{
	border: 1px solid transparent;
}
.tabs-wrapper .tab:hover{
	background: #F2F6F0;
}
.tabs-wrapper .tab.active{
	background: #ffffff;
	border-color: #332F2C;
}
.tabs-wrapper.resources .tab.active{
	background: none;
	border: 1px solid #332F2C;
}
.divider{
	border-top: 1px solid #dddddd;
}
.breadcrumbs, .breadcrumbs ul li a{
	color: #5e5e5e;
}
.breadcrumbs ul li a:hover{
	color: #49783D;
}
.product-details .product-details-gallery, .product-details .thumbnails .thumbnail{
	border: 1px solid #dddddd !important;
}
.product-details .thumbnails .thumbnail.is-active{
	border: 1px solid #5e5e5e !important;
}
.product-details .right .key-features ul li a{
	color: #332F2C;
}

.product-details .right .product-tags .p-tag.green, .envisor-conf .step-type .type .tag{
	background: #DDF7CF;
	color:  #332F2C;
}
.product-details .right .product-tags .p-tag.gray{
	background: #dddddd;
	color:  #332F2C;
}
.product-details .right .product-tags .p-tag.brown{
	background: #EDE6DA;
	color:  #332F2C;
}
.product-details .right .txt-description, .gallery-project .top .right .add-desc h3{
	color: #49783D;
}
.switcher .current-value, .product-details .switcher .options{
	border: 1px solid #dddddd;
}
.switcher .current-value:hover, .product-details .switcher .current-value.active{
	border-color: #5e5e5e;
}
.switcher .options a{
	color: #332F2C;
}
.product-details .product-details-gallery{
	border: 1px solid #dddddd;
}
.downloads-wrapper{
	background: #F2F6F0;
}
.section-title.big{
	max-width: 1200px;
	margin: 0 auto 40px;
	font-size: 56px;
	line-height: 60px;
	font-weight: 300;
	font-family: Tenor Sans;
}
.downloads h3{
	font-family: Tenor Sans;
	font-weight: 600 !important;
	font-size: 20px !important;
	line-height: 24px !important;
	letter-spacing: 0.02rem;
	color: #49783D;
	margin-bottom: 4px;
}
.downloads ul li a{
	color: #332F2C;
}
.downloads-wrapper .no-downloads{
	display: flex;
	flex-direction: column;
}
.downloads-wrapper .no-downloads h4{
	color: #49783D;
	font-family: Montserrat;
	text-transform: none !important;
	font-size: 24px;
	line-height: 28px;
	font-weight: 500 !important;
}
.resources-wrapper .product-types{
	border: 1px solid #dddddd;
}
.resources-wrapper .product-types .prodType.active{
	background: #544E4A;
	color: #ffffff;
}
.resources-wrapper .product-types h4{
	font-family: Montserrat;
}
.resources-wrapper .resources .docGroup h4{
	border-top: 1px solid #dddddd;
}
.resources-wrapper .resources .docGroup:last-child h4{
	border-bottom: 1px solid #dddddd;
}
.resources-wrapper .resources .doc-item{
	border-top: 1px solid #dddddd;
}
.resources-wrapper .resources .doc-item:not(:has(.faqs)):hover{
	background: #F9F7F5;
}
.resources-wrapper .resources h4:hover, .resources-wrapper .resources h4.active{
	background: #F2F6F0;
}
.resources-wrapper .resources .doc-item .download, .resources-wrapper .resources .doc-item .open-link{
	border: 1px solid #332F2C;
}
.resources-wrapper .resources .doc-item .download svg path, .resources-wrapper .resources .doc-item .open-link svg path{
	fill: #332F2C;
}
.resources-wrapper .resources .doc-item .right .docs a{
	color: #5e5e5e;
}
.resources-wrapper .resources .doc-item .right .docs a:not(:last-child){
	border-right: 1px solid #5e5e5e;
}
.resources-wrapper .resources .doc-item .download:hover, .resources-wrapper .resources .doc-item .open-link:hover{
	background: #544E4A;
}
.downloads-wrapper .faqs .faq-column .faq:nth-child(1){
	border-top: 1px solid #dddddd;
}
.downloads-wrapper .faqs .faq{
	border-bottom: 1px solid #dddddd;
}
.resources-wrapper .resources .doc-item .download:hover svg path,  .resources-wrapper .resources .doc-item .open-link:hover svg path{
	fill: #ffffff;
}
.resources-wrapper .resources h4 .download-all{
	color: #332F2C;
}
.resources-wrapper .resources h4 .download-all:hover{
	color: #49783D;
}
.resources-wrapper .resources h4 .download-all:hover svg path{
	fill: #49783D;
}
.resources-wrapper .videos .video-doc h5{
	color: #49783D;
}
.gallery-wrapper .top .cat-item::after{
	background: #49783D;
}
.gallery-wrapper .bottom .group, .gallery-wrapper .bottom .sub-item{
	background: #F9F7F5;
}
.gallery-wrapper .bottom h3.text{
	font-family: Montserrat;
}
.gallery-project .gallery-main{
	background: #F9F7F5;
}
.gallery-project .top .right .txt-description {
	color: #49783D;
}
.all-downloads h3{
	color: #49783D;
	font-family: Montserrat;
	font-weight: 600 !important;
	margin-bottom: 10px;
}
.all-downloads a{
	color: #332F2C;
}
.faqs-wrapper .faqs h6{
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}
.faqs-wrapper .faqs h6:hover{
	background: #F2F6F0;
}
.title-wrapper{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
h1.title-text,
h2.title-text,
h3.title-text,
h4.title-text,
h5.title-text,
h6.title-text,
p.title-text{
	margin-bottom: 0 !important;
}

h1.title-text.light,
h2.title-text.light,
h3.title-text.light,
h4.title-text.light,
h5.title-text.light,
h6.title-text.light,
p.title-text.light{
	font-weight: 300 !important;
}
h1.title-text.normal,
h2.title-text.normal,
h3.title-text.normal,
h4.title-text.normal,
h5.title-text.normal,
h6.title-text.normal,
p.title-text.normal{
	font-weight: 400 !important;
}
h1.title-text.semi_bold,
h2.title-text.semi_bold,
h3.title-text.semi_bold,
h4.title-text.semi_bold,
h5.title-text.semi_bold,
h6.title-text.semi_bold,
p.title-text.semi_bold{
	font-weight: 500 !important;
}
h1.title-text.bold,
h2.title-text.bold,
h3.title-text.bold,
h4.title-text.bold,
h5.title-text.bold,
h6.title-text.bold,
p.title-text.bold{
	font-weight: 700 !important;
}
h1.title-text.primary,
h2.title-text.primary,
h3.title-text.primary,
h4.title-text.primary,
h5.title-text.primary,
h6.title-text.primary,
p.title-text.primary{
	font-family: Montserrat !important;
}
h1.title-text.secondary,
h2.title-text.secondary,
h3.title-text.secondary,
h4.title-text.secondary,
h5.title-text.secondary,
h6.title-text.secondary,
p.title-text.secondary{
	font-family: Tenor Sans !important;
}

.envisor-conf .heading .additional-info a,
.custom-heading .additional-info a{
	color: #49783D;
}
.envisor-conf .heading .additional-info a:hover,
.custom-heading .additional-info a:hover{
	color: #7BA068;
}
.envisor-conf .steps .step{
	color: #332F2C;
}
.envisor-conf .steps .step svg path{
	fill: #332F2C;
}
.envisor-conf .steps .step.active, .envisor-conf .thank-you-message{
	background: #F2F6F0;
	color: #49783D
}
.envisor-conf .steps .step.done{
	color: #49783D
}
.envisor-conf .steps .step.passed{
	color: #49783D
}
.envisor-conf .steps .step.active svg path, .envisor-conf .steps .step.done svg path{
	fill: #49783D;
}
.envisor-conf .steps .step.passed svg path{
	fill: #49783D;
}

.envisor-conf .progress .bar{
	background: rgba(51, 47, 44, 0.08);
}
.envisor-conf .progress .bar span{
	background: #332F2C;
}
.envisor-conf .step-content .step-heading p{
	color: #5e5e5e;
}
.envisor-conf .step-material .material-wrapper .material-type,
.envisor-conf .panel-wrapper .panel, .envisor-conf .panel-wrapper .sample,
.envisor-conf .step-trim .trim-wrapper .trim{
	border: 1px solid #dddddd;
}
.envisor-conf .step-type .type{
	border: 1px solid #dddddd;
}
.envisor-conf .step-type .type:hover,
.step-material .material-wrapper .material-type:hover,
.envisor-conf .panel-wrapper .panel:hover, .envisor-conf .panel-wrapper .sample:hover,
.envisor-conf .step-trim .trim:hover{
	border-color: #5e5e5e;
}
.envisor-conf .step-material .material-wrapper .material-type.active, 
.envisor-conf .panel-wrapper .panel.active, .envisor-conf .panel-wrapper .sample.active,
.envisor-conf .step-trim .trim-wrapper .trim.active{
	border-color: #7BA068;
}
.envisor-conf .step-type .type.active{
	border-color: #7BA068;
	background: #F2F6F0;
}
.envisor-conf .step-material .material-wrapper .material-type.active,
.envisor-conf .panel-wrapper .panel.active, .envisor-conf .panel-wrapper .sample.active,
.envisor-conf .step-trim .trim-wrapper .trim.active{
	background: #F2F6F0;
}
.envisor-conf .dimensions-wrapper .model,
.envisor-conf .color-wrapper .color{
	border: 1px solid #dddddd;
}
.envisor-conf .color-wrapper .color:hover{
	border-color: #5e5e5e;
}
.envisor-conf .dimensions-wrapper .model.active,
.envisor-conf .color-wrapper .color.active{
	border-color: #7BA068;
}
.envisor-conf .dimensions-wrapper .model .checkmark,
.envisor-conf .color-wrapper .color .checkmark{
	border: 2px solid #332F2C;
}
.envisor-conf .dimensions-wrapper .model .checkmark .dot,
.envisor-conf .color-wrapper .color .checkmark .dot{
	background: #332F2C;
}
.envisor-conf input:-webkit-autofill,
.envisor-conf input:-webkit-autofill:hover,
.envisor-conf input:-webkit-autofill:focus,
.envisor-conf input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    -webkit-text-fill-color: #332F2C !important; /* Optional: to also change text color */
    transition: background-color 500s ease-in-out 0s; /* Optional: to prevent transition flickering */
}
.envisor-conf input, .envisor-conf select, .envisor-conf textarea{
	border: 1px solid #dddddd !important;
}
.envisor-conf input:focus, .envisor-conf input:active,
.envisor-conf select:focus, .envisor-conf select:active,
.envisor-conf textarea:focus, .envisor-conf textarea:active{
	border-color: #5e5e5e !important;
}
.envisor-conf input::placeholder, .envisor-conf form input::placeholder,
.envisor-conf select::placeholder, .envisor-conf form select::placeholder, 
.envisor-conf form select.is-placeholder, .envisor-conf form textarea::placeholder,
.envisor-conf .hs_reference_project_number legend,
.envisor-conf .hs_project_site_location legend{
	color: rgba(94, 94, 94, 0.5) !important;
}
.envisor-conf form select {
	color: #5e5e5e !important;
}
.envisor-conf .dimensions-wrapper .model .cell .additional-info,
.envisor-conf .color-wrapper .color .cell .additional-info{
	color: #5e5e5e;
}
.envisor-conf .upload-wrapper .upload-place p{
	color: #332F2C;
}
.envisor-conf .upload-wrapper .upload-place p.small{
	color: #5e5e5e;
}
.envisor-conf .upload-wrapper .upload-place .upload-names{
	color: #5e5e5e;
}
.envisor-conf .heading p{
	color: #5e5e5e;
}
.envisor-conf .fn-date-picker.pika-single{
	border: 1px solid #dddddd !important;
	border-radius: 4px !important;
	box-shadow: 0 4px 12px rgba(85, 85, 85, 0.12) !important;
}
.envisor-conf .thank-you .final-img .thank-you-message{
	border: 1px solid #49783D;
}
.envisor-conf .thank-you .final-img .thank-you-message .right h3,
.envisor-conf .thank-you .configuration-wrapper h2{
	color: #49783D;
}
.envisor-conf .thank-you .configuration-wrapper{
	border: 1px solid #dddddd;
}
.envisor-conf .thank-you .configuration-bottom{
	border-top: 1px solid #dddddd;
}
.envisor-conf .fn-date-picker .pika-table th,
.envisor-conf .fn-date-picker .pika-table td,
.envisor-conf .fn-date-picker .pika-table abbr,
.envisor-conf .fn-date-picker td .pika-button{
	color: #544E4A;
	font-family: Montserrat;
}
.envisor-conf .fn-date-picker td.is-selected .pika-button{
	background: #49783D;
	color: #ffffff;
}
.envisor-conf .fn-date-picker td .pika-button:hover{
	background: #F2F6F0 !important;
	color: #544E4A !important;
}
.envisor-conf .fn-date-picker .pika-label{
	font-family: Montserrat;
	font-weight: 600;
}
select option{
	color: #332F2C;
}
.message-wrapper .bottom .success .right h3,
.message-wrapper .bottom .success .right p{
	font-family: Montserrat;
	color: #49783D;
}
.message-wrapper .bottom .success{
	border: 1px solid #49783D;
	background: #F2F6F0;
}
.message-wrapper .bottom .info{
	border: 1px solid #dddddd;
}
.envisor-conf ul[role="checkbox"].multi-container li{
	border: 1px solid #dddddd;
}
.envisor-conf ul[role="checkbox"].multi-container li:hover{
	border-color: #5e5e5e;
}
.envisor-conf .error-log .message .msg-head svg path{
	fill: #332F2C;
}
.envisor-conf ul[role="checkbox"].multi-container li input, .envisor-conf input[type="checkbox"]{
	border: 2px solid #332F2C !important;
}
.envisor-conf ul[role="checkbox"].multi-container li:has(input:checked), .envisor-conf ul[role="checkbox"].multi-container li input:checked, .envisor-conf input[type="checkbox"]:checked{
	border-color: #332F2C;
}
.envisor-conf ul[role="checkbox"].multi-container li:has(input:checked){
	background: #F9F7F5;
}
.all-downloads ul li a{
	color: #49783D;
}
.custom-heading p.title-text, .custom-heading p.title-text a{
	text-decoration: none !important;
	font-weight: 500 !important;
}
.link-to-section a{
	color: #332F2C;
}

sup{
  font-size: 70% !important;
  top: -.75em !important;
}

.hs_cos_wrapper_type_rich_text ul{
	padding-left: 30px;
}


@media(max-width: 1080px){
	sup{
		top: -1em !important;
	}
	.section-title.big{
		font-size: 40px;
		line-height: 48px;
	}
	.title-wrapper{
		gap: 12px;
	}
	.downloads-wrapper .no-downloads{
		align-items: flex-start;
		margin-top: 0;
	}
	.downloads-wrapper .no-downloads h2{
		font-size: 32px !important;
		line-height: 100% !important;
	}
	
		.tabs-wrapper .tab{
			border: 1px solid transparent;
			transition: all ease-in-out 0.25s;
			background: #F2F6F0;
		}
		.tabs-wrapper.resources .tab{
			border: 1px solid transparent;
			background: #F2F6F0;
		}
		.tabs-wrapper .tab:hover{
			background: #ffffff;
		}
	.hs_cos_wrapper_type_rich_text ul{
		padding-left: 30px !important;
	}
}
@media(max-width: 767px){
	.btn-label{
		padding: 4px 10px;
		font-size: 14px;
		text-align: center;
	}
	.downloads-wrapper .faqs .faq-column .faq:nth-child(1){
		border-top: 0;
	}
	.downloads-wrapper .faqs .faq-column:nth-child(1) .faq:nth-child(1){
		border-top: 1px solid #dddddd;
	}
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header{
	position: relative;
	z-index: 111;
	background: #ffffff;
}
.header-top{
	background: #332F2C;
}
.header-main .logo{
	background: #49783D;
}
.header-main .menu ul li a{
	color: #332F2C;
}
.header-main .menu ul ul{
	background: #ffffff;
}
.header-main .menu > ul > li > ul > li a,
.header-main .menu > ul > li > ul > li > ul > li a,
.header-main .menu > ul > li > ul li a svg path{
	color: #332F2C;
	fill: #332F2C;
}
.header-main .menu ul li a:hover,
.header-main .menu ul li a:hover svg path{
	color: #49783D;
	fill: #49783D;
}
.header-main .menu ul > li > ul > li > a:hover, 
.header-main .menu ul > li > ul > li > ul > li > a:hover,
.header-main .menu ul > li > ul > li > a:hover svg path, 
.header-main .menu ul > li > ul > li > ul > li > a:hover svg path{
	background: #49783D;
	color: #ffffff;
	fill: #ffffff;
}
.header-main .menu ul li.active > a,
.header-main .menu ul li.active > a svg path{
	color: #49783D;
	fill: #49783D;
}
.header-main .menu ul > li > ul > li.active > a,
.header-main .menu ul > li > ul > li.active > a svg path{
	background: #49783D;
	color: #ffffff;
	fill: #ffffff;
}
.header-main .menu > ul > li.active > a svg{
	transform: rotate(-180deg);
}
.categories{
	background: #F2F6F0;
}
footer{
	background: #F9F7F5;
}
footer .footer-bottom{
	background: #332F2C;
	width: 100%;
}
.footer-bottom .right p{
	color: #ffffff;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}