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

img, video {
  max-width: 100%;
}
/*! 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;
}


:root,
.theme--white, 
.theme--gray {
  
  /* primary */
  --button-primary-padding-vertical: 7px;
  --button-primary-padding-horizontal: 15px;
  --button-primary-border-size: 1px;
  --button-primary-border-style: solid;
  --button-primary-border-color: transparent;
  --button-primary-border-radius: 5px;
  --button-primary-background: var(--blue);
  --button-primary-text-decoration: none;
  --button-primary-color: #fff;
  --button-primary-font: var(--font_bold);
  --button-primary-font-weight: var(--font_bold-weight);
  
  /* primary hover */
  --button-primary-border-style-hover: solid;
  --button-primary-border-color-hover: transparent;
  --button-primary-border-radius-hover: 5px;
  --button-primary-background-hover: var(--blue_light);
  --button-primary-text-decoration-hover: none;
  --button-primary-color-hover: #fff;
  
  
  /* secondary */
  --button-secondary-padding-vertical: 7px;
  --button-secondary-padding-horizontal: 15px;
  --button-secondary-border-size: 1px;
  --button-secondary-border-style: solid;
  --button-secondary-border-color: var(--blue);
  --button-secondary-border-radius: 5px;
  --button-secondary-background: transparent;
  --button-secondary-text-decoration: none;
  --button-secondary-color: var(--blue);
  --button-secondary-font: var(--font_bold);
  --button-secondary-font-weight: var(--font_bold-weight);
  
  /* secondary hover */
  --button-secondary-border-style-hover: solid;
  --button-secondary-border-color-hover: var(--blue_light);
  --button-secondary-border-radius-hover: 5px;
  --button-secondary-background-hover: transparent;
  --button-secondary-text-decoration-hover: none;
  --button-secondary-color-hover: var(--blue_light);
  
  
  /* link */
  --button-link-padding-vertical: 7px;
  --button-link-padding-horizontal: 15px;
  --button-link-border-size: 1px;
  --button-link-border-style: solid;
  --button-link-border-color: transparent;
  --button-link-border-radius: 0;
  --button-link-background: transparent;
  --button-link-text-decoration: underline;
  --button-link-color: var(--blue);
  --button-link-font: var(--font_bold);
  --button-link-font-weight: var(--font_bold-weight);
  
  /* link hover */
  --button-link-border-style-hover: solid;
  --button-link-border-color-hover: transparent;
  --button-link-border-radius-hover: 0;
  --button-link-background-hover: transparent;
  --button-link-text-decoration-hover: underline;
  --button-link-color-hover: var(--blue_light);
}


/* button base */

.hs-button,
.buttonwrap a {
  display: inline-block;
  cursor: pointer;
  transition-duration: 0.3s;
  outline: none;
  text-align: center;
  
  font-family: var(--button-font);
  font-weight: var(--button-font-weight);
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  border: var(--button-border-size) var(--button-border-style) var(--button-border-color);
  border-radius: var(--button-border-radius);
  background-color: var(--button-background);
  text-decoration: var(--button-text-decoration);
  color: var(--button-color);
}

.hs-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hs-button:is(:hover:not(:disabled), :focus:not(:disabled)),
.buttonwrap a:is(:hover, :focus) {
  border-style: var(--button-border-style-hover);
  border-color: var(--button-border-color-hover);
  border-radius: var(--button-border-radius-hover);
  background-color: var(--button-background-hover);
  text-decoration: var(--button-text-decoration-hover);
  color: var(--button-color-hover);
}

/* primary */

.primary,
.buttonwrap-primary a {  
  --button-padding-vertical: var(--button-primary-padding-vertical);
  --button-padding-horizontal: var(--button-primary-padding-horizontal);
  --button-border-size: var(--button-primary-border-size);
  --button-border-style: var(--button-primary-border-style);
  --button-border-color: var(--button-primary-border-color);
  --button-border-radius: var(--button-primary-border-radius);
  --button-background: var(--button-primary-background);
  --button-text-decoration: var(--button-primary-text-decoration);
  --button-color: var(--button-primary-color);
  --button-font: var(--button-primary-font);
  --button-font-weight: var(--button-primary-font-weight);
}

.primary:is(:hover, :focus),
.buttonwrap-primary a:is(:hover, :focus) {
  --button-border-style-hover: var(--button-primary-border-style-hover);
  --button-border-color-hover: var(--button-primary-border-color-hover);
  --button-border-radius-hover: var(--button-primary-border-radius-hover);
  --button-background-hover: var(--button-primary-background-hover);
  --button-text-decoration-hover: var(--button-primary-text-decoration-hover);
  --button-color-hover: var(--button-primary-color-hover);
}


