/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700;800&family=Nunito:wght@400;700&display=swap');

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

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

/* 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(--column-gap) * 0.0833);
  }

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@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.)
*/

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

.hs_cos_wrapper_type_rich_text p {
  font-size: 1.125rem;
  line-height: 1.77;
}

.rich-text.override-p-max-65ch-w p {
    max-width: unset;
}

/* Anchors */

a {
  cursor: pointer;
}

/* 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 {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  border-radius: 100px;
}

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

/* Sizes */
.button.button--large {
  font-size: 1.13rem;
  padding: 1rem 1.5rem;
}
.button.button--medium {
  padding: 0.75rem 1.5rem;
}
.button.button--small {
  padding: 0.5rem 1rem;
}

/* Colors */
.button.button--primary {
  color: var(--color-green-400);
  background-color: var(--color-blue-800);
}
.button.button--primary:focus,
.button.button--primary:hover {
  background-color: var(--color-blue-600);
}
.button.button--primary:active {
  background-color: var(--color-blue-900);
}

.button.button--secondary {
  --color: var(--color-blue-800);
  color: var(--color);
  background-color: var(--color-white);
  border: 2px solid var(--color);
}
.button.button--secondary:focus,
.button.button--secondary:hover {
  background-color: var(--color-bg-green);
}
.button.button--secondary:active {
  /* FIXME: Can't be the same */
  background-color: var(--color-bg-green);
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  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;
}

/* Privacy text */

form .legal-consent-container .hs-richtext p a {
    text-decoration: underline;
}

form .legal-consent-container {
    line-height: 1.3;
}



/* Labels */

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

.hs-fieldtype-text label,
.hs-fieldtype-phonenumber label,
.hs-fieldtype-number label,
.hs-fieldtype-file label,
.hs-fieldtype-select label,
.hs-fieldtype-textarea label {
  font-weight: 700;
}

.hs-fieldtype-radio label,
.hs-fieldtype-checkbox label {
  font-weight: 700;
}
.hs-fieldtype-radio li > label,
.hs-fieldtype-checkbox li > label {
  font-weight: 400;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form textarea {
  resize: vertical;
}

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

/* Inputs - same width on 2 column */

form fieldset.form-columns-1 input[type=email].hs-input,
form fieldset.form-columns-1 input[type=tel].hs-input,
form fieldset.form-columns-1 input[type=text].hs-input, 
form fieldset.form-columns-1 input[type=url].hs-input,
form fieldset.form-columns-1 input[type=number].hs-input,
form fieldset.form-columns-1 select.hs-input,
form fieldset.form-columns-1 textarea.hs-input {
  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;
}

label.hs-form-checkbox-display,
label.hs-form-booleancheckbox-display,
label.hs-form-radio-display {
    display: flex;
    align-items: center;
}

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

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

/* Validation */

.hs-form-required {
  color: transparent;
}
.hs-form-required::after {
  content: '(påkrevd)';
  color: black;
}

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

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

.bg-blue-dark-700 label.hs-error-msg {
  color: #E56CA8;
}

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

.bg-blue-dark-700 .hs-form-private .hs-submit .actions .hs-button {
  background-color: #93ECCE;
  color: #23348B;
  border: #93ECCE;
}

/* Checkboxes/Radio buttons */

.hs-input[type="checkbox"] {
  border-radius: 0.125rem;
}
.hs-input[type="radio"] {
  border-radius: 9999px;
}

.hs-input[type="checkbox"],
.hs-input[type="radio"] {
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  /* background-color: var(--form-background); */
  /* Not removed via appearance */
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;

  position: relative;

  background-color: #FFF;
  font: inherit;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #2E45B8;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;

  outline: none;
}

.bg-blue-dark-700 .hs-input[type="checkbox"],
.bg-blue-dark-700 .hs-input[type="radio"] {
  border-color: #FFF;
  background-color: transparent;
}

.hs-input[type="checkbox"]:focus-visible,
.hs-input[type="radio"]:focus-visible {
  border-color: #187757;
}

.bg-blue-dark-700 .hs-input[type="checkbox"]:focus-visible,
.bg-blue-dark-700 .hs-input[type="radio"]:focus-visible {
  border-color: #FFF;
}

.hs-input[type="checkbox"]::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMiIgZmlsbD0iIzJFNDVCOCIvPgo8cGF0aCBkPSJNMTguODQzOCA3LjY1NjI1QzE5LjAzMTIgNy44NDM3NSAxOS4wMzEyIDguMTg3NSAxOC44NDM4IDguMzc1TDEwLjM0MzggMTYuODc1QzEwLjE1NjIgMTcuMDYyNSA5LjgxMjUgMTcuMDYyNSA5LjYyNSAxNi44NzVMNS4xMjUgMTIuMzc1QzQuOTM3NSAxMi4xODc1IDQuOTM3NSAxMS44NDM4IDUuMTI1IDExLjY1NjJDNS4zMTI1IDExLjQ2ODggNS42NTYyNSAxMS40Njg4IDUuODQzNzUgMTEuNjU2MkwxMCAxNS44MTI1TDE4LjEyNSA3LjY1NjI1QzE4LjMxMjUgNy40Njg3NSAxOC42NTYyIDcuNDY4NzUgMTguODQzOCA3LjY1NjI1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+);
  border-radius: 0.125rem;
}
.bg-blue-dark-700 .hs-input[type="checkbox"]::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTE4Ljc1IDcuNzE4NzVDMTkuMDYyNSA4LjAzMTI1IDE5LjA2MjUgOC41IDE4Ljc1IDguNzgxMjVMMTAuNSAxNy4wMzEyQzEwLjIxODggMTcuMzQzOCA5Ljc1IDE3LjM0MzggOS40Njg3NSAxNy4wMzEyTDUuMjE4NzUgMTIuNzgxMkM0LjkwNjI1IDEyLjUgNC45MDYyNSAxMi4wMzEyIDUuMjE4NzUgMTEuNzE4OEM1LjUgMTEuNDM3NSA1Ljk2ODc1IDExLjQzNzUgNi4yNSAxMS43MTg4TDEwIDE1LjQ2ODhMMTcuNzE4OCA3LjcxODc1QzE4IDcuNDM3NSAxOC40Njg4IDcuNDM3NSAxOC43NSA3LjcxODc1WiIgZmlsbD0iIzQ3NUVEMSIvPgo8L3N2Zz4K);
}
.hs-input[type="radio"]::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #2E45B8;
}

