/* Theme base styles */

/* Settings
This is where most settings/variables go.
*/







html {
  --color-dark-purple: #26213E;
  --color-red: #E41F26;
  --color-sage: #6EC49B;
  --color-off-white: #EDF2F4;
  --color-lavender: #9588B7;

  --font-open-sans: "open-sans", sans-serif;
  
  --font-arpona-sans: "arponasans", sans-serif;
  

  --global-font-size: 1.8rem;
  --global-lineheight: 1.6;
  --body-background: white;
  --body-font-color: black;
  --body-font-family: var(--font-open-sans);
  --global-weight-normal: 400;
  --global-weight-bold: 700;
  --global-radius: 0.5rem;

  --container-width: 128rem;
  --container-padding: clamp(2rem,5.8vw,10rem);
}

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

/* Basic hiding classes */
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

/* Screen reader visibility classes */
/* Need a "hide-for-sr" class? Add aria-hidden='true' to the element */
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Only display the element when it's focused */
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Landscape and portrait visibility */
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}


/* Alignment */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

@media print, screen and (min-width:576px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:768px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:992px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:1200px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:1440px) {
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-justify {
    text-align: justify;
  }
}

/* Other */
.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  word-wrap: break-word !important;
}
/* Spacing */

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 2rem !important;
}
.mt-2 {
  margin-top: 4rem !important;
}
.mt-3 {
  margin-top: 6rem !important;
}
.mt-4 {
  margin-top: 8rem !important;
}
.mt-5 {
  margin-top: 10rem !important;
}
.mt-6 {
  margin-top: 12rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 2rem !important;
}
.mb-2 {
  margin-bottom: 4rem !important;
}
.mb-3 {
  margin-bottom: 6rem !important;
}
.mb-4 {
  margin-bottom: 8rem !important;
}
.mb-5 {
  margin-bottom: 10rem !important;
}
.mb-6 {
  margin-bottom: 12rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 2rem !important;
}
.pt-2 {
  padding-top: 4rem !important;
}
.pt-3 {
  padding-top: 6rem !important;
}
.pt-4 {
  padding-top: 8rem !important;
}
.pt-5 {
  padding-top: 10rem !important;
}
.pt-6 {
  padding-top: 12rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 2rem !important;
}
.pb-2 {
  padding-bottom: 4rem !important;
}
.pb-3 {
  padding-bottom: 6rem !important;
}
.pb-4 {
  padding-bottom: 8rem !important;
}
.pb-5 {
  padding-bottom: 10rem !important;
}
.pb-6 {
  padding-bottom: 12rem !important;
}
/* Responsive embed container */
.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.responsive-embed.portrait,
.flex-video.portrait {
  padding-bottom: 177.77%;
}

.responsive-embed.square,
.flex-video.square {
  padding-bottom: 100%;
}


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

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

/* 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;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Set box-sizing globally to handle padding and border widths */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Default body styles */
body {
  margin: 0;
  padding: 0;
  background: var(--body-background);
  font-family: var(--body-font-family);
  font-size: var(--global-font-size);
  font-weight: var(--global-weight-normal);
  line-height: var(--global-lineheight);
  color: var(--body-font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  /* Get rid of gap under images by making them display: inline-block; by default */
  display: inline-block;
  vertical-align: middle;

  /* Grid defaults to get images and embeds to work properly */
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* Make sure textarea takes on height automatically */
textarea {
  height: auto;
  min-height: 5rem;
  border-radius: var(--global-radius);
}

/* Make select elements are 100% width by default */
select {
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--global-radius);
}

/* Styles Google Maps and MapQuest embeds properly */
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

/* Reset <button> styles created by most browsers */
button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: var(--global-radius);
  background: transparent;
  line-height: 1;
  cursor: auto;
}

/* Prevent text overflow on pre */
pre {
  overflow: auto;
}

/* Make reset inherit font-family instead of settings sans-serif */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

/* Internal classes to show/hide elements in JavaScript */
.is-visible {
  display: block !important;
}

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

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

.body-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc( var(--container-width) + var(--container-padding) * 2 );
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.container--fluid {
  max-width: none;
}

