/* 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 {
  --primary-color: ;
  --secondary-color: ;
  --tertiary-color: ;
  --neutral-color: ;
  --black-color: ;
  --white-color: ;
}

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Adds smooth scrolling
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth; /* 3 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

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

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

/* Other (Custom)
 ========================================================================== */

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

/* 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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  border-radius: 2rem;
  padding: 0;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
}

/* Lists */

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

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

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

/* Custom List */

ul.u-list--custom,
.u-list--custom ul {
  list-style: none;
  padding: 0;
  padding-left: 2.5rem;
  margin: 0;
}

.u-list--custom li {
  margin-bottom: 0.5rem;
  position: relative;  
}

.u-list--custom li:before {
  height: 1.5rem;
  left: -2.5rem;
  position: absolute;
  top: 0;
  width: 1.5rem;
}

/* Custom List - Orange And White Checkmark */

.u-list--custom.u-list--orange-white-checkmark li:before {
  content: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='3' width='21' height='21' rx='4' fill='%23EC5918'/%3E%3Cpath d='M5.4985 10.0936C9.52886 10.6102 11.0043 21.6038 12.7845 17.315C15.9989 11.5935 18.999 6.59363 22.999 3.09363' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Custom List - Sky Blue and White Checkmark */

.u-list--custom.u-list--sky-blue-white-checkmark li:before {
  content: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='3' width='21' height='21' rx='4' fill='%2374BCFF'/%3E%3Cpath d='M5.4985 10.0936C9.52886 10.6102 11.0043 21.6038 12.7845 17.315C15.9989 11.5935 18.999 6.59363 22.999 3.09363' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Custom List - Green and White Checkmark */

.u-list--custom.u-list--green-white-checkmark li:before {
  content: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='3' width='21' height='21' rx='4' fill='%238EC24B'/%3E%3Cpath d='M5.4985 10.0936C9.52886 10.6102 11.0043 21.6038 12.7845 17.315C15.9989 11.5935 18.999 6.59363 22.999 3.09363' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Custom List - Nord And White Checkmark */

.u-list--custom.u-list--nord-white-checkmark li:before {
  content: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='3' width='21' height='21' rx='4' fill='%233E5FFF'/%3E%3Cpath d='M5.4985 10.0936C9.52886 10.6102 11.0043 21.6038 12.7845 17.315C15.9989 11.5935 18.999 6.59363 22.999 3.09363' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Custom List - Blue And Light Blue Checkmark */

.u-list--custom.u-list--blue-light-blue-checkmark li:before {
  content: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='3' width='21' height='21' rx='4' fill='%23005E93'/%3E%3Cpath d='M5.4985 10.0936C9.52886 10.6102 11.0043 21.6038 12.7845 17.315C15.9989 11.5935 18.999 6.59363 22.999 3.09363' stroke='%2374BCFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  background-color: #ECF0F1;
  border-radius: 0.25rem;
  display: inline-block;
  font-size: arem;
  padding: 0.15rem 0.5rem;
  vertical-align: middle;
}

/* Blockquotes */

blockquote {
  margin: 0;
}

blockquote,
blockquote p,
blockquote div {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}

blockquote p {
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  blockquote,
  blockquote p,
  blockquote div {
    font-size: 1.25rem;
  }  
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button,
form input[type=submit],
form .hs-button {
  background-color: transparent;
  cursor: pointer;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.125rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
}

button:hover,
.button:hover,
.hs-button:hover,
form input[type=submit]:hover,
form .hs-button:hover {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.125rem 1.75rem;
  text-decoration: none;
}

button:focus,
.button:focus,
.hs-button:focus,
form input[type=submit]:focus,
form .hs-button:focus {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.125rem 1.75rem;
  text-decoration: none;
}

button:active,
.button:active,
.hs-button:active,
form input[type=submit]:active,
form .hs-button:active {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.125rem 1.75rem;
  text-decoration: none;
}

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

/* Small Button */

.button--small,
.button--small:hover,
.button--small:focus,
.button--small:active {
  padding: 0.75rem 1.75rem;
}

/* Text Button */

.button--text,
.button--text:hover,
.button--text:focus,
.button--text:active {
  border: 0;
  font-size: 1.125rem;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  padding: 0;
}

.button--text.button--small,
.button--text.button--small:hover,
.button--text.button--small:focus,
.button--text.button--small:active {
  font-size: 1rem;
}

.button--text.button--large,
.button--text.button--lage:hover,
.button--text.button--large:focus,
.button--text.button--large:active {
  font-size: 1.75rem;
  text-decoration: none;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

/* Labels */

form label {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Form Title */

.form-title {
  margin-bottom: 0;
}

/* Help text */

.hs-field-desc {
  order: 10;
}

form legend {
  font-size: 0.875rem;
}

/* Inputs */

.form-columns-1 .hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}

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,
.pricing__user-count-input {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  width: 100%;
}

form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23005e93' d='M502.627 121.373a32 32 0 0 1 0 45.254l-224 224a32 32 0 0 1 -45.254 0l-224-224a32 32 0 0 1 45.254-45.254l201.373 201.372 201.373-201.372a32 32 0 0 1 45.254 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  padding-right: 2rem; /* ensure text doesn’t overlap arrow */
}

form textarea {
  min-height: 266px;
  resize: vertical;
}

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

.hs-input::placeholder {
  color: #B0BBBE;
  font-weight: 300;
}

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - custom single checkbox */

/* Single checkbox: container */
.hs-form-booleancheckbox {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0.5rem;
}

/* Label: flex layout for checkbox left, text right */
.hs-form-booleancheckbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 2rem; /* reserve space for checkbox */
}

/* Hide native checkbox */
.hs-form-booleancheckbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
}

/* Unchecked box */
.hs-form-booleancheckbox label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #E7F4FC;
  border-radius: 0.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* Checked state */
.hs-form-booleancheckbox input[type="checkbox"]:checked + span::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12L8.61492 17.1625C9.0136 17.6084 9.71202 17.607 10.1088 17.1593L20 6' stroke='%2374BCFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #005E93;
  border-radius: 0.25rem;
}

/* Inputs - custom multiple checkboxes */

/* List item (container for each checkbox) */
.hs-form-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0.5rem; /* space between checkboxes */
}

/* Label acts as flex container: checkbox on left, text on right */
.hs-form-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 2rem; /* reserve space for checkbox */
}

