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

:root {
  /* Colors */
  --color-primary-50: #012251;
  --color-primary-40: #6F87A9;
  --color-primary-30: #C5C3C1;
  --color-primary-20: #D6E7FF;
  --color-primary-10: #EBF3FF;
  --color-primary-00: #FFFFFF;

  --color-signal-50: #006AFD;
  --color-signal-40: #F87060;
  --color-signal-30: #5EAF62;
  --color-signal-20: #E8B9E2;

  --color-neutral-05: #FBFBFB;
  --color-neutral-10: #F8F8F8;
  --color-neutral-20: #E0E0E0;
  --color-neutral-30: #888888;
  --color-neutral-40: #555555;
  --color-neutral-50: #262626;


  /* Shadows */
  --shadow: 0px 48px 64px rgba(77, 67, 54, 0.16);
  --shadow-sm:0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --shadow-none: 0 0 #0000;


  /* --background-color: var(--color-primary-00); use later ? */

  /* Text colors */
  --text-color: var(--color-primary-50);

  /* Link colors */
  --link-color: var(--color-signal-50);
  --link-hover-color: var(--color-signal-50);
  --link-focus-color: var(--color-signal-50);
  --link-active-color: var(--color-signal-50);

  /* Radius */
  --radius-6: 0.6rem;
  --radius-8: 0.8rem;
  --radius-12: 1.2rem;
  --radius-16: 1.6rem;
  --radius-24: 2.4rem;


  /* Spacing */

  --spacing-multiplier: 1;

  --spacing-4: calc(0.4rem * var(--spacing-multiplier));
  --spacing-8: calc(0.8rem * var(--spacing-multiplier));
  --spacing-12: calc(1.2rem * var(--spacing-multiplier));
  --spacing-16: calc(1.6rem * var(--spacing-multiplier));
  --spacing-24: calc(2.4rem * var(--spacing-multiplier));
  --spacing-32: calc(3.2rem * var(--spacing-multiplier));
  --spacing-48: calc(4.8rem * var(--spacing-multiplier));
  --spacing-64: calc(6.4rem * var(--spacing-multiplier));
  --spacing-96: calc(9.6rem * var(--spacing-multiplier));
  --spacing-128: calc(12.8rem * var(--spacing-multiplier));
  --spacing-256: calc(25.6rem * var(--spacing-multiplier));

  /* Space between */
  --space: 1.6rem;

  /* Grid */
  --cols: 1;
  --gap: 1.6rem;

}

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

/* @import url('http://example.com/example_style.css'); */

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

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

[data-color-scheme] {
  color: var(--text-color);
}

[data-color-scheme="light"], 
.color-mode-light /* <- legacy */ {
  --text-color: var(--color-primary-50);
  --link-color: var(--color-signal-50);
  --link-hover-color: var(--color-signal-50);
  --link-focus-color: var(--color-signal-50);
  --link-active-color: var(--color-signal-50);
}
[data-color-scheme="colored"],
.color-mode-colored /* <- legacy */ {
  --text-color: var(--color-primary-00);
  --link-color: var(--text-color);
  --link-hover-color: var(--text-color);
  --link-focus-color: var(--text-color);
  --link-active-color: var(--text-color);
}
[data-color-scheme="dark"], 
.color-mode-dark /* <- legacy */ {
  --text-color: var(--color-primary-00);
  --link-color: var(--text-color);
  --link-hover-color: var(--text-color);
  --link-focus-color: var(--text-color);
  --link-active-color: var(--text-color);
}
*, *: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;
  overflow-x: clip; /* Prevent horizontal scrolling */
}

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
body {
  --section-padding-vertical: var(--spacing-64);
  --section-padding-horizontal: var(--spacing-32);
}

/* HS sections */

.content-wrapper {
  padding: 0 var(--section-padding-horizontal);
}
.content-container {
  max-width: var(--max-content-width);
  margin: auto;
}
.dnd-section {
  padding: var(--section-padding-vertical) var(--section-padding-horizontal);
}
.dnd-section > .row-fluid {
  max-width: var(--max-content-width);
}

