/**
 * THIS FILE WAS AUTOGENERATED PLEASE DO NOT EDIT, RISK OF OVERWRITE
 */

/**
 * Main stylesheet for the theme.
 *
 * Theme styles follow http://cssguidelin.es/ and are organized according to
 * Inverted Triangle CSS (ITCSS) principles put forth by Harry Roberts. In
 * short, each layer of CSS gets more specific as you move down this page.
 */
/*--------------------------------------------------------------
# Settings - Global variables, config switches.
--------------------------------------------------------------*/
:root {
  --color-primary: var(--color-blue-dark-60);
  --color-white: #FFFFFF;
  --color-grey: #D9D9D9;
  --color-coral: #FD9393;
  --color-yellow: #F4F437;
  --color-blue: #016F8D;
  --color-blue-20: #D8F5FE;
  --color-blue-dark: #025369;
  --color-blue-dark-20: #D1E0E4;
  --color-blue-dark-60: #0483A0;
  --color-green: #7CDAC2;
  --color-green-20: #DCF4ED;
  --color-text:#16232E;
  --color-text-link: #047D9E;
  --color-text-input: #707070;
  --color-background: var(--color-white);
  --color-background-grey: #F7F7F8;
  --color-background-green: #EEFAF6;
  --color-button-primary: #16232E;
  --color-button-link: var(--color-blue-dark);
  --color-icon-green: #1B726C;
  --color-background-button-primary: #98E3CC;
  --text-size-400: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  --text-size-500: clamp(1rem, 1rem + 0vw, 1rem);
  --text-size-600: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  --heading-size-300: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  --heading-size-400: clamp(1.75rem, 1.75rem + 0vw, 1.75rem);
  --heading-size-500: clamp(2.25rem, 2.25rem + 0vw, 2.25rem);
  --heading-size-600: clamp(2.625rem, 2.625rem + 0vw, 2.625rem);
  --text-size-button: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  --text-size-number: clamp(4rem, 2.9406779661rem + 4.2372881356vw, 6.5rem);
  --font-family-title: "Poppins", sans-serif;
  --font-family-base: "Inter", sans-serif;
  --line-height-heading: 1.2;
  --line-height-body: 1.5;
  --space-xs: clamp(0.25rem, 0.25rem + 0vw, 0.25rem);
  --space-s: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  --space-m: clamp(1rem, 1rem + 0vw, 1rem);
  --space-l: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  --space-l-xl: clamp(1.5rem, 0.8644067797rem + 2.5423728814vw, 3rem);
  --space-xl: clamp(3rem, 3rem + 0vw, 3rem);
  --space-2xl: clamp(2rem, 1.3644067797rem + 2.5423728814vw, 3.5rem);
  --space-3xl: clamp(3rem, 2.3644067797rem + 2.5423728814vw, 4.5rem);
  --space-4xl: clamp(4rem, 3.1525423729rem + 3.3898305085vw, 6rem);
  --space-5xl: clamp(5rem, 3.9406779661rem + 4.2372881356vw, 7.5rem);
  --side-padding: var(--space-l-xl);
  --space-default: var(--space-3xl);
  --gutter: var(--space-m);
  --typography-margin: 1.3em;
  --menu-height: 7.67321rem;
  --menu-height--mobile: 3.8125rem;
  --max-width-site: 90rem;
  --max-width-container: 84rem;
  --max-width-xlarge: calc(var(--max-width-container) * 0.9642857);
  --max-width-large: calc(var(--max-width-container) * 0.880952);
  --max-width-medium: calc(var(--max-width-container) * 0.833333);
  --max-width-medium--small: calc(var(--max-width-container) * 0.7142857);
  --max-width-regular: calc(var(--max-width-container) * 0.595238);
  --max-width-small--medium: calc(var(--max-width-container) * 0.509523);
  --max-width-small: calc(var(--max-width-container) * 0.297619);
  --width-wide: clamp(min(50rem, 100%), 100%, var(--max-width-container));
  --width-xlarge: clamp(min(50rem, 100%), 96.42857%, var(--max-width-xlarge));
  --width-large: clamp(min(50rem, 100%), 88.0952%, var(--max-width-large));
  --width-medium: clamp(min(50rem, 100%), 83.3333333%, var(--max-width-medium));
  --width-medium--small: clamp(min(50rem, 100%), 83.3333333%, var(--max-width-medium--small));
  --width-regular: clamp(min(50rem, 100%), 59.5238%, var(--max-width-regular));
  --width-small--medium: clamp(min(40rem, 100%), 50.9523%, var(--max-width-small--medium));
  --width-small: clamp(min(40rem, 100%), 29.7619%, var(--max-width-small));
}

