/**
* Note -
* these are loaded in a specific order to reduce the need for overrides,
* use caution when changing the order
*/
/*----------------------------------------------------------------------------*\
    Base font size & line height
    We predefine a nice big font size, which reads very nice on a big screen.
    As per: http://uxdesign.smashingmagazine.com/2011/11/29/the-perfect-paragraph/
\*----------------------------------------------------------------------------*/
/**
 * Base font family
 */
/**
 * Font weights
 */
/*----------------------------------------------------------------------------*\
    $SPACING
    Spacing units to properly size your UI
    As per: http://csswizardry.com/2011/12/measuring-and-sizing-uis-2011-style
\*----------------------------------------------------------------------------*/
/**
 * Enabling this will ensure all margins, paddings, lineheights etc. will
 * follow the default line height.
 *
 * Disabling this will render all line-heights according
 * to the `$line-height-ratio` variable
 */
/**
 * Assign our `$base-line-height` to a new spacing var for
 * more transparency
 */
/**
 * Responsive breakpoints
 * If you add any more to the below, make sure you add them to the
 * breakpoint sass map below too.
 */
/**
 * Susy grid settings
 */
/**
 * Border width
 */
/**
 * Widget grid settings snap points
 */
/*----------------------------------------------------------------------------*\
    $MISC
\*----------------------------------------------------------------------------*/
/**
 * Would you like to show a baseline grid? This is handy during development.
 * @type Bool
 */
/**
 * Would you like to show media queries? This is handy during development.
 * @type Bool
 */
/**
 * Legacy support
 * @type Bool
 */
/**
 * Enable debug mode to highlight possible markup/accessibility
 * quirks in your code. Debug styles found in `helpers/_debug.scss`
 * @type Bool
 */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1, .h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * Hide from screenreaders & browsers
 */
.hidden {
  display: none !important;
}

/**
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/**
 * Hide only visually, but have it available for screenreaders
 * as per: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media screen and (max-width: 399px) {
  .visually-hidden-x-small {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 599px) {
  .visually-hidden-small {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 759px) {
  .visually-hidden-mid {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 959px) {
  .visually-hidden-large {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 1019px) {
  .visually-hidden-x-large {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media screen and (max-width: 1279px) {
  .visually-hidden-full {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

/**
 * Root element helper classes
*/
/**
 * Body classes
*/
/**
 * Toplevel HTML element
 * Assign our `$base-font-size` & predefine some defaults
 *
 * 1. Apply the `$base-font-size`, `$line-height-ratio` & `$face-base`
 * 2. Always add the horizontal scrollbar to prevent layout shifting
 * 3. Show baseline
 */
html {
  font: 0.85em/1.275 Arial, "Helvetica Neue", Helvetica, sans-serif;
  min-height: 100%;
}
@media screen and (min-width: 600px) {
  html {
    font-size: 0.9em;
    line-height: 1.35;
  }
}
@media screen and (min-width: 960px) {
  html {
    font-size: 1em;
    line-height: 1.5;
  }
}

body {
  background-color: #ffffff;
  color: #000000;
  overflow: visible !important;
  padding-bottom: 0 !important;
}

/**
 * Border box everything
 * As Per: http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
*, *::before, *::after {
  box-sizing: border-box;
}

/**
 * The usual resetting of margins, paddings, borders etc.
 */
blockquote,
dl,
dd,
ol,
ul,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
pre,
fieldset,
hr {
  margin: 0;
}

fieldset,
ol,
ul {
  padding: 0;
}

iframe,
fieldset {
  border: 0;
}

/**
 * Remove extra vertical spacing when nesting lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 */
[tabindex="-1"]:focus {
  outline: none !important;
}

img {
  font-style: italic;
  max-width: 100%;
}

img[width],
img[height] {
  max-width: none;
}

hgroup,
.hgroup,
ul,
ol,
dl,
blockquote,
p,
pre,
address,
table,
form,
hr {
  margin: 1.125rem 0 0;
}

hr {
  background-color: #000000;
  border: 0;
  height: 1px;
  margin-bottom: 1.125rem;
}

ul,
ol,
dd {
  margin-left: 24px;
}

