/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1180px;
	--container-width-narrow: 880px;
	--vertical-spacing: 12rem;
	--gap: 2.4rem;
	--gap-xs: calc(var(--gap) / 4);
	--gap-sm: calc(var(--gap) / 2);
	--gap-md: calc(var(--gap) * 2);
	--gap-lg: calc(var(--gap) * 4);

	/* Colors */

	--dark-blue: #040C17;
	--mid-blue: #0D1775;
	--light-blue: #1383F4;
	--dark-green: #014C0C;
	--light-green: #078A04;
	--black: #000000;
	--dark-gray: #4F555D;
	--light-gray: #E7E9EB;
	--medium-gray: #C5C7C9; /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--white: #FFFFFF;

  --base-color: var(--dark-blue);
	--primary-color: var(--light-blue);
	--primary-color-hover: var(--mid-blue);
	--secondary-color: var(--light-green);
	--secondary-color-hover: var(--dark-green);
	--tertiary-color: #E5E4D9;
	--tertiary-color-hover: #B2B1A6;
  
  --blue-gradient: linear-gradient(45deg,var(--mid-blue) 0,var(--light-blue) 100%);
  --green-gradient: linear-gradient(45deg,var(--dark-green) 0,var(--light-green) 100%);
  
  --light-box-shadow: 0px 8px 20px rgb(255 255 255 / 16%), 0px 8px 20px rgb(0 0 0 / 6%);
  --dark-box-shadow: 0 0 8px rgb(0 0 0 / 8%);

	/* Typography */

	--base-font-size: 1.7rem;
	--base-line-height: 1.7;
	--primary-font-family: "StoneX Forma",Helvetica,Arial,sans-serif;
	--secondary-font-family: "StoneX Forma",Helvetica,Arial,sans-serif;

}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Regular.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Regular-woff.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Italic.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Italic-woff.woff') format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Regular.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Regular-woff.woff') format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Italic.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Italic-woff.woff') format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Bold.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-Bold-woff.woff') format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "StoneX Forma";
    src: url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-BoldItalic.woff2') format("woff2"),url('https://2022783.fs1.hubspotusercontent-na1.net/hubfs/2022783/StoneX%20Futures/Fonts/StoneXForma/StoneXForma-BoldItalic-woff.woff') format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap
}

@media (min-width: 768px) {
	.mobile-only {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.desktop-only {
		display: none !important;
	}
}

/* Generic */

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

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

@media (max-width: 767px) {
  .oembed_container {
    margin-bottom: 1.5rem;
  }
}
/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

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

iframe {
  border:none;
  width: 1px;
  min-width: 100%;
  min-height: 720px;
}

/* Objects */

.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper--narrow {
  max-width: var(--container-width-narrow);
}

section,
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: calc(var(--vertical-spacing) / 2) 4.5rem;
}

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

.dnd-section .row-module {
  margin: 0 calc(var(--gap) * -1);
}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  position: relative;
}

.dnd-section > .row-fluid .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  
    .dnd-section .span0 {
      flex-basis: 0.0%;
    }
  
    .dnd-section .span1 {
      flex-basis: 8.333333333333332%;
    }
  
    .dnd-section .span2 {
      flex-basis: 16.666666666666664%;
    }
  
    .dnd-section .span3 {
      flex-basis: 25.0%;
    }
  
    .dnd-section .span4 {
      flex-basis: 33.33333333333333%;
    }
  
    .dnd-section .span5 {
      flex-basis: 41.66666666666667%;
    }
  
    .dnd-section .span6 {
      flex-basis: 50.0%;
    }
  
    .dnd-section .span7 {
      flex-basis: 58.333333333333336%;
    }
  
    .dnd-section .span8 {
      flex-basis: 66.66666666666666%;
    }
  
    .dnd-section .span9 {
      flex-basis: 75.0%;
    }
  
    .dnd-section .span10 {
      flex-basis: 83.33333333333334%;
    }
  
    .dnd-section .span11 {
      flex-basis: 91.66666666666666%;
    }
  
    .dnd-section .span12 {
      flex-basis: 100.0%;
    }
  
}

@media (min-width: 992px) {
  section,
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 4.5rem;
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

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

/* Responsive visibilty classes */

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

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

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

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

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

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

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

@media (min-width: 768px) {
  .dnd-section .span12 {
    max-width: 100%;
  }
}

/* Elements */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

body {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  word-break: break-word;
  letter-spacing: 1px;
}

/* Anchors */

a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: var(--primary-color-hover);
}

a:active {
  color: var(--primary-color-hover);
}

