/* Theme base styles */

:root {

	/* Spacing */

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

	/* Colors */

	--base-color: #182438;
	--primary-color: #186ee5;
	--secondary-color: #222;
	--tertiary-color: #e5e4d9;

  --blue: #186EE5;
  --dark-blue: #114DA0;
	--black: #000;
	--dark-gray: #424242;
	--light-gray: #e8f1fc; /* Form borders, table borders, table header, table footer */
	--medium-gray: #9e9e9e; /* Form placeholders, dividers */
	--white: #fff;

	/* Typography */

	--base-font-size: 2.1rem;
	--base-line-height: 1.33;
	--primary-font-family: 'proxima-nova', sans-serif;
	--secondary-font-family: 'gelica', serif;

}

/* Generic */

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*! 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;
}

/* Objects */

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

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

.clearfix:after {
  clear: both;
}

/* 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;
  }
}
.content-wrapper,
.page-center {
  max-width: var(--container-width);
  margin: 0 auto;
}

.page-center.row-fluid,
.row-fluid .page-center[class*=span]{
  margin: 0 auto !important;
  float: unset !important;
}

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

section,
body:not(.standard-padding) .dnd-section,
.content-wrapper--vertical-spacing {
  padding: calc(var(--vertical-spacing) / 2) 2rem;
}
@media (min-width: 992px) {
  section,
  body:not(.standard-padding) .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

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

/* Elements */

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-regularit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-regularit-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-thinit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-thinit-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-regular-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-regular-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-regular-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-lightit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-lightit-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-boldit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-boldit-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-extrabold-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-extrabold-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;

}

@font-face {
  font-family: 'gelica-bold';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-bold-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-bold-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-mediumitalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-mediumitalic-webfont.woff') format('woff');
  font-weight: 600;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-black-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-medium-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-medium-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-bold-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-medium-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-medium-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-blackit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-blackit-webfont.woff') format('woff');
  font-weight: 900;
  font-style: italic;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-bolditalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-extralightitalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-extralightitalic-webfont.woff') format('woff');
  font-weight: 100;
  font-style: italic;

}


@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-light-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;

}


@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-blackitalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-blackitalic-webfont.woff') format('woff');
  font-weight: 900;
  font-style: italic;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-mediumit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-mediumit-webfont.woff') format('woff');
  font-weight: 600;
  font-style: italic;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-light-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;

}

@font-face {
  font-family: 'proxima-nova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-extraboldit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-extraboldit-webfont.woff') format('woff');
  font-weight: 800;
  font-style: italic;

}

@font-face {
  font-family: 'proximanova-semibold';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-semiboldit-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-semiboldit-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;

}

@font-face {
  font-family: 'gelica-semibold';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-semibolditalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-semibolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-extralight-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-extralight-webfont.woff') format('woff');
  font-weight: 100;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-black-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;

}

@font-face {
  font-family: 'gelica-semibold';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-semibold-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proximanova-semibold';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-semibold-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-italic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;

}

@font-face {
  font-family: 'proximanova';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-thin-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/proximanova-thin-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;

}

