/* 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 0 1.4rem;
  hyphens: auto;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* Small button */
a.button-small,
button.button-small,
.button-small {
  background-color: #f39a00;
  border: 1px solid #f39a00;
  border-radius: 3px;
  color: #fff;
  font-family: Roboto,sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  padding: 8px 20px;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

a.button-small:disabled,
button.button-small:disabled,
.button-small:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

a.button-small:hover,
button.button-small:hover,
a.button-small:focus,
button.button-small:focus,
.button-small:hover,
.button-small:focus {
  background-color: #fff !important;
  border: 1px solid #f39a00 !important;
  border-radius: 3px !important;
  color: #f39a00 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

a.button-small:active,
button.button-small:active,
.button-small:active, {
  background-color: #ffc228;
  border-color: #ffc228;
  font-family: Roboto,sans-serif;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}

/* 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;
}
/* 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;
}


.hs_submit .hs-button {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 8px 30px;
  border: 1px solid var(--orange);
}

.hs_submit .hs-button:hover {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 8px 30px;
  border: 1px solid var(--orange);
  background-color: : var(--white);
  color: var(--orange);
}

.hs-form-field > .input > .hs-input {
  width: 100% !important;
}

fieldset.form-columns-3 .hs-form-field {
  width: 33.3% !important;
}

@media (max-width: 768px) {
  fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}

/* remove border of progress bar */
.hsfc-ProgressBar__Progress > div {
  border: none !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
*/

/*** 16-7-2021 ***/
/*========= Header Section =========*/

/* 2024.08.20 */

/* mobile */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (min-width: 767px) {

  .header__container.container {
    gap: 40px;
    height: 48px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li, 
  .navigation-primary .submenu.level-1>li {
    margin-right: 0 !important;
  }

  nav.navigation-primary .submenu.level-1 {
    display: flex;
    justify-content: end;
    column-gap: 40px;
  }

  header.header .header__logo #hs_cos_wrapper_site_logo_scrolled img {
    position: absolute !important;
    opacity: 0;
    visibility: hidden;

  }

  .small-header header.header .header__logo #hs_cos_wrapper_site_logo_scrolled img {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;

  }

  header.header .header__logo #hs_cos_wrapper_site_logo img {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;

  }

  .small-header header.header .header__logo #hs_cos_wrapper_site_logo img {
    position: fixed !important;
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  body nav .submenu-outer .submenu.level-3 > li:not(:first-child) > a.menu-link {
    border-left: 1px solid black;
    padding-left: 6px;
  }

  body nav .submenu-outer .submenu.level-3 > li:not(:first-child) > a.menu-link:hover {
    border-left: 1px solid black !important;
  }

  header.header .header__column > div {
    margin: auto;
  }

  body nav .submenu.level-2 {
    overflow: visible;
  }

  body nav .submenu.level-2 > li:nth-child(2) {
    padding-top: 30px;
  }  

  body nav .submenu.level-2 > li {
    width: 160%;
  }

  body nav .submenu.level-2 {
    display: grid;
    grid-template-columns: 1fr 12fr;
  }

  .submenu-outer {
    border-top: 1px solid var(--black);
  }

  header.header .header__login.header__login--main {
    position: absolute;
    right: 0;
  }
}

@media (max-width: 767px) {
  .header.header .header__navigation {
    display: none;
  }

  .header.header .header__navigation.open {
    display: block
  }

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

  .header__navigation nav.navigation-primary {
    display: none;
    padding-top: 0;
  }

  .header__navigation.open nav.navigation-primary {
    display: block;
  }

  .header .header__logo.header__logo--main {
    max-width: 137px !important;
  }

  header.header div.navigation__wrapper, header.header div.header__column {
    justify-content: end;
    flex-direction: unset;
    gap: 40px;
    align-items: center;
  }

  header.header .header__logo #hs_cos_wrapper_site_logo_scrolled img {
    display: none;
  }

  .header__navigation.open, 
  .header__search.open,
  .header__language-switcher.open {
    background-color: #fff;
    display: block;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
    border-top: 1px solid var(--black);
  }

  .header__navigation--toggle,
  .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: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 26px;
    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;
  }

  .header__navigation--toggle {
    background-image: url(/hubfs/143601443/Truninger-Plot24_2024/Bilder/icon_menu_mobile.svg);
    background-size: cover;
    height: 16px;
    width: 26px;
  }

  .header__navigation--toggle.open {
    background-image: url(/hubfs/143601443/Truninger-Plot24_2024/Bilder/icon_menu_close.svg);
    height: 20px;
    width: 20px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .submenu.level-1 > .menu-item {
    border-bottom: 1px solid var(--grey) !important;
  }

  .has-submenu.active > .menu-link {
    border-bottom: none !important;
    padding-bottom: 0px !important;
  }


  /*
  .has-submenu > .submenu-outer > .submenu-inner > .container > .level-2 > li.menu-item:first-child {
  display: none;
} */


  .header__container.container {
    align-items: center;
    height: 31.4px;
  }

  .header__close--toggle.show {
    display: block;
  }

  body nav .submenu-outer ul.submenu.level-3 {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    padding-bottom: 7px;
  }

  body nav .submenu-outer .submenu-inner .submenu.level-3>li>a {
    margin-bottom: 10px;
  }
  body nav .submenu-outer .submenu-inner .submenu.level-3>li.has-submenu>a {
    margin-bottom: 20px;
  }
  body nav .submenu-outer .submenu-inner .submenu.level-3>li.has-submenu {
    margin-bottom: 10px;
  }
  body nav .submenu-outer .submenu.level-2 {
    padding: 10px 5px !important;
  } 


  body nav .submenu-outer .submenu.level-2 > li.menu-item.no-submenu > a.menu-link {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 18px;
  }

  body nav .submenu-outer .submenu.level-2 > li.menu-item.has-submenu > a.menu-link {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 18px;
  }

  .submenu-outer {
    background-color: var(--white) !important;
  }

  body nav .submenu.level-2 {
    background-color: var(--white) !important;
    border-bottom-left-radius: 200px;
  }

  header.header .welante-user-login-status .cart span, header.header .welante-user-login-status .login span {
    display: none;
  }

  .header div.welante-user-login-status ul {
    gap: 40px;
  }

  .welante-user-login-status>ul>li:first-child {
    margin-right: 0 !important
  }

  .header #search-icon__mobile img {
    display: block;
    height: 15px;
  }

  .header #search-icon__mobile {
    display: block !important;
  }

  body .fixed-sidebar-search {
    display: block;
  }

  body .fixed-sidebar-search > ul {
    display: none;
  }

  body .fixed-sidebar-search .opened-search {
    top: 90px;
  }

  body nav .submenu.level-2 > li {
    margin-left: 15px;
  }

  body nav .submenu-outer .submenu.level-3 > li > a.menu-link {
    font-size: 16px;
    line-height: 24px;
    margin-left: 15px;
    margin-bottom: 18px;
  }

  header.header .header__login.header__login--main {
    margin-left: 50px;
  }
}