/* HS section oberrides */
.dnd-section>.row-fluid:has(.section-wrapper) {
  max-width: none;
}
.dnd-section:has(.section-wrapper) {
  padding: unset;
}

.section-wrapper,
.dnd-section {
  padding: var(--section-padding-vertical) var(--section-padding-horizontal);
}

/* Reduce spacing between text-and-media modules within same section */
.dnd-row:not(:first-child) .section-wrapper {
  padding-top: calc(var(--section-padding-vertical) * 0.75 * 0.5);
}
.dnd-row:not(:last-child) .section-wrapper {
  padding-bottom: calc(var(--section-padding-vertical) * 0.75 * 0.5);
}

/* Remove padding on empty sections (for HubL Conditional hidden modules) */
.dnd-section:has(.hubl-conditional-hidden-module):not(:has(.section-wrapper)) {
  padding: 0;
}
.hubl-conditional-hidden-module {
  display: none;
}

/* legacy wrappers wrapping new wrappers in tamples (blog etc)*/
.content-wrapper .section-wrapper {
  --section-padding-horizontal: 0;
}

.dnd-section > .row-fluid {
  max-width: var(--max-content-width);
}
.section-container {
  max-width: var(--max-content-width);
  margin: auto;
}
.section-container {
  --header-margin: var(--spacing-48);
  --header-text-width: 100%;
}
.section-header.-max-width > * {
  width: var(--header-text-width);
}
.section-header *:last-child {
  margin-bottom: var(--header-margin);
}
.section-footer {
  margin-top: var(--header-margin);
}

.cta-container {
  --margin-top: var(--spacing-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-16);
  margin-top: var(--margin-top);
}

/*Mobile < 767*/
@media screen and (max-width: 767px) {

} 
/*Tablet 767 - 1200*/
@media screen and (min-width: 767px){
  .cta-container {
    --margin-top: var(--spacing-32);
  }
  .section-container {
    --header-text-width: 80%;
  }
}
/*laptop 1200 - 1600*/
@media screen and (min-width: 1200px) {
  body {
    --section-padding-horizontal: var(--spacing-96);
    --section-padding-vertical: var(--spacing-96);
  }
  .cta-container {
    --margin-top: var(--spacing-48);
  }
  .section-container {
    --header-margin: var(--spacing-64);
  }
}
/*Desktop > 1600*/
@media screen and (min-width: 1600px) {
  body {
    --section-padding-vertical: var(--spacing-128);
  }
  .cta-container {
    --margin-top: var(--spacing-64);
  }
  .section-container {
    --header-margin: var(--spacing-96);
    --header-text-width: 70%;
  }
}


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