code {
  line-height: 1;
}

pre {
  margin-top: 0;
  -moz-tab-size: 2;
       tab-size: 2;
}

.giga {
  font-size: 6rem;
}

.mega {
  font-size: 4.5rem;
}

.kilo {
  font-size: 3rem;
}

.alpha,
h1,
.h1 {
  font-size: 2.5rem;
}

.beta,
h2,
.h2 {
  font-size: 1.875rem;
}

.gamma,
h3,
.h3 {
  font-size: 1.5rem;
}

.delta,
.form-summary .list__group-title,
h4,
.h4 {
  font-size: 1.375rem;
}

.form__required:after, .form legend,
form:not([class]) legend, .boxed__heading, .form__heading, .alert__heading,
.epsilon,
h5,
.h5 {
  font-size: 1.25rem;
}

.zeta,
h6,
.h6 {
  font-size: 1.125rem;
}

.form__field, form:not([class]) input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
form:not([class]) textarea, .form .matrix--field input,
form:not([class]) .matrix--field input, .form__textarea, .form__select, form:not([class]) select, .calendar__heading, .data-table td,
.page-content table:not([class]) td,
.form-summary .table td, .data-table th,
.page-content table:not([class]) th,
.form-summary .table th, .button, .button:visited,
form:not([class]) input[type=button],
form:not([class]) input[type=submit],
.normalis {
  font-size: 1rem;
}

.form__help, pre,
.milli {
  font-size: 0.875rem;
}

.micro {
  font-size: 0.75rem;
}

