/* 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.
*/
:root {
  /* FUNCTIONS */
  --primary-color: #00e500;
  --secondary-color: #3574E3;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
  --header-height: 85px;
  
  /* GRIDS */
  --max-width: 1296px;
}

@media (max-width: 767px) {
  :root {
    --header-height: 67px;
  }
}

*, *: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 {
  --gap: 2.127659574%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}

.link-mask, .link-mask-container a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3 !important
}
.body-container-wrapper {
	margin-top: 85px;
}

@media (max-width: 767px) {
	.body-container-wrapper {
	margin-top: 67px;
}
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.body-wrapper {
  overflow-x: hidden;
}

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

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

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

.dnd-section.dnd-section--full {
  padding-left: 0;
  padding-right: 0
}

.dnd-section.dnd-section--narrow {
  --gap: 12px
}

.body-container-wrapper .row-number-1 {
  padding-top: 130px !important
}

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

  .body-container-wrapper .row-number-1 {
    padding-top: 90px !important
  }
}

/* @media(max-width: 650px) {
.dnd-section {
padding: initial 0!important;
}
} */

.body-container--comparator {
  --gap: 5.5%;
}

.body-container--comparator .span6 {
  width: calc(50% - var(--gap));
}

.body-container--comparator .row-fluid {
  flex-wrap: nowrap;
  justify-content: space-between;
}


/* css override first section page Team and ambassador listing */


.body-container-wrapper .row-1-no-padding .row-number-1 {
  padding-top: 0px !important;
}

@media (max-width: 767px) {
  .body-container-wrapper .row-1-no-padding .row-number-1 {
    padding-top: 0px !important;
  }
}

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





















@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-Light.woff) format('woff');
	font-style: normal;
	font-weight: 300;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-LightItalic.woff) format('woff');
	font-style: italic;
	font-weight: 300;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-Regular.woff) format('woff');
	font-style: normal;
	font-weight: 400;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-RegularItalic.woff) format('woff');
	font-style: italic;
	font-weight: 400;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-Medium.woff) format('woff');
	font-style: normal;
	font-weight: 500;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-MediumItalic.woff) format('woff');
	font-style: italic;
	font-weight: 500;
  font-display: swap
}


@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-Semibold.woff) format('woff');
	font-style: normal;
	font-weight: 600;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-SemiboldItalic.woff) format('woff');
	font-style: italic;
	font-weight: 600;
  font-display: swap
}



@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-Bold.woff) format('woff');
	font-style: normal;
	font-weight: 700;
  font-display: swap
}


@font-face {
  font-family: KarbonApp;
  src: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/fonts/KarbonApp-BoldItalic.woff) format('woff');
	font-style: italic;
	font-weight: 700;
  font-display: swap
}

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

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 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* 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;
  max-width: 100%;
  height: auto
}


@media screen and (max-width: 767px) {
	h2,
	h3 {
		font-size: 17px !important;
		letter-spacing: 3px !important;
		line-height: 25px !important;
	}
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: "Karbon App";
  font-style: italic;
  text-transform: uppercase;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 20px;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
  opacity: .5;
  cursor: not-allowed
}

a.button:hover,
a.button:focus, 
a.button:active {
  color: #FFFFFF;	
}


.button.button--secondary {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #ffffff;
  padding: 0px 0px 10px 0px;
}

.button.button--black,
.button.button--black:hover,
.button.button--black:focus,
.button.button--black:active {
  background-color: #131313;
  border-color: #131313;
  color: #fff
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* arrow button */
.button.button--arrow {
  background: none;
  color: initial;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 24px;
  border: none;
  display: flex;
  align-items: center;
}

.button.button--arrow:hover {
  color: initial;
  background: none;
  border: none;
}

.button.button--arrow .back-to-page-svg {
  margin-right: 13px;
}

.link-to-product--home {
	border-bottom: 1px solid #aeca2e;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 3px;
    line-height: 20px;
    margin-bottom: 40px;
    padding-bottom: 9px;
    text-transform: uppercase;
	width: fit-content;
}
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
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;
} */

label.hs-form-booleancheckbox-display {
    display: flex;
    /* justify-content: flex-start; */
    /* align-content: flex-start; */
}

label.hs-form-booleancheckbox-display input.hs-input {
    height: 13px;
  min-width: 13px;
	margin-top: 8px;
	
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
    margin-left: 0px !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;
}



/* FORM NEWSLETTER FOOTER */


.footer__top .form-title {
  font-size: .917rem;
  font-weight: 300;
  font-style: italic;
}

.footer__top form input[type=email] {
	background-color: #131313;
	color: #ffffffb3;
	border-right: none;
	border-top: none;
	border-left: none;
	border-bottom: 1px solid #ffffff;
}

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


/* to set inline all checkboxes about tyope of cyclist property */
.hs_i_m_a_cyclist_type_ .input ul {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}





/* MULTI-FORM MODULE ---------------------------------------------------------- */

.multi-form-section__form {
	display: none;
}

.show-form {
	display: block !important;
}

.multi-form-section__buttons--wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	gap: 30px;
	flex-wrap: wrap;
}
@media (max-width: 540px) {
	.multi-form-section__buttons--wrapper {
  flex-direction: column;
		align-items: center;
}
}

/* .multi-form-section__buttons--wrapper .button {
	margin: 0 30px;
} */

.multi-form-section__form .hs-input {
/*     width: 100% !important; */
}

.multi-form-section__form .hs-dependent-field ul.inputs-list {
    display: flex;
    flex-wrap: wrap;
	gap: 6px;
}