a[data-hs-anchor="true"],
.anchor {
  position: relative;
  top: -5.2rem;
}
@media (min-width: 1180px) {
  a[data-hs-anchor="true"],
  .anchor {
    position: relative;
    top: -7.4rem;
  }
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 1.6rem;
  font-family: var(--secondary-font-family);
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 3.6rem;
}
h2,
.h2 {
  font-size: 2.8rem;
  font-weight: 300;
}
h3,
.h3 {
  font-size: 2.4rem;
}
h4,
.h4 {
  font-size: 2.2rem;
  font-weight: 500;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 5rem;
  }
  h2,
  .h2 {
    font-size: 4rem;
  }
  h3,
  .h3 {
    font-size: 3.2rem;
  }
}

mark,
mark.blue,
mark.has-light-blue-color {
  font-weight: 700;
  background: linear-gradient(45deg, var(--light-blue) 4.06%, var(--mid-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

mark.has-light-green-color {
  background: linear-gradient(45deg, var(--light-green) 4.06%, var(--dark-green) 100%);
}

/* Lists */

ul,
ol {
  margin: 0 0 2rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  margin: 0;
  list-style: none;
  padding-left: 0;
}


.body-container ul:not([class]) {
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
}
.body-container ul:not([class]) li:not([class]) {
  position: relative;
  padding-left: 16px;
  list-style-type: none;
  background-image: none;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
}
.body-container ul:not([class]) li:not([class]):not(:first-child) {
  margin-top: 16px;
}
.body-container ul:not([class]) li:not([class])::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -20px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: url('https://futures.stonex.com/hubfs/SmartStart%20-%20StoneX/Icons/check-circle-gradient.svg') center center no-repeat transparent
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 6px solid var(--primary-color);
  font-size: 2.4rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 2rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  margin: 4rem auto;
}
.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  width: auto;
  margin: 0 0 16px 0;
  padding: 1.4rem 2.4rem;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: .01em;
  color: white;
  border: none;
  border-radius: 4px;
  background: var(--blue-gradient); 
  box-shadow: var(--dark-box-shadow);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  -webkit-appearance: none;
  padding-right: 1.9rem;
  padding-left: 1.9rem;
  display: inline-block;
}

/* Primary */

.button--primary,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  background: var(--blue-gradient);
  color: white;
}

.button--primary:hover,
.button--primary:focus,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background: var(--blue-gradient); 
  color: white;
  box-shadow: var(--light-box-shadow);
}
form input[type="file"]::-webkit-file-upload-button:hover,
form input[type="file"]::-webkit-file-upload-button:focus,
form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus {
  background: var(--blue-gradient);
  color: white;
  box-shadow: var(--light-box-shadow);
}

.button--primary:active,
form input[type="submit"]:active,
form .hs-button:active {
  background: var(--blue-gradient);
  color: white;
  box-shadow: var(--light-box-shadow);
}
form input[type="file"]::-webkit-file-upload-button:active,
form input[type="file"]::file-selector-button:active {
  color: white;
  background: var(--blue-gradient);
}

/* Secondary */

.button--secondary {
  background-color: var(--secondary-color);
  color: white;
}

.button--secondary:hover,
.button--secondary:focus {
  color: white;
  background: var(--light-green);
}

.button--secondary:active {
  background-color: var(--dark-green);
  color: white;
}

.button--blue {
  background: var(--base-color);
  background: var(--blue-gradient);
  color: white;
  padding: 1.4rem 2.4rem;
  letter-spacing: .04em;
  text-transform: none;
  box-shadow: var(--dark-box-shadow);
}
.button--blue:hover,
.button--blue:focus,
.button--blue:active {
  background: var(--mid-blue);
  color: white;
}
.button--light-blue {
  background: var(--light-blue);
  background: var(--blue-gradient);
  color: white;
  padding: 1.4rem 2.4rem;
  letter-spacing: .04em;
  text-transform: none;
  box-shadow: var(--dark-box-shadow);
}
.button--light-blue:hover,
.button--light-blue:focus,
.button--light-blue:active {
  background: var(--light-blue);
  color: white;
}
.button--white {
  background: white;
  border: 1px solid white;
  color: var(--light-blue);
  padding: 1.4rem 2.4rem;
  text-transform: none;
}
.button--white:hover,
.button--white:focus,
.button--white:active {
  background: white;
  border: 1px solid white;
  color: var(--light-blue);
  box-shadow: var(--light-box-shadow);
}

.button--outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 1.4rem 2.4rem;
  text-transform: none;
}
.button--outline:hover,
.button--outline:focus,
.button--outline:active {
  border: 1px solid white;
  color: white;
  box-shadow: var(--light-box-shadow);
}