@media (min-width: 768px) {
  .container--narrow {
    --container-width: 100rem;
    --container-padding: 10vw;
  }
  .container--very-narrow {
    --container-width: 75rem;
    --container-padding: 20vw;
  }
}


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



/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Paragraphs */
p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Emphasized text */
em,
i {
  font-style: italic;
  line-height: inherit;
}

/* Strong text */
strong,
b {
  font-weight: var(--global-weight-bold);
  line-height: inherit;
}

/* 375px - 1440px */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-arpona-sans);
  margin-top: 0.45em;
  margin-bottom: 0.45em;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1em;

  --min-w: 37.5;
  --max-w: 144;
  --min-fs: 1;
  --max-fs: 6;
  --slope: calc( ( var(--max-fs) - var(--min-fs) ) / ( var(--max-w) - var(--min-w) ) );
  --y-axis-inter: calc( calc( var(--min-w) * -1 ) * var(--slope) + var(--min-fs) );

  font-size: clamp( calc( var(--min-fs) * 1rem ), calc( var(--y-axis-inter) * 1rem ) + calc( var(--slope) * 100vw ) , calc( var(--max-fs) * 1rem ) );
}

p:first-child,
ul:first-child,
ol:first-child,
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

h1, .h1 {
  --min-fs: 4;
  --max-fs: 4.5;
}
h2, .h2 {
  --min-fs: 3.4;
  --max-fs: 3.8;
}
h3, .h3 {
  --min-fs: 3;
  --max-fs: 3;
}
h4, .h4 {
  --min-fs: 2.3;
  --max-fs: 2.6;
}
h5, .h5 {
  --min-fs: 1.8;
  --max-fs: 2.2;
}
h6, .h6 {
  --min-fs: 1.7;
  --max-fs: 1.8;
}


/* Links */
a {
  line-height: inherit;
  color: var(--color-red);
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.2em;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, text-decoration-color 0.15s ease-out;
  cursor: pointer;
  overflow-wrap: break-word;
}

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

a img {
  border: 0;
}

/* Horizontal rule */
hr {
  clear: both;
  height: 0;
  margin: 3.6rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 0.1rem solid var(--color-dark-purple);
  border-left: 0;
}
hr.hr--mini {
  max-width: 10rem;
}

/* Lists */
ul,
ol,
dl {
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style-position: outside;
}

/* List items */
li {
  font-size: inherit;
}

/* Unordered lists */
ul {
  margin-left: 1.2em;
  list-style-type: disc;
}

/* Ordered lists */
ol {
  margin-left: 1.2em;
}

/* Nested unordered/ordered lists */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

/* ul > li::marker {
  color: red;
} */

@media (min-width: 768px) {
  ul.columns-2, 
  ol.columns-2,
  ul.columns-3, 
  ol.columns-3 {
    column-gap: 7rem;
  }
  ul.columns-2, 
  ol.columns-2 {
    column-count: 2;
  }
  ul.columns-3, 
  ol.columns-3 {
    column-count: 3;
  }
}

.list-unstyled {
  margin-left: 0;
  list-style: none;
}


.bg-dark-purple {
  background-color: var(--color-dark-purple);
  color: white;
}
.bg-red {
  background-color: var(--color-red);
  color: white;
}
.bg-sage {
  background-color: var(--color-sage);
  color: black;
}
.bg-off-white {
  background-color: var(--color-off-white);
  color: black;
}
.bg-lavender {
  background-color: var(--color-lavender);
  color: black;
}
.bg-dark-purple a:not(.button),
.bg-red a:not(.button) {
	color: #F3A4A7;
}
.bg-dark-purple a:not(.button):is(:hover, :focus),
.bg-red a:not(.button):is(:hover, :focus) {
	color: #EDF2F4;
}
.button,
.hs-button {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 1.6rem 1.8rem;
  font-family: var(--font-arpona-sans);
  font-size: var(--global-font-size);
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: white;
  background-color: var(--color-red);
  border: none;
  border-radius: var(--global-radius);
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}
.button:not([disabled]):is(:hover, :focus),
.hs-button:is(:hover, :focus) {
  color: white;
  background-color: #B52025;
}