html {
  font-size: 62.1%;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
img, video {
  display: block;
  max-width: 100%;
}

body {
  /* Font weight */

  --normal: 400;
  --semibold: 600;
  --bold: 700;

  --text-normal: 400;
  --text-semibold: 600;
  --text-bold: 700;

  /* font sizes */

  --text-xsmall: 1.4rem;
  --text-small: 1.6rem;
  --text-medium: 1.8rem;
  --text-large: 2.4rem;
  /*
  --text-base: 1.6rem;
  */
  --title-line-height: 1.12;

  --title-xxsmall: 1.8rem;
  --title-xsmall: 2rem;
  --title-small: 2.4rem;
  --title-medium: 3.2rem;
  --title-large: 4.8rem;
  --title-xlarge: 4.8rem;
  --title-xxlarge: 4.8rem;

  --h6: var(--title-xxsmall);
  --h5: var(--title-xsmall);
  --h4: var(--title-small);
  --h3: var(--title-medium);
  --h2: var(--title-large);
  --h1: var(--title-xlarge);


  /*
  --text-small-size: 1.6rem;
  --text-medium-size: 1.8rem;
  --text-large-size: 2.2rem;
  */
}

@media (min-width: 767px) {
  body{
    --title-xlarge: 6.4rem;
    --title-xxlarge: 8.0rem;
  }
}
/*Desktop*/
@media (min-width: 1600px) {
  body {
    --title-xxsmall: 1.8rem;
    --title-xsmall: 2.4rem;
    --title-small: 3.2rem;
    --title-medium: 4.8rem;
    --title-large: 6.4rem;
    --title-xlarge: 8.0rem;
    --title-xxlarge: 9.6rem;
  }
}

body {
  font-size: var(--text-medium);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  font-weight: normal;
  /*text-wrap: balance;*/ /* Not good enough yet. Wired word breaks.. "Improvement\ns to Compello" */
}
h1, .h1, .title-xlarge,
h2, .h2, .title-large,
h3, .h3, .title-medium,
h4, .h4, .title-small,
h5, .h5, .title-xsmall,
h6, .h6 {
  hyphens: manual;
  margin-top: 0;
  line-height: var(--title-line-height);
  font-weight: 700;
  word-break: break-word;
}


.title-xxlarge {
  font-size: var(--title-xxlarge);
}
h1, .h1, .title-xlarge {
  font-size: var(--title-xlarge);
}
h2, .h2, .title-large {
  font-size: var(--title-large);
}
h3, .h3, .title-medium {
  font-size: var(--title-medium);
}
h4, .h4, .title-small {
  font-size: var(--title-small);
}
h5, .h5, .title-xsmall {
  font-size: var(--title-xsmall);
}
h6, .h6, .title-xxsmall {
  font-size: var(--title-xxsmall);
}


.text-large {
  font-size: var(--text-large);
}
.text-medium{
  font-size: var(--text-medium);
}
.text-small {
  font-size: var(--text-small);
}
.text-semibold,
.-semibold {
  font-weight: var(--semibold);
}
.text-normal {
  font-weight: var(--normal);
}
.text-bold,
.-bold {
  font-weight: var(--bold);
}

.hs_cos_wrapper_type_rich_text * + h2, 
.hs_cos_wrapper_type_rich_text * + h3, 
.hs_cos_wrapper_type_rich_text * + h4, 
.hs_cos_wrapper_type_rich_text * + h5, 
.hs_cos_wrapper_type_rich_text * + h6,
.hs_cos_wrapper_type_rich_text * + .h2, 
.hs_cos_wrapper_type_rich_text * + .h3, 
.hs_cos_wrapper_type_rich_text * + .h4, 
.hs_cos_wrapper_type_rich_text * + .h5, 
.hs_cos_wrapper_type_rich_text * + .h6 {
  margin: 1.75em 0 0.5em 0;
}

.article-format h1, 
.article-format .h1 {
  margin: 1em 0 0.5em 0;
}
.article-format h2, 
.article-format h3, 
.article-format h4, 
.article-format h5, 
.article-format h6, 
.article-format .h2, 
.article-format .h3, 
.article-format .h4, 
.article-format .h5, 
.article-format .h6 {
  margin: 1.75em 0 0.5em 0;
}

.article-format h1 {
  font-size: var(--title-large);
}
.article-format h2 {
  font-size: var(--title-medium);
} 
.article-format h3 {
  font-size: var(--title-small);
} 
.article-format h4 {
  font-size: var(--title-xsmall);
} 
.article-format h5 {
  font-size: var(--title-xxsmall);
} 
.article-format h6 {
  font-size: var(--title-xxsmall);
}

/* Compello module elements */

.kicker {
  font-size: var(--text-large);
  margin-bottom: var(--spacing-16);
}

ul li,
ol li {
  margin-block-end: 0; /* process list hack */
  padding-block-end: 0.9rem;
}

.process-list ul li::marker {
  color: var(--color-signal-50);
}

ul ul,
ol ol, 
ul ol, 
ol ul {
  margin-block-end: 0; /* process list hack */
  padding-block-end: 1.8rem;
}

li {
  --list-marker-size: 2.8rem;
  --list-marker-h-offset: -4rem;
  --list-marker-v-offset: 0.4rem;
}

ul.checklist li {
  position: relative;
  list-style: none;
  padding-block-end: 2.4rem;
}

ul.checklist li:before {
  content: "";
  background-image: url(data:image/svg+xml,<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><title>CheckMark-svg</title><style>.s0 { fill: %23006afd } .s1 { fill: none;stroke: %23ffffff;stroke-linecap: round;stroke-linejoin: round;stroke-width: 1.2 } </style><path id="Layer" class="s0" d="m0 12c0-6.6 5.4-12 12-12 6.6 0 12 5.4 12 12 0 6.6-5.4 12-12 12-6.6 0-12-5.4-12-12z"/><path id="Layer" fill-rule="evenodd" class="s1" d="m16.2 9c0 0-3.3 4.3-5.4 7m0 0l-2.6-2.2"/></svg>);
  background-repeat: no-repeat;
  height: var(--list-marker-size);
  left: var(--list-marker-h-offset);
  position: absolute;
  top: var(--list-marker-v-offset);
  width: var(--list-marker-size);
}

ol.process-list.-restart, ol.process-list.-restart ol {
    counter-reset: section;
}

ol.process-list > li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
  padding-block-end: 3.2rem;
}
ol.process-list>li:last-child {
    padding-block-end: 0;
}