.button--outline-green {
  background: white;
  border: 1px solid var(--light-green);
  color: var(--light-green);
  padding: 1.4rem 2.4rem;
  text-transform: none;
}
.button--outline-green:hover,
.button--outline-green:focus,
.button--outline-green:active {
  background: white;
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.button--outline-blue {
  background: white;
  border: 1px solid var(--base-color);
  color: var(--base-color);
  padding: 1.4rem 2.4rem;
  text-transform: none;
}
.button--outline-blue:hover,
.button--outline-blue:focus,
.button--outline-blue:active {
  background: white;
  border-color: var(--base-color);
  color: var(--base-color);  
}

/* Text */

.button--text {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  border-radius: 0;
  box-shadow: none;
}

.button--text:hover,
.button--text:focus {
  color: var(--primary-color-hover);
  border-bottom: 2px solid var(--primary-color-hover);
}

.button--text:active {
  color: var(--primary-color-hover);
  border-bottom: 2px solid var(--primary-color-hover);
}

/* Text Alt */

.button--text-alt {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.button--text-alt:hover,
.button--text-alt:focus {
  color: var(--primary-color-hover);
  border-bottom: 2px solid var(--primary-color-hover);
}

.button--text-alt:active {
  color: var(--primary-color-hover);
  border-bottom: 2px solid var(--primary-color-hover);
}

/* Text - Black*/

.button--text-black {
  min-height: auto;
  padding: 0;
  background: none;
  color: #040C17;
  border-bottom: 1px solid #040C17;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
}

.button--text:hover,
.button--text:focus {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.button--text:active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

/* Icon */

.button--icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gap-xs);
}

.button--icon > span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.button--icon > svg {
  height: 1.6rem;
}

/* Full */

.button--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/* Large */

.button--large {
  padding: 3rem 2rem;
  font-size: calc(var(--base-font-size) * 1.5);
}

/* CTA Override */

a.cta_button {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/* Labels */

form label,
.fakelabel {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form select,
form textarea {
  display: block;
  padding: 1rem;
  width: 100%;
  min-height: 4.8rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 30' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M5.64 0 0 5.64l24 24 24-24L42.36 0 24 18.32 5.64 0Z' style='fill-rule:nonzero'/%3E%3C/svg%3E");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid var(--medium-gray);
  -webkit-text-fill-color: var(--base-color);
  opacity: 1;
}

form textarea {
  min-height: 15rem;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border: 1px solid var(--medium-gray);
}

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

::-webkit-input-placeholder {
  color: var(--medium-gray);
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--medium-gray);
}

/* Inputs - checkbox/radio */

.inputs-list {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}

.inputs-list > li {
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
  margin-right: 0.5rem;
}

input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
  accent-color: var(--primary-color);
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: var(--base-color);
}

.fn-date-picker td.is-selected .pika-button {
  background: var(--dark-gray);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: var(--dark-gray) !important;
  border-radius: 0 !important;
  color: #fff;
}

.fn-date-picker td.is-today .pika-button {
  color: var(--dark-gray);
}

/* Inputs - file picker */

form input[type="file"] {
  width: auto !important;
  min-height: auto;
  background-color: transparent;
  border: initial;
  padding: initial;
}
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  margin-right: var(--gap);
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.4rem;
  margin: 0 0 1.6rem;
}

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 {
  font-size: 1.4rem;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  position: relative;
  top: -1px;
}

/* Validation */

.hs-form-required {
  color: red;
}

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

.hs-error-msg,
.hs-error-msg,
.hs-error-msgs {
  margin: -1rem 0 2rem 0;
  color: red;
  font-size: 1.4rem;
  font-weight: 400;
}

.hs_error_rollup {
  display: none;
}

/* Captcha */

.grecaptcha-badge {
  margin-bottom: 2rem;
}

/* Change Autocomplete styles in Chrome */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
  box-shadow: 0 0 0 30px var(--white) inset !important;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}
.hs-form
  fieldset.form-columns-1
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-2
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-3
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100% !important;
}

@media (min-width: 992px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}
/* Table */

table {
	width: 100%;
	border: 1px solid var(--light-gray);
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
	padding: 1rem;
	text-align: left;
  vertical-align: top;
}

td {
	border-bottom: 1px solid var(--light-gray);
}

/* Table header */

thead th {
	background-color: var(--light-gray);
  vertical-align: bottom;
}

/* Table footer */

tfoot td {
  background-color: var(--light-gray);
}

.body-container table {
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  border-radius: 4px;
  background: linear-gradient(118deg,rgba(255,255,255,.5) 0,rgba(243,248,254,.5) 100%),#fff;
  position: relative;
  border: none;
}
.body-container table::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  background-clip: border-box;
  background-origin: border-box;
  background-image: linear-gradient(118deg,rgba(4,12,23,.1) 0,rgba(4,12,23,.15) 100%);
  z-index: 1;
}
.body-container table td,
.body-container table th {
  position: relative;
  padding: 12px !important;
}