/*  Headings
\*----------------------------------------------------------------------------*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #000000;
  font-weight: 600;
}

h1, .h1 {
  margin-top: 2.25rem;
}

h2, .h2 {
  margin-top: 1.875rem;
}

h3, .h3 {
  margin-top: 1.5rem;
}

h4, .h4 {
  margin-top: 1.125rem;
}

h5, .h5 {
  margin-top: 0.75rem;
}

h6, .h6 {
  margin-top: 0.75rem;
}

.h1 {
  display: block;
}

.h2 {
  display: block;
}

.h3 {
  display: block;
}

.h4 {
  display: block;
}

.h5 {
  display: block;
}

.h6 {
  display: block;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.xforms_dropzone, .xforms_dropzone * {
  box-sizing: border-box;
}

.xforms_dropzone {
  min-height: 150px;
  border: 2px dashed #c1c1c1;
  border-radius: 5px;
  background: white;
  padding: 20px 20px;
}
.xforms_dropzone.dz-clickable {
  cursor: pointer;
}
.xforms_dropzone.dz-clickable * {
  cursor: default;
}
.xforms_dropzone.dz-clickable .dz-message, .xforms_dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.xforms_dropzone.dz-drag-hover {
  border-style: solid;
}
.xforms_dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.xforms_dropzone .dz-message {
  font-weight: 400;
  text-align: center;
  margin: 2em 0;
}
.xforms_dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.xforms_dropzone .dz-preview:hover {
  z-index: 1000;
}
.xforms_dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.xforms_dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.xforms_dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.xforms_dropzone .dz-preview.dz-image-preview {
  background: white;
}
.xforms_dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.xforms_dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.xforms_dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.xforms_dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.xforms_dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.xforms_dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.xforms_dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.xforms_dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.xforms_dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.xforms_dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.xforms_dropzone .dz-preview .dz-details .dz-filename span, .xforms_dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.xforms_dropzone .dz-preview:hover .dz-image img {
  -ms-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.xforms_dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.xforms_dropzone .dz-preview .dz-image img {
  transition: all 200ms ease;
  display: block;
}
.xforms_dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.xforms_dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.xforms_dropzone .dz-preview .dz-success-mark, .xforms_dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.xforms_dropzone .dz-preview .dz-success-mark svg, .xforms_dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.xforms_dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.xforms_dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.xforms_dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.xforms_dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.xforms_dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.xforms_dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.xforms_dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.xforms_dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.xforms_dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.boxed,
.alert,
body {
  margin: 0.75rem 0 0;
  overflow: hidden;
  padding: 0 0.75rem 0.75rem;
}
body .boxed,
body .alert,
body body {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.boxed__form {
  background: none;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.alert__list {
  margin-top: 0.375rem;
}
.alert__text {
  margin-top: 0.375rem;
}
.alert__link {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}
.alert__link:hover, .alert__link:active, .alert__link:focus {
  text-decoration: none;
}

.alert--success {
  background-color: #4caf50;
  border-color: #255627;
}
.alert--success, .alert--success * {
  color: #fff;
}

.alert--danger {
  background-color: #cc0000;
}
.alert--danger, .alert--danger *,
.alert--danger a:visited,
.alert--danger a:hover,
.alert--danger a:active,
.alert--danger a:focus {
  color: #ffffcc;
}

.alert--warning {
  background-color: #ffab00;
  border-color: #805600;
}
.alert--warning, .alert--warning * {
  color: #fff;
}

.blockquote {
  font-style: italic;
  font-weight: normal;
  padding: 1.5rem;
}

a, a:visited {
  color: #33ffff;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: underline;
}

.button, .button:visited,
form:not([class]) input[type=button],
form:not([class]) input[type=submit] {
  background-color: #cccccc;
  border: 1px solid;
  color: #000000;
  cursor: pointer;
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 24px;
  margin: 0 0.375rem 0 0;
  padding: 0.375rem 0.75rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}
.button:hover, .button:active, .button:focus,
form:not([class]) input[type=button]:hover,
form:not([class]) input[type=submit]:hover,
form:not([class]) input[type=button]:active,
form:not([class]) input[type=submit]:active,
form:not([class]) input[type=button]:focus,
form:not([class]) input[type=submit]:focus {
  opacity: 0.75;
  text-decoration: none;
}

.button--disabled, .calendar--event-booking .calendar__dates .form__radio:disabled + .button, .button--disabled:visited {
  background-color: #ebebeb;
  border-color: #9e9e9e;
  color: #9e9e9e;
  cursor: default;
}
.button--disabled:hover, .calendar--event-booking .calendar__dates .form__radio:disabled + .button:hover, .button--disabled:active, .calendar--event-booking .calendar__dates .form__radio:disabled + .button:active, .button--disabled:focus, .calendar--event-booking .calendar__dates .form__radio:disabled + .button:focus {
  background-color: #ebebeb;
  border-color: #9e9e9e;
  color: #9e9e9e;
}

.button--primary, .button--primary:visited {
  background-color: #3399ff;
  color: #000000;
}
.button--primary:hover, .button--primary:active, .button--primary:focus {
  background-color: #3399ff;
  color: #000000;
}

.button--success, .calendar--event-booking .calendar__dates .form__radio:checked + .button, .button--success:visited {
  background-color: #4caf50;
  border-color: #3d8b40;
  color: #fff;
}
.button--success:hover, .calendar--event-booking .calendar__dates .form__radio:checked + .button:hover, .button--success:active, .calendar--event-booking .calendar__dates .form__radio:checked + .button:active, .button--success:focus, .calendar--event-booking .calendar__dates .form__radio:checked + .button:focus {
  background-color: #5cb860;
}

img {
  display: block;
}
img.file-type-icon, .editor > * img, .byEditor > * img {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.item-list {
  list-style: none;
  margin-left: 0;
}
.form-summary .list--form-summary {
  margin: 0;
}
.form-summary .list__item {
  border-bottom: 1px solid #d8dfe3;
  list-style-type: none;
  margin: 0;
  padding: 0.75rem 0;
}
.form-summary .list__item-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 760px) {
  .form-summary .list__item-title {
    display: inline-block;
    margin-bottom: 0;
    margin-right: -4px;
    vertical-align: top;
    width: 33.3333333333%;
  }
}
.form-summary .list__item-content {
  display: block;
}
@media screen and (min-width: 760px) {
  .form-summary .list__item-content {
    display: inline-block;
    padding-left: 1.5rem;
    vertical-align: top;
    max-width: 66.6666666667%;
  }
}
.form-summary .list__group {
  border: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.form-summary .list__group-title {
  display: block;
  font-weight: 600;
  margin-top: 1.5rem;
}
.data-table,
.page-content table:not([class]),
.form-summary .table {
  width: 100%;
}
.data-table tbody tr:first-child td,
.page-content table:not([class]) tbody tr:first-child td,
.form-summary .table tbody tr:first-child td {
  padding-top: 0.75rem;
}
.data-table th,
.page-content table:not([class]) th,
.form-summary .table th {
  border-bottom: 1px solid #000000;
  padding: 0.75rem;
  text-align: left;
}
.data-table td,
.page-content table:not([class]) td,
.form-summary .table td {
  padding: 0.75rem;
}
.data-table td .button,
.page-content table:not([class]) td .button,
.form-summary .table td .button {
  margin: 0.25rem 0.375rem 0.25rem 0;
}
.data-table td .button:last-child,
.page-content table:not([class]) td .button:last-child,
.form-summary .table td .button:last-child {
  margin-right: 0;
}

.data-table--bordered {
  border: 1px solid #000000;
  margin-bottom: 1.5rem;
}
.data-table--bordered caption {
  margin-bottom: 0.75rem;
}
.data-table--bordered tbody tr:first-child td {
  padding-top: 0.75rem;
}
.data-table--bordered th + th {
  border-left: 1px solid #000000;
}
.data-table--bordered td {
  border: 1px solid #000000;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.calendar {
  display: block;
  margin: 1.5rem 0;
}
.calendar th,
.calendar td {
  margin: 0;
  padding: 0;
  text-align: center;
}
.calendar .button {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}

.calendar__heading {
  text-align: center;
}

.calendar__table {
  width: 100%;
}

.calendar__days {
  background-color: #000000;
  color: #ffffff;
}
.calendar__days th {
  font-weight: bold;
  padding: 3.5% 0.25rem 4%;
}

.calendar__dates tr {
  border-bottom: 1px solid #000000;
}

.calendar__date {
  color: #000000;
  display: block;
  height: 100%;
  padding: 26% 0.375rem;
}

.calendar__date--link {
  color: #33ffff;
  font-weight: 600;
}
.calendar__date--link:visited {
  color: #263238;
}

.progress-bar {
  border: 1px solid #000000;
  margin: 0.75rem 0;
  padding: 0.3rem;
  width: 100%;
}
.progress-bar__indicator {
  background: #000000;
  padding: 0.375rem 0;
}

.progress-bar--danger .progress-bar__indicator {
  background: #b71c1c;
}

.progress-bar--success .progress-bar__indicator {
  background: #4caf50;
}

.form,
form:not([class]) {
  margin: 1.5rem 0;
}
.form fieldset,
form:not([class]) fieldset {
  border: 0;
  padding-top: 0;
}
.form fieldset:first-of-type,
form:not([class]) fieldset:first-of-type {
  border: 0;
  padding: 0;
}
.form legend,
form:not([class]) legend {
  color: #000000;
  display: block;
  margin: 0;
  white-space: normal;
  width: 100%;
}
.form input[type=search],
form:not([class]) input[type=search] {
  -webkit-appearance: none;
  box-sizing: border-box;
}
.form .button,
form:not([class]) .button {
  display: inline-block;
  margin-top: 0.75rem;
}
.form__label, .form__field, form:not([class]) input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
form:not([class]) textarea, .form .matrix--field input,
form:not([class]) .matrix--field input, .form__select, form:not([class]) select, .form__textarea {
  display: block;
}
.form__text {
  margin-top: 1.125rem;
}
.form__help {
  color: #000000;
  display: block;
  margin: 1.125rem 0 0;
}
.form__help--danger {
  background-color: #cc0000;
  color: #ffffcc;
  padding: 0.75rem;
}
.form__control, .integrated-component {
  margin-top: 1.875rem;
}
.form__control:first-child, .integrated-component:first-child {
  margin-top: 1.5rem;
}
.form__control--danger {
  background-color: #cc0000;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: 1.125rem;
  padding: 0.75rem;
}
.form__control--danger:first-child {
  margin-top: 0.75rem;
}
.form__control--danger + .form__control:not(.form__control--danger), .form__control--danger + .integrated-component:not(.form__control--danger) {
  margin-top: 1.125rem;
}
.form__control--danger .form__label {
  color: #ffffcc;
  margin-top: 0;
}
.form__control--danger .form__help {
  color: #ffffcc;
}
.form__control--success .form__label {
  color: #4caf50;
}
.form__control--success .form__field, .form__control--success form:not([class]) input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]), form:not([class]) .form__control--success input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
.form__control--success form:not([class]) textarea,
form:not([class]) .form__control--success textarea, .form__control--success .form .matrix--field input, .form .matrix--field .form__control--success input,
.form__control--success form:not([class]) .matrix--field input,
form:not([class]) .matrix--field .form__control--success input,
.form__control--success .form__select,
.form__control--success form:not([class]) select,
form:not([class]) .form__control--success select,
.form__control--success .form__textarea {
  background-color: #d9eeda;
  border-color: #4caf50;
  color: #4caf50;
}
.form__control--append .form__field, .form__control--append form:not([class]) input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]), form:not([class]) .form__control--append input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
.form__control--append form:not([class]) textarea,
form:not([class]) .form__control--append textarea, .form__control--append .form .matrix--field input, .form .matrix--field .form__control--append input,
.form__control--append form:not([class]) .matrix--field input,
form:not([class]) .matrix--field .form__control--append input, .form__control--append .form__textarea, .form__control--append .form__select, .form__control--append form:not([class]) select, form:not([class]) .form__control--append select,
.form__control--append .button {
  display: inline-block;
  vertical-align: top;
}
.form__control--append .form__field[type=file], .form__control--append form:not([class]) input[type=file]:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]), form:not([class]) .form__control--append input[type=file]:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
.form__control--append form:not([class]) textarea[type=file],
form:not([class]) .form__control--append textarea[type=file], .form__control--append .form .matrix--field input[type=file], .form .matrix--field .form__control--append input[type=file],
.form__control--append form:not([class]) .matrix--field input[type=file],
form:not([class]) .matrix--field .form__control--append input[type=file], .form__control--append [type=file].form__textarea, .form__control--append [type=file].form__select, .form__control--append form:not([class]) select[type=file], form:not([class]) .form__control--append select[type=file] {
  display: none;
}
.form__group {
  display: block;
  margin: 0.75rem 0.75rem 0;
}
.form__label {
  cursor: default;
  margin-top: 1.125rem;
  padding: 0;
  width: 100%;
}
.form__label--checkbox, .form__label--radio {
  margin-top: 0.375rem;
}
.form__group .form__label:first-of-type {
  margin-top: 0;
}
.form__field, form:not([class]) input:not([type=button]):not([type=checkbox]):not([type=radio]):not([type=submit]),
form:not([class]) textarea, .form .matrix--field input,
form:not([class]) .matrix--field input, .form__textarea, .form__select, form:not([class]) select {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 24px;
  margin-top: 0.75rem;
  max-width: 100%;
  padding: 0.375rem 0.75rem;
}
.form__field--disabled {
  border-color: #9e9e9e;
}
.form__select, form:not([class]) select {
  height: calc(24px + 0.75rem + 2px);
}
.form__checkbox, form:not([class]) input[type=checkbox],
form:not([class]) input[type=radio], .form__radio {
  display: inline-block;
  margin-right: 0.375rem;
}
.form__required {
  display: inline-block;
  font-style: normal;
  overflow: hidden;
  position: relative;
  text-indent: 100%;
  vertical-align: text-bottom;
  width: 1.5rem;
  white-space: nowrap;
}
.form__required:after {
  content: "*";
  display: inline-block;
  left: 0;
  position: absolute;
  speak: none;
  text-indent: 0.25em;
  vertical-align: middle;
}
.form .matrix--field .matrix--prepend,
form:not([class]) .matrix--field .matrix--prepend {
  display: inline-block;
  margin-right: 0.375rem;
}
.form .matrix--field input,
form:not([class]) .matrix--field input {
  display: inline-block;
  width: 80%;
}
.form__table {
  margin-top: 1.125rem;
  width: 100%;
}
.form__table th {
  padding: 0;
  text-align: left;
}
.form__table td {
  min-width: 15em;
  vertical-align: top;
}
.form__table td,
.form__table tbody th,
.form__table tbody tr:first-child td {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 1.5rem;
}
.form__table thead th {
  border: 0;
}
.form__table tbody th {
  vertical-align: top;
}
.form__table tbody .form__required {
  text-indent: 0;
  width: auto;
}
.form__table tbody .form__required::after {
  content: ":";
  font-size: inherit;
  position: static;
  text-indent: 0;
  vertical-align: initial;
}
.form__actions {
  border-top: 1px solid #000000;
  margin: 2.25rem -0.75rem 0;
  padding: 1.5rem 0.75rem 0;
}
.form__actions:first-child {
  border: 0;
  margin: 1.5rem 0 0;
  padding: 0;
}
.form__actions .button {
  display: inline-block;
  margin-top: 0;
}
.form__actions .button--secondary {
  float: left;
}

.integrated-component {
  display: block;
  margin-top: 1.125rem;
}

::-webkit-input-placeholder {
  color: #999999;
}

::-moz-placeholder {
  /* FF 4-18 */
  color: #999999;
  opacity: 1;
}

