
.footer h4 {
  font-size: 24px;
  font-family: 'roboto slab';
  font-weight: 100;
  max-width: 775px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}

/**
 * Responsive Grid
 * -----------------------------
 */
.content-wrapper,
.wrapper,
.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wrapper-width);
}
.dnd-section:not([class*='force-full-width']) {
  padding-left: 2rem;
  padding-right: 2rem;
}
.row-fluid {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  flex: 1;
  margin: 0;
}
.row-fluid [class*='span']:first-child {
  margin-left: 0;
}
.row-fluid .span12 {
  flex-basis: 100%;
}
.row-fluid .span11 {
  flex-basis: 91.66%;
}
.row-fluid .span10 {
  flex-basis: 83.33%;
}
.row-fluid .span9 {
  flex-basis: 75%;
}
.row-fluid .span8 {
  flex-basis: 66.66%;
}
.row-fluid .span7 {
  flex-basis: 58.33%;
}
.row-fluid .span6 {
  flex-basis: 50%;
}
.row-fluid .span5 {
  flex-basis: 41.66%;
}
.row-fluid .span4 {
  flex-basis: 33.33%;
}
.row-fluid .span3 {
  flex-basis: 25%;
}
.row-fluid .span2 {
  flex-basis: 16.66%;
}
.row-fluid .span1 {
  flex-basis: 8.33%;
}
@media (max-width: 767px) {
	.row-fluid {
    flex-direction: column;
	}
}
/**
 * For styling HubSpot's default modules.
 */
/* @use '../util'; */

.hbspt-form[id] {
  font-family: "Open Sans",sans-serif;
  display: flex;
}
.hbspt-form[id] .actions {
    margin: 0;
    padding: 0;
}
.hbspt-form[id] input[type="submit"] {
    padding: 10px 20px;
    font-size: 18px;
    background: #2d2d2d;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #2d2d2d;
    text-decoration: none!important;
    display: block;
    line-height: unset;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
    font-family: "Open Sans",sans-serif;
}
.hs-input::-webkit-input-placeholder {
    color: #bfbfbf;
}
input.hs-input:focus, textarea.hs-input:focus {
  outline: none;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-color: rgba(82,168,236,0.8);
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 10%), 0 0 8px rgb(82 168 236 / 60%);
}
input.hs-input.error:focus, .hs-form-f7d31f1c-c37d-4fcd-9459-1e184f731aa9_f0499218-97e3-4094-a770-95b0c0319d00 div.field.error input:focus, .hs-form-f7d31f1c-c37d-4fcd-9459-1e184f731aa9_f0499218-97e3-4094-a770-95b0c0319d00 div.field.error textarea:focus, .hs-form-f7d31f1c-c37d-4fcd-9459-1e184f731aa9_f0499218-97e3-4094-a770-95b0c0319d00 div.field.error .chzn-choices:focus, textarea.hs-input.error:focus, select.hs-input.error:focus {
    border-color: #b9554d;
    box-shadow: 0 0 6px rgb(171 41 32 / 50%);
}
/**
 * Contains overrides/fixes for HubSpot page editor specific styles.
 */

 /**
  * Undo fixed footer because clicking on page editor stuff seems to
  * mess up the layering for some reason.
  */
.hs-inline-edit [data-footer-fixed] .footer {
  position: relative;
}
.hs-inline-edit #main-content {
  margin: 0 !important;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes translate-down {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 100%, 0); }
}
/*! 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 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 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: var(--typography-fluid-scale-0);
}

/**
 * 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 inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right 10px center/26px;
  border-radius: 0;
  padding-right: 40px;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}

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

menu, ol, ul {
  padding: 0 40px;
}

*, *:before, *:after {
  box-sizing: border-box;
  outline-offset: 0.2rem;
}
/**
 * Text formatting helpers
 */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/**
 * Show and hide things
 */
.hidden {
  display: none;
}
.visible {
  display: block;
}
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

/**
 * Useful for adding a "hidden" link to make an entire area clickable.
 */