.multi-form-section__form .hs-dependent-field ul.inputs-list li.hs-form-checkbox {
    margin-bottom: 0px;
}

.multi-form-section__form .hs-dependent-field ul.inputs-list li.hs-form-checkbox label {
/* 	display: flex; */
    border: 1px solid #d1d6dc;
    padding: 4px 10px;
	margin-bottom: 0px;
}

.multi-form-section__form .hs-dependent-field ul.inputs-list li.hs-form-checkbox label span {
	min-width: fit-content;
}

/* END MULTI-FORM MODULE ---------------------------------------------------------- */


/* FORM ASSISTANCE FIX FIELDS ALIGNMENT */
.body-container--support-assistance fieldset.form-columns-1 .input {
    margin-right: 0px !important;
}

.body-container--support-assistance fieldset.form-columns-2 > .hs-form-field:nth-child(2) .input {
    margin-right: 0px !important;
}


/* FORM BECOME A DEALER FIX FIELDS ALIGNMENT */
.body-container--become-a-dealer fieldset.form-columns-1 .input {
    margin-right: 0px !important;
}

.body-container--become-a-dealer fieldset.form-columns-2 > .hs-form-field:nth-child(2) .input {
    margin-right: 0px !important;
}

.body-container--become-a-dealer fieldset.form-columns-1 .hs-input {
	width: 100% !important;
}


/* FORM MANUALS FIX FIELDS ALIGNMENT */
.body-container--manuals fieldset.form-columns-1 .input {
    margin-right: 0px !important;
}

.body-container--manuals fieldset.form-columns-1 .input input[name="email"] {
    width: 100% !important;
}

@media (min-width: 481px) {
	.body-container--manuals fieldset.form-columns-2 > .hs-form-field:nth-child(2) .input {
    margin-right: 0px !important;
  }
}

@media (max-width: 480px) {
	.body-container--manuals fieldset.form-columns-2 > .hs-form-field .input {
    margin-right: 0px !important;
  }
	
	.body-container--manuals fieldset.form-columns-2 > .hs-form-field .input input[name="email"] {
    width: 100% !important;
  }
}

/* FORM HOW WE DO FIX FIELDS ALIGNMENT */
.body-container--how-we-do fieldset.form-columns-1 .input {
    margin-right: 0px !important;
}

.body-container--how-we-do fieldset.form-columns-1 .hs-input {
    width: 100% !important;
}

@media (min-width: 481px) {
	.body-container--how-we-do fieldset.form-columns-2 > .hs-form-field:nth-child(2) .input {
    margin-right: 0px !important;
  }
}

@media (max-width: 480px) {
	.body-container--how-we-do fieldset.form-columns-2 > .hs-form-field .input {
    margin-right: 0px !important;
  }
	
	.body-container--how-we-do fieldset.form-columns-2 > .hs-form-field .input input {
    width: 100% !important;
  }
}
/* 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 DND sections */

body {
  background: #fff
}

.header--toggle {
  mix-blend-mode: difference;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center
}

.header--toggle .open,
.header--toggle .close {
  left: 15px;
  position: relative
}

.decoration--header {
  position: absolute;
  width: 111px;
  left: -25px;
  top: 53px
}

.header__navigation--toggle svg *,
.decoration--header * {
  fill: #fff;
  stroke: #fff
}

.header {
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99
}

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  height: 85px;
	background-color: #ffffff;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__row-2 {
  position: relative;
  justify-content: center;
  padding-bottom: 1em;
}

svg.decoration--header {
  position: absolute;
  bottom: 0;
}

.header__column {
  position: relative;
  display: flex;
}

.snipcart-checkout,
.snipcart-checkout:hover,
.snipcart-checkout:focus {
  all: initial;
  cursor: pointer;
  padding-right: 1em;
}



@media (max-width: 767px) {
  .header__container {
    /*     flex-direction: column; */
    padding: 0;
    height: 67px;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    /*     padding: 1.05rem; */
    padding-left: 1em;
    padding-bottom: 1em;
  }


}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin: 0 auto;
  max-width: 211px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 40%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  /*   padding-top: 1rem; */
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */


.header__navigation--toggle:not(.active) .close {
  display: none
}

.header__navigation--toggle.active .open {
  display: none
}

@media (min-width: 768px) {
  .header .navigation__column {
    padding-left: 25px;
  }

  .header--toggle {
    height: 87px;
  }

  .header--toggle .open,
  .header--toggle .close {
    left: 52px;
    position: relative;
  }
	
	.header--toggle .close {
		height: 20px;
		width: 34px;
	}
	
	.header--toggle .open {
		height: 20px;
		width: 28px;
	}

  .decoration--header {
    width: 222px;
    left: -60px;
    top: 100%;
    bottom: unset
  }
}

@media (max-width: 767px) {
  
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.active,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #ffffff;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 2;
		padding-top: 40px;
		height: 100vh;
  }

  .header__navigation.active {
    width: 100vw;
  }

  .header__navigation--toggle {
    cursor: pointer;
    position: fixed;
  }
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: flex;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }
}







/* TEST MENU TOGGLE DESKTOP=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-	 */
@media screen and (min-width: 768px) {

  /* 1 - 	default menu enter */

  /* 	.header__language-switcher, 
  .header__navigation, 
  .header__search {
  display: none;
  width: 100%;
} */



  /* 	.header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
  background-color: #ffffff;
  display: block;
  left: -1em;
  min-height: calc(100vh - 115px);
  position: absolute;
  right: 0;
  top: 85px;
  z-index: 2;
} */

  /* 2 -  ease in menu enter	 */
  .header__language-switcher, .header__navigation, .header__search {
    left: -25px;
    position: absolute;
    top: 0;
    transform: translateX(-200%);
    transform-origin: 0 0;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-in-out;
    width: 25vw;
    min-height: 100vh;
    z-index: 20;
  }

  .header__language-switcher.open, .header__navigation.active, .header__search.open {
    transform: translateX(0);
  }

  /* 	hide decoration under hamburger  */
  .header__navigation--toggle.active + svg.decoration--header {
    display: none;
  }

}