ol.process-list>li:before {
  align-items: center;
  background: var(--color-primary-20);
  border-radius: 100px;
  content: counter(list);
  display: inline-flex;
  font-size: var(--text-small);
  height: var(--list-marker-size);
  justify-content: center;
  left: var(--list-marker-h-offset);
  outline: solid 0.4rem var(--color-primary-00);
  position: absolute;
  text-align: right;
  top: var(--list-marker-v-offset);
  width: var(--list-marker-size);
}
ol.process-list.-restart > li:before, ol.process-list.-restart ol > li:before {
    content: counter(section);
    counter-increment: section;
}

ol.process-list > li:not(:last-child):after {
  --line-width: 0.2rem;
  background: var(--color-signal-50);
  top: calc(var(--list-marker-size) * 0.5);
  content: "";
  display: block;
  height: 100%;
  left: calc(var(--list-marker-h-offset) - var(--line-width)*.5 + var(--list-marker-size)*.5);
  position: absolute;
  width: var(--line-width);
  z-index: -1;
  opacity: 0.1;
}

ol.process-list ol, ol.process-list ul {
    padding-block-end: 0;
    margin-block-start: 1.6rem;
}


/* Moved to theme overrides */
/* Form */ 

form,
.input-fields {
  --field-font-size: var(--text-medium);
  --field-border: 1px solid #99C3FE;
  --field-padding: var(--spacing-16) var(--spacing-32);
  --field-border-radius: var(--radius-8);
}

form,
.input-fields {
  --header-margin: var(--spacing-64);
  display: grid;
  /*gap: 2.4rem;*/
}
fieldset + fieldset h1, fieldset + fieldset h2, fieldset + fieldset h3, fieldset + fieldset h4, fieldset + fieldset h5 {
  margin: var(--header-margin) 0 2.4rem 0;
}

/*Tablet 767 - 1200*/
@media screen and (min-width: 767px){
}

/*laptop 1200 - 1600*/
@media screen and (min-width: 1200px) {
  form,
  .input-fields {
    --header-margin: var(--spacing-96);
  }

}
/*Desktop > 1600*/
@media screen and (min-width: 1600px) {
  form,
  .input-fields {
    --header-margin: var(--spacing-128);
  }
}


label {
  font-size: var(--text-small);
}

fieldset .hs-form-field > label {
  margin-bottom: 0.8rem;
  margin-top: 2.4rem;
}

fieldset:first-child:has(label) {
  margin-top: -0.8rem;
}

legend {
  font-size: var(--text-small);
  margin-bottom: 0.8rem;
}

.input-fields legend {
  margin-top: 2.4rem;
  float: left;
}


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

.form-columns-2 {
  --auto-grid-min-size: 25rem;
  display: grid;
  gap: 0 2.4rem;
  grid-template-columns: repeat(auto-fill,minmax(var(--auto-grid-min-size),1fr));
}
.hs-form-field {
  width: unset !important;
}

input:placeholder {
  color: #99C3FE;
}

.hs-form-field {
  --gap: 0.8rem;
  display: flex;
  flex-direction: column;
  /*gap: var(--gap);*/
}