.clickable {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.text--gradient-primary {
  background: var(--color-gradient-primary);
}
.text--gradient-secondary {
  background: var(--color-gradient-secondary);
}
.text--gradient-primary,
.text--gradient-secondary {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

/**
 * For content that needs to be visually hidden but stay visible for screenreaders.
 */
.screen-reader-text {
  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) {
  .screen-reader-text {
    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;
  }
}




:root {
	--color-primary: #b3d4fc;
  --color-primary-darken-10: #a9caf2;
  --color-primary-darken-20: #9fc0e8;
  --color-primary-darken-30: #95b6de;
  --color-primary-darken-40: #8bacd4;
  --color-primary-darken-50: #81a2ca;
  --color-primary-darken-60: #7798c0;
  --color-primary-darken-70: #6d8eb6;
  --color-primary-darken-80: #6384ac;
  --color-primary-darken-90: #597aa2;
  --color-primary-lighten-10: #bddeff;
  --color-primary-lighten-20: #c7e8ff;
  --color-primary-lighten-30: #d1f2ff;
  --color-primary-lighten-40: #dbfcff;
  --color-primary-lighten-50: #e5ffff;
  --color-primary-lighten-60: #efffff;
  --color-primary-lighten-70: #f9ffff;
  --color-primary-lighten-80: #ffffff;
  --color-primary-lighten-90: #ffffff;

	--color-secondary: #463243;
  --color-secondary-darken-10: #3c2839;
  --color-secondary-darken-20: #321e2f;
  --color-secondary-darken-30: #281425;
  --color-secondary-darken-40: #1e0a1b;
  --color-secondary-darken-50: #140011;
  --color-secondary-darken-60: #0a0007;
  --color-secondary-darken-70: #000000;
  --color-secondary-darken-80: #000000;
  --color-secondary-darken-90: #000000;
  --color-secondary-lighten-10: #503c4d;
  --color-secondary-lighten-20: #5a4657;
  --color-secondary-lighten-30: #645061;
  --color-secondary-lighten-40: #6e5a6b;
  --color-secondary-lighten-50: #786475;
  --color-secondary-lighten-60: #826e7f;
  --color-secondary-lighten-70: #8c7889;
  --color-secondary-lighten-80: #968293;
  --color-secondary-lighten-90: #a08c9d;

  --color-gradient-primary: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  --color-gradient-secondary: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 100%);

  --color-accent: #2d2d2d;
  --color-accent-darken-10: #232323;
  --color-accent-darken-20: #191919;
  --color-accent-darken-30: #0f0f0f;
  --color-accent-darken-40: #050505;
  --color-accent-darken-50: #000000;
  --color-accent-darken-60: #000000;
  --color-accent-darken-70: #000000;
  --color-accent-darken-80: #000000;
  --color-accent-darken-90: #000000;
  --color-accent-lighten-10: #373737;
  --color-accent-lighten-20: #414141;
  --color-accent-lighten-30: #4b4b4b;
  --color-accent-lighten-40: #555555;
  --color-accent-lighten-50: #5f5f5f;
  --color-accent-lighten-60: #696969;
  --color-accent-lighten-70: #737373;
  --color-accent-lighten-80: #7d7d7d;
  --color-accent-lighten-90: #878787;

  --color-section-primary: #fff;
  --color-section-secondary: #f9f5f4;

  --color-white: #fff;
  --color-black: #000;

  --transition-duration: 0.2s;
  --transition-timing-function: ease;
  --border-color: #dcdcdc;
  --border-radius: 5px;
  --wrapper-width: 100%px;
}
html {
  /**
   * For smooth scrolling anchor links
   * @todo Make this a global theme setting under Performance.
   */
  scroll-behavior: smooth;
}

/**
 * The following styles solve the issue of the footer
 * not being at the bottom of the page when there is not enough
 * content to fill the full viewport.
 */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  hyphens: auto;
  tab-size: 2;
  overflow-x: hidden;
}
body > .hs-page,
body > .page {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#main-content {
  flex: 1;
  z-index: 1;
}

/**
 * Don't add this as a comma separated selector with ::selection
 * below or it will break in Chrome.
 */
::-moz-selection {
  background: var(--color-primary);
  text-shadow: none;
}
::selection {
  background: var(--color-primary);
  text-shadow: none;
}

/**
 * Remove outline for non-keyboard :focus
 */
*:focus:not(:focus-visible) {
  outline: none  !important;
}
/**
 * Default outline style for keyboard :focus
 */
*:focus-visible {
  outline: 2px solid var(--color-primary) !important;
}

/**
 * Remove focus outlines from Flickity sliders.
 */
.flickity-viewport:focus-visible,
.flickity-enabled:focus-visible,
.flickity-slider:focus-visible {
  outline: none !important;
}