@media (max-width: 360px) {
  .header .header__logo.header__logo--main {
    max-width: 90px !important;
  }
}

@media (max-width: 380px) {
  header.header .welante-user-login {
    font-size: 12px !important;
  }
}
/* mobile */


.submenu-outer {
  border-radius: 0px;
}

.welante-user-login-status > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.welante-user-login-status > ul > li:first-child {
  margin-right: 20px;
}

.welante-user-login-status > ul > li > a {
  font-size: 15px;
  line-height: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  border-bottom: 0;
  position: relative;
}

.welante-user-login-status > ul > li > a > img {
  margin-right: 5px;
}

.header--element.header__navigation {
  display: flex;
  flex-direction: column;
}

.header__container.container {
  display: flex;
  justify-content: space-between;
}

body nav .submenu-outer .submenu.level-2 {
  width: 100%;
}

body nav .submenu.level-2 > li.menu-item  > a.menu-link {
  font-size: 16px;
  font-weight: regular;
  margin-bottom: 0px;

}

body nav .submenu.level-2 > li.menu-item > a.menu-link {
  line-height: 20px;
  margin-bottom: 20px;
}

body nav .submenu-outer .submenu.level-3 {
  flex-direction: unset;
  column-gap: 6px;
  font-size: 12px;
  font-weight: normal !important;
}