.table-mobile-warning {
  display: none;
}
@media(max-width: 960px) {
  .table-mobile-warning {
    display: block;
    text-align: center;
    font-weight: 700;
    margin: 0 0 10px;
  }
  div[data-hs-responsive-table="true"] table {
    min-width: 840px;
  }
}

@media (max-width: 768px) {
  .simple-table thead {
    background: var(--light-gray);
  }
  .simple-table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
  }
  .simple-table td {
    width: auto;
    border: none;
  }
  .simple-table td:last-child {
    text-align: right;
  }
}

/* Responsive Tables */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0 !important;
}

.responsive-table tr:nth-child(even){
  background-color: #f9f9f9;
}

.responsive-table th, 
.responsive-table td {
  padding: 8px 12px;
  text-align: left;
}

.responsive-table th,
.responsive-table .row-header {
  font-weight: bold;
}

.responsive-table td {
  border-bottom: none;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .responsive-table {
    border: 0;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    display: block;
  }
  .responsive-table tr td:first-child {
    background: var(--light-gray);
  }

  .responsive-table td,
  .responsive-table th {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .responsive-table th,
  .responsive-table .row-header {
    background: var(--light-gray);
  }

  .responsive-table tr:nth-child(even) {
    background: none !important;
  }

  .responsive-table td:nth-child(odd) {
    background-color: #f9f9f9;
  }

  .responsive-table td::before {
    content: attr(data-label); /* Fetch the label from the data-label attribute */
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 12px;
    text-align: left;
    font-weight: bold;
    line-height: 1;
  }
}

/* Components */

.header {
  position: relative;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.header__container {
  padding: 1.1rem 1.6rem;
}
.header__container .content-wrapper {
  margin: 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Logo */

.header__logo {
  margin: 0 auto;
}
.header__logo a {
  display: block;
  font-size: 0;
}
.header__logo img {
  width: auto !important;
  height: 2rem !important;
}

/* Nav */

.header__navigation nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Navigation skipper */

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

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

@media (min-width: 992px) {
  .header__container {
    padding: 2.2rem 4.8rem;
  }
  .header__logo {
    margin: 0;
  }
  .header__logo img {
    height: 3rem !important;
  }
}
.footer {
  padding: 4rem 2rem;
  background-color: var(--dark-blue);
  color: var(--white);
}
.footer .content-wrapper {
  max-width: 810px;
}
.footer p {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer p:first-child {
  font-size: 1.3rem;
  text-transform: none;
}
.footer a {
  color: var(--light-blue);
}
.footer a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}
.footer--no-navigation p {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: var(--gap);
  }
}

/* Utilities */

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Background Colors */

.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-white {
  background-color: var(--white);
}

/* Spacing */

.mt-none {
  margin-top: 0 !important;
}
.mt-xs {
  margin-top: calc(var(--gap) * 0.25) !important;
}
.mt-sm {
  margin-top: calc(var(--gap) * 0.5) !important;
}
.mt-md {
  margin-top: var(--gap) !important;
}
.mt-lg {
  margin-top: calc(var(--gap) * 1.5) !important;
}
.mt-xl {
  margin-top: calc(var(--gap) * 2) !important;
}

.mb-none {
  margin-bottom: 0 !important;
}
.mb-xs {
  margin-bottom: calc(var(--gap) * 0.25) !important;
}
.mb-sm {
  margin-bottom: calc(var(--gap) * 0.5) !important;
}
.mb-md {
  margin-bottom: var(--gap) !important;
}
.mb-lg {
  margin-bottom: calc(var(--gap) * 1.5) !important;
}
.mb-xl {
  margin-bottom: calc(var(--gap) * 2) !important;
}

.pt-none {
  padding-top: 0 !important;
}
.pt-xs {
  padding-top: calc(var(--gap) * 0.25) !important;
}
.pt-sm {
  padding-top: calc(var(--gap) * 0.5) !important;
}
.pt-md {
  padding-top: var(--gap) !important;
}
.pt-lg {
  padding-top: calc(var(--gap) * 1.5) !important;
}
.pt-xl {
  padding-top: calc(var(--gap) * 2) !important;
}

.pb-none {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: calc(var(--gap) * 0.25);
}
.pb-sm {
  padding-bottom: calc(var(--gap) * 0.5);
}
.pb-md {
  padding-bottom: var(--gap) !important;
}
.pb-lg {
  padding-bottom: calc(var(--gap) * 1.5) !important;
}
.pb-xl {
  padding-bottom: calc(var(--gap) * 2);
}

/* Text */

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

.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

.text-large {
  font-size: calc(var(--base-font-size) * 1.2);
}
.text-small {
  font-size: calc(var(--base-font-size) * 0.8);
}

/* Responsive embed */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container--43 {
  padding-bottom: 75%;
}