/*--------------------------------------------------------------
# Tools - Default mixins and functions.
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic - Ground-zero styles (resets, box-sizing, etc.).
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | 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
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html, body {
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--color-background);
  scroll-behavior: smooth;
  scroll-padding-top: var(--menu-height);
}
@media (max-width: 79.5rem) {
  html {
    scroll-padding-top: var(--menu-height--mobile);
  }
  html.main-menu-open {
    overflow: hidden;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
}
.site-wrapper__main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.site-wrapper__footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

img {
  height: auto;
  max-width: 100%;
}

.absolute-link::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.has-background-grey {
  background-color: var(--color-background-grey);
}

.has-background-green {
  background-color: var(--color-background-green);
}

.has-background-blue {
  background-color: var(--color-blue-20);
}

.has-white-text {
  color: var(--color-white);
}
.has-white-text h1,
.has-white-text h2,
.has-white-text h3 {
  color: var(--color-white);
}

[hidden] {
  display: none;
}

iframe {
  width: 100%;
}

/*--------------------------------------------------------------
# Elements - Unclassed HTML elements (type selectors).
--------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 16px;
}

body {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-text);
}

a {
  color: var(--color-text-link);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: var(--color-button-link);
  outline: none;
}

b,
strong {
  font-weight: 600;
}

h1,
.h1 {
  font-size: var(--heading-size-600);
  line-height: 1.14;
  font-family: var(--font-family-title);
  font-weight: 600;
}

h2,
.h2 {
  font-size: var(--heading-size-500);
  line-height: 1.125;
  font-family: var(--font-family-title);
  font-weight: 600;
}

h3,
.h3 {
  font-size: var(--heading-size-400);
  line-height: 1.33;
  font-family: var(--font-family-title);
  font-weight: 600;
}

h4,
.h4 {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
}

h5,
.h5,
h6,
.h6 {
  font-size: var(--text-size-500);
  line-height: 1.25;
  font-family: var(--font-family-title);
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--color-blue);
}

blockquote {
  font-size: var(--heading-size-300);
  line-height: 1.6;
  font-family: var(--font-family-base);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-l);
  margin: 0;
}
blockquote::before {
  content: "";
  background-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/custobar-quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 48.001rem) {
  blockquote::before {
    height: 2.375rem;
    width: 2.625rem;
  }
}

.btn,
.hs-button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  font-size: var(--text-size-button);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  padding: var(--space-m) var(--space-l);
  text-decoration: none;
  text-align: center;
  color: var(--color-button-primary);
  background: var(--color-background-button-primary);
  border-radius: 1.25rem 0.125rem 0.125rem 0.125rem;
  border: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn:hover,
.hs-button:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: var(--color-button-primary);
  background: var(--color-green);
  text-decoration: none;
}
.btn:focus,
.hs-button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: 2px solid var(--color-button-primary);
  outline-offset: 2px;
}

.btn--blue {
  background: var(--color-blue-dark-60);
  color: var(--color-white);
}
.btn--blue:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.btn--blue:focus {
  outline: 2px solid var(--color-blue-dark-60);
}

.btn--small {
  font-size: var(--text-size-500);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  border-radius: 1rem 0.125rem 0.125rem 0.125rem;
  padding: var(--space-s) var(--space-l);
}

.btn--flat {
  background: transparent;
  color: var(--color-button-link);
  padding: 0;
}
.btn--flat:hover, .btn--flat:focus {
  background: transparent;
  color: var(--color-text-link);
  outline: none;
}

.btn--arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  color: var(--color-button-link);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.btn--arrow::after {
  background-color: var(--color-button-link);
  content: "";
  display: block;
  -webkit-mask-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/AfterIcon.svg);
          mask-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/AfterIcon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  height: 0.75rem;
  margin-left: var(--space-s);
  width: 0.75rem;
}
.btn--arrow:hover, .btn--arrow:focus {
  background: transparent;
  color: var(--color-text-link);
  outline: none;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  background-color: var(--color-text-link);
}

.reset-button {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
}
.reset-button:focus {
  outline: none;
}

.filter-tag {
  font-size: var(--text-size-500);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  background: var(--color-white);
  border-radius: 0.125rem;
  color: var(--color-blue);
  padding: var(--space-s) var(--space-m);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.filter-tag.active-tag, .filter-tag:hover, .filter-tag:focus {
  background-color: var(--color-blue);
  color: var(--color-white);
  outline: none;
}

.tag {
  font-size: var(--text-size-400);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 600;
  background-color: var(--color-blue-20);
  color: var(--color-blue-dark-60);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--space-xs) var(--space-s);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  width: 100% !important;
  padding: var(--space-m) var(--space-l);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 0.0625rem solid var(--color-grey);
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

input[type=checkbox],
input[type=radio] {
  font-size: 100%;
  margin-right: 0.25rem;
}

.hs-form-radio-display,
.hs-fieldtype-checkbox,
.hs-fieldtype-booleancheckbox {
  position: relative;
}
.hs-form-radio-display input[type=radio],
.hs-form-radio-display input[type=checkbox],
.hs-fieldtype-checkbox input[type=radio],
.hs-fieldtype-checkbox input[type=checkbox],
.hs-fieldtype-booleancheckbox input[type=radio],
.hs-fieldtype-booleancheckbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.hs-form-radio-display input[type=radio] + span:not(.hs-form-required),
.hs-form-radio-display input[type=checkbox] + span:not(.hs-form-required),
.hs-fieldtype-checkbox input[type=radio] + span:not(.hs-form-required),
.hs-fieldtype-checkbox input[type=checkbox] + span:not(.hs-form-required),
.hs-fieldtype-booleancheckbox input[type=radio] + span:not(.hs-form-required),
.hs-fieldtype-booleancheckbox input[type=checkbox] + span:not(.hs-form-required) {
  position: relative;
  display: inline-block;
  padding-left: var(--space-xl);
  cursor: pointer;
}
.hs-form-radio-display input[type=radio] + span:not(.hs-form-required)::before, .hs-form-radio-display input[type=radio] + span:not(.hs-form-required)::after,
.hs-form-radio-display input[type=checkbox] + span:not(.hs-form-required)::before,
.hs-form-radio-display input[type=checkbox] + span:not(.hs-form-required)::after,
.hs-fieldtype-checkbox input[type=radio] + span:not(.hs-form-required)::before,
.hs-fieldtype-checkbox input[type=radio] + span:not(.hs-form-required)::after,
.hs-fieldtype-checkbox input[type=checkbox] + span:not(.hs-form-required)::before,
.hs-fieldtype-checkbox input[type=checkbox] + span:not(.hs-form-required)::after,
.hs-fieldtype-booleancheckbox input[type=radio] + span:not(.hs-form-required)::before,
.hs-fieldtype-booleancheckbox input[type=radio] + span:not(.hs-form-required)::after,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span:not(.hs-form-required)::before,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span:not(.hs-form-required)::after {
  position: absolute;
  content: "";
}
.hs-form-radio-display input[type=radio] + span::before,
.hs-form-radio-display input[type=checkbox] + span::before,
.hs-fieldtype-checkbox input[type=radio] + span::before,
.hs-fieldtype-checkbox input[type=checkbox] + span::before,
.hs-fieldtype-booleancheckbox input[type=radio] + span::before,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span::before {
  height: 1.25rem;
  width: 1.25rem;
  background-color: var(--color-white);
  top: 0;
  left: 0;
  border: 0.125rem solid var(--color-blue);
}
.hs-form-radio-display input[type=radio] + span::after,
.hs-form-radio-display input[type=checkbox] + span::after,
.hs-fieldtype-checkbox input[type=radio] + span::after,
.hs-fieldtype-checkbox input[type=checkbox] + span::after,
.hs-fieldtype-booleancheckbox input[type=radio] + span::after,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span::after {
  content: none;
}
.hs-form-radio-display input[type=radio]:checked + span::after,
.hs-form-radio-display input[type=checkbox]:checked + span::after,
.hs-fieldtype-checkbox input[type=radio]:checked + span::after,
.hs-fieldtype-checkbox input[type=checkbox]:checked + span::after,
.hs-fieldtype-booleancheckbox input[type=radio]:checked + span::after,
.hs-fieldtype-booleancheckbox input[type=checkbox]:checked + span::after {
  content: "";
}
.hs-form-radio-display input[type=radio]:focus + span::before,
.hs-form-radio-display input[type=checkbox]:focus + span::before,
.hs-fieldtype-checkbox input[type=radio]:focus + span::before,
.hs-fieldtype-checkbox input[type=checkbox]:focus + span::before,
.hs-fieldtype-booleancheckbox input[type=radio]:focus + span::before,
.hs-fieldtype-booleancheckbox input[type=checkbox]:focus + span::before {
  outline: 1px dotted var(--color-text);
}
.hs-form-radio-display input[type=radio] + span:before,
.hs-fieldtype-checkbox input[type=radio] + span:before,
.hs-fieldtype-booleancheckbox input[type=radio] + span:before {
  border-radius: 50%;
}

.hs-form-radio-display input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.hs-form-radio-display input[type=radio]:checked + span::after {
  background-color: var(--color-blue);
  border-radius: 50%;
  content: "";
  height: 0.75rem;
  left: 0.25rem;
  position: absolute;
  top: 0.25rem;
  width: 0.75rem;
}

.hs-fieldtype-checkbox,
.hs-fieldtype-booleancheckbox {
  position: relative;
}
.hs-fieldtype-checkbox .input,
.hs-fieldtype-booleancheckbox .input {
  margin-top: 0.3rem;
}
.hs-fieldtype-checkbox span:not(.hs-form-required)::after,
.hs-fieldtype-booleancheckbox span:not(.hs-form-required)::after {
  border-radius: 0;
}
.hs-fieldtype-checkbox input[type=checkbox] + span::after,
.hs-fieldtype-checkbox input[type=checkbox] + span::before,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span::after,
.hs-fieldtype-booleancheckbox input[type=checkbox] + span::before {
  border-radius: 0.125rem;
}
.hs-fieldtype-checkbox input[type=checkbox]:checked + span::after,
.hs-fieldtype-booleancheckbox input[type=checkbox]:checked + span::after {
  background-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/custobar-checked.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.25rem;
}

.hs-form, .systems-page .form-container {
  font-size: var(--text-size-400);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 400;
}
.hs-form .hs-form-field, .systems-page .form-container .hs-form-field {
  margin: 0 0 var(--space-l) 0;
}
.hs-form .hs-form-field label, .systems-page .form-container .hs-form-field label {
  margin-bottom: 0.1rem;
  display: block;
  position: relative;
}
.hs-form .hs-form-field textarea, .systems-page .form-container .hs-form-field textarea {
  vertical-align: top;
}
.hs-form .hs-form-field .input ul.inputs-list, .systems-page .form-container .hs-form-field .input ul.inputs-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 0.6rem 0;
}
.hs-form .hs-form-field .input ul.inputs-list li, .systems-page .form-container .hs-form-field .input ul.inputs-list li {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
.hs-form .hs-form-field .input ul.inputs-list .hs-form-checkbox input, .systems-page .form-container .hs-form-field .input ul.inputs-list .hs-form-checkbox input,
.hs-form .hs-form-field .input ul.inputs-list .hs-form-radio input,
.systems-page .form-container .hs-form-field .input ul.inputs-list .hs-form-radio input,
.hs-form .hs-form-field .input ul.inputs-list li .hs-form-booleancheckbox-display .hs-input,
.systems-page .form-container .hs-form-field .input ul.inputs-list li .hs-form-booleancheckbox-display .hs-input {
  height: auto;
  width: auto;
}
.hs-form .hs-form-field .input ul.inputs-list span, .systems-page .form-container .hs-form-field .input ul.inputs-list span {
  font-size: 1em;
}
.hs-form .hs-submit, .systems-page .form-container .hs-submit {
  margin-top: var(--space-l);
  text-align: center;
}
.hs-form .hs-error-msgs, .systems-page .form-container .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0;
}
.hs-form .hs-error-msgs li, .systems-page .form-container .hs-error-msgs li {
  margin-top: 0;
}
.hs-form .hs-error-msgs label, .systems-page .form-container .hs-error-msgs label {
  color: red;
}

body .body-wrapper .widget-type-form {
  background-color: var(--color-background-grey);
  padding: var(--space-3xl) var(--space-l-xl);
}
body .body-wrapper .widget-type-form .form-title {
  text-align: center;
  padding-bottom: var(--space-xl);
}

body .body-wrapper .hs-form, body .body-wrapper .systems-page .form-container, .systems-page body .body-wrapper .form-container {
  background-color: var(--color-background-grey);
}
body .body-wrapper .hs-form fieldset, body .body-wrapper .systems-page .form-container fieldset, .systems-page body .body-wrapper .form-container fieldset {
  width: 100%;
  max-width: 100%;
}
body .body-wrapper .hs-form fieldset .input, body .body-wrapper .systems-page .form-container fieldset .input, .systems-page body .body-wrapper .form-container fieldset .input {
  margin-right: 0;
}
body .body-wrapper .hs-form fieldset .hs-form-field, body .body-wrapper .systems-page .form-container fieldset .hs-form-field, .systems-page body .body-wrapper .form-container fieldset .hs-form-field {
  width: 100%;
}
@media (min-width: 37.501rem) {
  body .body-wrapper .hs-form fieldset.form-columns-2 .hs-form-field, body .body-wrapper .systems-page .form-container fieldset.form-columns-2 .hs-form-field, .systems-page body .body-wrapper .form-container fieldset.form-columns-2 .hs-form-field {
    width: calc(50% - 0.75rem);
    margin-right: 1.5rem;
  }
  body .body-wrapper .hs-form fieldset.form-columns-2 .hs-form-field:last-child, body .body-wrapper .systems-page .form-container fieldset.form-columns-2 .hs-form-field:last-child, .systems-page body .body-wrapper .form-container fieldset.form-columns-2 .hs-form-field:last-child {
    margin-right: 0;
  }
  body .body-wrapper .hs-form fieldset.form-columns-3 .hs-form-field, body .body-wrapper .systems-page .form-container fieldset.form-columns-3 .hs-form-field, .systems-page body .body-wrapper .form-container fieldset.form-columns-3 .hs-form-field {
    width: calc(33.3% - 0.35rem);
    margin-right: 0.5rem;
  }
  body .body-wrapper .hs-form fieldset.form-columns-3 .hs-form-field:last-child, body .body-wrapper .systems-page .form-container fieldset.form-columns-3 .hs-form-field:last-child, .systems-page body .body-wrapper .form-container fieldset.form-columns-3 .hs-form-field:last-child {
    margin-right: 0;
  }
}
body .body-wrapper .hs-form.hs-form--search, body .body-wrapper .systems-page .hs-form--search.form-container, .systems-page body .body-wrapper .hs-form--search.form-container {
  background-color: var(--color-white);
  padding: 0;
  padding-bottom: var(--space-xl);
  padding-top: var(--space-l);
}
body .body-wrapper .hs-form.hs-form--search .hs-form-field, body .body-wrapper .systems-page .hs-form--search.form-container .hs-form-field, .systems-page body .body-wrapper .hs-form--search.form-container .hs-form-field {
  margin: 0;
  position: relative;
}
body .body-wrapper .hs-form.hs-form--search .hs-form-field .hs-search-field__input, body .body-wrapper .systems-page .hs-form--search.form-container .hs-form-field .hs-search-field__input, .systems-page body .body-wrapper .hs-form--search.form-container .hs-form-field .hs-search-field__input {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  border-color: var(--color-blue);
  border-radius: 0.125rem;
  padding-left: calc(var(--space-m) * 2 + 1.125rem);
}
body .body-wrapper .hs-form.hs-form--search .hs-form-field .hs-search-field__input:focus, body .body-wrapper .systems-page .hs-form--search.form-container .hs-form-field .hs-search-field__input:focus, .systems-page body .body-wrapper .hs-form--search.form-container .hs-form-field .hs-search-field__input:focus {
  outline: none;
}
body .body-wrapper .hs-form.hs-form--search .hs-submit, body .body-wrapper .systems-page .hs-form--search.form-container .hs-submit, .systems-page body .body-wrapper .hs-form--search.form-container .hs-submit {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  margin: 0;
  position: absolute;
  left: var(--space-m);
  top: var(--space-m);
}
body .body-wrapper .hs-form.hs-form--search .hs-submit:focus, body .body-wrapper .systems-page .hs-form--search.form-container .hs-submit:focus, .systems-page body .body-wrapper .hs-form--search.form-container .hs-submit:focus {
  outline: none;
}

ul,
ol {
  padding-left: var(--space-l);
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0;
}

ul li {
  margin-top: var(--space-xs);
  position: relative;
}
ul li a {
  font-size: var(--text-size-500);
  line-height: 1.25;
  font-family: var(--font-family-base);
  font-weight: 600;
}
ul li::marker {
  color: var(--color-text-link);
}

table {
  border: 0 !important;
  border-collapse: collapse;
  width: 100%;
}
table tr:first-child td {
  font-size: var(--text-size-400);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 600;
  background: var(--color-green-20);
  border-bottom: 1px solid var(--color-grey);
}

td,
th {
  font-size: var(--text-size-400);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 400;
  border-bottom: 1px solid var(--color-grey);
  padding: var(--space-m);
}

/*--------------------------------------------------------------
# Layout - Undecorated design patterns.
--------------------------------------------------------------*/
.content-wrapper,
.main-dnd-area,
.dnd-section > .row-fluid {
  width: var(--width-wide);
  margin-left: auto;
  margin-right: auto;
}