.button--inv,
.hs-button--inv {
  background-color: #fff;
  color: var(--color-red);
}
.button--inv:not([disabled]):is(:hover, :focus),
.hs-button--inv:is(:hover, :focus) {
  color: white;
  background-color: #B52025;
}

.button--expanded {
  width: 100%;
}

.button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}


.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.btn-group--center,
.btn-group.text-center {
	justify-content: center;
}
.btn-group--right,
.btn-group.text-right {
	justify-content: end;
}
[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea,
select {
  display: block;
  width: 100%;
  height: 5rem;
  padding: 0.5rem 1.8rem;
  margin-bottom: 2.4rem;
  border: 0.2rem solid transparent;
  border-radius: var(--global-radius);
  background-color: var(--color-off-white);
  font-family: inherit;
  font-weight: normal;
  line-height: 1.5;
  color: var(--body-font-color);
  transition: border-color 0.25s ease-out;
  appearance: none;
}

[type='file'] {
  margin-bottom: 2.4rem;
}

[type='text']:hover,
[type='text']:focus,
[type='password']:hover,
[type='password']:focus,
[type='date']:hover,
[type='date']:focus,
[type='datetime']:hover,
[type='datetime']:focus,
[type='datetime-local']:hover,
[type='datetime-local']:focus,
[type='month']:hover,
[type='month']:focus,
[type='week']:hover,
[type='week']:focus,
[type='email']:hover,
[type='email']:focus,
[type='number']:hover,
[type='number']:focus,
[type='search']:hover,
[type='search']:focus,
[type='tel']:hover,
[type='tel']:focus,
[type='time']:hover,
[type='time']:focus,
[type='url']:hover,
[type='url']:focus,
[type='color']:hover,
[type='color']:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border-color: rgba(0,0,0,0.1);
}

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-dark-purple);
}

textarea {
  height: auto;
  min-height: 20rem;
  max-width: 100%;
}

select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 3.2rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16.45" height="9.225" viewBox="0 0 16.45 9.225"><path d="M18,27.45a1,1,0,0,1-.707-1.707l6.518-6.518-6.518-6.518a1,1,0,0,1,1.414-1.414l7.225,7.225a1,1,0,0,1,0,1.414l-7.225,7.225A1,1,0,0,1,18,27.45Z" transform="translate(27.45 -17) rotate(90)" fill="%231B363A"/></svg>');
  background-origin: content-box;
  background-position: right -2.2rem center;
  background-repeat: no-repeat;
  background-size: 1.4rem 0.8rem;
}

select[multiple] {
  height: auto;
  background-image: none;
}

label {
  display: block;
  line-height: 1.3em;
  font-weight: 400;
  margin: 0 0 1rem;
}
label:not(.hs-error-msg, .hs-form-radio-display, .hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  font-family: var(--font-arpona-sans);
  font-weight: 500;
  text-transform: uppercase;
}

.hs-form .hs-field-desc {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin: -0.4rem 0 .4rem;
}

/* Inputs List */