::-moz-placeholder {
  /* FF 19+ */
  color: #999999;
  opacity: 1;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}

.placeholdr {
  /* Placeholdr jQuery plug-in */
  color: #999999;
}

.form__dropzone {
  background: #f4f4f4;
  border: 2px dashed #000;
  margin-top: 0.75rem;
  min-height: 130px;
}
.form__dropzone .dz-preview.dz-image-preview {
  background: transparent;
}

.form__dropzone-upload-button.button {
  display: inline-block;
  margin: 0 auto;
}
.no-js .form__dropzone-upload-button {
  display: none;
}

.dz-remove {
  margin-top: 0.5rem;
}
.form__dropzone .dz-preview .dz-remove {
  color: #000;
  text-decoration: underline;
}
.form__dropzone .dz-preview .dz-remove:hover, .form__dropzone .dz-preview .dz-remove:focus, .form__dropzone .dz-preview .dz-remove:active {
  text-decoration: none;
}

.calendar--event-booking {
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__table,
.calendar--event-booking .calendar__days,
.calendar--event-booking .calendar__dates,
.calendar--event-booking tr,
.calendar--event-booking th,
.calendar--event-booking td {
    display: block;
  }
}
.calendar--event-booking .button {
  margin-right: 0;
}
.calendar--event-booking > .button {
  margin-top: 0;
}
.calendar--event-booking .calendar__heading {
  padding: 0.5rem 0;
}
.calendar--event-booking .calendar__table {
  margin-left: 0;
  margin-right: 0;
  transition: 0.125s ease-in;
}
@media screen and (min-width: 760px) {
  .calendar--event-booking .calendar__table {
    table-layout: fixed;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__table {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__days tr {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
@media screen and (min-width: 760px) {
  .calendar--event-booking .calendar__days th {
    width: 14.2857142857%;
  }
}
.calendar--event-booking .calendar__dates td {
  transition: 0.125s ease-in;
  vertical-align: top;
}
@media screen and (min-width: 760px) {
  .calendar--event-booking .calendar__dates td {
    width: 14.2857142857%;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__dates td {
    min-height: 3.75rem;
    padding-bottom: 0.25rem;
    padding-left: 3rem;
    padding-top: 0.25rem;
    position: relative;
    text-align: left;
    width: 100%;
  }
}
.calendar--event-booking .calendar__dates td:not(:empty):not(.is-disabled) {
  cursor: pointer;
}
.calendar--event-booking .calendar__dates td.is-disabled {
  cursor: not-allowed;
}
.calendar--event-booking .calendar__dates td.is-disabled::before,
.calendar--event-booking .calendar__dates td.is-disabled legend {
  opacity: 0.5;
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__dates td::before {
    content: attr(data-day);
    font-size: 0.75rem;
    font-weight: bold;
    left: 0;
    padding-right: 0.25rem;
    position: absolute;
    text-align: right;
    top: 0.5rem;
    transition: 0.125s ease-in;
    width: 2.499999999rem;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__dates legend {
    left: 0;
    padding: 0 0.25rem 0 0;
    position: absolute;
    text-align: right;
    top: 1.5rem;
    width: 2.499999999rem;
  }
}
.calendar--event-booking .calendar__dates fieldset,
.calendar--event-booking .calendar__dates legend {
  margin-bottom: 0;
}
.calendar--event-booking .calendar__dates fieldset {
  padding-bottom: 0.25rem;
  transition: 0.125s ease-in;
}
.calendar--event-booking .calendar__dates .button {
  margin-bottom: 0;
  margin-top: 0.25rem;
}
@media screen and (min-width: 760px) {
  .calendar--event-booking .calendar__dates .button {
    width: calc(100% - 0.5rem);
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking .calendar__dates .button {
    margin-right: 0.25rem;
    min-width: 6.5rem;
    width: calc(25% - 0.25rem);
  }
}
.calendar--event-booking .calendar__dates .form__radio {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.calendar--event-booking.is-interactive .calendar__dates .is-highlighted {
  background-color: #94cf96;
}
.calendar--event-booking.is-interactive .calendar__dates .is-highlighted legend, .calendar--event-booking.is-interactive .calendar__dates .is-highlighted::before {
  color: #fff;
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates tr::before {
    border-bottom: 1px solid #879195;
    content: attr(data-label);
    display: block;
    padding: 0.999999999rem 0;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates tr:not(.is-expanded):not(:hover)::before {
    opacity: 0.5;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates tr:not(.is-expanded):not(:hover) td .form__label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.calendar--event-booking.is-interactive .calendar__dates td::after {
  content: attr(data-available-slots) " available";
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.5;
}
@media screen and (min-width: 760px) {
  .calendar--event-booking.is-interactive .calendar__dates td::after {
    margin-bottom: 0.375rem;
    margin-top: -1.5rem;
  }
}
@media screen and (min-width: 760px) {
  .calendar--event-booking.is-interactive .calendar__dates .is-expanded td::after {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates .is-expanded td:not(.is-disabled):hover::after {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates .is-highlighted::after {
    display: none;
  }
}
@media screen and (min-width: 760px) {
  .calendar--event-booking.is-interactive .calendar__dates tr:not(.is-expanded) .button {
    display: none;
  }
}
@media screen and (max-width: 759px) {
  .calendar--event-booking.is-interactive .calendar__dates td:not(.is-highlighted):not(:hover) .button {
    display: none;
  }
}
.calendar--event-booking.is-loading .calendar__table {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

#xform_layout .form__actions {
  display: -ms-flexbox;
  display: flex;
}
#xform_layout .form__actions .button--secondary {
  -ms-flex-order: -1;
      order: -1;
}

.module > *:last-child,
.module > *:last-child > *:last-child,
.module > *:last-child > *:last-child > *:last-child,
.module > *:last-child > *:last-child > *:last-child > *:last-child,
.boxed > *:last-child,
body > *:last-child,
.alert > *:last-child,
.boxed > *:last-child > *:last-child,
body > *:last-child > *:last-child,
.alert > *:last-child > *:last-child,
.boxed > *:last-child > *:last-child > *:last-child,
body > *:last-child > *:last-child > *:last-child,
.alert > *:last-child > *:last-child > *:last-child,
.boxed > *:last-child > *:last-child > *:last-child > *:last-child,
body > *:last-child > *:last-child > *:last-child > *:last-child,
.alert > *:last-child > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

.display--block {
  display: block !important;
}

.display--inline-block {
  display: inline-block !important;
}

.display--inline {
  display: inline !important;
}

.float--right {
  float: right !important;
}

.float--left {
  float: left !important;
}

.float--none {
  float: none !important;
}

.text--left {
  text-align: left !important;
}

.text--center {
  text-align: center !important;
}

.text--right {
  text-align: right !important;
}

.text--light {
  font-weight: 300 !important;
}

.text--normal {
  font-weight: 400 !important;
}

.text--semibold {
  font-weight: 600 !important;
}

.text--caps {
  text-transform: uppercase !important;
}

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

.text--firstcap {
  text-transform: capitalize !important;
}

.cf::after,
.boxed::after,
body::after,
.alert::after {
  clear: both;
  content: "";
  display: table;
}