/* Hide the native checkbox input */
.hs-form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
}

/* Unchecked box: created with label::before */
.hs-form-checkbox label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #E7F4FC;
  border-radius: 0.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* Checked state: use span::before as overlay checkmark */
.hs-form-checkbox input[type="checkbox"]:checked + span::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12L8.61492 17.1625C9.0136 17.6084 9.71202 17.607 10.1088 17.1593L20 6' stroke='%2374BCFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #005E93;
  border-radius: 0.25rem;
}

/* Inputs - custom radio */

/* Radio item container */
.hs-form-radio {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0.5rem;
}

/* Label as flex: radio on left, text on right */
.hs-form-radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 2rem; /* reserve space for radio */
}

/* Hide native radio */
.hs-form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
}

/* Unchecked radio circle */
.hs-form-radio label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #E7F4FC;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* Checked state: smaller inner circle */
.hs-form-radio input[type="radio"]:checked + span::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #005E93;
  border-radius: 50%;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 1rem;
  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;
}

/* Inputs - custom file picker */

/* Hide the native file input */
.hs-file .hs-input[type="file"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Style the label as an inline button */
.hs-file label {
  display: inline-block;
  width: auto;
  max-width: 100%;
  background-color: transparent;
  cursor: pointer;
  border-radius: 1rem;
  border: 1px solid #005e93;
  color: #005e93;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.125rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  margin-bottom: 0.5rem;
}

/* Hover */
.hs-file label:hover {
  background-color: #2886bb;
  border-color: #2886bb;
  color: #fff;
}

/* Focus and Active */
.hs-file label:focus,
.hs-file label:active {
  background-color: #000e43;
  border-color: #000e43;
  color: #fff;
}

/* Headings and text */

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

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

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

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

.hs-error-msg {
  color: #EC5918;
  font-size: 0.875rem;
}

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



/* Submitted Form Message */

.submitted-message {
  background-color: #E0EFFD;
  border-radius: 0.75rem;
  padding: 1rem;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header {
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* Header DND Sections */

.header .dnd-section {
  padding: 0;
}

/* Header Container */

.header__container {
  display: flex;
  justify-content: space-between;
}

/* Navigation Skipper */

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

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

/* Mega-Menu */

.header__megamenu {
  width: 100%;
}

@media (max-width: 1095px) {
  .header__megamenu {
    overflow-y: scroll;
  }
}
.footer {
  padding-top: 5rem;
}

@media (min-width: 768px) {
  .footer form {
    max-width: 300px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Site Search Input */

.hs-search-field__bar {
  position: relative;
}

.hs-search-field__bar form {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.hs-search-field__bar button,
.hs-search-field__bar button:hover,
.hs-search-field__bar button:focus,
.hs-search-field__bar button:active {
  background-color: transparent;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hs-search-field__bar button svg,
.hs-search-field__bar button:hover svg,
.hs-search-field__bar button:focus svg,
.hs-search-field__bar button:active svg {
  fill: #005E93;
  height: 1rem !important;
  width: auto;
}

.hs-search-field--open ul.hs-search-field__suggestions {
  background-color: #ffffff;
  border-radius: 0.75rem !important;
  border-color: #74BCFF !important;
  border-width: 1px !important;
  border-style: solid !important;
}

.hs-search-field__suggestions li#results-for {
  color: #000000;
  font-weight: 500;
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  width:  100%;
}

.hs-search-field__suggestions li a {
  color: #000000;
  font-weight: 300;
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  width:  100%;
}

.hs-search-field__suggestions li a:hover,
.hs-search-field__suggestions li a:focus,
.hs-search-field__suggestions li a:active {
  background-color: #E7F4FC;
  color: #000000;
  font-weight: 300;
  text-decoration: none;
}

.hs-search-field__suggestions li:last-child a {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

/* Videos - Rounded corners */

.hs-video-wrapper {
  border-radius: 1rem;
  overflow: hidden;
}
/* Hero - Three Columns, Image (Bottom), Text with Buttons and Image (Top) */

.hero--three-col-text-and-two-images .row-fluid > .dnd-column:first-of-type {
  justify-content: flex-end !important;
}

.hero--three-col-text-and-two-images .row-fluid > .dnd-column:last-of-type {
  justify-content: flex-start !important;
}

/* Hero - Pricing */

@media (min-width: 768px) {
  .hero--pricing .section-title__title {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
}

/* Hero - Three Columns, Image (Bottom), Text and Image (Top) */

.hero--three-col-text-no-buttons-and-two-images .row-fluid > .dnd-column:first-of-type {
  justify-content: flex-start !important;
}

.hero--three-col-text-no-buttons-and-two-images .row-fluid > .dnd-column:last-of-type {
  justify-content: flex-end !important;
}

/* DnD Sections - Stack Right-to-Left (Add class to section) */

@media (max-width: 767px) {
  .dnd-section.stack-rtl > .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }

  .dnd-section.stack-rtl-nested > .row-fluid > .dnd-column > .dnd-row > .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

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

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

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

/* Hide */

.is-hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Rounded Corners */

.u-rounded-corners-xxs { border-radius: 0.75rem; }
.u-rounded-corners-top-xxs { border-radius: 0.75rem 0.75rem 0 0; }
.u-rounded-corners-bottom-xxs { border-radius: 0 0 0.75rem 0.75rem; }
.u-rounded-corners-top-left--xxs { border-top-left-radius: 0.75rem; }
.u-rounded-corners-top-right-xxs { border-top-right-radius: 0.75rem; }
.u-rounded-corners-bottom-left-xxs { border-bottom-left-radius: 0.75rem; }
.u-rounded-corners-bottom-right-xxs { border-bottom-right-radius: 0.75rem; }

.u-rounded-corners-xs { border-radius: 1rem; }
.u-rounded-corners-top-xs { border-radius: 1rem 1rem 0 0; }
.u-rounded-corners-bottom-xs { border-radius: 0 0 1rem 1rem; }
.u-rounded-corners-top-left--xs { border-top-left-radius: 1rem; }
.u-rounded-corners-top-right-xs { border-top-right-radius: 1rem; }
.u-rounded-corners-bottom-left-xs { border-bottom-left-radius: 1rem; }
.u-rounded-corners-bottom-right-xs { border-bottom-right-radius: 1rem; }

.u-rounded-corners-sm { border-radius: 1.25rem; }
.u-rounded-corners-top-sm { border-radius: 1.25rem 1.25rem 0 0; }
.u-rounded-corners-bottom-sm { border-radius: 0 0 1.25rem 1.25rem; }
.u-rounded-corners-top-left--sm { border-top-left-radius: 1.25rem; }
.u-rounded-corners-top-right-sm { border-top-right-radius: 1.25rem; }
.u-rounded-corners-bottom-left-sm { border-bottom-left-radius: 1.25rem; }
.u-rounded-corners-bottom-right-sm { border-bottom-right-radius: 1.25rem; }

.u-rounded-corners-md { border-radius: 1.5rem; }
.u-rounded-corners-top-md { border-radius: 1.5rem 1.5rem 0 0; }
.u-rounded-corners-bottom-md { border-radius: 0 0 1.5rem 1.5rem; }
.u-rounded-corners-top-left--md { border-top-left-radius: 1.5rem; }
.u-rounded-corners-top-right-md { border-top-right-radius: 1.5rem; }
.u-rounded-corners-bottom-left-md { border-bottom-left-radius: 1.5rem; }
.u-rounded-corners-bottom-right-md { border-bottom-right-radius: 1.5rem; }

.u-rounded-corners-lg { border-radius: 2rem; }
.u-rounded-corners-top-lg { border-radius: 2rem 2rem 0 0; }
.u-rounded-corners-bottom-lg { border-radius: 0 0 2rem 2rem; }
.u-rounded-corners-top-left--lg { border-top-left-radius: 2rem; }
.u-rounded-corners-top-right-lg { border-top-right-radius: 2rem; }
.u-rounded-corners-bottom-left-lg { border-bottom-left-radius: 2rem; }
.u-rounded-corners-bottom-right-lg { border-bottom-right-radius: 2rem; }

/* Tags */

.u-tags {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem; 
}

.u-tag {
  border-style: solid;
  border-width: 1px;
  font-size: 0.875rem;
  margin: 0.25rem;
  padding: 0.125rem 0.75rem;
}

/* Editor Note */

.editor-internal-note {
  border-style: dashed;
  border-width: 0.25rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

/* Scroll Margin Top for Anchor Links */

[data-hs-anchor="true"] {
  scroll-margin-top: calc(92px + 1rem); /* header height */
}