/* secondary */

.secondary,
.buttonwrap-secondary a {
  --button-padding-vertical: var(--button-secondary-padding-vertical);
  --button-padding-horizontal: var(--button-secondary-padding-horizontal);
  --button-border-size: var(--button-secondary-border-size);
  --button-border-style: var(--button-secondary-border-style);
  --button-border-color: var(--button-secondary-border-color);
  --button-border-radius: var(--button-secondary-border-radius);
  --button-background: var(--button-secondary-background);
  --button-text-decoration: var(--button-secondary-text-decoration);
  --button-color: var(--button-secondary-color);
  --button-font: var(--button-secondary-font);
  --button-font-weight: var(--button-secondary-font-weight);
}

.secondary:is(:hover, :focus),
.buttonwrap-secondary a:is(:hover, :focus) {
  --button-border-style-hover: var(--button-secondary-border-style-hover);
  --button-border-color-hover: var(--button-secondary-border-color-hover);
  --button-border-radius-hover: var(--button-secondary-border-radius-hover);
  --button-background-hover: var(--button-secondary-background-hover);
  --button-text-decoration-hover: var(--button-secondary-text-decoration-hover);
  --button-color-hover: var(--button-secondary-color-hover);
}


/* link */

.linkbutton,
.buttonwrap-linkbutton a {
  --button-padding-vertical: var(--button-link-padding-vertical);
  --button-padding-horizontal: var(--button-link-padding-horizontal);
  --button-border-size: var(--button-link-border-size);
  --button-border-style: var(--button-link-border-style);
  --button-border-color: var(--button-link-border-color);
  --button-border-radius: var(--button-link-border-radius);
  --button-background: var(--button-link-background);
  --button-text-decoration: var(--button-link-text-decoration);
  --button-color: var(--button-link-color);
  --button-font: var(--button-link-font);
  --button-font-weight: var(--button-secondary-font-weight);
  
  margin: calc(var(--button-padding-vertical) * -1) calc(var(--button-padding-horizontal) * -1);
}

.linkbutton:is(:hover, :focus),
.buttonwrap-linkbutton a:is(:hover, :focus) {
  --button-border-style-hover: var(--button-link-border-style-hover);
  --button-border-color-hover: var(--button-link-border-color-hover);
  --button-border-radius-hover: var(--button-link-border-radius-hover);
  --button-background-hover: var(--button-link-background-hover);
  --button-text-decoration-hover: var(--button-link-text-decoration-hover);
  --button-color-hover: var(--button-link-color-hover);
}


/*** themes ***/

.theme--black {
  /* primary */
  --button-primary-background: #fff;
  --button-primary-color: var(--blue);
  
  /* primary hover */
  --button-primary-background-hover: #fff;
  --button-primary-color-hover: var(--blue_light);
  
  
  /* secondary */
  --button-secondary-border-color: #fff;
  --button-secondary-color: #fff;
  
  
  /* link */
  --button-link-color: #fff;
  
}

/* custom properties (for access in module) */
:root {
  --base-font-size: 1.6rem;
  --small-font-size: 0.8em;
  --base-line-height: 1.3;

  --text-font: "OpenSans-Regular, sans-serif";
  --text-font-weight: 400;
}

@font-face {
  font-family: 'Nunito';
  font-weight: 400;
  src: url('https://5918786.fs1.hubspotusercontent-eu1.net/hubfs/5918786/raw_assets/public/frenz-theme/fonts/holiday-letter/Nunito-Regular.woff2') format('woff2');
    font-display: fallback;
}

@font-face {
  font-family: 'Caveat';
  font-weight: 400;
  src: url('https://5918786.fs1.hubspotusercontent-eu1.net/hubfs/5918786/raw_assets/public/frenz-theme/fonts/holiday-letter/Caveat-Regular.woff2') format('woff2');
    font-display: fallback;
}

html {
  font-size: 62.5%; /* don't change this */
}

html, body {
  height: 100%;
}

body {
  font-family: var(--text-font);
  font-weight: var(--text-font-weight);
  line-height: var(--base-line-height);
  font-size: var(--base-font-size);
  word-break: break-word;
}

.page-wrapper {
  
	min-height: 100%;
  display: flex;
  flex-flow: column;
}

.main {
  min-height: 30px;
  flex: 1;
}