body nav .submenu-outer .submenu.level-3 > li > a {
  line-height: 16px;
  margin-bottom: 20px;
}

body nav .submenu-outer .submenu.level-3 * {
  font-weight: inherit !important;
}

.navigation-primary .submenu.level-3 li > a.menu-link {
  font-size: 12px;
}

body nav .submenu.level-4 {
  gap: 15px;
}

body nav .submenu-outer .submenu.level-4 {
  margin-bottom: 35px;
}

body nav .submenu.level-4 > li.menu-item, body nav .submenu.level-4 > li.menu-item  > a.menu-link {
  line-height: 1 !important;
  display: inline-block;
}

header, header * {
  font-family: inherit;
}

header.header nav {
  transition: all 0.3s ease-in-out;
}

.small-header header.header nav {
  padding: 0;
}

header.header .header__logo.header__logo--main {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

header.header .header__logo.header__logo--main > * {
  left: 0;
  top: 0;
}

header.header .header__column {
  width: 100%;
}

header.header .navigation__wrapper, header.header .header__column {
  align-items: end;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.small-header header.header .header__column, .small-header header.header .navigation__wrapper {
  justify-content: center;
}

header.header .header__navigation {
  transition: all 0.3s ease-in-out;
}

.small-header header.header .header__navigation {
  margin-top: 0;
}

header.header .submenu.level-1>li.has-submenu.focus .submenu.level-2, header.header .submenu.level-1>li.has-submenu .submenu.level-2 {
  padding: 50px;
}

header.header .submenu-close {
  top: 35px;
  right: 0px;
}

header.header .submenu.arrow-listing > li.menu-item {
  display: flex;
  gap: 20px;
}

header.header .arrow-listing img.arrow-list-item {
  width: 13px;
  height: 18px;
}

header.header .welante-user-login-status {
  font-size: 15px;
  font-weight: bold;
}

header.header .welante-user-login-status * {
  font-size: inherit;
  font-weight: inherit;
}

header.header .welante-user-login-status a {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
}

#search-icon__mobile {
  display: none;
}
/* 2024 */

/* 2021 */
.header-top-row-0-vertical-alignment > .row-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-top-row-0-vertical-alignment > .row-fluid::before,
.header-top-row-0-vertical-alignment > .row-fluid::after {
  display: none;
}
.header-top-row-0-vertical-alignment > .row-fluid > * {
  width: auto;
  margin-left: 0;
}
.header-container-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999999;
}
.header-container,
.small-header .header-container {
  padding: 0px;
}
.header-main {
  padding: 26px 0px 41.3px;
  /*     background-color: #ffffff; */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
header.header {
  padding: 25px 0px 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.small-header:not(.search-open) .header-main,
.small-header:not(.search-open) header.header {
  padding: 12px 0px;
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-container .hs_cos_wrapper_type_logo a:after {
  display: none;
}
.header-container .hs_cos_wrapper_type_logo a {
  border-bottom: 0px;
}
.header-container .hs_cos_wrapper_type_logo a img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 73.73px;
  vertical-align: bottom;
}
.small-header .header-container .hs_cos_wrapper_type_logo a img {
  max-width: 44.82px;
}
.header-login-cart,
.header .welante-user-login-status ul {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  height: 19.5px;
}
.small-header .header-login-cart,
.small-header .header .welante-user-login-status ul {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.header-login-cart ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header-login-cart ul li:not(:last-child) {
  margin-right: 20px;
}
.header-login-cart ul li a {
  font-size: 15px;
  line-height: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  border-bottom: 0;
}
.header-login-cart ul li a img {
  margin-right: 5px;
}
.navigation-primary {
  padding: 0px;
}
.custom-menu-primary .hs-menu-wrapper > ul,
.navigation-primary .submenu.level-1 {
  padding: 0;
  margin: 0px;
  display: initial;
  float: left;
}
.custom-menu-primary .hs-menu-wrapper > ul > li,
.navigation-primary .submenu.level-1 > li {
  margin: auto;
  list-style: none;
  float: left;
  position: static !important;
  /*   padding: 0px 0px 49.317px; */
  padding: 0px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:last-child,
.navigation-primary .submenu.level-1 > li:last-child {
  margin-right: 0px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li  a,
.navigation-primary .submenu.level-1 > li a {
  font-size: 16px;
  line-height: 48px;
  text-transform: initial;
  color: var(--black);
  font-weight: normal;
  padding: 0;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover,
.custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a,
.custom-menu-primary .hs-menu-wrapper > ul > li.active > a,
.navigation-primary .submenu.level-1 > li a:hover,
.navigation-primary .submenu.level-1 > li a.active-item,
.navigation-primary .submenu.level-1 > li.active > a,
.navigation-primary .submenu.level-1 > li a.active-branch {
  color: var(--orange);
}
.custom-menu-primary.header-menu {
  margin: 20px 0px 0px;
}
.sub-menu {
  position: absolute;
  width: 100%;
  background-color: var(--white);
  left: 0px;
  top: 100%;
  right: 0px;
  display: none;
  max-height: calc(100vh - 141.78px);
  overflow-y: auto;
}
.sub-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 70px 0px 140px;
  overflow: hidden;
}
.sub-menu-inner > *:not(.submenu-close) {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.submenu-outer .submenu-inner > .page-center {
  position: ;
  position: relative;
  overflow: hidden;
}
.submenu-left h4 {
  max-width: 417px;
  margin: 0px;
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item {
  list-style: none;
  margin-bottom: 13px;
}
.submenu-right > ul.hs-menu-children-wrapper >  li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item:last-child {
  margin-bottom: 0px;
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item a,
nav .submenu.level-2 li.menu-item .menu-link {
  font-weight: 400;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  transition: all 0.3s !important;
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item a:hover {
  border-color: var(--black);
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item a::after,
nav .submenu.level-2 li.menu-item .menu-link::after {
  content: "";
  position: absolute;
  left: 100%;
  z-index: 1;
  background-color: var(--white);
  height: 100%;
  width: 24px;
  bottom: -1px;
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 > a {
  font-weight: 600;
}
.submenu-right ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children {
  position: relative;
}
.submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul,
nav .submenu.level-2 ul {
  position: relative;

}

.submenu-outer {
  position: absolute;
  width: 100%;
  background-color: var(--white);
  left: 0;
  top: 100%;
  /*   transition: all 0.3s; */
  opacity: 1;
  visibility: visible;
  display: none;
  overflow-y: auto;
}
body nav .submenu.level-2 {
  position: static;
  left: 0;
  border: 0;
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  background-color: var(--white);
  width: 50%;
  padding: 70px 0px 140px;
}

body nav .submenu.level-2 ul,
body nav .submenu.level-2 li {
  border-radius: 0px !important;
}
nav .submenu.level-2 li.menu-item .menu-link {
  border-radius: 0px !important;
  background-color: var(--white);
  display: inline-block;
  padding: 0px;
}

nav .submenu.level-2 li.menu-item .menu-link:hover {
  border-color: var(--black);
}
nav .submenu.level-2 li.menu-item .menu-link:not([href]):hover {
  border-color: var(--white);
}
body nav .submenu.level-2 > li.menu-item  > a.menu-link {
  font-weight: normal;
}
.submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.submenu.level-1 > li.has-submenu.focus .submenu.level-2,
.submenu.level-1 > li.has-submenu.focus .submenu-outer,
.submenu.level-1 > li.has-submenu:hover .submenu-outer {
  /*   visibility: visible;
  opacity: 1;  */
}
.submenu-close {
  position: absolute;
  right: 0;
  top: 35px;
}
.submenu-close a {
  border: 0px !important;
}
.header-login-cart ul li.cart a {
  position: relative;
}
.header-login-cart ul li .cart-number {
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: -9px;
  top: -9px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.custom-menu-primary .hs-menu-wrapper > ul {
  justify-content: flex-end;
}
.header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul li a {
  font-size: 15px;
  line-height: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  border-bottom: 0;
  position: relative;
}
.header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul li:not(:last-child) {
  margin-right: 20px;
}
.header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul li a img {
  margin-right: 5px;
}
.header span.cart-number {
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: #ef2f2c;
  border-radius: 50%;
  left: -9px;
  top: -9px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
nav .submenu.level-1 > .has-submenu > .menu-arrow,
nav .submenu.level-2 > li:first-child::before,
.menu-arrow {
  display: none;
}
.submenu-outer ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .content-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 1199px){
  .sub-menu-inner > .submenu-left {
    max-width: 30%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
  .sub-menu-inner > .submenu-right {
    max-width: 70%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
  .navigation-primary .submenu.level-1 > li {
    margin-right: 25px;
  }
  body nav .submenu.level-2 {
    width: 70%;
    overflow: hidden;
  }
  .submenu-close {
    right: 15px;
  }
  .navigation-primary .submenu.level-1 > li {
    padding-right: 0px !important;
  }
}

@media (max-width: 991px){
  .custom-menu-primary .hs-menu-wrapper > ul > li,
  .navigation-primary .submenu.level-1 > li {
    margin-right: 15px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a {
    font-size: 14px;
    line-height: 17px;
  }
  .header-container .hs_cos_wrapper_type_logo a img {
    max-width: 60px;
  }
  .header-login-cart ul li a,
  .header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul li a {
    font-size: 13px;
    line-height: 18px;
  }
  .sub-menu-inner > .submenu-left {
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
  .sub-menu-inner > .submenu-right {
    max-width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }
  body nav .submenu.level-2 {
    width: 75%;
  }
}

@media (max-width: 767px){
  .header-main,
  header.header {
    padding: 15px 0px;
  }
  .header-container-wrapper {
    position: relative;
  }
  .custom-menu-primary.header-menu {
    display: none;
    margin: 0px 0px 0px;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 100%;
    background-color: #fff;
    padding: 20px 0px;
  }
  .mobile-toggle {
    display: block !important;
    position: absolute;
    right: 15px;
    top: 48px;
  }
  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--black);
    margin: 0 0 4px;
  }
  .mobile-toggle span:last-child {
    margin: 0px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    margin-right: 0px;
    float: none;
    position: static;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
  }
  .sub-menu {
    position: static;
    max-height: inherit;
  }   
  .sub-menu-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub-menu-inner > .submenu-left,
  .sub-menu-inner > .submenu-right {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul {
    left: 0px;
    padding-left: 20px;
  }
  .submenu-close {
    top: 15px;
    display: none;
  }
  .submenu-close img {
    max-width: 18px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li, 
  .navigation-primary .submenu.level-1 > li {
    margin-right: 0;
    border: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a {
    position: relative;
  }
  .submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul::before {
    left: 0;
    display: none;
  }
  .submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul ul {
    /*display: none;*/
  }
  .sub-menu-inner {
    padding: 20px 0px;
  }
  .sub-menu-inner > .submenu-right {
    margin: 20px 0px 0px;
  }
  .header-container .hs_cos_wrapper_type_logo a img,
  .small-header .header-container .hs_cos_wrapper_type_logo a img {
    max-width: 40px;
  }
  .custom-menu-primary .hs-menu-wrapper ul li.hs-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 15px;
    background-image: url("/hubfs/143601443/Bilder%20Website/Icons%20-%20Template/mobile_icon_menu_open.svg");
    background-repeat: no-repeat;
    top: 18px;
    background-size: 10px;
    width: 11px;
    height: 6px;
  }
  .custom-menu-primary .hs-menu-wrapper ul li.hs-item-has-children li.hs-item-has-children > a::after {
    top: 10px;
    right: -20px;
    left: auto;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children a {
    display: inline-block;
  }
  .header--toggle.header__search--toggle {
    display: none;
  }
  .header .header__row-2 {
    justify-content: flex-end;
    padding: 0;
  }
  .header--toggle.header__navigation--toggle {
    margin: 5px 0;
  }
  .header__close--toggle.show {
    display: none !important;
  }
  .navigation-primary {
    margin: 0px 0px 0px;
    padding: 20px 0px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a, 
  .navigation-primary .submenu.level-1 > li a {
    padding: 23px 18px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li, 
  .navigation-primary .submenu.level-1 > li {
    padding: 0px 0px 0;
    position: relative !important;
  }
  .submenu > .has-submenu > a {
    width: 100% !important;
  }
  .submenu-outer {
    position: static;
    opacity: 1;
    visibility: visible;
  }
  body nav .submenu.level-2 {
    width: 100%;
    padding: 10px 15px 20px;
    display: none;
    border-radius: 0px;
    background-color: var(--white);
    display: block;
  }
  body nav .submenu.level-2 .menu-item {
    background-color: var(--white);
    border-bottom: 0;
    border-top: 0px solid #ebeff3;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a,
  .navigation-primary .submenu.level-1 > li a {
    font-size: 20px;
  }
  nav .submenu.level-2 li.menu-item .menu-link {
    width: auto;
  }
  .submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul, 
  nav .submenu.level-2 ul {
    left: 0;
  }
  nav .submenu.level-2 li.menu-item .menu-link {
    width: auto !important;
  }
  .submenu-right ul.hs-menu-children-wrapper li.hs-menu-item a::after,
  nav .submenu.level-2 li.menu-item .menu-link::after,
  .submenu-right > ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul::before,
  nav .submenu.level-2 ul::before {
    display: none;
  }
  .submenu.level-2 ul {
    padding-left: 20px;
  }
  nav .submenu.level-1 > .has-submenu > .menu-arrow, 
  nav .submenu.level-2 > li:first-child::before,
  .menu-arrow {
    display: none !important; 
    height: auto !important;
    padding: 0 !important;
    top: 17px !important;
    width: auto !important;
    right: 15px;
  } 
  nav .submenu.level-1 > .has-submenu > .menu-arrow-bg,
  nav .submenu > .has-submenu > .menu-arrow-bg, .submenu .menu-arrow-bg {
    background-image: url("/hubfs/143601443/Bilder%20Website/Icons%20-%20Template/mobile_icon_menu_open.svg") !important;
    background-size: 10px;
    height: 6px !important;
    width: 11px !important;
    margin-right: 0px !important;
  }
  .submenu > .has-submenu > .menu-arrow {
    display: none;
  }
  .header__navigation--toggle::after {
    display: none !important;
  }
  input[type="checkbox"]:checked ~ .menu-arrow .menu-arrow-bg {
    transform: rotate(180deg) !important;
  }
  body nav .submenu.level-2 li:last-child {
    margin-bottom: 0;
  }
  body nav .submenu.level-2 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .submenu-outer .page-center {
    padding: 0px !important;
  }
  .navigation-primary .submenu.level-1 > li.has-submenu > a {
    position: relative;
  }
  .navigation-primary .submenu.level-1 > li.has-submenu > a::before {
    content: "";
    background-image: url("/hubfs/143601443/Bilder%20Website/Icons%20-%20Template/mobile_icon_menu_open.svg");
    height: 13px;
    width: 25px;
    right: 40px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .navigation-primary .submenu.level-1 > li.has-submenu.active > a::before {
    content: "";
    background-image: url("/hubfs/143601443/Bilder%20Website/Icons%20-%20Template/mobile_icon_menu_close.svg");
    height: 13px;
    width: 25px;
    right: 40px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: calc(50% + 11.5px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .small-header .header-main, .small-header header.header {
    padding: 15px 0px;
    box-shadow: none;
  }

  .small-header .header-login-cart, 
  .small-header .header .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row ul {
    opacity: 1;
    visibility: visible;
    height: auto;
  }

  header.header .submenu-outer > .submenu-inner>.container {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 22px
  }

  body nav .submenu.level-2 > li {
    padding-left: 25px !important;
    border-left: 1px solid black;
    z-index: 2;
  }

  @media (prefers-color-scheme: dark) {
    .header__navigation--toggle {
      /*        background-image: url(https://weiterbildung.veb.ch/hubfs/veb_july_2021/hamburger-white.svg); */
    }
  }
}

header.header .header__logo #hs_cos_wrapper_site_logo img {
  height: auto;
  width: 217px !important;
}

header.header .header__logo #hs_cos_wrapper_site_logo_scrolled img {
  height: auto;
  width: 77px !important;
}

@media (max-width: 1650px) {
  .header__logo.header__logo--main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  header.header .header__logo #hs_cos_wrapper_site_logo img {
    width: 164px !important;
  }
}

body nav .submenu.level-2 {
  margin: auto;
  column-gap: 0px;
  max-width: 564px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

body nav .submenu.level-2 li:first-child {
  grid-column: 1;
}

body nav .submenu.level-2 li:not(:first-child) {
  grid-column: 2;
}

body nav .submenu.level-2 > li:first-child {
  padding-right: 20px;
}

body nav .submenu.level-2 > li:not(:first-child) {
  padding-left: 25px;
  border-left: 1px solid black;
  z-index: 2;
}

header.header .header__login {
  display: flex;
  align-items: center;
}

header.header .header__language-container > .language {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  line-height: 48px;
}

header.header .header__language-container {
  margin-right: 10px;    
}

header.header .header__language-container > .language {
  margin-right: 10px;  
}

header.header .header__language-container {
  display: flex;
}

header.header .header__language-container > .language:first-letter {
  text-transform: uppercase;
}

header.header .header__language-container > .language:not(.active-language) {
  display: none;
}

header.header .header__language-container:hover .language:not(.active-language) {
  display: block
}

@media (min-width: 767px) and (max-width: 1250px) {
  header.header .header__login.header__login--main,
  header.header .submenu-close {
    padding-right: 15px;
  }
}

@media (min-width: 1250px) {
  header.header .header__login.header__login--main {
    position: absolute;
    right: calc((100% - 1240px) / 2);
  }

  header.header .submenu-close {
    right: calc((100% - 1240px) / 2);
  }
}
.footer__container {
  padding: 77px 0px;
  background-color: var(--light-grey);
}

.newsletter__container {
  padding: 80px 0px;
  background-color: var(--black);
}

@media (max-width: 768px) {
  .footer__container {
    padding: 24px 0px !important;
  }

  .newsletter__container {
    padding: 34px 0px;
  }
}
/* 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%;
}

/* Theme Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

/*****************************************/
/* style declarations   */
/*****************************************/

:root {
  --orange: #F39A00;
  --dark-blue: #002f6c;
  --light-orange: #FEF5E5;
  --dark-orange: #F39A00;
  --black: #000000;
  --white: #FFFFFF;
  --darker-grey: #413e3f;
  --dark-grey: #707070;
  --grey: #BFBFBF;
  --light-grey: #EEEEEE;
  --light-blue: #2351A6;
  --green: #396772;
  --light-green: #413e3f;
  --lighter-green: #8da8ae;
  --container-max-width: calc(1480px + 20px);
  --container-max-width-xxl: calc(1220px + 20px);
  --container-max-width-xl: calc(1220px + 20px);
  --container-max-width-lg: calc(960px + 20px);
  --container-max-width-md: calc(720px + 20px);
  --container-max-width-sm: calc(540px + 20px);
}

.module-container {
  position: relative;
}

/* spacing */

.module-container {
  padding: 75px 0;
}

/* Add spacing to not overlap the navigation */
.body-container.container-fluid {
  padding: 93px 0px 0px 0px;
}

.body-container.body-container--blog-listing,
.body-container.body-container--blog-post {
  padding: 93px 0px 75px 0px;
}

@media (max-width: 768px) {
  .module-container {
    padding: 40px 0 !important;
  }

  .body-container.container-fluid {
    padding: 0px;
  }

  .body-container.body-container--blog-listing {
    padding: 0px 0px 40px 0px;    
  }
  
  .body-container.body-container--blog-post {
    padding: 0px;
  }
}

.content-wrapper--vertical-spacing, .dnd-section, .dnd-section .dnd-column {
  padding: 0px;
}

/* 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;
  }
}