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

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

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

/* 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;
}
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 4 */
}

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

body {
  margin: 0; /* 1 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-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.
*/

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: theme('colors.gray.400', #9ca3af); /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

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



/* CSS variables */

:root {
  --column-gap: 0%;
  --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: 1024px) {
  .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;
}

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

.dnd-section .dnd-column {
  padding: 0 var(--spacing--xs);
}

@media (max-width: 1023px) {
  .dnd-section .dnd-column + .dnd-column {
    margin-top: var(--spacing--lg);
  }
}

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

/* Buttons */

.button::after {
    -webkit-mask: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-up-right.svg)
        no-repeat 50% 50%;
    mask: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-up-right.svg)
        no-repeat 50% 50%;
}

.button.back::after {
    -webkit-mask: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-up-left.svg)
        no-repeat 50% 50%;
    mask: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-up-left.svg)
        no-repeat 50% 50%;
}

/* Header */

.dropdown-link::after {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-dropdown.svg);
}

/* Footer */

.footer-bottom::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/footer-vector.svg);
}

/* Backgrounds */

.curve-gray-bottom-right::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/grey-curve-bottom-right.svg);
}

.curve-gray-top-left::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/grey-curve-top-left.svg);
}

.curve-blue-bottom-right::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/blue-curve-bottom-right.svg);
}

.curve-blue-top-left::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/blue-curve-top-left.svg);
}

.curve-green-top-left::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/green-curve-top-left.svg);
}

.curve-blue-double::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/blue-curve-top-left.svg),
        url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/blue-curve-bottom-right.svg);
}

.curve-gray-double::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/grey-curve-top-left.svg),
        url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/grey-curve-bottom-right.svg);
}

/* Blog */

.blog-listing.sm .blog-card:nth-of-type(4n + 1),
.blog-listing.md .blog-card:nth-of-type(3),
.blog-listing.lg .blog-card:nth-of-type(2),
.blog-listing.lg .blog-card:nth-of-type(4n + 4) {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/news-bg-gray.png);
}

.blog-listing.sm .blog-card:nth-of-type(4n + 3),
.blog-listing.lg .blog-card:nth-of-type(4n + 6) {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/news-bg-navy.png);
}

.blog-post blockquote::before {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/quote-right.svg);
}

.choose-your-charity {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/choose-your-charity-cta.jpg);
}

/**
 * Blog Grid
 */
.blog-listing-grid .blog-card:nth-of-type(10n + 3),
.blog-listing-grid .blog-card:nth-of-type(10n + 13) {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/news-bg-gray.png);
}

.blog-listing-grid .blog-card:nth-of-type(10n + 6),
.blog-listing-grid .blog-card:nth-of-type(10n + 11) {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/news-bg-green.png);
}

/* Partnership Banner */

.partnership-banner {
    background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/backgrounds/partnership-banner-bg-grey.png);
}
/* 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.5;
  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;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Lists */

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Text colour */

.text-white p a {
  color: var(--color--white);
}

.text-dark-gray p a {
  color: var(--color--dark-gray);
}
/* 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 {
  margin-bottom: 1rem;
}

/* Labels */

form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--font-size--xs);
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=date],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  border: 1px solid var(--color--mid-gray);
  border-radius: 0.375rem;
  color: var(--color--black);
  font-size: var(--font-size--sm);
}

form select,
.df-main select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.75rem;
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-image: url(//139637817.fs1.hubspotusercontent-eu1.net/hubfs/139637817/raw_assets/public/realbuzz/images/icons/arrow-dropdown.svg);
}

form textarea {
  resize: vertical;
}

fieldset.form-columns-1 .input {
  margin-right: 0 !important;
}

fieldset.form-columns-1 .input > .hs-input {
  width: 100% !important;
}

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

form fieldset.form-columns-2,
form fieldset.form-columns-3 {
  display: flex;
  flex-wrap: wrap;
}

form fieldset.form-columns-2 .hs-form-field,
form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
  float: none !important;
}

form fieldset.form-columns-2 .hs-form-field .input,
form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: auto !important;
}