.bg-blue-dark-700 .hs-input[type="radio"]::before {
  background-color: #FFF;
}

.hs-input[type="checkbox"]::before,
.hs-input[type="radio"]::before {
  content: "";
  transform: scale(0);
  transform-origin: center;
  transition: 20ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

.hs-input[type="checkbox"]:checked::before,
.hs-input[type="radio"]:checked::before {
  transform: scale(1);
}

.hs-input[type="checkbox"]:checked:hover::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMiIgZmlsbD0iIzE4Nzc1NyIvPgo8cGF0aCBkPSJNMTguODQzOCA3LjY1NjI1QzE5LjAzMTIgNy44NDM3NSAxOS4wMzEyIDguMTg3NSAxOC44NDM4IDguMzc1TDEwLjM0MzggMTYuODc1QzEwLjE1NjIgMTcuMDYyNSA5LjgxMjUgMTcuMDYyNSA5LjYyNSAxNi44NzVMNS4xMjUgMTIuMzc1QzQuOTM3NSAxMi4xODc1IDQuOTM3NSAxMS44NDM4IDUuMTI1IDExLjY1NjJDNS4zMTI1IDExLjQ2ODggNS42NTYyNSAxMS40Njg4IDUuODQzNzUgMTEuNjU2MkwxMCAxNS44MTI1TDE4LjEyNSA3LjY1NjI1QzE4LjMxMjUgNy40Njg3NSAxOC42NTYyIDcuNDY4NzUgMTguODQzOCA3LjY1NjI1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+);
}
.bg-blue-dark-700 .hs-input[type="checkbox"]:checked:hover::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTE4Ljc1IDcuNzE4NzVDMTkuMDYyNSA4LjAzMTI1IDE5LjA2MjUgOC41IDE4Ljc1IDguNzgxMjVMMTAuNSAxNy4wMzEyQzEwLjIxODggMTcuMzQzOCA5Ljc1IDE3LjM0MzggOS40Njg3NSAxNy4wMzEyTDUuMjE4NzUgMTIuNzgxMkM0LjkwNjI1IDEyLjUgNC45MDYyNSAxMi4wMzEyIDUuMjE4NzUgMTEuNzE4OEM1LjUgMTEuNDM3NSA1Ljk2ODc1IDExLjQzNzUgNi4yNSAxMS43MTg4TDEwIDE1LjQ2ODhMMTcuNzE4OCA3LjcxODc1QzE4IDcuNDM3NSAxOC40Njg4IDcuNDM3NSAxOC43NSA3LjcxODc1WiIgZmlsbD0iIzQ3NUVEMSIvPgo8L3N2Zz4K);
}
.hs-input[type="radio"]:checked:hover::before {
  background-color: #187757;
}
.bg-blue-dark-700 .hs-input[type="radio"]:checked:hover::before {
  background-color: #FFF;
}