.site-main {
  margin-top: var(--menu-height);
}
@media (max-width: 79.5rem) {
  .site-main {
    margin-top: var(--menu-height--mobile);
  }
}

.content-row,
.dnd-section {
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
}
.content-row.has-related-articles,
.dnd-section.has-related-articles {
  margin-bottom: 0;
}

.dnd-section .dnd-row:not(:first-child) .reset-multiple-row-top {
  margin-top: 0;
}
@media (max-width: 48rem) {
  .dnd-section .dnd-column:not(:first-child) {
    margin-top: var(--gutter);
  }
}
.dnd-section:first-child .dnd-row:first-child .has-background,
.dnd-section:first-child .dnd-row:first-child .reset-multiple-row-top {
  margin-top: calc(var(--space-default) * -1);
}
.dnd-section:last-child .dnd-row:last-child .has-background,
.dnd-section:last-child .dnd-row:last-child .reset-multiple-row-top {
  margin-bottom: calc(var(--space-default) * -1);
}

div[class*=background-color].dnd-section {
  padding: var(--space-default) var(--side-padding);
}
div[class*=background-color].dnd-section:first-child {
  margin-top: 0;
}
div[class*=background-color].dnd-section:last-child {
  margin-bottom: 0;
}
div[class*=background-color].dnd-section + div[class*=background-color].dnd-section {
  margin-top: calc(var(--space-default) * -1);
}