.hs-form ul.inputs-list:not(.hs-error-msgs) {
  margin: 0 0 2.4rem 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.hs-form ul.inputs-list:not(.hs-error-msgs) label {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: baseline;
/*   font-size: 1.9rem; */
  column-gap: 1rem;
}

.hs-form ul.inputs-list:not(.hs-error-msgs) li:last-child label {
  margin: 0;
}

.hs-form .hs-form-field ul.inputs-list:not(.hs-error-msgs) span {
  font-weight: 400;
}

/* Error */

.hs-form-required {
  color: #B11A11;
  margin-left: 0.2rem;
}

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

.hs-error-msgs {
  position: relative;
  top: -1rem;
  margin: 0;
  list-style: none;
  color: #B11A11;
}

.hs-error-msg {
  font-size: 1.6rem;
  font-weight: 400;
}

/* Legal */

.legal-consent-container .hs-richtext {
  font-size: 0.9em;
  margin: 0 0 2.4rem;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0 !important;
}

/* Captcha */

.hs_recaptcha {
  margin-bottom: 2rem;
}

/* Success */
.submitted-message {
  border: 0.2rem solid #1D7006;
  border-radius: var(--global-radius);
  padding: 2rem 2rem 2rem 6rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><g transform="translate(-48 -48)"><path d="M60.5,48A12.5,12.5,0,1,1,48,60.5,12.514,12.514,0,0,1,60.5,48Zm0,23.077A10.577,10.577,0,1,0,49.923,60.5,10.589,10.589,0,0,0,60.5,71.077Z" fill="%231D7006"/><path d="M148.423,171.538a.961.961,0,0,1-.715-.318l-3.462-3.846a.962.962,0,1,1,1.429-1.286l2.722,3.024,7.366-8.769a.962.962,0,0,1,1.473,1.237l-8.077,9.615a.962.962,0,0,1-.72.343Z" transform="translate(-90.231 -105.269)" fill="%231D7006"/></g></svg>');
  background-position: 2rem 2.3rem;
  background-repeat: no-repeat;
  background-size: 2.5rem 2.5rem;
  line-height: 1.6;
  min-height: 7.5rem;
}

/* 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 {
  float: none !important;
  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: 576px) {

  .hs-form fieldset.form-columns-2,
  .hs-form fieldset.form-columns-3 {
    display: grid;
    column-gap: 2rem;
  }

  .hs-form fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hs-form fieldset.form-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }

}



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



/* Navigation Skipper */

.skip-to-content {
  position: absolute;
  top: -4.2rem;
  left: 0;
  height: 4rem;
  padding: 1rem;
  color: white !important;
  font-size: 1.6rem;
  line-height: 1em;
  text-decoration: none;
  border-right: 0.1rem solid white;
  border-bottom: 0.1rem solid white;
  border-bottom-right-radius: 0.8rem;
  background-color: #BF1722;
  transition: top 1s ease-in, background-color 0.5s ease-out;
  z-index: 100;
}
.skip-to-content:focus {
  top: 0;
  transition: top 0.1s ease-out, background-color 0.5s ease-out;
}
.skip-to-content:hover {
  background-color: #861018;
}



.site-header {
  width: 100%;
  background-color: var(--color-dark-purple);
  padding: 1.4rem 0 3rem;
  text-align: center;
}

@media (min-width: 992px) {
  .site-header {
    padding: 3.4rem 0 5rem;
  }
}

body:has(.hs_cos_wrapper_type_module:first-child .overlay-header-if-first) .site-header {
  background-color: transparent;
  position: absolute;
  z-index: 100;
  padding-top: 3.8rem;
}
@media (min-width: 992px) {
  body:has(.hs_cos_wrapper_type_module:first-child .overlay-header-if-first) .site-header {
    padding-top: 5.8rem;
  }
}


div.hs-tools-menu {
  top: -3px !important;
  min-height: 30px !important;
}

div.hs-tools-menu.hs-collapsed img.hs-sprocket {
  width: 24px !important;
  right: 3px !important;
}
.lp-site-header {
  background-color: var(--c-athens-gray);
  text-align: center;
  padding: 2rem 0;
}

.lp-site-header__logo {
  display: inline-block;
}

@media (max-width: 991px) {
  .lp-site-header__logo {
    max-width: 13rem;
  }
}
@media (min-width: 992px) {
  .lp-site-header {
    padding: 4.5rem 0;
  }
}
.site-footer {
  background-color: var(--color-off-white);
  padding: 2rem 0;
  font-family: var(--font-arpona-sans);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0.7rem;
  line-height: 1.3;
}
.site-footer__legal-copy::after {
  content: '.';
  margin-left: 0.7rem;
}
.site-footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.4rem;
}
.site-footer__legal-nav a {
  text-decoration-color: transparent;
  color: var(--body-font-color);
}
.site-footer__legal-nav a:is(:hover, :focus) {
  text-decoration-color: inherit;
}