@media (min-width: 1024px) {
  form fieldset.form-columns-2,
  form fieldset.form-columns-3 {
    flex-wrap: nowrap;
    gap: var(--spacing--xs);
  }
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  form fieldset.form-columns-2 .hs-form-field .hs-input,
  form fieldset.form-columns-3 .hs-form-field .hs-input {
    width: 100% !important;
  }
}

/* Inputs - checkbox/radio */

form .inputs-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing--xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

form input[type="radio"],
form input[type="checkbox"],
.df-main .hs-form.stacked input[type=radio].hs-input,
.df-main .hs-form.stacked input[type=checkbox].hs-input {
  box-sizing: border-box;
  margin: 0 0.5rem 0 0 !important;
  padding: 0;
  border: 1px solid var(--color--mid-gray);
  appearance: none;
  background-color: transparent;
  outline: none;
  transition: outline 0.1s;
  cursor: pointer;
}

form input[type="radio"],
.df-main .hs-form.stacked input[type=radio].hs-input {
  flex: none;
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
}

form input[type="checkbox"],
.df-main .hs-form.stacked input[type=checkbox].hs-input {
  flex: none;
  width: 30px !important;
  height: 30px;
  border-radius: .375rem;
}

form input[type="radio"]:checked,
form input[type="checkbox"]:checked,
.df-main .hs-form.stacked input[type=radio].hs-input:checked,
.df-main .hs-form.stacked input[type=checkbox].hs-input:checked {
  background-clip: content-box;
  padding: 6px;
  background-image: radial-gradient(
    circle,
    var(--color--green) 0%,
    var(--color--green) 50%,
    transparent 60%,
    transparent 100%
  );
}

form input[type="radio"]:focus,
form input[type="checkbox"]:focus,
.df-main .hs-form.stacked input[type=radio].hs-input:focus,
.df-main .hs-form.stacked input[type=checkbox].hs-input:focus {
  outline: 3px auto Highlight;
  outline: 3px auto -webkit-focus-ring-color;
}

.hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
}

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

.hs-dateinput input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form p a {
  text-decoration: underline;
}

form .hs-richtext,
form .hs-richtext p {
  margin-bottom: var(--spacing--xxs);
  font-size: var(--font-size--xs);
}

form .hs-richtext a {
  text-decoration: underline;
}

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

form .legal-consent-container .hs-richtext,
form .legal-consent-container .hs-richtext p {
  font-size: var(--font-size--xxs);
}

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: #E34421;
}

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

.hs-error-msg {
  color: #E34421;
  margin-top: 0.35rem;
}

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }


/* Sign Up Form */

.sign-up-form .hs-form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 1rem;
  margin-top: 21px;
}

.sign-up-form .hs-form .hs-form-field {
  position: relative;
  flex-grow: 1;
  margin: 0;
}

.sign-up-form .hs-form .hs-form-field > label {
  position: absolute;
  bottom: 100%;
  left: 0;
}

.sign-up-form .hs-form .hs-form-field input {
  border-color: var(--color--dark-gray);
}

.sign-up-form .hs-form .legal-consent-container
{
  flex-basis: 100%;
  order: 9999;
}

.sign-up-form .hs-form .hs_error_rollup {
  display: none;
}

.sign-up-form .hs-form .hs-submit {
  flex-shrink: 0;
}

.sign-up-form .hs-form .hs-submit input[type=submit] {
  padding: 0;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIyMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEzLjY2NyA0LjMzM2MuNTU0IDAgMSAuNDQ2IDEgMXYxMGMwIC41NTQtLjQ0NiAxLTEgMS0uNTU1IDAtMS0uNDQ2LTEtMVY3Ljc0NmwtOS42MjUgOS42MjlhMSAxIDAgMCAxLTEuNDEzLTEuNDEybDkuNjI1LTkuNjI2SDMuNjY3Yy0uNTU1IDAtMS0uNDQ1LTEtMSAwLS41NTQuNDQ1LTEgMS0xaDEwdi0uMDA0WiIvPjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 21px;
  font-size: 0;
  line-height: 0;
}

/* Deposit Fix */

#df-initial-loader-wrapper {
  max-width: 100%; 
}

.df-main {
  padding: 0;
  max-width: 100%;
  background: transparent;
  color: var(--color--black);
}

.df-main::after {
  content: '';
  display: block;
  clear: both;
}