.inputs-list:has([name*="CONSENT"]):not(.hs-error-msgs) {
  list-style: none;
  margin: 2.4rem 0 0.8rem 0;
  padding: 0;
}

.inputs-list label {
  display: flex;
}

input[type="checkbox"], 
input[type="radio"] {
  width: 2.4rem !important;
  height: 2.4rem !important;
}

.hs-error-msgs {
  color: red;
}

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

form.hs-form input[type=text],
form.hs-form input[type=text],
form.hs-form input[type=search],
form.hs-form input[type=email],
form.hs-form input[type=password],
form.hs-form input[type=tel],
form.hs-form input[type=number],
form.hs-form input[type=file],
form.hs-form textarea {
  width: 100% !important;
}

.legal-devider {
  margin-top: 4.8rem;
  display: block;
}

.legal-consent-container {
  font-size: var(--text-small);
}

li.hs-form-booleancheckbox {
  padding-block-end: 0;
}

.hs-recaptcha {
  margin: 4.8rem 0;
}


/* Custom form */

.input-fields fieldset {
  display: grid;
  row-gap: 8px;
  border: none;
  padding: 0;
}

/* Checkbox */



/* Radio */

fieldset[data-type="radio"] .options {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}


/* Text */

fieldset[data-type="text"] input,
form.hs-form input[type=text],
form.hs-form input[type=text],
form.hs-form input[type=search],
form.hs-form input[type=email],
form.hs-form input[type=password],
form.hs-form input[type=tel],
form.hs-form input[type=number],
form.hs-form input[type=file],
form.hs-form textarea {
  font-size: var(--field-font-size);
  padding: var(--field-padding);
  border: var(--field-border);
  border-radius: var(--field-border-radius);
}

/* choice */

fieldset[data-type="choice"] select,
form.hs-form select {
  font-size: var(--field-font-size);
  padding: var(--field-padding);
  border: var(--field-border);
  border-radius: var(--field-border-radius);

  display: block;
  font-family: inherit;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 1em;
  color: var(--color-primary-50);
}

/* Toggle */ 

fieldset[data-type="toggle"] input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

fieldset[data-type=toggle] label {
  align-items: center;
  cursor: pointer;
  display: flex;
  column-gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

fieldset[data-type=toggle] label:before {
  content: "";
  cursor: pointer;
  width: 64px;
  height: 32px;
  background: grey;
  border-radius: 100px;
  position: relative;
}

fieldset[data-type=toggle] label:after {
  background: #fff;
  border-radius: 90px;
  content: "";
  height: 24px;
  left: 4px;
  position: absolute;
  top: 4px;
  transition: .3s;
  width: 24px;
}

fieldset[data-type="toggle"] input:checked + label:before {
  background: var(--color-signal-50);
}

fieldset[data-type="toggle"] input:checked + label:after {
  left: calc(64px - 4px);
  transform: translateX(-100%);
}

fieldset[data-type="toggle"] label:active:after {
  width: 32px;
}

/* Range */

fieldset[data-type=range] {
  position: relative;
  margin-bottom: 18px;
}
.range-label {
  display: flex;
  gap: 8px 24px;
  justify-content: space-between;
}

fieldset[data-type="range"] input {
  --range-thumb-size: 24px;
  --range-position: calc((var(--range-value) - var(--range-min)) / (var(--range-max) - var(--range-min)));
  --range-filled-track: calc( (var(--range-position) * 100%) - ( var(--range-thumb-size) * var(--range-position) ) );
  --range-remaining-track: calc(100% - var(--range-filled-track) - var(--range-thumb-size)); 

  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #EBF3FF;
  background: transparent;
  outline: none;
  border-radius: 100px;
  position: relative;
  margin-top: 18px;
  z-index: 2;
}

fieldset[data-type="range"] input:before {
  content: "";
  height: 6px;
  width: var(--range-filled-track);
  background: #006AFD;
  position: absolute;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  top: 0;
  left: 0;
}

fieldset[data-type="range"] input:after {
  content: "";
  height: 4px;
  width: var(--range-remaining-track);
  background: #EBF3FF;
  position: absolute;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  top: 1px;
  right: 0;
}

fieldset[data-type="range"] input:hover {
  opacity: 1;
}

fieldset[data-type="range"] input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  background-color: #006AFD;
  cursor: pointer;
  border-radius: 100px;
}