div[class*=background-color].dnd-column {
  padding: var(--gutter);
}
@media (min-width: 48.001rem) {
  div[class*=background-color].dnd-column {
    padding: var(--gutter);
  }
}

*,
h1 {
  margin: 0;
}

* + ul,
* + ol,
* + table,
* + figure,
* + p,
* + h1,
* + h2,
* + h3,
* + h4,
* + h5 {
  margin-top: var(--typography-margin);
}

.side-padding {
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

.has-background-green,
.has-background-grey {
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
}

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

/* Responsive Grid */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
@media (min-width: 48.001rem) {
  .row-fluid [class*=span] {
    display: block;
    width: 100%;
    min-height: 1px;
    margin-left: var(--gutter);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row-fluid [class*=span]:first-child {
    margin-left: 0;
  }
  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: calc(91.6666666667% - var(--gutter) / 2);
  }
  .row-fluid .span10 {
    width: calc(83.3333333333% - var(--gutter) / 2);
  }
  .row-fluid .span9 {
    width: calc(75% - var(--gutter) / 2);
  }
  .row-fluid .span8 {
    width: calc(66.6666666667% - var(--gutter) / 2);
  }
  .row-fluid .span7 {
    width: calc(58.3333333333% - var(--gutter) / 2);
  }
  .row-fluid .span6 {
    width: calc(50% - var(--gutter) / 2);
  }
  .row-fluid .span5 {
    width: calc(41.6666666667% - var(--gutter) / 2);
  }
  .row-fluid .span4 {
    width: calc(33.3333333333% - var(--gutter) / 2);
  }
  .row-fluid .span3 {
    width: calc(25% - var(--gutter) / 2);
  }
  .row-fluid .span2 {
    width: calc(16.6666666667% - var(--gutter) / 2);
  }
  .row-fluid .span1 {
    width: calc(8.3333333333% - var(--gutter) / 2);
  }
}

.container-fluid {
  *zoom: 1;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}
.container-fluid:after {
  clear: both;
}

/* Clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* Visibilty Classes */
.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive Visibilty Classes */
.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 48rem) {
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
@media (min-width: 48rem) and (max-width: 65rem) {
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
.error-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
  padding-top: var(--space-default);
}
.error-page > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 48rem) {
  .error-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .error-page ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .error-page ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.error-page h1 {
  font-size: var(--heading-size-400);
  line-height: 1.33;
  font-family: var(--font-family-title);
  font-weight: 600;
}
.error-page__error {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--color-blue);
}
.error-page img {
  vertical-align: top;
}
.error-page__paragraph {
  margin: 2em 0 2.1em;
}
.error-page__paragraph:last-child {
  margin-bottom: 0;
}

.blog-post__metas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space-xl);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--space-xl);
}
.site-hero__content .blog-post__metas p {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  margin-top: 0;
}
.blog-post__metas a {
  text-decoration: none;
}
.blog-post__metas a:hover, .blog-post__metas a:focus {
  text-decoration: underline;
}
.blog-post__title {
  margin-top: var(--space-xl);
}

.latest-post {
  padding: var(--space-3xl) 0;
}

.posts-list #hs_cos_wrapper_newsletter {
  grid-area: 2/1;
}
.posts-list #hs_cos_wrapper_newsletter .newsletter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: var(--space-m);
}
@media (min-width: 48.001rem) {
  .posts-list #hs_cos_wrapper_newsletter .newsletter {
    padding: var(--space-m) var(--space-xl);
  }
}
.posts-list #hs_cos_wrapper_newsletter .newsletter__title h2 {
  font-size: var(--heading-size-400);
  line-height: 1.33;
  font-family: var(--font-family-title);
  font-weight: 600;
}