.df-main .field.hs-form-field {
  margin: 0 0 0.5rem;
}

.df-main select.hs-input {
  width: 100%;
}

.df-main .hs-form.stacked label {
  margin-bottom: 0.25rem;
  font-size: var(--font-size--xs);
  line-height: inherit;
  font-weight: normal;
}

.df-main .hs-form.stacked input.hs-input, 
.df-main .hs-form.stacked select.hs-input,
.df-main .hs-form.stacked textarea.hs-input {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color--dark-gray);
  border-radius: 0.375rem;
  color: var(--color--black);
  font-size: var(--font-size--sm);
  line-height: inherit;
  font-weight: normal;
}

.df-main .hs-form.stacked select.hs-input,
.df-main .hs-form.stacked textarea.hs-input {
  width: 100% !important;
}

.df-main .hs-form.stacked input[type=radio].hs-input,
.df-main .hs-form.stacked input[type=checkbox].hs-input {
  border-color: var(--color--dark-gray);
}

.df-main .hs-fieldtype-radio .hs-form-radio-display, 
.df-main .hs-form-booleancheckbox-display, 
.df-main .hs-form-checkbox-display {
  align-items: center;
  padding: 0;
  color: var(--color--black);
  font-size: var(--font-size--xs) !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.df-main .df-product-radio-btn-group, 
.df-main .df-subscription-radio-btn-group {
  padding: 1rem;
  border: 1px solid var(--color--dark-gray);
  border-radius: 0.375rem;
  background-color: var(--color--white);
  color: var(--color--black);
  font-size: var(--font-size--sm);
  line-height: inherit;
  font-weight: normal;
}

.df-main .df-product-radio-btn-group:hover, 
.df-main .df-subscription-radio-btn-group:hover {
  border-width: 1px;
}

.df-main .df-product-radio-btn-group label, 
.df-main .df-subscription-radio-btn-group label {
  color: var(--color--dark-gray);
}

.df-main .df-product-radio-btn-group input[type=radio], 
.df-main .df-subscription-radio-btn-group input[type=radio]
{
  width: 30px !important;
  height: 30px !important;
  border-width: 1px;
  border-color: var(--color--dark-gray);
}

.df-main #df-apply-discount-btn {
  margin-top: 0;
  margin-bottom: 0;
  min-height: auto;
  max-height: none;
  border: 1px solid var(--color--navy);
  border-radius: 0.375rem;
  color: var(--color--navy);
  font-size: var(--font-size--sm);
  text-transform: uppercase;
}

.df-main .seals img {
  margin: 0 auto;
}

.df-main .df-f-step-btn {
  width: 48%;
  height: auto;
}

.df-main .df-f-step-btn::after {
  display: none !important;
}

.df-main .df-f-step-btn.df-f-step-back-btn {
  margin-top: 25px;
  background-color: transparent;
  border-color: var(--color--black);
  color: var(--color--black);
}

.df-main .df-f-step-btn.df-f-step-forward-btn {
  float: right;
  margin-top: 25px;
  border-color: var(--color--black);
  background-color: var(--color--black);
  color: var(--color--white);
}

.df-main #df_buybtn, 
.df-main #stripe_payment_request_button.stripe-google-pay, 
.df-main #stripe_ach_button.stripe-ach {
  background-color: var(--color--green);
}

.df-main .hs-error-msgs.inputs-list label, 
#df-discount-error-result, 
#df-global-error-container, 
.df-main #stripe_error, 
.df-main #stripe_ach_error, 
.df-main #stripe_bacs_error, 
.df-main #offline_error, 
#donation-error, 
#df-card-container .df-error, 
#df-main-error, 
.df-main .hs-form.stacked label.error {
  margin-top: 0;
  padding: 0;
  background: none;
  text-align: left;
}

.df-payment-method ul li.hs-form-radio label {
  padding-right: 65px;
  background-size: 50px auto !important;
}

@media (max-width: 480px) {
  .df-main .df-discount-area.df-fieldset {
    flex-wrap: wrap;
  }
  .df-main .df-apply-discount.df-field {
    margin: 0 !important;
    width: 100% !important;
  }
}
/* 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
*/

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

.widget-type-linked_image {
  overflow: hidden;
}

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