@font-face {
  font-family: 'gelica';
  src: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-lightitalic-webfont.woff2') format('woff2'),
    url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/fonts/gelica-lightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;

}

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, .body-container {
  color: var(--base-color) !important;
  font-family: var(--primary-font-family) !important;
  font-size: var(--base-font-size) !important;
  line-height: var(--base-line-height) !important;
  word-break: break-word;  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchors */

a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:not(.button) {
  color: var(--primary-color);
}

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

a:active {
  color: var(--primary-color); /* TBD */
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

/* Headings */

body h1,
body .h1,
body h2,
body .h2,
body h3,
body .h3,
body h4,
body .h4,
body h5,
body .h5,
body h6,
body .h6 {
  margin: 0 0 2rem;
  font-family: var(--secondary-font-family) !important;
  font-weight:600;
  line-height: 1.2;
  letter-spacing: 0.25px;
  color: var(--dark-blue);
}

h1,
.h1 {
  font-size: 3.6rem !important;
  font-weight: 500;
  line-height: 1;
}

h2,
.h2 {
  font-size: 3.2rem !important;
}
h3,
.h3 {
  font-size: 2.6rem !important;
}
h4,
.h4 {
  font-size: 2rem !important;
}
h5,
.h5 {
  font-size: 1.8rem !important;
}
h6,
.h6 {
  font-size: 1.6rem !important;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 6rem !important;
  }
  h1~p {
    font-size: 21px !important;
  }
  h2,
  .h2 {
    font-size: 4.4rem !important;
  }
  h3,
  .h3 {
    font-size: 3.2rem !important;
  }
}

@media (max-width: 550px) {
  h1,
  .h1 {
    font-size: 3rem !important;
  }

  h2,
  .h2 {
    font-size: 2.6rem !important;
  }

  h3,
  .h3 {
    font-size: 2.2rem !important;
  }
}


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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 6px solid var(--secondary-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;
}

/* there is non-standard scaling on the base font size thus rems, etc. need to be avoided */
@media (max-width: 1147.5px) {
  body, .body-container {
    font-size: 21px!important;
  }
}

@media (max-width: 768px) {
  body, .body-container {
    font-size: 18px!important;
  }
}

@media (max-width: 576px) {
  body, .body-container {
    font-size: 16px!important;
  }
}
.button,
#main-content input[type="submit"],
#main-content .hs-button.primary {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  line-height: 1;
  border-radius: 28px;
  white-space: normal;
  
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* Primary */

.button--primary,
#main-content input[type="submit"],
#main-content .hs-button.primary  {
  background-color: var(--blue);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button--primary:hover,
.button--primary:focus,
#main-content input[type="submit"]:hover,
#main-content .hs-button.primary:hover,
#main-content input[type="submit"]:focus,
#main-content .hs-button.primary:focus {
  color: var(--white);
}

.button--primary:active {
  background-color: var(--primary-color); /* TBD */
  color: var(--white);
}

/* Secondary */

.button--secondary {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}

.button--secondary:hover,
.button--secondary:focus {
  background-color: #fff;
  color: var(--blue);
}

.button--secondary:active {
  background-color: var(--secondary-color); /* TBD */
  color: var(--white);
}

/* Tertiary */

.button--tertiary {
  background-color: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.button--tertiary:hover,
.button--tertiary:focus,
.button--tertiary:active {
  background-color: var(--blue);
  color: #fff;
}

/* Icon */

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

/* Full */

.button--full {
  display: block;
  width: 100%;
}

/* Large */

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

form label {
  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%;
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('https://4523782.fs1.hubspotusercontent-na1.net/hubfs/4523782/raw_assets/public/SmartStart/images/select-arrow.svg');
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid var(--light-gray);
}

form textarea {
  min-height: 15rem;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border: 1px solid var(--light-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 */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

.fn-date-picker .pika-table thead th {
  color: #fff;
}

.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"] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1rem;
  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 {
  margin-left: 1rem !important;
}

/* 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 1rem 0;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
}

/* Submit button */

form input[type="submit"],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  line-height: inherit;
  white-space: normal;
  text-shadow: unset !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

form input[type="submit"]:active,
form .hs-button:active {
  color: var(--white);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* 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"]),
.hs-form
  fieldset.form-columns-2
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]),
.hs-form
  fieldset.form-columns-3
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]) {
  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);
}

/* Components */

.header {
	position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header__container {
	padding: 2rem;
}

.header__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: space-between;
}


header.header:not(.custom-lp-header) .header__container {
  padding: 1.65rem 0;
}

header.header:not(.custom-lp-header) .content-wrapper,
.swing-footer .content-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8.8%;
  position: relative;
}

@media (max-width: 991px) {
  header.header:not(.custom-lp-header) .header__container {
    padding: 1.4rem 0;
  }
}

.body-container {
  padding: 0 !important;
}

/* Logo */

.custom-logo {
  padding-left: var(--gap);
}

.header__logo a {
  display: block;
  font-size: 0;
}
.base-lp .custom-logo a {
  margin: 12px 0;
}
.header__logo img { 
  height: 2.5rem;
  width: auto !important;
}

@media (min-width: 992px) {
  .header__logo img {
    height: 3.4rem;
    width: auto!important;
  }
}

/* Buttons */

.header .button {
  padding: 10px 26px;
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 1501px) {
  .header .button {
    padding: 15px 31px;
    font-size: 18px;
  }
}

@media (min-width: 1601px) {
  .header .button {
    padding: 16px 36px;
    font-size: 21px;
  }
}

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

.child-trigger i:after,
.mobile-trigger:after,
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
  font-family: 'FontAwesome' !important;
}