/* TEST MENU TOGGLE DESKTOP=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-	 */

/* Cart toggle */
.snipcart-checkout svg.cart {
  background-color: #AECA2E;
  border-radius: 50%;
}

.cart {
  position: relative;
}

.snipcart-checkout .snipcart-items-count {
  font-family: KarbonApp;
  background: #F44336;
  width: 20px;
  height: 20px;
  display: block;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
	z-index: 2;
}

@media (max-width: 767px) {
	.header__logo,
	.snipcart-checkout .snipcart-items-count,
	.cart {
	  z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .header__column.cart {
    padding-right: 10px;
  }
}


@media screen and (max-width: 767px) {
  .snipcart-checkout .cart-mb {
    height: 30px;
    width: 30px;
  }
}




/* MENU CSS */

/* Menu items */

.header .menu__item--depth-1 {
  padding: 8px 0;
  width: 100%;
}

.header .menu__item--depth-1>.menu__link {
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 30px;
  /*   padding: 0.35rem 1.225rem; */
  padding: 0.35rem 0;
}

/* .header .menu__item--has-submenu>.menu__link {
width: 70%;
} */

.menu__child-toggle {
  background-position: center right 30px;
  background-repeat: no-repeat;
  background-size: 20px;
  border: none;
  cursor: pointer;
  height: 55px;
  padding: 15px 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
}


/* .menu__item {
position: relative;
} */

.header .menu__link {
  font-size: 0.917rem;
  line-height: 1.667rem;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
}
.menu__item a.menu__link {
  color: #131313;
}

.menu__item--open a:active,
.menu__item--open a:focus,
.menu__item--open a:hover,
.menu__item--open a.menu__link {
  color: #AECA2E;
  font-style: italic;
  font-weight: bold;
  position: relative;
}

.menu__item--open polyline#Path {
  stroke: #AECA2E;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

@media (max-width: 767px) {
  .menu__item {
    display: block;
    width: 100%;
    position: relative;
  }

  .menu__link {
    display: block;
    font-size: 1.083rem;
  }

  .header .menu__item--depth-1.menu__item--small {
    padding: 0;
  }
	
	ul.menu__wrapper > .menu__item.menu__item--small  {
    padding-top: 10px;
	}

	ul.menu__wrapper > .menu__item.menu__item--small ~ .menu__item.menu__item--small  {
			padding-top: 0px;
	}
}


@media screen and (min-width: 768px) {

  .header--toggle {
    cursor: pointer;
  }

  .header__navigation.active {
    width: 30vw;
  }

  .header .menu__item--depth-1.menu__item--small {
    padding: 0;
  }

  .header .menu__item--depth-1>.menu__link {
    font-size: 30px;
    line-height: 1;
    display: block
  }

  .header .menu__item.menu__item--small .menu__link {
    font-size: 16px;
    line-height: 1.5;
    display: block
  }

  .header--toggle.active .decoration--header {
    display: none
  }
	
	.header .menu__item.menu__item--small:hover > .menu__link {
		color: #aeca2e;
	}
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}


li.menu__item.menu__item--divider {
/*   padding: 30px 0px; */
  margin-top: 12px;
  position: relative;
}
li.menu__item.menu__item--divider::before {
  content: "";
  width: 101px;
  height: 1px;
  background-color: #13131333;
  display: block;
  position: absolute;
  top: 0;
	left: 0;
	margin-top: 10px;
  /*   margin-left: 1.225rem; */
}


li.menu__item.menu__item--small .menu__link {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 22px;
}

@media (min-width: 768px) {
  .menu__item--depth-1 > .menu__link {
    position: relative
  }

  .header .menu__item.menu__item--open.menu__item--depth-1 {
    padding-left: 30px;
    transition: .3s;
  }

  .header .menu__item.menu__item--depth-1 > .menu__link::before {
    content: url("https://blog.ursus.it/hubfs/Ursus%202022%20-%20Site/decorazione%20pagina%20yellow.png");
    display: block;
    width: 92px;
    height: 12px;
    position: absolute;
    right: 124%;
  }

  .header .menu__item.menu__item--open.menu__item--depth-1 > .menu__link::before {
    right: 104%;
    transition: 0.3s;
  }


}


@media (max-width: 767px) {

  li.menu__item.menu__item--divider {
/*     padding: 14px 0px; */
    margin-top: 12px;
    position: relative;
  }

  li.menu__item.menu__item--divider::before {
    margin-left: 1.225rem;
  }


  .header .menu__item--depth-1 > .menu__link {
    padding: 0.35rem 1.225rem;
    font-size: 22px;
    letter-spacing: 4px;
    line-height: 30px;
  }

  .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }

  .menu__submenu {
    display: none
  }

  .menu__item--depth-1.menu__item--open > .menu__link::after {
    display: block;
    content: "";
    width: 311px;
    height: 1px;
    background-color: #13131333;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

/* Menu items - submenus */

@media (min-width: 768px) {
  .header .menu.menu--desktop {
    /*     padding: 0 52px; */
    background-color: #f7f7f7;
    min-height: 100vh;
    padding-top: 40px;
    position: absolute;
    top: 0;
    min-width: 400px;
    left: -20px;
  }
  .header .active .menu.menu--desktop {
    left: 0px;
  }

  .header .menu.menu--desktop ul.menu__wrapper.no-list {
    padding-left: 52px;
  }

  .header .menu__submenu.menu__submenu--level-2 {
    background-color: #fff;
    left: 100%;
    min-height: 100vh;
    padding: 85px 52px 0 52px;
    z-index: -1;
    transform-origin: 0 0;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-in-out;
    transform: translateX(-100%);
    width: 30vw;
  }

  .header .menu__item--open > .menu__submenu.menu__submenu--level-2 {
    transform: translateX(0);
  }

	.header .menu__submenu--level-2 .menu__item--depth-2 .menu__link {
		font-size: 21px;
		font-style: italic;
		font-weight: bold;
		letter-spacing: 4px;
		line-height: 1.381;
		color: #131313;
	}
	.menu__item--red .menu__link {
		color: #f44336 !Important;
	}
	li.menu__item.menu__item--red.menu__item--depth-2:hover .menu__link{
		color: #AECA2E !Important;
	}

  li.menu__item.menu__item--depth-2:hover .menu__link {
    color: #AECA2E;
    text-decoration: underline;
  }
}

@media (max-width: 787px) {
	.header .menu__submenu--level-2 .menu__item--depth-2 .menu__link {
		color: #131313;
	}
}

.menu__submenu {
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 0;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

/* .menu__item--depth-1:first-child .menu__submenu--level-2 {
transform: unset;
} */

.menu__submenu .menu__item {
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 0.7rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 768px) {
  /*   .menu__submenu--level-2 > .menu__item:first-child:before {
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
  content: '';
  display: block;
  height: 30px;
  left: 125px;
  margin-left: 1rem;
  overflow: hidden;
  position: absolute;
  top: -12px;
  transform: rotate(45deg);
  transition: background-color .3s;
  width: 30px;
  z-index: 2;
} */

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
    left: 0;
  }

  .menu__submenu--level-2 > .menu__item:first-child > .menu__link {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    background-color: #FFF;
    border-bottom: none;
    /*     border-top: 2px solid #EBEFF3; */
    padding: 0;
  }

  .menu__submenu li.menu__item.menu__item--depth-2 {
    padding-left: 30px;
  }

  .menu__submenu .menu__link {
    display: block;
    /*     padding: 0.7rem 2rem; */
    transition: none;
    width: 100%;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 28px;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 70%;
  }

  .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }
}

/* Menu icons */

@media(min-width: 768px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }

  /*   .menu__child-toggle-icon {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top-style: solid;
  border-top-width: 7px;
  display: block;
  height: 0;
  margin-left: 1px;
  width: 0;
} */

  .menu__child-toggle {
    display: none;
  }


}