#hs-eu-cookie-confirmation {
  background: var(--color-accent) !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
}
#hs-eu-cookie-confirmation-inner {
  background: none !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
  color: var(--color-white) !important;
  opacity: 0.7;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button {
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight) !important;
  line-height: var(--button-line-height);
  text-decoration: var(--button-text-decoration) !important;
  text-transform: var(--button-text-transform);
  text-align: var(--button-text-align);
  color: var(--button-text-color);
  background: var(--button-background)  !important;
  border-radius: var(--button-border-radius);
  border-width: var(--button-border-width) !important;
  border-style: var(--button-border-style) !important;
  border-color: var(--button-border-color) !important;
  margin: var(--button-margin);
  padding: var(--button-padding) !important;
  min-width: var(--button-min-width);
  letter-spacing: var(--button-letter-spacing);
  box-shadow: var(--button-box-shadow);
  transition: var(--button-transition);
  outline-color: var(--button-outline-color) !important;
  white-space: nowrap;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: 200% auto;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button {
  --button-background: transparent !important;
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-secondary);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button:hover,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button:focus {
  --button-background: var(--color-secondary) !important;
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-white);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
  --button-border-color: transparent;
  --button-box-shadow: var(--button-primary-box-shadow);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button:hover,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button:focus {
  background-position: right center !important;
}

@media (min-width: 960px) {
  #hs-eu-cookie-confirmation {
    top: unset !important;
    left: unset !important;
    bottom: 0;
    right: 0;
    margin: 2rem;
    max-width: 600px;
    border-radius: var(--border-radius);
  }
}
.hs-recaptcha {
  height: 0;
}
.grecaptcha-badge {
  visibility: hidden;
}
.kelp-recaptcha-disclaimer {
  font-size: var(--typography-fluid-scale-0);
  text-align: center;
  padding: 1rem;
}
:root {
  --typography-body-font: Open Sans, sans-serif;
  --typography-heading-font: Arial, sans-serif;
  --typography-body-color: #161616;
  --typography-heading-color: #161616;
  --typography-link-text-decoration: none;
  --typography-link-font-weight: 400;
  --typography-link-color: var(--color-primary);
  --typography-link-hover-color: var(--color-secondary);
  --typography-link-active-color: var(--color-secondary);
  --typography-link-font: var(--typography-body-font);
  --typography-link-hover-font: var(--typography-body-font);
  --typography-link-active-font: var(--typography-body-font);
  --typography-link-letter-spacing: 0;
  --typography-link-transition: var(--transition-duration) var(--transition-timing-function);
  --typography-body-line-height: 1.5;

  --typography-fluid-scale-0: clamp(0.6rem, calc(0.6rem + 1vw), 0.8rem);
  --typography-fluid-scale-1: clamp(0.8rem, calc(0.8rem + 1vw), 1.25rem);
  --typography-fluid-scale-2: clamp(1rem, calc(1rem + 1.5vw), 2rem);
  --typography-fluid-scale-3: clamp(1.3rem, calc(1.3rem + 2vw), 2.5rem);
  --typography-fluid-scale-4: clamp(1.6rem, calc(1.6rem + 2.5vw), 3rem);
  --typography-fluid-scale-5: clamp(1.8rem, calc(1.8rem + 3vw), 3.5rem);
  --typography-fluid-scale-6: clamp(2rem, calc(2rem + 4.5vw), 5rem);

  --typography-p-font-size: var(--typography-fluid-scale-1);
  --typography-h6-font-size: var(--typography-fluid-scale-1);
  --typography-h5-font-size: var(--typography-fluid-scale-2);
  --typography-h4-font-size: var(--typography-fluid-scale-3);
  --typography-h3-font-size: var(--typography-fluid-scale-4);
  --typography-h2-font-size: var(--typography-fluid-scale-5);
  --typography-h1-font-size: var(--typography-fluid-scale-6);

  

  --typography-heading-line-height: 1.1;
  --typography-heading-font-weight: 700;
}

body {
  font-family: var(--typography-body-font);
  color: var(--typography-body-color);
  line-height: var(--typography-body-line-height);
}

/**
 * Links
 */
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

/**
 * Paragraphs
 */
p {
  font-size: var(--typography-p-font-size);
  margin: 1em 0;
}

/**
 * Headings
 */
h1:empty, .h1:empty,
h2:empty, .h2:empty,
h3:empty, .h3:empty,
h4:empty, .h4:empty,
h5:empty, .h5:empty,
h6:empty, .h6:empty {
  display: none;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--typography-heading-font);
  color: var(--typography-heading-color);
  margin: 0;
  margin-bottom: 0.5em;
  font-weight: var(--typography-heading-font-weight);
  line-height: var(--typography-heading-line-height);
}