@media (max-width: 959px) {
  .custom-logo a {
    margin-left: 10px;
    margin-top: 20px !important;
  }
}
.footer {
  padding: 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
}

.swing-footer {
  border-bottom: 9px solid #114da0;
  padding: 84px 0 78px;
}

.footer__copyright {
  font-size: 15.75px;
}

.footer__copyright a {
  color: var(--base-color);
}

.footer__logo img {
    width: 200px !important;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swing-footer .social-links__icon {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.swing-footer .social-links__icon img {
    width: 36px !important;
    height: 36px !important;
}

.footer__social.mobile .social-links {
  text-align: left;
  margin: 1rem 0;
}

.footer__social.mobile .social-links__icon:first-child {
  padding-left: 0;
}

.footer__nav-wrapper {
    margin: 8rem 0;
    border: 1px solid;
    border-left: 0;
    border-right: 0;
    padding: 8rem 0;
}

.footer__nav-wrapper ul:not(.hs-menu-children-wrapper) {
    display: flex !important;
    justify-content: start;
}

.footer__nav-wrapper .hs-menu-depth-1 {
  width: 25%;
  text-align: left;
}

.footer__nav-wrapper .hs-menu-children-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  position: relative !important;
  left: unset !important;
  transform: unset !important;
}

.footer__nav-wrapper .hs-menu-depth-1 > a {
  font-size: 21px;
  font-weight: bold;
  color: var(--base-color) !important;
  pointer-events: none;
  margin-bottom: 0.75rem;
}

.footer__nav-wrapper .hs-menu-depth-2 > a {
  font-size: 18px;
  color: var(--base-color);
  line-height: 2;
}

.footer__nav-wrapper .hs-menu-depth-2 > a:hover,
.footer__nav-wrapper .hs-menu-depth-2 > a:focus {
  color: var(--blue);
  font-weight: 600;
}

.footer__copywright a {
  color: var(--base-color);
}


.footer__copywright a:hover,
.footer__copywright a:focus {
  color: var(--blue);
}

.mobile {
  display: none;
}

@media (max-width: 1400px) {
  
}

@media (max-width: 1300px) {
  .footer__nav-wrapper .hs-menu-depth-1 > a {
    font-size: 18px;
  }
  
  .footer__nav-wrapper .hs-menu-depth-1 > a {
    font-size: 15.75px;
  }
}

@media (max-width: 1100px) {
  .footer__nav-wrapper .hs-menu-depth-1 > a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  
  .mobile {
    display: block;
  }
  
  .footer__nav-wrapper {
    padding: 4rem 0;
    margin: 4rem 0;
  }
  
  .footer__nav-wrapper ul:not(.hs-menu-children-wrapper) {
    flex-wrap: wrap;
    gap: 2rem 0;
  }
  
  .footer__nav-wrapper .hs-menu-depth-1 {
    width: 50%;
  }
}

@media (max-width: 650px) {
  .footer__nav-wrapper ul:not(.hs-menu-children-wrapper) {
    flex-direction: column;
  }
  
  .footer__nav-wrapper {
    padding: 3rem 0;
    margin: 2rem 0;
  }
}

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

/* 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%;
}
/*======================================
Selectric v1.11.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  width: 100%;
  text-align: left;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid ;
  background: #fff;
  position: relative;
  border-radius: 6px;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 63px 0 25px;
  font-size: 16px;
  line-height: 50px;
  color: ;
  height: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric .selectArrow {
  display: block;
  position: absolute;
  right: 0;
  top: 10px;
  width: 40px;
  height: 30px;
  color: ;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
  border-left: 1px solid #b9c1c8;
}

.selectric .selectArrow:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: ;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .selectArrow {
  color: #a2a2a2;
}

.selectric-hover .selectric .selectArrow:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
  width: 100% !important;
}

.selectric-disabled {
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid ;
  z-index: -1;
}

.selectric-items .selectric-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, 
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  min-height: 20px;
  text-align: left;
  width: 100%;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: ;
  cursor: pointer;
}

.selectric-items li.selected {
  background: lightgrey;
  color: #444;
}

.selectric-items li.highlighted {
  background: lightgrey;
}

.selectric-items li:hover {
  background: lightgrey;
}

.selectric-items .disabled {
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

.selectric .button {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  padding: 0;
    color: #333;
    background: transparent;
}

.selectric-open .selectric .button {
    transform: rotate(180deg) translateY(50%);
}