@media (max-width: 767px) {
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 55px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
  }

  .menu__child-toggle-icon {
    /*     background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9Ii41Ii8+PHJlY3QgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOS42IDkuNikiIHg9IjEuMiIgeT0iOS42IiB3aWR0aD0iMTYuOCIgaGVpZ2h0PSIxIiByeD0iLjUiLz48L2c+PC9zdmc+);
    background-repeat: no-repeat; */
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.05rem;
    transition: transform 0.4s;
    width: 20px;
  }

  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(90deg);
    transition: transform 0.4s;

  }

  .arrow-svg__container {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}



@media (min-width: 768px) {
  .header .menu__item.menu__item--depth-1.menu__item--open>.menu__link::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: -160px;
    z-index: 10;
    border-top: 200px solid transparent;
    border-bottom: 200px solid transparent;
    border-right: 16vw solid transparent;
  }
}


/* Language switcher */
@media (max-width: 767px) {
	.language-switcher.language-switcher__languages.blog__journal {
    padding: 0.35rem 1.225rem;
		margin-top: 30px;
  }
	
	img.language-image {
    max-width: 17px;
    height: auto;
    margin-right: 8px;
	}

	.language-switcher--wrapper {
		display: flex;
		align-items: center;
	}

	.button.button--black.button--black__language {
		display: flex;
		align-items: center;
		font-size: 13px;
		padding: 12px 16px;
		line-height: 14px;
	}
	
	a.other-language.other-language--link {
    padding: 12px 0;
    margin-left: 32px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 3px;
    align-items: center;
    display: flex;
  }
}

@media (min-width: 768px) {
	.language-switcher.language-switcher__languages.blog__journal {
    padding-left: 52px;
		margin-top: 30px;
  }
	
	img.language-image {
    max-width: 17px;
    height: auto;
    margin-right: 8px;
	}

	.language-switcher--wrapper {
		display: flex;
		align-items: center;
	}

	.button.button--black.button--black__language {
		display: flex;
		align-items: center;
		font-size: 13px;
		padding: 12px 16px;
		line-height: 14px;
	}
	
	a.other-language.other-language--link {
    padding: 12px 0;
    margin-left: 32px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 3px;
    align-items: center;
    display: flex;
  }
}