.archive-filters {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: var(--space-l) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: var(--space-s);
}
.archive-filters li {
  margin-top: 0;
}
.archive-filters li {
  margin: var(--space-m) 0;
}
.archive-filters li a {
  display: block;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.posts-pagination,
.hs-search-results__pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: var(--space-xl);
  margin-top: var(--space-xl);
  line-height: 1;
  text-align: center;
}
.posts-pagination li,
.hs-search-results__pagination li {
  margin-top: 0;
}
.posts-pagination li,
.hs-search-results__pagination li {
  display: inline-block;
  margin: 0 0 0 var(--space-2xl);
}
.posts-pagination li:first-child,
.hs-search-results__pagination li:first-child {
  margin-left: 0;
}
.posts-pagination .posts-pagination__link,
.posts-pagination .hs-search-results__pagination__link,
.hs-search-results__pagination .posts-pagination__link,
.hs-search-results__pagination .hs-search-results__pagination__link {
  font-size: var(--text-size-button);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--color-button-link);
  display: inline-block;
  padding: 0.3rem;
  text-decoration: none;
}
.posts-pagination .posts-pagination__link:hover, .posts-pagination .posts-pagination__link:focus,
.posts-pagination .hs-search-results__pagination__link:hover,
.posts-pagination .hs-search-results__pagination__link:focus,
.hs-search-results__pagination .posts-pagination__link:hover,
.hs-search-results__pagination .posts-pagination__link:focus,
.hs-search-results__pagination .hs-search-results__pagination__link:hover,
.hs-search-results__pagination .hs-search-results__pagination__link:focus {
  color: var(--color-text);
}
.posts-pagination .posts-pagination__link--active:hover, .posts-pagination .posts-pagination__link--active:focus,
.posts-pagination .hs-search-results__pagination__link--active:hover,
.posts-pagination .hs-search-results__pagination__link--active:focus,
.hs-search-results__pagination .posts-pagination__link--active:hover,
.hs-search-results__pagination .posts-pagination__link--active:focus,
.hs-search-results__pagination .hs-search-results__pagination__link--active:hover,
.hs-search-results__pagination .hs-search-results__pagination__link--active:focus {
  color: var(--color-text-link);
}
.posts-pagination .posts-pagination__link svg,
.posts-pagination .hs-search-results__pagination__link svg,
.hs-search-results__pagination .posts-pagination__link svg,
.hs-search-results__pagination .hs-search-results__pagination__link svg {
  position: relative;
  margin-right: var(--space-s);
}
.posts-pagination .hs-search-results__pagination__link,
.hs-search-results__pagination .hs-search-results__pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.posts-pagination__next-link svg,
.hs-search-results__pagination__next-link svg {
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 75% center;
          transform-origin: 75% center;
}
.posts-pagination__prev-link svg,
.posts-pagination .hs-search-results__pagination__link--prev svg,
.hs-search-results__pagination__prev-link svg,
.hs-search-results__pagination .hs-search-results__pagination__link--prev svg {
  position: relative;
}
.posts-pagination .posts-pagination__prev-link--disabled,
.posts-pagination .posts-pagination__next-link--disabled,
.posts-pagination .hs-search-results__pagination__link--disabled,
.hs-search-results__pagination .posts-pagination__prev-link--disabled,
.hs-search-results__pagination .posts-pagination__next-link--disabled,
.hs-search-results__pagination .hs-search-results__pagination__link--disabled {
  opacity: 0.5;
}
@media (max-width: 48rem) {
  .posts-pagination .hs-search-results__pagination__link--first,
  .posts-pagination .hs-search-results__pagination__link--last,
  .hs-search-results__pagination .hs-search-results__pagination__link--first,
  .hs-search-results__pagination .hs-search-results__pagination__link--last {
    display: none;
  }
}

.hs-search-results__pagination {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.posts-load {
  margin: var(--space-l) auto;
  text-align: center;
}

.blog-content {
  margin-top: var(--space-m);
}

.user-guide {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-3xl);
}
@media (max-width: 48rem) {
  .user-guide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 48rem) {
  .user-guide__sidebar {
    width: 100%;
  }
}
@media (min-width: 48.001rem) {
  .user-guide__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 29.7619047619%;
            flex: 0 0 29.7619047619%;
  }
}
.user-guide__title {
  margin-bottom: var(--space-l);
}
.user-guide .hs_cos_wrapper_type_module .width-full, .user-guide .hs_cos_wrapper_type_module div[class*=background-color].dnd-section {
  left: unset;
  margin: 0;
  right: unset;
  padding: var(--space-default) 0;
  width: 100%;
}

.user-guide-hero {
  overflow: hidden;
  position: relative;
}
.user-guide-hero__image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.user-guide-hero__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.user-guide-hero__content {
  padding: var(--space-default) 0;
  position: relative;
}
.user-guide-hero__title {
  position: relative;
  text-align: center;
}
.user-guide-hero__search-bar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 12.125rem;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}
.user-guide-hero__search-bar p {
  font-size: var(--heading-size-500);
  line-height: 1.125;
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--color-white);
}
.user-guide-hero__search-bar input {
  position: relative;
}
.user-guide-hero__search-bar input::before {
  background-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/search.svg);
  background-repeat: no-repeat;
  content: "";
  height: 1.125rem;
  width: 1.12738rem;
}

.systems-page {
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
}
.systems-page .form-container {
  max-width: none;
}
.systems-page.container {
  width: var(--width-10-col);
}
.systems-page .subscribe-options {
  margin-bottom: var(--typography-margin);
}
.systems-page .item,
.systems-page .subscribe-options {
  margin-top: var(--typography-margin);
}
.systems-page .item p,
.systems-page .subscribe-options p {
  margin: 0;
}
.systems-page .backup-unsubscribe #email-prefs-form {
  margin: var(--typography-margin) auto;
}
.systems-page .backup-unsubscribe #email-prefs-form .email-edit.hs-input {
  margin: 1rem 0;
}

.width-regular {
  width: var(--width-regular);
}

.width-small--medium {
  width: var(--width-small);
}

.width-small {
  width: var(--width-small);
}

.width-medium--small {
  width: var(--width-medium--small);
}

.width-medium {
  width: var(--width-medium);
}

.width-large {
  width: var(--width-large);
}

.width-xlarge {
  width: var(--width-xlarge);
}

.width-wide {
  width: var(--width-wide);
}

.width-full, div[class*=background-color].dnd-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/*--------------------------------------------------------------
# Modules - specific UI components.
--------------------------------------------------------------*/
.article-lift {
  padding: var(--space-default) var(--side-padding);
}
.article-lift__title {
  margin-bottom: var(--space-xl);
  text-align: center;
}
.user-guide-archive .article-lift__title {
  text-align: left;
}
.article-lift--related {
  margin-top: var(--space-default);
}
.article-lift--related .hs_cos_wrapper {
  display: contents;
}

.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text, .span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-form, .span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-header,
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module > .normal-text-width,
.dnd-section > .row-fluid > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text,
.dnd-section > .row-fluid > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-form,
.dnd-section > .row-fluid > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-header,
.dnd-section > .row-fluid > .span12.dnd-module > .hs_cos_wrapper_type_module > .normal-text-width {
  margin: auto;
  width: var(--width-regular);
}
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module > hr,
.dnd-section > .row-fluid > .span12.dnd-module > .hs_cos_wrapper_type_module > hr {
  width: 100% !important;
  border-color: var(--color-primary) !important;
}

.hs-meetings-cookie-placeholder {
  width: var(--width-regular);
  margin: auto;
  display: block;
}
.hs-meetings-cookie-placeholder .hs-meetings-cookie-btn {
  margin-top: var(--space-m);
}