fieldset[data-type="range"] input::-moz-range-thumb {
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  background: #006AFD;
  cursor: pointer;
  border-radius: 100px;
}


/* HS fields layout */



/* HubSpot boilerplate Fields */
/*
.hs-form-field {
margin-bottom: 1.4rem;
}

/* Labels */
/*
.hs-fieldtype-checkbox label:has(+ legend), 
.hs-fieldtype-radio label:has(+ legend){
margin: var(--spacing-48)  0 var(--spacing-24) 0;
display: block;
}

/*
form label {
display: block;
font-size: var(--text-medium);
margin-bottom: 0.35rem;
}

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

/* Help text */
/*
form legend {
font-size: var(--text-medium); 
}

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

form textarea {
resize: vertical;
}

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

/* Inputs - checkbox/radio */
/*
form .inputs-list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: var(--spacing-16);
}
/*
form .inputs-list > li {
display: block;
margin: 0.7rem 0;
}

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

.hs-form-checkbox-display {
display: flex;
gap: var(--spacing-16);
}

form input[type=checkbox],
form input[type=radio] {
cursor: pointer;
width: 2.4rem !important;
height: 2.4rem !important;
}

/* 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: var(--text-medium);
margin: 0 0 1.4rem;
}

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

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

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

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

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

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

/* Captcha */
/*
.grecaptcha-badge {
margin: 0 auto;
}
*/

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

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

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

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

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

/* @import url('http://example.com/example_style.css'); */

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

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

.pill {
  --border-width: 0.1rem;
  padding: var(--spacing-8) var(--spacing-16) !important;
  border: solid var(--border-width) var(--color-primary-50);
  border-radius: 100px;
  line-height: 1;
  cursor: pointer;
}

.pill:hover {
  background: var(--color-primary-20);
  border: solid var(--border-width) var(--color-primary-20);
}

.pill:active, 
.pill[data-active="true"] {
  background-color: var(--color-primary-10);
  border: solid calc(var(--border-width) * 2) var(--color-signal-50);
  margin: calc(var(--border-width) * -1);
}

ul.pills,
ul.facets {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

ul.pills {
  --border-radius: 999px;
}
ul.facets {
  --border-radius: 1.2rem;
}

ul.pills li, 
ul.facets li {
  padding: 0.8rem 2.4rem;
  border: solid 1px currentColor;
  border-radius: var(--border-radius);
}

@media (min-width: 768px) {
  ul.pills,
  ul.facets {
    gap: 2.4rem;
  }

  ul.pills li, 
  ul.facets li {
    padding: 1.2rem 3.2rem;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

tbody tr:not(:last-child) {
  border-bottom: solid 0.1rem var(--color-primary-30);
}

th {
  vertical-align: bottom;
  text-align: left;
}


td,
th {
  vertical-align: top;
  padding: var(--spacing-16);
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
/* @import url('http://example.com/example_style.css'); */

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

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

#hs-eu-cookie-confirmation-buttons-area {
    gap: 1.1rem;
}

#hs-eu-confirmation-button {
    order: 4 !important;
}

div#hs-eu-cookie-confirmation-buttons-area button {
    border-radius: 3px !important;
}

div#hs-modal-footer-container button {
    border-radius: 3px !important;
}