h6, .h6 {
  font-size: var(--typography-h6-font-size);
  font-family: var(--typography-h6-font);
  color: var(--typography-h6-color);
}

h5, .h5 {
  font-size: var(--typography-h5-font-size);
  font-family: var(--typography-h5-font);
  color: var(--typography-h5-color);
}

h4, .h4 {
  font-size: var(--typography-h4-font-size);
  font-family: var(--typography-h4-font);
  color: var(--typography-h4-color);
}

h3, .h3 {
  font-size: var(--typography-h3-font-size);
  font-family: var(--typography-h3-font);
  color: var(--typography-h3-color);
}

h2, .h2 {
  font-size: var(--typography-h2-font-size);
  font-family: var(--typography-h2-font);
  color: var(--typography-h2-color);
}

h1, .h1 {
  font-size: var(--typography-h1-font-size);
  font-family: var(--typography-h1-font);
  color: var(--typography-h1-color);
}
pre {
  font-family: monospace,monospace;
  font-size: 1em;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--border-radius);
  white-space: pre-wrap;
  padding: 1rem;
}
:not(pre) > code {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  color: var(--color-white);
  padding: 3px 6px;
  white-space: pre;
}

:root {
  --button-font-family: inherit;
  --button-font-weight: 600;
  --button-font-size: 100%;
  --button-line-height: 2;
  --button-text-decoration: none;
  --button-text-transform: uppercase;
  --button-text-align: center;
  --button-text-color: var(--color-white);
  --button-letter-spacing: 0;
  --button-border-radius: var(--border-radius);
  --button-padding: 3px 8%;
  --button-margin: 0;
  --button-border-width: 2px;
  --button-border-color: transparent;
  --button-border-style: solid;
  --button-min-width: 120px;
  --button-outline-color: var(--color-primary);
  --button-transition: var(--transition-timing-function) var(--transition-duration);
  --button-background: var(--button-primary-background);
  --button-primary-background: var(--color-primary);
  --button-primary-hover-background: var(--color-primary-lighten-30);
  --button-secondary-background: var(--color-secondary);
  --button-secondary-hover-background: var(--color-secondary-lighten-30);
  --button-accent-background: var(--color-accent);
  --button-accent-hover-background: var(--color-accent-lighten-30);
  --button-box-shadow: var(--button-primary-box-shadow);

  --button-primary-box-shadow: 0 0 10px rgb(#null, .4);
  --button-secondary-box-shadow: 0 0 10px rgb(#null, .4);
}

.button,
.hs-button,
input[type=submit] {
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-decoration: var(--button-text-decoration) !important;
  text-transform: var(--button-text-transform);
  text-align: var(--button-text-align);
  color: var(--button-text-color);
  background: var(--button-background);
  border-radius: var(--button-border-radius);
  border-width: var(--button-border-width);
  border-style: var(--button-border-style);
  border-color: var(--button-border-color);
  margin: var(--button-margin);
  padding: var(--button-padding);
  min-width: var(--button-min-width);
  letter-spacing: var(--button-letter-spacing);
  box-shadow: var(--button-box-shadow);
  transition: var(--button-transition);
  outline-color: var(--button-outline-color) !important;
  white-space: nowrap;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: 200% auto;
}
.button:hover,
.button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  --buton-text-decoration: none;
  --button-background: var(--button-primary-hover-background);
}
.button + .button {
  --button-margin: 0 0 0 1rem;
}
.button--gradient-primary:hover,
.button--gradient-primary:focus,
.button--gradient-secondary:hover,
.button--gradient-secondary:focus {
  background-position: right center;
}
/**
 * We need these to override the base button hover and focus styles from above.
 */
.button--gradient-primary:hover,
.button--gradient-primary:focus {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
}
.button--gradient-secondary {
  --button-background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-secondary) 100%) repeat center left / 200% auto;
  --button-border-color: transparent;
  --button-box-shadow: var(--button-secondary-box-shadow);
}
/**
 * We need these to override the base button hover and focus styles from above.
 */
.button--gradient-secondary:hover,
.button--gradient-secondary:focus {
  --button-background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-secondary) 100%) repeat center left / 200% auto;
}
/**
 * We do the repeated class here for specificity.
 */
.button--link.button--link {
  --button-font-weight: var(--typography-link-font-weight);
  --button-font-family: var(--typography-link-font-family);
  --button-background: transparent;
  --button-text-color: var(--typography-link-color);
  --button-padding: 0;
  --button-letter-spacing: var(--typography-link-letter-spacing);
  --button-text-transform: var(--typography-link-text-transform);
  border: none;
  box-shadow: none;
}
/**
 * We do the repeated class here for specificity.
 */