.column-helper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000000;
  pointer-events: none;
}
.column-helper .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
/*   gap: 0.2rem; */
}
.column-helper .container div {
  background-color: rgba(0,0,0,0.05);
  border-width: 0 0.1rem;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
}
.column-helper .container div:nth-child(2),
.column-helper .container div:nth-child(9) {
  background-color: rgba(0,0,0,0.15);
}
.column-helper .container div:nth-child(3),
.column-helper .container div:nth-child(4),
.column-helper .container div:nth-child(5),
.column-helper .container div:nth-child(6),
.column-helper .container div:nth-child(7),
.column-helper .container div:nth-child(8) {
  background-color: rgba(0,0,0,0.25);
}
/**Styling scrollable elements*/

.vveani {
	opacity: 0;
	transition: opacity 500ms;
  }

  .vveani.scrolled {
	opacity: 1;
  }

  .scrolled.fade-in {
	animation: fade-in 1s ease-in-out both;
  }

  .scrolled.fade-in-bottom {
	animation: fade-in-bottom 1s ease-in-out both;
  }

  .scrolled.slide-left {
	animation: slide-in-left 1s ease-in-out both;
  }

  .scrolled.slide-right {
	animation: slide-in-right 1s ease-in-out both;
  }

.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

  /* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
  @media (prefers-reduced-motion) {
	  .vveani {
		opacity: 1 !important;
	  }
	  .scrolled {
		animation: none !important;
	  }
	}

  /* ----------------------------------------------
   * Generated by Animista on 2021-2-11 23:32:31
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info.
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

  @keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-100px);
	  transform: translateX(-100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes slide-in-right {
	0% {
	  -webkit-transform: translateX(100px);
	  transform: translateX(100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in-bottom {
	0% {
	  -webkit-transform: translateY(50px);
	  transform: translateY(50px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
@-webkit-keyframes cosmo-slide-in-top {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
  }

  /* @media (max-width: 768px) {
	  .vveani { opacity: 1 !important; }
  } */

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

/* Index */