.site-header {
  background-color: var(--color-white);
  position: fixed;
  z-index: 300;
  height: var(--menu-height);
  left: 0;
  top: 0;
  width: 100%;
  padding-top: var(--space-m);
  padding-bottom: var(--space-l);
}
@media (min-width: 79.501rem) {
  .site-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 79.5rem) {
  .site-header {
    height: var(--menu-height--mobile);
    overflow: hidden;
    width: 100vw;
  }
  .main-menu-open .site-header {
    background: var(--color-white);
    color: var(--color-blue);
    height: 100%;
    overflow: auto;
  }
}
.site-header a:not(.btn),
.site-header .mimic-link {
  text-decoration: none;
  font-weight: inherit;
  color: var(--color-text);
}
@media (min-width: 79.501rem) {
  .site-header__top-bar {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gutter);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .site-header__top-bar .btn {
    padding: 0;
  }
}
@media (max-width: 79.5rem) {
  .site-header__top-bar {
    display: none;
  }
}
.site-header__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gutter);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: var(--space-l);
}
.site-header__bottom .btn {
  padding: 0;
}
@media (min-width: 79.501rem) {
  .site-header__bottom {
    display: none;
  }
}
.site-header__logo {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.site-header__logo svg {
  vertical-align: top;
}
@media (max-width: 79.5rem) {
  .site-header__logo {
    margin-right: auto;
  }
  .site-header__logo svg {
    width: 7rem;
  }
}
.site-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 79.501rem) {
  .site-header__container {
    gap: var(--space-xl);
  }
}
@media (max-width: 79.5rem) {
  .site-header__container {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 79.501rem) {
  .site-header__navigation {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 79.5rem) {
  .site-header__navigation {
    display: none;
    padding: var(--space-xl) 0;
    position: relative;
    width: 100%;
  }
  .main-menu-open .site-header__navigation {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.site-header__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gutter);
}
@media (max-width: 79.5rem) {
  .site-header__ctas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: var(--space-3xl);
  }
  .site-header__ctas .btn {
    width: 100%;
  }
}

.nav-toggle {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  display: none;
  font-size: 0;
}
.nav-toggle:focus {
  outline: none;
}
.nav-toggle:hover, .nav-toggle:focus {
  background: rgba(0, 0, 0, 0);
  outline: 0;
}
@media (max-width: 79.5rem) {
  .nav-toggle {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 1.125rem;
    border-top: 0.125rem solid var(--color-text);
    -webkit-transition: none;
    transition: none;
  }
  .nav-toggle:before, .nav-toggle:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.125rem;
    border-top: 0.125rem solid var(--color-text);
    margin-top: 0.375rem;
    -webkit-transition: all 200ms;
    transition: all 200ms;
  }
  .main-menu-open .nav-toggle {
    border-top: 0;
  }
  .main-menu-open .nav-toggle:before, .main-menu-open .nav-toggle:after {
    position: absolute;
    top: 0;
    left: 0;
  }
  .main-menu-open .nav-toggle:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .main-menu-open .nav-toggle:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@media (max-width: 79.5rem) {
  .site-header__search {
    position: fixed;
    top: var(--space-m);
  }
}
.site-header__search-btn {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
}
.site-header__search-btn:focus {
  outline: none;
}
@media (max-width: 79.5rem) {
  .site-header__search-btn--desktop {
    display: none;
  }
}
@media (min-width: 79.501rem) {
  .site-header__search-btn--mobile {
    display: none;
  }
}
.site-header__search-btn svg {
  height: 1.125rem;
  vertical-align: text-top;
  width: 1.125rem;
}
@media (max-width: 79.5rem) {
  .site-header__search-btn svg {
    height: 1.5rem;
    width: 1.5rem;
    vertical-align: text-bottom;
    margin-right: var(--space-l);
  }
}
.site-header__search-btn:hover {
  background: transparent;
}
.site-header__search-btn:hover svg {
  color: var(--color-blue);
}
.site-header__search-form {
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
  padding: 0;
  position: absolute;
  top: var(--menu-height);
}
@media (max-width: 79.5rem) {
  .site-header__search-form {
    top: var(--menu-height--mobile);
  }
}
.search-closed .site-header__search-form {
  display: none;
}

@media (min-width: 79.501rem) {
  .search-open--hide {
    display: none;
  }
}

.search-open--show {
  display: block;
}

.site-footer {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  padding: var(--space-3xl) var(--side-padding);
}
.site-footer__wrapper > *:not(:first-child) {
  margin-top: var(--space-3xl);
}
@media (min-width: 48.001rem) {
  .site-footer__wrapper > *:not(:first-child) {
    margin-top: var(--space-xl);
  }
}
.site-footer__logo {
  display: block;
  height: 2.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.site-footer__navigations .footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__navigations .footer-menu ul li {
  margin-top: 0;
}
.site-footer__navigations .footer-menu ul li.hs-menu-depth-1 > a {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
}
.site-footer__navigations .footer-menu ul li a {
  color: inherit;
}
.site-footer__navigations .footer-menu .hs-menu-children-wrapper {
  margin-top: var(--space-s);
}
.site-footer__navigations .footer-menu .hs-menu-wrapper > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gutter);
}
@media (max-width: 48rem) {
  .site-footer__navigations .footer-menu .hs-menu-wrapper > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--space-xl);
  }
}
.site-footer__navigations .footer-menu .hs-menu-wrapper > ul > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-footer__navigations .footer-menu .hs-menu-wrapper > ul .hs-menu-depth-2 a {
  font-weight: 500;
}
.site-footer__text {
  font-size: var(--text-size-500);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-m);
}
.site-footer .some-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.site-footer .some-icon:not(:first-of-type) {
  margin-left: var(--space-l);
}