.button--link.button--link:hover,
.button--link.button--link:focus{
  --button-background: transparent;
  --button-text-color: var(--typography-link-hover-color) !important;
  --button-border-radius: 0;
  --button-padding: 0;
  --button-text-color: currentColor;
  border: none;
  transform: none;
}
/**
 * We do the repeated class here for specificity.
 */
.button--empty.button--empty {
  --button-background: transparent;
}
.button.button--primary:hover,
.button.button--primary:focus,
.button.button--secondary:hover,
.button.button--secondary:focus {
  --button-text-color: var(--color-white) !important;
}
.button--primary {
  --button-background: var(--button-primary-background);
}
.button--primary.button--empty {
  --button-border-color: var(--color-primary);
  --button-text-color: var(--color-primary);
}
.button--primary.button--empty:hover,
.button--primary.button--empty:focus {
  --button-border-color: var(--button-primary-hover-background);
}
.button--primary:hover,
.button--primary:focus {
  --button-background: var(--button-primary-hover-background);
}
.button--secondary {
  --button-background: var(--button-secondary-background);
  --button-box-shadow: var(--button-secondary-box-shadow);
}
.button--accent {
  --button-background: var(--button-accent-background);
  --button-box-shadow: var(--button-accent-box-shadow);
}
.button--secondary.button--empty {
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-secondary);
}
.button--accent.button--empty {
  --button-border-color: var(--color-accent);
  --button-text-color: var(--color-accent);
}
.button--secondary.button--empty:hover,
.button--secondary.button--empty:focus {
  --button-border-color: var(--button-secondary-hover-background);
}
.button--accent.button--empty:hover,
.button--accent.button--empty:focus {
  --button-border-color: var(--button-accent-hover-background);
}
.button--secondary:hover,
.button--secondary:focus {
  --button-background: var(--button-secondary-hover-background);
}
.button--accent:hover,
.button--accent:focus {
  --button-background: var(--button-accent-hover-background);
}
.button--white{
  --button-border-color: var(--color-white);
  --button-text-color: var(--color-white);
}
.button--filled.button--white,
.button--white:hover,
.button--white:focus {
  --button-background: var(--color-white);
  --button-text-color: var(--color-black) !important;
}
.button--icon {
  --button-font-size: 12px;
  --button-padding: 1rem;
  min-width: 0;
  aspect-ratio: 1;
}
.button--small {
  --button-font-size: 14px;
}
.hs-button,
.button--medium {
  --button-font-size: 16px;
}
.button--large {
  --button-font-size: 20px;
  --button-padding: 10px 8%;
}
.button--light {
  --button-text-color: var(--color-black);
}
.button--dark {
  --button-text-color: var(--color-white);
}
.button--center {
  margin-left: auto;
  margin-right: auto;
}
.button--left {
  float: left;
}
.button--right {
  float: right;
}

/**
 * Disabled buttons
 */
.button--disabled,
.button.disabled,
button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

/**
 * Used in conjunction with [data-interactive], particularly
 * on card elements, where we want to make a collective area clickable,
 */
.button--breakout {
  position: static;
}
.button--breakout,
.button--breakout::before {
  cursor: pointer;
}
.button--breakout::before {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[data-interactive] .button--breakout::before {
  display: block;
}
:root {
  --form-max-width: 800px;
  --form-background: transparent;
  --form-border-color: transparent;
  --form-border-style: none;
  --form-border-width: px;
  --form-border-radius: px;

  --form-title-color: ;
  --form-title-background: ;

  /**
   * Text-like input fields
   */
  --form-input-placeholder-color: ;
  --form-input-text-color: ;
  --form-input-background-color: ;
  --form-input-label-color: ;
  --form-input-border-radius: var(--border-radius);
  --form-input-border-width: 0px;
  --form-input-border-color: transparent;
  --form-input-border-style: transparent;
  --form-input-font-family: var(--typography-body-font);

  --form-input-focus-border-width: 3px;
  --form-input-focus-border-color: var(--color-primary);
  /**
   * Radio buttons and checkboxes
   */
  --form-input-control-label-text-size: 16px;
  --form-input-control-background: transparent;
  --form-input-control-active-background: var(--color-primary);
  --form-input-control-border-width: 2px;
  --form-input-control-border-style: solid;
  --form-input-control-border-color: var(--body-secondary-background);
  /**
   *
   */
  --form-textarea-border-radius: var(--border-radius);
}

form {
  max-width: var(--form-max-width);
  background: var(--form-background);
  border-color: var(--form-border-color);
  border-style: var(--form-border-style);
  border-width: var(--form-border-width);
  border-radius: var(--form-border-radius);
}
.form-title {
  color: var(--form-title-color);
  background: var(--form-title-background);
}
form label {
  line-height: 50px;
  color: var(--form-label-color);
}

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

textarea,
select,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel] {
  padding: 5px 4px;
  height: 38px;
  line-height: 50px;
  text-indent: 10px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Open Sans",sans-serif;
  border: 1px solid #ccc;
  box-shadow: none;
  border-radius: 0;
  width: calc(100% - 10px) !important;
  max-width: none!important;
  box-sizing: content-box;
  background: #fff;
}