.blog-header {
  display: flex;
  margin: 6rem 0 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .blog-header {
    margin: 8rem 0 3rem;
  }
}
@media (min-width: 992px) {
  .blog-header {
    margin: 10rem 0 4rem;
  }
}
.blog-header.has-heading {
  flex-direction: column;
}
.blog-header h2 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .blog-header {
    justify-content: center;
  }
  .blog-header.has-heading {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 3.6rem;
  }
}
select.blog-topic-select {
  width: 20rem;
  height: auto;
  background-color: transparent;
  border: none;
  position: relative;
  border-bottom: 0.2rem solid var(--c-burnt-sienna);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10"><path d="M6,0l6,10H0Z" transform="translate(12 10) rotate(180)" fill="%23e8645e"/></svg>');
  background-size: 1.2rem 1rem;
  background-position: right -2rem center;
  padding: 0.2rem 2rem 0.2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
select.blog-topic-select option {
  text-transform: none;
}



/* Blog Listing */

.blog-listing {
  display: grid;
  gap: 6rem 4rem;
  margin-bottom: 9rem;
  margin-top: 8rem;
}
.blog-header + .blog-listing {
  margin-top: 0;
}
@media (min-width: 768px) {
  .blog-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .blog-listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-listing__post-image {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 75%;
  background-color: var(--c-merino);
  margin-bottom: 3rem;
}
.blog-listing__post-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-listing__post-meta {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .blog-listing__post-meta {
    font-size: 1.6rem;
  }
}
.blog-listing__post-title {
  margin: 1.5rem 0;
}
.blog-listing__post-title a {
  text-decoration: none;
  color: var(--c-te-papa-green);
}
.blog-listing__post-title a:hover,
.blog-listing__post-title a:focus {
  color: var(--c-burnt-sienna);
}
.blog-listing__post-summary {
  margin: 1.5rem 0 0;
}



/* Pagination */

.blog-pagination {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.5em;
  margin: 9rem 0;
}

.blog-pagination__link {
  color: var(--c-te-papa-green);
  text-decoration: none !important;
}

.blog-pagination__numbers {
  display: flex;
  justify-content: center;
}

.blog-pagination__number-link {
  border-radius: 100%;
  border: 0.2rem solid var(--c-azalea);
  background-color: transparent;
  width: 4rem;
  height: 4rem;
  line-height: 3.4rem;
  text-align: center;
  margin: 0 0.5rem;
  transition: border-color 0.15s ease-out;
}

.blog-pagination__number-link:not(.blog-pagination__link--active):hover,
.blog-pagination__number-link:not(.blog-pagination__link--active):focus {
  border-color: var(--c-burnt-sienna);
  color: var(--c-te-papa-green);
}

.blog-pagination__link--active {
  border-color: var(--c-burnt-sienna);
  background-color: var(--c-burnt-sienna);
  color: white !important;
  cursor: initial;
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  margin: 0 2rem;
  text-transform: uppercase;
}

.blog-pagination__link-text {
  line-height: 1em;
}

.blog-pagination__prev-link svg {
  margin-right: 0.8rem;
}

.blog-pagination__next-link svg {
  margin-left: 0.8rem;
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  opacity: 0.25;
  cursor: initial;
}

@media (max-width: 575px) {
  .blog-pagination__prev-link {
    order: 1;
  }
  .blog-pagination__next-link {
    order: 2;
  }
  .blog-pagination__numbers {
    order: 3;
    flex-basis: 100%;
    margin-top: 2rem;
  }
}



/* Post Hero (Blog and Podcast Single Page) */

.post-hero {
  position: relative;
  padding: 3.5rem 0 7rem;
  line-height: 1;
  overflow: hidden;
}
.post-hero::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-swans-down);
  opacity: 0.24;
  z-index: 0;
}
.post-hero__inner {
  position: relative;
  z-index: 1;
}
.post-hero__back {
  margin: 0 0 2.5rem;
  line-height: 1.2;
}
.post-hero__back a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--c-te-papa-green);
}
.post-hero__back a span {
  margin-left: 0.8rem;
  transition: color 0.15s ease-out;
}
.post-hero__back a:hover span,
.post-hero__back a:focus span {
  color: var(--c-burnt-sienna);
}
.post-hero__content {
  text-align: center;
}
.post-hero__content :last-child {
  margin-bottom: 0;
}
.post-hero__divider {
  width: 9.8rem;
  height: 0.1rem;
  background-color: var(--c-lochinvar);
  margin: 3rem auto;
}
.post-hero__podcast-name {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
}
.post-hero__podcast-episode {
  color: var(--c-te-papa-green);
  margin: 2.5rem 0;
}
.post-hero__name {
  margin: 2.5rem 0;
}
.post-hero__meta {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.post-hero__meta-divider {
  margin: 0 1rem;
}
.post-hero__accent {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  /* https://codepen.io/sosuke/pen/Pjoqqp */
  filter: invert(44%) sepia(59%) saturate(423%) hue-rotate(123deg) brightness(97%) contrast(91%);
  max-width: 50vw;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}
.post-hero__accent--top {
  top: 0;
  transform: translateY(-40%);
}
.post-hero__accent--bottom {
  bottom: 0;
  transform: translateY(58%);
}



/* Post Single */

.blog-post__main-container {
  margin-bottom: 6rem;
}
.blog-post__main {
  margin-top: 5rem;
}
.blog-post__aside {
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  .blog-post__main-container {
    display: grid;
    grid-template-columns: repeat(10,1fr);
    margin-bottom: 10rem;
  }
  .blog-post__main {
    grid-column: 1 / span 6;
  }
  .blog-post__aside {
    grid-column: 8 / span 3;
  }
}

.blog-post__featured-image {
  margin: -5rem 0 5rem;
}

.blog-post__author {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.blog-post__author-image {
  flex: 0 0 8rem;
  border-radius: 50%;
}
.blog-post__author-name {
  flex: 1 1 auto;
}

.blog-post__tags {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 0.1rem solid var(--c-lochinvar);
}
.blog-post__tags-heading {
  margin: 0 0 2rem;
}
.blog-post__tags-list {
  color: var(--c-burnt-sienna);
  text-transform: uppercase;
  line-height: 1.3em;
  font-weight: 700;
}
.blog-post__tags-list a {
  color: var(--c-burnt-sienna);
  text-decoration: none;
}
.blog-post__tags-list a:hover,
.blog-post__tags-list a:focus {
 color: var(--c-te-papa-green);
}



/* Related Posts */

.related-posts {
  padding: 8rem 0 11rem;
}
.related-posts .blog-listing {
  margin: 5rem 0 0;
}
@media (min-width: 1200px) {
  .related-posts .blog-listing__post:nth-child(4) {
    display: none;
  }
}



/* Post Sharing */

.blog-post__sharing {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 2.2rem;
  margin: 2rem 0; 
}
.blog-post__sharing-label {
  color: var(--c-burnt-sienna);
  font-weight: 700;
  text-transform: uppercase;
}
.blog-post__sharing-links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1.6rem;
}
.blog-post__sharing a {
  text-decoration: none !important;
  color: var(--c-burnt-sienna);
  background-color: var(--c-burnt-sienna);
  border-radius: 50%;
  border: 0.3rem solid var(--c-burnt-sienna);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-post__sharing a:before {
  background-color: white;
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.15s ease-out;
  width: 100%;
  z-index: -1;
}
.blog-post__sharing a:hover,
.blog-post__sharing a:focus {
  color: white;
}
.blog-post__sharing a:focus:before,
.blog-post__sharing a:hover:before {
  transform: translate(-200%,-100%) scale(3);
}
@media (max-width: 991px) {
  .blog-post__aside .blog-post__sharing {
    display: none;
  }
}



/* Comments */

.blog-comments {
  margin-top: 6rem; 
  margin-bottom: 9rem;
}
@media (min-width: 992px) {
  .blog-comments {
    margin-top: 9rem;
  }
}

.new-comments {
  margin-bottom: 6rem;
  border-bottom: 0.1rem solid var(--c-lochinvar);
}

.comment {
  border-top: 0.1rem solid var(--c-lochinvar);
  padding: 3.5rem 0;
  margin: 0;
}

.comment:not(.depth-0) + .comment.depth-0 {
  margin-top: 2rem;
}

.comment:not(.depth-0) {
  border-color: #ccc;
}

.comment.depth-1 { margin-left:6%; }
.comment.depth-2 { margin-left:12%; }
.comment.depth-3 { margin-left:18%; }
.comment.depth-4 { margin-left:24%; }
.comment.depth-5 { margin-left:30%; }
.comment.depth-6 { margin-left:36%; }
.comment.depth-7 { margin-left:42%; }
.comment.depth-8 { margin-left:48%; }
.comment.depth-9 { margin-left:54%; }

.comment-date,
.comment-from {
  display: inline-block;
}

.comment-from h4 {
  font-size: var(--body-font-size);
  font-weight: 700;
  letter-spacing: normal;
  margin: 0 1rem 0 0;
}

.comment-from h4 a {
  color: var(--body-font-color);
}

.comment-from h4 a:after {
  content: '';
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="external-link-alt" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-external-link-alt fa-w-16"><path fill="rgb%28102, 102, 102%29" d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z" class=""></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  display:inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5rem;
}

.comment-date {
  font-size: 0.8em;
  color: #666;
}

.comment-body {
  margin-top: 1rem;
}

.comment-body p:last-child {
  margin-bottom: 1em;
}

.comment-reply-to {
  background: none;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3em;
  font-style: italic;
  text-transform: none;
  padding: 0;
  border: none;
  border-radius: 0;
  letter-spacing: initial;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.11em;
  color: var(--body-font-color);
  opacity: 0.5;
  transition: all 0.15s ease-out;
}

.comment-reply-to:before {
  content: '';
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="reply" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-reply fa-w-16"><path fill="currentColor" d="M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" class=""></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  display:inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.7rem;
}

.comment-reply-to:hover,
.comment-reply-to:focus {
  color: inherit;
  text-decoration-color: inherit;
  opacity: 1;
}

.replying {
  padding-left: 2em;
  padding-bottom: 3.5rem;
}

.replying-to {
  display: block;
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 700;
}

.hs-common-confirm-message{background-color:#cde3cc!important;border:1px solid #360!important;color:#360!important;font-size:15px!important;border-radius:3px!important;padding:8px!important;margin:8px 0!important;}