@media (min-width: 751px) {
  #hs-eu-cookie-confirmation-buttons-area {
    margin-right: 4.14em;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/*
.footer {
  padding-top: 128px;
  padding-bottom: 128px;
  display: grid;
  gap: 32px;
}

.footer__row {
  display: grid;
  gap: 32px;
}

.footer__links ul {
  font-size: 24px;
  font-weight: var(--bold);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links ul {
  display: grid;
  gap: 32px;
}

.footer__links ul ul {
  font-size: 16px;
  font-weight: var(--regular);
  margin-top: 16px;
  display: grid; 
  gap: 16px;
}

.footer__links a{
  color: var(--color--primary-50);
}
.footer__links a:hover {
    color: inherit;
}

.footer__copyright p {
  font-size: 16px;
  margin: 0;
}

@media (min-width: 768px) {
  .footer {
    gap: 128px;
  }
  .footer__row {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 3fr;
  }
  .footer__links ul {
    display: flex;
    gap: 48px;
    font-size: 18px;
    justify-content: space-between;
  }
  .footer__links ul li {
    flex: 1;
  }

  .footer__logo {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .footer__logo > div {
    grid-column: 4 / 4;
  }
  
}
*/


:root {
  --header-height: 7.2rem;
}

.header__wrapper {
  height: var(--header-height); 
  padding: 0 var(--section-padding-horizontal);
  display: flex;
}

.header__container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  touch-action: manipulation;
  width: 100%;
  max-width: var(--max-content-width);
}

@media screen and (min-width: 1300px) {
  :root {
    --header-height:  9.6rem;
  }
}

@media screen and (min-width: 1600px) {
  :root {
    --header-height: 16rem;
  }
}

.header__navigation {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hs-menu-item {
    padding-block-end: 0;
}

.header__links a {
  color: var(--text-color);
  padding: 12px 24px;
  display: inline-block;
  text-decoration: none;
}

.header__links a:hover {
  opacity: 1 !important;
  color: var(--text-color) !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 16px;
  text-decoration-color: var(--link-color);
}

.header__buttons {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  gap: 16px;
}

.header__logo {
  --logo-max-width: 14rem;
  max-width: var(--logo-max-width);
}

[data-color-scheme="dark"] .header__logo,
[data-color-scheme="colored"] .header__logo {
  filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

@media screen and (min-width: 1300px) {
  .header__logo {
    --logo-max-width: 21.2rem;
  }
}

.header__language-switcher .language-switcher {
  margin: 0 0 var(--spacing-16) 0;
}

@media (min-width: 1300px) {
  .header__language-switcher .language-switcher {
    margin: 0 var(--spacing-16) 0 0;
  }
}

/* Hamburger menu */

@media (min-width: 1300px) {
  .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 1299px) {

  .header__navigation {
    display: none;
  }

  .header__container[data-expanded] .header__navigation {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 100px;
    inset: 0;
    padding: 2em;
    box-shadow: var(--color-primary-50) 6px 0px 16px 0px;
    z-index: 3;
  }  

  .header__container[data-expanded="true"] .header__navigation {
    animation-name: slidein-right;
    animation-duration: 0.2s;
    transform: translateX(48px);
  }

  .header__container[data-expanded="false"] .header__navigation {
    animation-name: slideout-right;
    animation-duration: 0.2s;
    transform: translateX(100%);
  }

  .header:has(.header__container[data-expanded]):before {
    content: "";
    background-color: #000000;
    inset: 0;
    position: absolute;
    z-index: 3;
  }
  .header:has(.header__container[data-expanded="true"]):before {
    animation-name: fadein;
    animation-duration: 0.2s;
    opacity: 0.5;
  }
  .header:has(.header__container[data-expanded="false"]):before {
    animation-name: fadeout;
    animation-duration: 0.2s;
    opacity: 0;
  }

  .header__links ul {
    flex-direction: column;
  }

  .header__links a {
    padding: 12px 0;
  }


  /* Buttons */


  .header__buttons {
    align-items: inherit;
    gap: 24px;
  }

  .mobile-nav-toggle,
  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus,
  .mobile-nav-toggle:active {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    padding: 0.5em;
    z-index: 4;
    right: 1em;
    position: absolute;
  }
  .mobile-nav-toggle:focus {
    outline-color: var(--text-color);
  }

  .header__container[data-expanded] .mobile-nav-toggle {
    position: fixed;
  }

  @keyframes slidein-right {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(48px);
    }
  }

  @keyframes slideout-right {
    from {
      transform: translateX(48px);
    }
    to {
      transform: translateX(100%);
    }
  }

  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 0.5;
    }
  }

  @keyframes fadeout {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 0;
    }
  }

}