textarea {
  border-radius: var(--form-textarea-border-radius);
}

select {
  padding: 1rem 3rem 1rem 1rem;
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea::placeholder,
input::placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

/**
 * File input form items need some extra spacing.
 */
.hs-fieldtype-file {
  margin-bottom: 2rem;
}

.hs-error-msgs,
.hs-error-msgs li {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.hs-error-msgs .hs-error-msg {
  font-size: var(--typography-fluid-scale-0);
  opacity: 0.7;
  position: relative;
  line-height: 1.3;
}
.hs-form-required {
  font-size: var(--typography-fluid-scale-1);
  font-weight: 700;
  background: var(--color-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hs-input[type=checkbox] {
  margin-right: 12px;
}

/**
 * Hide list circles on checkbox groups.
 */
[role=checkbox] {
  padding: 0;
}
[role=checkbox] li {
  list-style: none;
  padding-left: 1rem;
}

/**
 * Styles shared between radio buttons and checkboxes.
 */
input[type=radio],
input[type=checkbox] {
  position: absolute;
  display: none;
}
input[type=radio]:checked + span:before,
input[type=checkbox]:checked + span:before {
  animation-name: none;
}
input[type=radio]:checked + span:after,
input[type=checkbox]:checked + span:after {
  transform: scale(1);
}
input[type=radio][disabled],
input[type=checkbox][disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
input[type=radio][disabled] + span,
input[type=checkbox][disabled] + span {
  cursor: not-allowed;
  opacity: 0.5;
}
input[type=radio][disabled] + span:hover, input[type=radio][disabled] + span:before, input[type=radio][disabled] + span:after,
input[type=checkbox][disabled] + span:hover,
input[type=checkbox][disabled] + span:before,
input[type=checkbox][disabled] + span:after {
  cursor: not-allowed;
}
input[type=radio] + span,
input[type=checkbox] + span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
  padding-left: calc(1.875 * var(--form-input-control-label-text-size));
  cursor: pointer;
  vertical-align: middle;
  font-size: var(--form-input-control-label-text-size);
  line-height: 1.3em;
  margin-bottom: calc(0.5 * var(--form-input-control-label-text-size));
}
input[type=radio] + span:hover:before,
input[type=checkbox] + span:hover:before {
  border-color: var(--form-input-control-active-background);
}
input[type=radio] + span:before,
input[type=checkbox] + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: calc(1.25 * var(--form-input-control-label-text-size));
  height: calc(1.25 * var(--form-input-control-label-text-size));
  transition: border var(--transition-duration) var(--transition-timing-function);
  border-width: var(--form-input-control-border-width);
  border-style: var(--form-input-control-border-style);
  border-color: var(--form-input-control-border-color);
  background: var(--form-input-control-background);
}
input[type=radio] + span:after,
input[type=checkbox] + span:after {
  position: absolute;
  content: "";
  transition: all 0.2s ease;
}

/**
 * Radio specific sytyling.
 */
input[type=radio] + span:before {
  border-radius: 50%;
}
input[type=radio] + span:after {
  top: calc(0.375 * var(--form-input-control-label-text-size));
  left: calc(0.375 * var(--form-input-control-label-text-size));
  width: calc(0.5 * var(--form-input-control-label-text-size));
  height: calc(0.5 * var(--form-input-control-label-text-size));
  border-radius: 50%;
  background: var(--form-input-control-active-background);
  transform: scale(0);
}
input[type=radio] + span:checked + span:before {
  border: 1px solid var(--form-input-control-active-background);
}

/**
 * Checkbox specific sytyling.
 */
input[type=checkbox] + span:before {
  border-radius: var(--border-radius);
}
input[type=checkbox] + span:after {
  top: calc(0.125 * var(--form-input-control-label-text-size));
  left: calc(0.4375 * var(--form-input-control-label-text-size));
  width: calc(0.375 * var(--form-input-control-label-text-size));
  height: calc(0.75 * var(--form-input-control-label-text-size));
  transform: scale(0) rotate(45deg);
  border-width: calc(0.125 * var(--form-input-control-label-text-size));
  border-style: solid;
  border-color: var(--color-white);
  border-top: 0;
  border-left: 0;
}
input[type=checkbox]:checked + span:before {
  border: var(--form-input-control-active-background);
  background: var(--form-input-control-active-background);
}
input[type=checkbox]:checked + span:after {
  transform: scale(1) rotate(45deg);
}
:root {
  --hr-color: #DCDCDC;
  --hr-height: 2px;
}

hr {
  background: var(--hr-color);
  height: var(--hr-height);
  border: none;
  margin: 2rem 0;
}
:root {
  --image-border-radius: 0;
  --video-border-radius: 0;
}

/**
 * For responsive images
 */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--image-border-radius);
}

/**
 * Inline images in rich text areas.
 */
.hs_cos_wrapper img[style*=float] {
  margin: 1rem 2rem;
}

iframe,
video {
  border-radius: var(--video-border-radius);
  max-width: 100%;
  object-fit: cover;
}
.image-wrapper {
  position: relative;
  display: flex;
  z-index: 1;
  border-radius: var(--image-border-radius);
}
.image-wrapper--left {
  float: left;
}
.image-wrapper--center {
  float: none;
}
.image-wrapper--right {
  float: right;
}
.image-wrapper .image-decorator {
  height: 80%;
  width: 80%;
  background: var(--color-gradient-primary);
  position: absolute;
  bottom: -5%;
  right: -5%;
  border-radius: var(--image-border-radius);
  z-index: -1;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  color: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  transform-origin: bottom right;
  font-size: var(--typography-fluid-scale-0);
  transition:
    var(--transition-timing-function) var(--transition-duration),
    color var(--transition-timing-function) var(--transition-duration) 0s;
}
.image-wrapper--decorator--bottom .image-decorator {
  align-items: flex-start;
}
.image-wrapper:hover .image-decorator {
  transform: scale(1.38);
}
.image-wrapper--decorator--left {
  margin-left: 2.5% !important;
}
.image-wrapper--decorator--right {
  margin-right: 2.5% !important;
}
.image-wrapper--decorator--top {
  margin-top: 5% !important;
}
.image-wrapper--decorator--bottom {
  margin-bottom: 5% !important;
}
.image-wrapper--decorator--left .image-decorator {
  left: -5%;
}
.image-wrapper--decorator--right .image-decorator {
  right: -5%;
}
.image-wrapper--decorator--top .image-decorator {
  top: -5%;
}
.image-wrapper--decorator--bottom .image-decorator {
  bottom: -5%;
}
.image-wrapper--decorator--bottom.image-wrapper--decorator--left .image-decorator {
  transform-origin: bottom left;
}
.image-wrapper--decorator--bottom.image-wrapper--decorator--right .image-decorator {
  transform-origin: bottom right;
}
.image-wrapper--decorator--top.image-wrapper--decorator--left .image-decorator {
  transform-origin: top left;
}
.image-wrapper--decorator--top.image-wrapper--decorator--right .image-decorator {
  transform-origin: top right;
}

.image-wrapper .image-caption {
  position: relative;
  background: var(--color-accent);
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.image-wrapper--caption .image-decorator::after {
  content: '';
  background: rgb(0 0 0 / 0.2);
  width: 100%;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate3d(0, -100%, 0);
}
.image-wrapper--caption.image-wrapper--decorator--top .image-decorator::after {
  bottom: 0;
  top: unset;
}
.image-wrapper--caption:hover .image-decorator {
  color: var(--color-white);
  transform: scale(1.38, 1.45);
  transition: var(--transition-timing-function) var(--transition-duration);
}
.image-wrapper--caption:hover .image-decorator::after {
  transform: translate3d(0, 0, 0);
}

img[src$='missing-image.png'] {
  display: none;
}

@media (max-width: 767px) {
  .image-wrapper {
    margin: 0 !important;
    left: 0;
    overflow: hidden;
    border-radius: var(--image-border-radius);
  }
  .image-wrapper .image-decorator {
    display: none;
  }
}

:root {
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: var(--border-color);
  --table-border-radius: var(--border-radius);
  --table-header-background: var(--typography-body-color);
  --table-header-text-color: var(--color-white);
  --table-row-even-background: transparent;
  --table-row-odd-background: transparent;
  --table-row-even-text-color: var(--typography-body-color);
  --table-row-odd-text-color: var(--typography-body-color);
  --table-footer-background: var(--color-primary);
  --table-footer-text-color: var(--color-white);
  --table-header-cell-border-width: 0;
  --table-header-cell-border-style: solid;
  --table-header-cell-border-color: transparent;
  --table-cell-border-width: 1px;
  --table-cell-border-style: solid;
  --table-cell-border-color: var(--border-color);
}

table {
  border-width: var(--table-border-width) !important;
  border-style: var(--table-border-style) !important;
  border-color: var(--table-border-color) !important;
  border-radius: var(--table-border-radius);
  overflow: hidden;
  border-collapse: separate !important;
  border-left: 0;
  border-spacing: 0px;
  max-width: 100% !important;
  width: -webkit-fill-available !important;
}
table th {
  font-weight: 700;
  padding: 1rem;
  background: var(--table-header-background);
  color: var(--table-header-text-color);
  border-left-width: var(--table-header-cell-border-width) !important;
  border-left-style: var(--table-header-cell-border-style) !important;
  border-left-color: var(--table-header-cell-border-color) !important;
}
table th,
table td {
  padding: 1rem;
}
table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
}
table thead:first-child tr:first-child th:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table thead:last-child tr:last-child th:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tbody tr:nth-of-type(n) {
  background: var(--table-row-odd-background);
  color: var(--table-row-odd-text-color);
}
table tbody tr:nth-of-type(2n) {
  background: var(--table-row-even-background);
  color: var(--table-row-even-text-color);
}
table tbody:first-child tr:first-child td:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tfoot {
  color: var(--table-footer-text-color);
  background: var(--table-footer-background);
}
table tr {
  padding: 1rem;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
table td {
  border-left-width: var(--table-cell-border-width) !important;
  border-left-style: var(--table-cell-border-style) !important;
  border-left-color: var(--table-cell-border-color) !important;
  border-top-width: var(--table-cell-border-width) !important;
  border-top-style: var(--table-cell-border-style) !important;
  border-top-color: var(--table-cell-border-color) !important;
}
:root {
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: var(--border-color);
  --table-border-radius: var(--border-radius);
  --table-header-background: var(--typography-body-color);
  --table-header-text-color: var(--color-white);
  --table-row-even-background: transparent;
  --table-row-odd-background: transparent;
  --table-row-even-text-color: var(--typography-body-color);
  --table-row-odd-text-color: var(--typography-body-color);
  --table-footer-background: var(--color-primary);
  --table-footer-text-color: var(--color-white);
  --table-header-cell-border-width: 0;
  --table-header-cell-border-style: solid;
  --table-header-cell-border-color: transparent;
  --table-cell-border-width: 1px;
  --table-cell-border-style: solid;
  --table-cell-border-color: var(--border-color);
}

table {
  border-width: var(--table-border-width) !important;
  border-style: var(--table-border-style) !important;
  border-color: var(--table-border-color) !important;
  border-radius: var(--table-border-radius);
  overflow: hidden;
  border-collapse: separate !important;
  border-left: 0;
  border-spacing: 0px;
  max-width: 100% !important;
  width: -webkit-fill-available !important;
}
table th {
  font-weight: 700;
  padding: 1rem;
  background: var(--table-header-background);
  color: var(--table-header-text-color);
  border-left-width: var(--table-header-cell-border-width) !important;
  border-left-style: var(--table-header-cell-border-style) !important;
  border-left-color: var(--table-header-cell-border-color) !important;
}
table th,
table td {
  padding: 1rem;
}
table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
}
table thead:first-child tr:first-child th:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table thead:last-child tr:last-child th:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tbody tr:nth-of-type(n) {
  background: var(--table-row-odd-background);
  color: var(--table-row-odd-text-color);
}
table tbody tr:nth-of-type(2n) {
  background: var(--table-row-even-background);
  color: var(--table-row-even-text-color);
}
table tbody:first-child tr:first-child td:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tfoot {
  color: var(--table-footer-text-color);
  background: var(--table-footer-background);
}
table tr {
  padding: 1rem;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
table td {
  border-left-width: var(--table-cell-border-width) !important;
  border-left-style: var(--table-cell-border-style) !important;
  border-left-color: var(--table-cell-border-color) !important;
  border-top-width: var(--table-cell-border-width) !important;
  border-top-style: var(--table-cell-border-style) !important;
  border-top-color: var(--table-cell-border-color) !important;
}