.main-menu,
.language-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu li,
.language-menu li {
  margin-top: 0;
}
.main-menu .hs-menu-item,
.language-menu .hs-menu-item {
  font-size: var(--text-size-500);
  line-height: 1.25;
  font-family: var(--font-family-base);
  font-weight: 600;
}
@media (max-width: 79.5rem) {
  .main-menu .hs-menu-item,
  .language-menu .hs-menu-item {
    font-size: var(--text-size-600);
    line-height: 1.5;
    font-family: var(--font-family-base);
    font-weight: 400;
  }
}
.main-menu .hs-menu-item a,
.language-menu .hs-menu-item a {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.main-menu .hs-menu-item a[hidden],
.language-menu .hs-menu-item a[hidden] {
  display: none;
}
.main-menu .hs-item-has-children,
.language-menu .hs-item-has-children {
  position: relative;
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-xl);
}
@media (max-width: 79.5rem) {
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--space-3xl);
  }
}
.main-menu > .hs-menu-item {
  position: relative;
}
@media (min-width: 79.501rem) {
  .main-menu > .hs-menu-item > .menu-link {
    padding-bottom: 0;
    padding-top: var(--space-m);
  }
  .main-menu > .hs-menu-item::after {
    content: "";
    border: 0.0625rem solid #44BC9D;
    bottom: calc(-1 * var(--space-l) / 2);
    left: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    width: 100%;
  }
  .main-menu > .hs-menu-item:hover::after {
    opacity: 1;
  }
}
.main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  padding-right: var(--space-m);
  position: relative;
}
.main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle:focus {
  outline: none;
}
@media (max-width: 79.5rem) {
  .main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle {
    font-size: var(--text-size-button);
    line-height: 1;
    font-family: var(--font-family-title);
    font-weight: 600;
    font-weight: 500;
  }
}
@media (min-width: 79.501rem) {
  .main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle {
    padding-bottom: 0;
    padding-top: var(--space-m);
  }
}
.main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle svg {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 20%;
  -webkit-transition: color 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, transform 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media (min-width: 79.501rem) {
  .main-menu > .hs-menu-item > .hs-item-has-children__sub-toggle svg {
    bottom: 17%;
  }
}
@media (max-width: 79.5rem) {
  .main-menu > .hs-menu-item > .menu-link {
    font-size: var(--text-size-button);
    line-height: 1;
    font-family: var(--font-family-title);
    font-weight: 600;
    font-weight: 500;
  }
}
.main-menu .menu__sub-wrapper {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  overflow: hidden;
  -webkit-transition: all 250ms 50ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 250ms 50ms cubic-bezier(0.4, 0, 1, 1);
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 79.501rem) {
  .main-menu .menu__sub-wrapper {
    background: var(--color-white);
    left: 50%;
    position: fixed;
    top: var(--menu-height);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
    width: 100vw;
  }
}
@media (max-width: 79.5rem) {
  .main-menu .menu__sub-wrapper {
    height: 0 !important;
    padding: 0;
  }
}
.main-menu .menu__sub-wrapper.is-sub-opened {
  height: auto !important;
  display: block !important;
  overflow: visible !important;
  visibility: visible !important;
}
@media (min-width: 79.501rem) {
  .main-menu .menu__sub-wrapper.is-sub-opened {
    border-top: 1px solid var(--color-grey);
    -webkit-box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
            box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
  }
}
.main-menu .menu__sub-wrapper.is-sub-opened.animate-open {
  opacity: 1 !important;
}
.main-menu .menu__sub-wrapper .menu__sub-container {
  padding: var(--space-xl) 0;
}
@media (min-width: 79.501rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gutter);
  }
  .main-menu .menu__sub-wrapper .menu__sub-container > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul li {
  margin-top: 0;
}
@media (min-width: 79.501rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container > ul {
    display: grid;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56%;
            flex: 0 0 56%;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
    row-gap: var(--space-xl);
    grid-auto-flow: row;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(2, auto);
  }
}
@media (max-width: 79.5rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container > ul > .hs-menu-item:not(:first-child) {
    margin-top: var(--space-3xl);
  }
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item {
  position: relative;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub {
  padding-left: calc(2.5rem + var(--space-l));
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub .hs-item-has-children__sub-sub-toggle {
  display: none;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub > a {
  font-size: var(--text-size-button);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  line-height: 2.22;
}
@media (max-width: 48rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub > a {
    font-size: var(--text-size-500);
    line-height: 1;
    font-family: var(--font-family-title);
    font-weight: 600;
    line-height: 2.5;
  }
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub a {
  -webkit-transform: all 0.2s linear;
          transform: all 0.2s linear;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub a:hover, .main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub a:focus {
  color: var(--color-text-link);
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: var(--space-s);
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub ul li {
  margin-top: 0;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item--sub ul li {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 2.5;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item__icon {
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 2.5rem;
}
.main-menu .menu__sub-wrapper .menu__sub-container > ul .hs-menu-item__icon img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 79.5rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container .menu__lift {
    margin-top: var(--space-3xl);
  }
}
@media (min-width: 79.501rem) {
  .main-menu .menu__sub-wrapper .menu__sub-container .menu__lift {
    border-left: 1px solid var(--color-grey);
    padding-left: var(--space-5xl);
    padding-right: calc(var(--space-5xl) - var(--space-xl));
  }
}
.main-menu .menu__sub-wrapper .menu__sub-container .menu__lift .menu__lift-link {
  color: var(--color-button-link);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-menu .menu__sub-wrapper .menu__sub-container .menu__lift-item {
  position: relative;
  margin-top: var(--space-l);
}
.main-menu .menu__sub-wrapper .menu__sub-container .menu__lift-item h3 {
  font-size: var(--text-size-500);
  line-height: 1.25;
  font-family: var(--font-family-base);
  font-weight: 600;
}
.main-menu .menu__sub-wrapper .menu__sub-container .menu__lift-item p {
  font-size: var(--text-size-400);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 400;
}
.main-menu .menu__sub-wrapper .menu__sub-container .menu__lift-item a {
  position: unset;
}

.language-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.language-menu li {
  margin-top: 0;
}
.language-menu .menu__sub-wrapper {
  background: var(--color-white);
  display: block;
  left: 50%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  opacity: 0;
  overflow: hidden;
  padding: var(--space-l) var(--space-s) var(--space-l);
  position: absolute;
  top: 100%;
  -webkit-transition: all 250ms 50ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 250ms 50ms cubic-bezier(0.4, 0, 1, 1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  width: 100%;
}
.language-menu .menu__sub-wrapper .hs-menu-item {
  font-size: var(--text-size-500);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  font-weight: 500;
  text-align: center;
}
.language-menu .menu__sub-wrapper.is-sub-opened {
  -webkit-box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.02);
  height: auto !important;
  display: block !important;
  overflow: visible !important;
  visibility: visible !important;
}
.language-menu .menu__sub-wrapper.is-sub-opened.animate-open {
  opacity: 1 !important;
}
.language-menu .menu__sub-container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.language-menu .menu__sub-container .language-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.language-menu .menu__sub-container .language-menu__list li {
  margin-top: 0;
}
.language-menu .menu-link:hover, .language-menu .menu-link:focus-within {
  color: var(--color-primary);
}
.language-menu .hs-item-has-children {
  position: relative;
}
@media (max-width: 79.5rem) {
  .language-menu .hs-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.language-menu .hs-item-has-children .globe {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 79.501rem) {
  .language-menu .hs-item-has-children .globe {
    margin-top: -0.08em;
  }
}
.language-menu .hs-item-has-children__sub-toggle {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  font-size: var(--text-size-500);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  font-weight: 500;
  padding: 0 calc(var(--space-s) + 0.625rem) 0 calc(var(--space-s) + 1rem);
}
.language-menu .hs-item-has-children__sub-toggle:focus {
  outline: none;
}
.language-menu .hs-item-has-children__sub-toggle svg {
  right: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.language-menu .hs-menu-children-wrapper .menu-link.language-select__link {
  padding: 0;
  position: relative;
}
.language-menu .hs-menu-children-wrapper .menu-link.language-select__link svg {
  left: 0;
}

.site-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
  position: relative;
}
.site-hero--default {
  min-height: 21.02781rem;
}
.site-hero--frontpage {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.site-hero--frontpage .site-hero__background-color {
  background: var(--color-background-grey);
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.site-hero--blog {
  display: block;
  padding-bottom: var(--space-xl);
}
.site-hero__back {
  font-size: var(--text-size-button);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-xl);
  padding-left: calc(0.75rem + var(--space-s));
  position: relative;
}
.site-hero__back svg {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-hero__content {
  text-align: center;
}
.site-hero--frontpage .site-hero__content {
  padding-bottom: var(--space-default);
}
.site-hero__content p {
  font-size: var(--text-size-600);
  line-height: 1.5;
  font-family: var(--font-family-base);
  font-weight: 400;
}
.site-hero__content-ctas {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space-l);
  margin-top: var(--space-xl);
}
@media (max-width: 48rem) {
  .site-hero__content-ctas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.site-hero__image, .site-hero__video {
  margin: 0;
  width: 100%;
}
@media (max-width: 48rem) {
  .site-hero__image--desktop, .site-hero__video--desktop {
    display: none;
  }
}
@media (min-width: 48.001rem) {
  .site-hero__image--mobile, .site-hero__video--mobile {
    display: none;
  }
}
.site-hero--frontpage .site-hero__image, .site-hero--frontpage .site-hero__video {
  aspect-ratio: 75/24.4375;
  max-width: 75rem;
}
.site-hero--blog .site-hero__image, .site-hero--blog .site-hero__video {
  aspect-ratio: 50/26.3;
}
.site-hero__image img, .site-hero__video img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  width: 100%;
}
.site-hero--frontpage .site-hero__video {
  -o-object-fit: contain;
     object-fit: contain;
}
.site-hero__background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.site-hero__background-image {
  height: 100%;
  left: 50%;
  margin: 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
@media (min-width: 48.001rem) {
  .site-hero__background-image {
    aspect-ratio: 90/21;
  }
}
.site-hero__background img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.site-hero__wrapper--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-xl);
}
@media (min-width: 48.001rem) {
  .site-hero__wrapper--flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-hero__wrapper--flex .site-hero__content {
    text-align: left;
  }
}
@media (max-width: 48rem) {
  .site-hero__wrapper--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.site-hero__wrapper--flex > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-hero__media-on-side-image {
  margin: 0;
  width: 100%;
}
.site-hero__media-on-side-image img {
  aspect-ratio: 1.91/1;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  width: 100%;
}

.big-post-item {
  position: relative;
}
.big-post-item:hover .big-post-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 48.001rem) {
  .big-post-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: var(--space-xl);
  }
  .big-post-item > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.big-post-item__image {
  margin: 0;
  overflow: hidden;
}
.big-post-item__image img {
  aspect-ratio: 1.91/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: top;
  width: 100%;
}
.big-post-item__excerpt {
  margin-top: var(--space-m);
}
@media (max-width: 48rem) {
  .big-post-item__content {
    margin-top: var(--space-m);
  }
}

.posts-list {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: var(--space-xl);
     -moz-column-gap: var(--space-xl);
          column-gap: var(--space-xl);
  row-gap: var(--space-3xl);
}
@media (min-width: 48.001rem) {
  .posts-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 65.001rem) {
  .posts-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.post-item {
  position: relative;
}
.post-item:hover .post-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.post-item__image {
  margin: 0;
  overflow: hidden;
}
.post-item__image img {
  aspect-ratio: 1.91/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: top;
  width: 100%;
}
.feature-card .post-item__image img {
  aspect-ratio: 1;
}
.post-item h3 {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
}
.post-item__excerpt {
  margin-top: var(--space-s);
}
.post-item__group {
  color: var(--color-text-link);
  margin-top: var(--space-s);
}
.post-item__content {
  margin-top: var(--space-l);
}
.post-item .btn {
  margin-top: var(--space-m);
}
.post-item .btn::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.search-page {
  margin-top: calc(var(--space-l) + var(--menu-height--mobile));
}
@media (min-width: 79.501rem) {
  .search-page {
    margin-top: calc(var(--space-l) + var(--menu-height));
  }
}
.search-page__results-title {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-text);
}
.search-page .hs-form--search {
  padding: 0;
}

.hs-search-results {
  margin-top: var(--space-xl);
}
.hs-search-results li {
  position: relative;
}
.hs-search-results li:not(:first-child) {
  margin-top: var(--space-l);
}
.hs-search-results__title {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
}
.hs-search-results__title::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hs-search-results .hs-search-results__featured-image-wrapper {
  display: none;
}

.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar ul li {
  margin-top: 0;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children {
  position: relative;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children > a {
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children > a::after {
  content: "";
  background-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/custobar-plus.svg);
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children:not(:first-child) {
  margin-top: var(--space-l);
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children .hs-menu-item {
  padding: var(--space-s) 0;
  margin-top: var(--space-s);
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children .hs-menu-children-wrapper {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children[aria-expanded=true] .hs-menu-children-wrapper {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
.sidebar ul .hs-menu-depth-1.hs-item-has-children[aria-expanded=true] > a::after {
  background-image: url(https://144199590.fs1.hubspotusercontent-eu1.net/hubfs/144199590/custobar-2024-theme-assets/custobar-minus.svg);
}
.sidebar ul .hs-menu-depth-2 {
  color: var(--color-text);
}
.sidebar ul .hs-menu-depth-2 a {
  font-size: var(--text-size-500);
  line-height: 1.75;
  font-family: var(--font-family-base);
  font-weight: 400;
  color: inherit;
}
.sidebar ul .hs-menu-depth-2.active-branch a {
  font-size: var(--text-size-500);
  line-height: 1.25;
  font-family: var(--font-family-base);
  font-weight: 600;
  color: var(--color-blue);
}

.social-share {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.social-share li {
  margin-top: 0;
}
.social-share__item {
  margin: 0 1.3rem 0 0;
}
.social-share__item:last-child {
  margin-right: 0;
}
.social-share__item--label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 0 1rem;
  font-size: var(--heading-size-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 600;
}
.social-share a {
  color: var(--color-primary);
}
.social-share a:hover, .social-share a:focus {
  text-decoration: none;
}

.archive-load-more {
  position: relative;
  width: 100%;
}
.archive-load-more.loading .archive-load-more__spinner {
  opacity: 1;
}
.archive-load-more.loading .archive-load-more__text {
  opacity: 0;
}

.archive-load-more__text,
.archive-load-more__spinner {
  -webkit-transition: opacity 150ms ease-in;
  transition: opacity 150ms ease-in;
}

.archive-load-more__spinner {
  display: block;
  width: 5rem;
  height: 0.8125rem;
  opacity: 0;
  top: 33%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.archive-load-more__spinner span {
  position: absolute;
  top: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: var(--color-blue);
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.archive-load-more__spinner span:nth-child(1) {
  left: 0.5rem;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(2) {
  left: 0.5rem;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(3) {
  left: 2rem;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(4) {
  left: 3.5rem;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
/*--------------------------------------------------------------
# Utilities - Helpers and overrides.
--------------------------------------------------------------*/
:focus {
  outline: thin dotted;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: var(--color-text-link);
  clip: auto !important;
  color: white;
  display: block;
  font-size: 0.8em;
  font-weight: bold;
  height: auto;
  padding: 0.75rem;
  left: 0.5rem;
  top: 0.5rem;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.hs-inline-edit script[type="mce-no/type"] {
  display: block;
  background: red;
  color: #fff;
  font-size: 1rem;
  font-family: "Lucida Console";
  padding: 1rem;
}
.hs-inline-edit script[type="mce-no/type"]:before {
  content: "Hubspot render koodi, editoi muokataksesi lomaketta";
  display: block;
  margin: 0 0 1rem;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.hs-embed-wrapper[data-service=vimeo],
.hs-embed-wrapper[data-service="player.vimeo"] .hs-embed-wrapper[data-service=youtube],
.hs-embed-wrapper[data-service="player.youtube"] {
  max-width: none !important;
  width: 100% !important;
  min-width: 0 !important;
}