/* Menu icon */

.nav-icon {
  height: 24px;
  position: relative;
  width: 26px;
  z-index: 1;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2),.nav-icon span:nth-child(3) {
  top: 8px;
}

.nav-icon span:nth-child(4) {
  top: 16px;
}

.header__container[data-expanded="true"] .nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%; 
}

.header__container[data-expanded="true"] .nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__container[data-expanded="true"] .nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__container[data-expanded="true"] .nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
/* 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: 1024px) {
  .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%;
}
/* @import url('http://example.com/example_style.css'); */

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

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

/*Custom scrollbar*/
html {
  --scrollbar-width: 6px;
  scrollbar-color: #00000080 #eff1ed;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: var(--scrollbar-width);
}
::-webkit-scrollbar-track {
  background-color: #eff1ed;
  border-radius: var(--scrollbar-width);
}

::-webkit-scrollbar-thumb {
  background-color: #00000080;
  border-radius: var(--scrollbar-width);
}

/* Scroll behaviour */
html {
	scroll-behavior: smooth;
  scroll-padding-top: var(--spacing-48);
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

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

.visually-hidden,
.show-for-sr, 
.sr-only {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !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;
  }
}

body.no-scroll {
  margin: 0; 
  height: 100%; 
  overflow: hidden
}

.p-0, .no-padding {
  padding: 0;
}

.m-0, .no-margin {
  margin: 0;
}

.list-none, .no-list {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
}

.no-list > li { 
  padding: 0;
}

.no-link {
  text-decoration: none;
  color: inherit;
}
.no-link:hover {
  color: inherit;
}

.overflow-hidden {
  overflow: hidden;
}

/* Space between */
.space-y > * + *{
  margin-top: var(--space);
}
.space-x > * + *{
  margin-left: var(--space);
}

/* Display */
.hidden, 
[data-hidden="true"],
[data-visible="false"] {
  display: none !important;
}

.dnd-section:has(.hide-section) {
  display: none;
}

.inline-block {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.balance {
  text-wrap: balance;
}

/* Max width */
.max-w-content {
  max-width: 96rem;
}

/* Margin */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
  .mobile-nowrap {
    white-space: nowrap;
  }
  .mobile-inline-block {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
  .desktop-nowrap {
    white-space: nowrap;
  }
  .desktop-inline-block {
    display: inline-block;
  }
}

/* Background */

.bg-transparent {background-color: transparent;}
.bg-neutral-05 {background-color: var(--color-neutral-05);}
.bg-neutral-10 {background-color: var(--color-neutral-10);}
.bg-neutral-20 {background-color: var(--color-neutral-20);}
.bg-neutral-30 {background-color: var(--color-neutral-30);}
.bg-neutral-40 {background-color: var(--color-neutral-40);}
.bg-neutral-50 {background-color: var(--color-neutral-50);}

.bg-primary-00 {background-color: var(--color-primary-00);}
.bg-primary-10 {background-color: var(--color-primary-10);}
.bg-primary-20 {background-color: var(--color-primary-20);}
.bg-primary-30 {background-color: var(--color-primary-30);}
.bg-primary-40 {background-color: var(--color-primary-40);}
.bg-primary-50 {background-color: var(--color-primary-50);}

.bg-signal-20 {background-color: var(--color-signal-20);}
.bg-signal-30 {background-color: var(--color-signal-30);}
.bg-signal-40 {background-color: var(--color-signal-40);}
.bg-signal-50 {background-color: var(--color-signal-50);}


/* Shadows */

.shadow { box-shadow: var(--shadow);}
.shadow-sm { box-shadow: var(--shadow-sm);}
.shadow-md { box-shadow: var(--shadow-md);}
.shadow-lg { box-shadow: var(--shadow-lg);}
.shadow-xl { box-shadow: var(--shadow-xl);}
.shadow-2xl { box-shadow: var(--shadow-2xl);}
.shadow-inner { box-shadow: var(--shadow-inner);}
.shadow-none { box-shadow: var(--shadow-none);}

/* border radius */

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