.menu__item.menu__item--divider.menu__item--depth-1.hs-skip-lang-url-rewrite {
  padding: 0 !important;
  margin: 0!important;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.footer {
	position: relative;
}

/* FOOTER NO NAVIGATION VARIANT--------------------------  */

.footer__no-nav--logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-footer-no-nav {
	margin-bottom: 20px;
	margin-right: 20px;
}

@media (max-width: 767px) {
	.footer__no-nav--logo-wrapper {
    flex-direction: column;
  }
	
	.logo-footer-no-nav {
	  margin-bottom: 0px;
	margin-right: 0px;
		
  }
}

/* FOOTER TOP ---------------------------------------------------*/

.footer__top .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section {
  padding-bottom: 0px;
}

.footer__top .menu--desktop,
.footer__top .menu--mobile {
  font-style: italic;
}



@media (min-width: 768px) {
	.footer__top .row-fluid .row-fluid > * {
		justify-content: flex-start !important;
	}
}


.footer__industrial.industrial-dk {
    padding-left: 18px;
}
.footer__industrial.industrial-dk a {
  font-size: .917rem;
	font-style: italic;
	text-transform: uppercase;
	display: flex;
}


/* mobile */
@media screen and (max-width: 767px) {
	footer.footer {
    padding-top: 40px;
  }
	
	footer.footer .menu__item--depth-1 {
		padding: 0;
	}
	
  .footer__top {
    position: relative;
  }
  
  .footer__top .widget-type-linked_image {
    position: absolute;
    margin-top: -40px;
  }
  
  .footer__top ul.menu__wrapper .menu__item--depth-1 {
		line-height: 40px;
  }

  .footer nav.menu.menu--mobile span.menu__link {
    padding: 0;
  }
  
  .footer .hs-form-field {
    width: 100%;
  }

  .footer .hs_cos_wrapper_type_form {
    padding: 40px 0;
    display: block;
    margin-top: 40px;
    position: relative
  }

  .footer .hs_cos_wrapper_type_form::before {
    content: "";
    width: 100vw;
    height: 1px;
    background: #ffffff33;
    display: block;
    position: absolute;
    left: -18px;
    top: 0
  }

  .footer .hs_cos_wrapper_type_form::after {
    content: "";
    width: 100vw;
    height: 1px;
    background: #ffffff33;
    display: block;
    position: absolute;
    left: -18px;
    bottom: 0
  }

}



/* desktop */

@media screen and (min-width: 768px) {
  .footer__top ul.menu__wrapper {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    flex-wrap: wrap;
		align-content: center;
  }
  .footer__top .widget-type-linked_image {
    margin-top: -40%;
  }

  .footer__top ul.menu__wrapper .menu__item--depth-1 {
    padding: 0;
  }
	.footer__industrial.industrial-mb {
    display: none;
  }
	
	.footer__top ul.menu__wrapper .menu__item--depth-1 {
		border: none;
		line-height: 32px;
  }
}


.footer span.menu__link {
  text-align: center;
}




/* FOOTER MIDDLE -----------------------------------------------------*/
.footer__middle {
  position: relative;
}

.footer__industrial.industrial-mb {
	text-align: center;
    margin-top: 35px;
}
    

.footer__industrial.industrial-mb a {
	font-size: 1.083rem;
	font-style: italic;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer__industrial.industrial-dk {
    display: none;
  }
}




/* FOOTER BOTTOM -----------------------------------------------------*/
.footer__copyright {
  display: flex;
  justify-content: space-between;	
}

.f-copy, .f-policies {
  font-size: 13px !important;
  line-height: 21px;
}
@media (min-width: 768px) {
	.f-copy {
	  padding-right: 20px;
  }
}


.f-copy span {
  margin-right: 22px;
}

.f-policies a {
  color: #ffffff;
}

.f-policies a:not(:first-child) {
  margin-left: 32px;
}

/* mobile */
@media screen and (max-width: 767px) {
  .footer__copyright {
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #ffffff33;
  }
  
  p.f-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  p.f-copy span:nth-child(2) {
    margin-left: 10px;
  }
  
  p.f-copy span:last-child {
    flex-basis: 100%;
    text-align: center;
  }
  
  .f-copy span {
    margin-right: 0px;
  }
	
	p.f-policies {
    display: flex;
    flex-wrap: wrap;
		justify-content: space-between;
  }
	
}

footer .menu__item a.menu__link {
	color: #ffffff;
    text-align: center;
    font-style: italic;
}

footer .menu__link--active-branch, 
footer .menu__link--active-link,
footer .menu__link--active-branch:hover,
footer .menu__link--active-link:hover {
    font-weight: 500;
}

.f-cookies-terms {
	color: #fff;
	margin-bottom: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
}

/* Hide GDPR */
form:not(.clicked) .legal-consent-container {
    display: none
}

/* FOOTER MENU -----------------------------------------------------*/

@media (min-width: 768px) {
	footer .menu.menu--desktop li.menu__item {
    max-width: fit-content;
	  margin-right: 20px;
  }
	footer.footer .footer__top img {
		max-width: 150% !important;
	}
}

@media (min-width: 768px) and (max-width: 950px){
	footer .menu.menu--desktop li.menu__item,
	footer .footer__industrial.industrial-dk,
	footer .social-links .social-text__link {
    font-size: 16px;
  }
	
	footer.footer .footer__top img {
		display: none;
	}
}
/* 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;
  }
}

.relative {
  position: relative
}

.full-width, .w-full {
  width: 100% !important
}

.h-full {
  height: 100% !important
}

.rounded-full {
  border-radius: 9999px;	
}

.overflow-hidden {
  overflow: hidden;
}

.color-primary {
  color: var(--primary-color) !important
}

.color-secondary {
  color: var(--secondary-color) !important
}

.color-accent {
  color: var(--accent-color) !important
}

.color-white {
  color: #fff !important
}

.color-almost-black {
  color: var(--almost-black) !important
}

.color-light-grey {
  color: var(--light-grey) !important
}

.color-medium-grey {
  color: var(--medium-grey) !important
}

.color-dark-grey {
  color: var(--dark-grey) !important
}

.bg-primary {
  background-color: var(--primary-color) !important
}

.bg-secondary {
  background-color: var(--secondary-color) !important
}

.bg-accent {
  background-color: var(--accent-color) !important
}

.bg-black {
  background-color: var(--black) !important
}

.bg-white {
  background-color: var(--white) !important
}

.bg-grey {
  background-color: var(--grey) !important
}

.bg-texture {
  background-image: url(//3959850.fs1.hubspotusercontent-na1.net/hubfs/3959850/raw_assets/public/Ursus/images/texture01.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat
}




 

 

.text-2xs {
  font-size: .5rem !important;
  line-height: 1.5 !important;
}

.text-xs {
  font-size: .611rem !important;
  line-height: 1.5 !important;
}

.text-sm {
  font-size: .778rem !important;
  line-height: 1.5 !important;
}

.text-base {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.text-lg {
  font-size: 1.167rem !important;
  line-height: 1 !important;
}

.text-xl { 
  font-size: 1.667rem !important;
  line-height: 1.3 !important;
}

.text-2xl { 
  font-size: 3rem !important;
  line-height: 1 !important;
}

.text-3xl { 
  font-size: 4rem !important;
  line-height: 1 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.m-3 {
  margin: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.m-5 {
  margin: 32px !important;
}

.m-6 {
  margin: 160px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.mx-6 {
  margin-right: 160px !important;
  margin-left: 160px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-6 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mt-6 {
  margin-top: 160px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 4px !important;
}

.me-2 {
  margin-right: 8px !important;
}

.me-3 {
  margin-right: 16px !important;
}

.me-4 {
  margin-right: 24px !important;
}

.me-5 {
  margin-right: 32px !important;
}

.me-6 {
  margin-right: 160px !important;
}

.me-auto {
  margin-right: auto !important;
}

.me-\[10px\] {
  margin-right: 10px
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.mb-6 {
  margin-bottom: 160px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 4px !important;
}

.ms-2 {
  margin-left: 8px !important;
}

.ms-3 {
  margin-left: 16px !important;
}

.ms-4 {
  margin-left: 24px !important;
}

.ms-5 {
  margin-left: 32px !important;
}

.ms-6 {
  margin-left: 160px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.p-3 {
  padding: 16px !important;
}

.p-4 {
  padding: 24px !important;
}

.p-5 {
  padding: 32px !important;
}

.p-6 {
  padding: 160px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.px-6 {
  padding-right: 160px !important;
  padding-left: 160px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.py-6 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pt-5 {
  padding-top: 32px !important;
}

.pt-6 {
  padding-top: 160px !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 4px !important;
}

.pe-2 {
  padding-right: 8px !important;
}

.pe-3 {
  padding-right: 16px !important;
}

.pe-4 {
  padding-right: 24px !important;
}

.pe-5 {
  padding-right: 32px !important;
}

.pe-6 {
  padding-right: 160px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pb-5 {
  padding-bottom: 32px !important;
}

.pb-6 {
  padding-bottom: 160px !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 4px !important;
}

.ps-2 {
  padding-left: 8px !important;
}

.ps-3 {
  padding-left: 16px !important;
}

.ps-4 {
  padding-left: 24px !important;
}

.ps-5 {
  padding-left: 32px !important;
}

.ps-6 {
  padding-left: 160px !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.font--22 {
  font-size: 22px !important;
}

.font--26 {
  font-size: 26px !important;
}

.hidden {
  display: none !important
}

.block {
  display: block !important
}

.inline-block {
  display: inline-block !important
}

.flex {
  display: flex !important
}

.flex-1 {
  flex: 1
}

.flex-row {
  flex-direction: row !important
}

.flex-row-reverse {
  flex-direction: row-reverse !important
}

.flex-col	{ 
  flex-direction: column !important 
}

.flex-col-reverse	{ 
  flex-direction: column-reverse !important 
}

.flex-grow-0 {
  flex-grow: 0;
}

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

.flex-grow-2 {
  flex-grow: 2;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.justify-center {
  justify-content: center !important
}

.justify-between {
  justify-content: space-between !important
}

.justify-start {
  justify-content: flex-start !important
}

.justify-end {
  justify-content: flex-end !important
}

.items-center {
  align-items: center !important
}

.items-start {
  align-items: flex-start !important
}

.items-end {
  align-items: flex-end !important
}

.font-thin {
  font-weight: 100 !important
}

.font-extralight {
  font-weight: 200 !important
}

.font-light {
  font-weight: 300 !important
}

.font-normal {
  font-weight: 400 !important
}

.font-medium {
  font-weight: 500 !important
}

.font-semibold {
  font-weight: 600 !important
}

.font-bold {
  font-weight: 700 !important
}

.font-extrabold {
  font-weight: 800 !important
}

.font-black {
  font-weight: 900 !important
}

.uppercase {
  text-transform: uppercase !important
}

.italic {
  font-style: italic !important
}

.tracking-wide {
  letter-spacing: 1px !important
}

.tracking-wider {
  letter-spacing: 3.14px !important
}

.tracking-widest {
  letter-spacing: 5px !important
}

.max-w-210px {
	max-width: 210px !important
}

.max-w-s {
  max-width: 200px !important
}

.max-w-xs {
  max-width: 150px !important
}

.bg-overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
  position: absolute;
  top: 0;
  left: 0
}

.leading-0 {
  line-height: 0 !important
}

.leading-1 {
  line-height: 1 !important
}

.leading-2 {
  line-height: 1.4 !important
}

.leading-3 {
  line-height: 1.7 !important
}

.min-h-screen {
  min-height: 100vh !important
}

@media (min-width: 768px) {
  .md\:color-primary {
    color: var(--primary-color) !important
  }

  .md\:color-secondary {
    color: var(--secondary-color) !important
  }

  .md\:color-accent {
    color: var(--accent-color) !important
  }

  .md\:color-white {
    color: #fff !important
  }

  .md\:color-almost-black {
    color: var(--almost-black) !important
  }

  .md\:color-light-grey {
    color: var(--light-grey) !important
  }

  .md\:color-medium-grey {
    color: var(--medium-grey) !important
  }

  .md\:color-dark-grey {
    color: var(--dark-grey) !important
  }

  .md\:bg-primary {
    background-color: var(--primary-color) !important
  }

  .md\:bg-secondary {
    background-color: var(--secondary-color) !important
  }

  .md\:bg-accent {
    background-color: var(--accent-color) !important
  }

  .md\:bg-white {
    background-color: var(--white) !important
  }

  .md\:bg-black {
    background-color: var(--black) !important
  }

  .md\:bg-grey {
    background-color: var(--grey) !important
  }

  .md\:text-2xs {
    font-size: .5rem !important;
    line-height: 1.5 !important;
  }

  .md\:text-xs {
    font-size: .611rem !important;
    line-height: 1.5 !important;
  }

  .md\:text-sm {
    font-size: .778rem !important;
    line-height: 1.5 !important;
  }

  .md\:text-base {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .md\:text-lg {
    font-size: 1.167rem !important;
    line-height: 1 !important;
  }

  .md\:text-xl { 
    font-size: 1.667rem !important;
    line-height: 1.3 !important;
  }

  .md\:text-2xl { 
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .md\:text-3xl { 
    font-size: 4rem !important;
    line-height: 1 !important;
  }

  .md\:m-0 {
    margin: 0 !important;
  }

  .md\:m-1 {
    margin: 4px !important;
  }

  .md\:m-2 {
    margin: 8px !important;
  }

  .md\:m-3 {
    margin: 16px !important;
  }

  .md\:m-4 {
    margin: 24px !important;
  }

  .md\:m-5 {
    margin: 32px !important;
  }

  .md\:m-6 {
    margin: 160px !important;
  }

  .md\:m-auto {
    margin: auto !important;
  }

  .md\:mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .md\:mx-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .md\:mx-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .md\:mx-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .md\:mx-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .md\:mx-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  .md\:mx-6 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .md\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .md\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .md\:my-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .md\:my-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .md\:my-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .md\:my-6 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:mt-0 {
    margin-top: 0 !important;
  }

  .md\:mt-1 {
    margin-top: 4px !important;
  }

  .md\:mt-2 {
    margin-top: 8px !important;
  }

  .md\:mt-3 {
    margin-top: 16px !important;
  }

  .md\:mt-4 {
    margin-top: 24px !important;
  }

  .md\:mt-5 {
    margin-top: 32px !important;
  }

  .md\:mt-6 {
    margin-top: 160px !important;
  }

  .md\:mt-auto {
    margin-top: auto !important;
  }

  .md\:me-0 {
    margin-right: 0 !important;
  }

  .md\:me-1 {
    margin-right: 4px !important;
  }

  .md\:me-2 {
    margin-right: 8px !important;
  }

  .md\:me-3 {
    margin-right: 16px !important;
  }

  .md\:me-4 {
    margin-right: 24px !important;
  }

  .md\:me-5 {
    margin-right: 32px !important;
  }

  .md\:me-6 {
    margin-right: 160px !important;
  }

  .md\:me-auto {
    margin-right: auto !important;
  }

  .md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .md\:mb-1 {
    margin-bottom: 4px !important;
  }

  .md\:mb-2 {
    margin-bottom: 8px !important;
  }

  .md\:mb-3 {
    margin-bottom: 16px !important;
  }

  .md\:mb-4 {
    margin-bottom: 24px !important;
  }

  .md\:mb-5 {
    margin-bottom: 32px !important;
  }

  .md\:mb-6 {
    margin-bottom: 160px !important;
  }

  .md\:mb-auto {
    margin-bottom: auto !important;
  }

  .md\:ms-0 {
    margin-left: 0 !important;
  }

  .md\:ms-1 {
    margin-left: 4px !important;
  }

  .md\:ms-2 {
    margin-left: 8px !important;
  }

  .md\:ms-3 {
    margin-left: 16px !important;
  }

  .md\:ms-4 {
    margin-left: 24px !important;
  }

  .md\:ms-5 {
    margin-left: 32px !important;
  }

  .md\:ms-6 {
    margin-left: 160px !important;
  }

  .md\:ms-auto {
    margin-left: auto !important;
  }

  .md\:p-0 {
    padding: 0 !important;
  }

  .md\:p-1 {
    padding: 4px !important;
  }

  .md\:p-2 {
    padding: 8px !important;
  }

  .md\:p-3 {
    padding: 16px !important;
  }

  .md\:p-4 {
    padding: 24px !important;
  }

  .md\:p-5 {
    padding: 32px !important;
  }

  .md\:p-6 {
    padding: 160px !important;
  }

  .md\:px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .md\:px-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .md\:px-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .md\:px-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .md\:px-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .md\:px-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .md\:px-6 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .md\:py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .md\:py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .md\:py-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .md\:py-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .md\:py-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .md\:py-6 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .md\:pt-0 {
    padding-top: 0 !important;
  }

  .md\:pt-1 {
    padding-top: 4px !important;
  }

  .md\:pt-2 {
    padding-top: 8px !important;
  }

  .md\:pt-3 {
    padding-top: 16px !important;
  }

  .md\:pt-4 {
    padding-top: 24px !important;
  }

  .md\:pt-5 {
    padding-top: 32px !important;
  }

  .md\:pt-6 {
    padding-top: 160px !important;
  }

  .md\:pe-0 {
    padding-right: 0 !important;
  }

  .md\:pe-1 {
    padding-right: 4px !important;
  }

  .md\:pe-2 {
    padding-right: 8px !important;
  }

  .md\:pe-3 {
    padding-right: 16px !important;
  }

  .md\:pe-4 {
    padding-right: 24px !important;
  }

  .md\:pe-5 {
    padding-right: 32px !important;
  }

  .md\:pe-6 {
    padding-right: 160px !important;
  }

  .md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:pb-1 {
    padding-bottom: 4px !important;
  }

  .md\:pb-2 {
    padding-bottom: 8px !important;
  }

  .md\:pb-3 {
    padding-bottom: 16px !important;
  }

  .md\:pb-4 {
    padding-bottom: 24px !important;
  }

  .md\:pb-5 {
    padding-bottom: 32px !important;
  }

  .md\:pb-6 {
    padding-bottom: 160px !important;
  }

  .md\:ps-0 {
    padding-left: 0 !important;
  }

  .md\:ps-1 {
    padding-left: 4px !important;
  }

  .md\:ps-2 {
    padding-left: 8px !important;
  }

  .md\:ps-3 {
    padding-left: 16px !important;
  }

  .md\:ps-4 {
    padding-left: 24px !important;
  }

  .md\:ps-5 {
    padding-left: 32px !important;
  }

  .md\:ps-6 {
    padding-left: 160px !important;
  }

  .md\:text-start {
    text-align: left !important;
  }

  .md\:text-end {
    text-align: right !important;
  }

  .md\:text-center {
    text-align: center !important;
  }

  .md\:font--40 {
    font-size: 40px !important;
  }

  .md\:font--35 {
    font-size: 35px !important;
  }

  .md\:font--28 {
    font-size: 28px !important;
  }

  .md\:hidden {
    display: none !important
  }

  .md\:block {
    display: block !important
  }

  .md\:inline-block {
    display: inline-block !important
  }

  .md\:flex {
    display: flex !important
  }

  .md\:flex-1 {
    flex: 1
  }

  .md\:flex-row {
    flex-direction: row !important
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse !important
  }

  .md\:flex-col	{ 
    flex-direction: column !important 
  }

  .md\:flex-col-reverse	{ 
    flex-direction: column-reverse !important 
  }

  .md\:justify-center {
    justify-content: center !important
  }

  .md\:justify-start {
    justify-content: flex-start !important
  }

  .md\:justify-end {
    justify-content: flex-end !important
  }

  .md\:justify-between {
    justify-content: space-between !important
  }

  .md\:items-center {
    align-items: center !important
  }

  .md\:items-start {
    align-items: flex-start !important
  }

  .md\:items-end {
    align-items: flex-end !important
  }

  .md\:font-thin {
    font-weight: 100 !important
  }

  .md\:font-extralight {
    font-weight: 200 !important
  }

  .md\:font-light {
    font-weight: 300 !important
  }

  .md\:font-normal {
    font-weight: 400 !important
  }

  .md\:font-medium {
    font-weight: 500 !important
  }

  .md\:font-semibold {
    font-weight: 600 !important
  }

  .md\:font-bold {
    font-weight: 700 !important
  }

  .md\:font-extrabold {
    font-weight: 800 !important
  }

  .md\:font-black {
    font-weight: 900 !important
  }

  .md\:tracking-wide {
    letter-spacing: 1px !important
  }

  .md\:tracking-wider {
    letter-spacing: 3.14px !important
  }

  .md\:tracking-widest {
    letter-spacing: 5px !important
  }
	
	.md\:max-w-s {
		max-width: 200px !important
	}

  .md\:max-w-xs {
    max-width: 150px !important
  }

  .md\:leading-0 {
    line-height: 0 !important
  }

  .md\:leading-1 {
    line-height: 1 !important
  }

  .md\:leading-2 {
    line-height: 1.4 !important
  }

  .md\:leading-3 {
    line-height: 1.7 !important
  }
  
  .md\:min-h-screen {
    min-height: 100vh !important
  }
}

.full-height-section {
  height: 100vh;
  display: flex;
}

@media (min-width: 1024px) {
  .lg\:flex-col {
    flex-direction: column !important
  }
  
  .lg\:flex-row {
    flex-direction: row !important
  }
}

/* Libraries */
:root {
  --color-buttonPrimary: var(--white);
  --borderColor-buttonPrimary:var(--primary-color);
  --bgColor-buttonPrimary: var(--primary-color);

  --color-link:var(--secondary-color);
  --borderColor-link:var(--secondary-color);
  --bgColor-link:transparent;

  --color-link-hover:var(--secondary-color);
  --borderColor-link-hover:var(--secondary-color);
  --color-link-active:var(--secondary-color);
  --borderColor-link-active:var(--secondary-color);
  --bgColor-link-active:transparent;

  --color-link-focus:var(--secondary-color);
  --borderColor-link-focus:var(--secondary-color);
  --bgColor-link-focus:transparent;

  --color-buttonPrimary-hover: var(--white);
  --borderColor-buttonPrimary-hover:var(--primary-color);
  --bgColor-buttonPrimary-hover:var(--primary-color);

  --color-default: var(--black); 

  --color-icon:var(--primary-color);
  --bgColor-info: var(--primary-color);

  --color-alt: var(--primary-color);
}

header.snipcart-cart-header {
  margin-top: var(--header-height)
}

.snipcart-layout__content--side {
	min-height: 91% !important;
	height: 91% !important;
}