.hs-input[type="checkbox"]:hover::after,
.hs-input[type="checkbox"]:focus-visible::after,
.hs-input[type="radio"]:hover::after,
.hs-input[type="radio"]:focus-visible::after {
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(21,194,131,.25);
}

.bg-blue-dark-700 .hs-input[type="checkbox"]:hover::after,
.bg-blue-dark-700 .hs-input[type="checkbox"]:focus-visible::after,
.bg-blue-dark-700 .hs-input[type="radio"]:hover::after,
.bg-blue-dark-700 .hs-input[type="radio"]:focus-visible::after {
  background: rgba(255, 255, 255, 0.1);
}

select {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3Ljk5NTMgNy40OTk4OEg2QzQuNjcwNjMgNy40OTk4OCAzLjk5NzA0IDkuMTE3MDcgNC45Mzk2OSAxMC4wNjA3TDEwLjg5NzUgMTYuMDYwN0MxMS40ODM0IDE2LjY0NjYgMTIuNDM3OCAxNi42NDY2IDEzLjAyMzggMTYuMDYwN0wxOC45ODE2IDEwLjA2MDdDMjAuMDM5MSA5LjExNzA3IDE5LjM2NDEgNy40OTk4OCAxNy45OTUzIDcuNDk5ODhaTTExLjk5NTMgMTQuOTk5OUw2LjAzOTg1IDguOTk5ODhIMTguMDM1MkwxMS45OTUzIDE0Ljk5OTlaIiBmaWxsPSIjNzA2RTc2Ii8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 96%;
  appearance: none;
}

.newsletter label {
  color: white;
}
.newsletter .hs-form-required::after {
  content: '(påkrevd)';
  color: white;
}

.newsletter .hs-richtext {
  color: white;
}

/* Thank you message */
.bg-blue-dark-700 .submitted-message {
  color: white;
}
/* 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;
}

/* Responsive shadows when scrolling */

.hs_cos_wrapper_type_rich_text table,
.rich-text table,
.table-shadows {
    background-image: linear-gradient(to right, white, white), linear-gradient(to right, white, white), linear-gradient(to right, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0)), linear-gradient(to left, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0));
  /* Shadows */
  /* Shadow covers */
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
  background-attachment: local, local, scroll, scroll;
}

@media (max-width: 767px) {
  .hs_cos_wrapper_type_rich_text table,
  .rich-text table {
    width: 100% !important;
  }
}

.hs_cos_wrapper_type_rich_text table,
.rich-text table {
  overflow-x: auto;
}

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

header.header {
  background-color: var(--color-blue-dark-700);
  padding: 1rem;
  color: var(--color-white);
}

.header__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  color: var(--color-white);
}

.header__button-hamburger {
  color: var(--color-white);
}

.header__navigation {
  display: none;
}
.header__navigation.open {
  display: block;
}
.header__button-hamburger--icon {}

/* 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 {
  background: #FFF;
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
footer.footer {
  background-color: var(--color-blue-dark-700);
  padding: 1rem;
  color: var(--color-white);
}

.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;
}

.footer__item {
  padding-inline-end: 4rem;
}
.footer__item:not(:last-child) {
  border-right: 1px solid var(--color-green-400);
}
.footer__item h2 {
  font-size: 1rem;
  color: var(--color-green-400);
  text-transform: uppercase;
  margin-block-end: 0.5rem;
}

.footer__navigation ul {
  list-style: none;
  padding: 0;
}

.footer__navigation a {
  color: var(--color-white);
  text-decoration: none;
}
.footer__navigation a:hover,
.footer__navigation a:focus {
  text-decoration: underline;
}
/* 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;
  }
}