@charset "UTF-8";
/**
* Main CSS file 
* this is where all your imports go.
* 
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/**
* normalize.css v3.0.1
* git.io/normalize
* 
*/
/**
 * 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,
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: 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 {
  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 {
  -moz-box-sizing: content-box;
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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;
}

/**
* General Chef du Web / Cuisine styling
* 
*/
* {
  -webkit-font-smoothing: antialiased;
}

input, textarea {
  outline: none;
}

/* set all widths: */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

p, a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

ul, ol {
  margin: 0;
}

table {
  width: 100%;
}

.fullwidth, .onethird, .twothird, .half, .onefourth, .onefifth, .onesixth, .twofifth {
  float: left;
}

.fullwidth {
  width: 100%;
}

.onethird {
  width: 33%;
}

.twothird {
  width: 66%;
}

.half {
  width: 50%;
}

.onefourth {
  width: 25%;
}

.onefifth {
  width: 20%;
}

.onesixth {
  width: 16.666666667%;
}

.twofifth {
  width: 40%;
}

.cuisine-step {
  display: none;
}

.step-page {
  float: left;
  margin-right: 15px;
}

.pull-right {
  float: right;
}

.onethird.nomargin, .twothird.nomargin, .half.nomargin, .onefourth.nomargin {
  padding-right: 0;
}

/* Images */
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  margin: 0 auto 20px auto;
}

.wp-caption-text {
  padding-bottom: 20px;
}

/* Increase frame-rate when scrolling by not registering pointer-events:*/
.disable-hover, .disable-hover * {
  pointer-events: none !important;
}

/* Mustache link: */
a[class^="mustache"] {
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  float: none;
  position: absolute;
  background: url("../images/mustache.png");
  width: 80px;
  height: 15px;
  left: 50%;
  margin-left: -40px;
  top: 5px;
  opacity: 1;
}

a[class^="mustache"]:hover {
  opacity: .5;
}

a.mustache--black {
  background-position: 0 20px;
}

/* Screenreader text support: */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  padding: 15px 23px 14px;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

@font-face {
  font-family: 'Rubrik';
  src: url("fonts/rubrik_regular-webfont.eot");
  src: url("fonts/rubrik_regular-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/rubrik_regular-webfont.woff2") format("woff2"), url("fonts/rubrik_regular-webfont.woff") format("woff"), url("fonts/rubrik_regular-webfont.ttf") format("truetype"), url("fonts/rubrik_regular-webfont.svg#rubrikregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Rubrik-semibold';
  src: url("fonts/rubrik_semibold-webfont.eot");
  src: url("fonts/rubrik_semibold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/rubrik_semibold-webfont.woff2") format("woff2"), url("fonts/rubrik_semibold-webfont.woff") format("woff"), url("fonts/rubrik_semibold-webfont.ttf") format("truetype"), url("fonts/rubrik_semibold-webfont.svg#rubriksemibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Rubrik-light';
  src: url("fonts/rubrik_light-webfont.eot");
  src: url("fonts/rubrik_light-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/rubrik_light-webfont.woff2") format("woff2"), url("fonts/rubrik_light-webfont.woff") format("woff"), url("fonts/rubrik_light-webfont.ttf") format("truetype"), url("fonts/rubrik_light-webfont.svg#rubriklight") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
* Variable file 
* place global variables here:
* 
*/
/**
* Mixin file 
* place global mixins here:
* 
*/
/* Boxsizing shortcut: */
/* Transform shortcuts */
/* Styling placeholders: */
/* Retina images: */
/* "Hard" gradients: */
/* REM font sizes: */
.container {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}

.section {
  width: 100%;
  padding: 50px 0;
}
.section .section-title {
  width: 100%;
  display: block;
  text-align: center;
}

/**
* All base typography 
* 
*/
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
}

h2.section-title {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
}

.column > h2, .column h3 {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
}

p, a, span, ol, ul, li, strong, em, i, b, big, small, tt, abbr, acronym,
cite, code, dfn, em, kbd, samp, var, br, sub, sup, button, input, label,
select, textarea {
  color: #000000;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.01em;
  font-weight: 300;
}

strong, b {
  font-weight: 500 !important;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

/**
* General CSS file 
* Styling for all general classes:
* 
*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  font-size: 1rem;
  color: #000000;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
}

/**
 * firefox hack for flexbox
 */
* {
  min-height: 0;
  min-width: 0;
}

.clearfix {
  clear: both;
  width: 0;
  height: 0;
}

/**
 * General Classes:
 */
/* Increase frame-rate when scrolling by not registering pointer-events:*/
.disable-hover, .disable-hover * {
  pointer-events: none !important;
}

/* Mustache link: */
a[class^="mustache"] {
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  float: none;
  position: absolute;
  background: url("../images/mustache.png");
  width: 80px;
  height: 15px;
  left: 50%;
  margin-left: -40px;
  top: 5px;
  opacity: 1;
}

a[class^="mustache"]:hover {
  opacity: .5;
}

a.mustache--black {
  background-position: 0 20px;
}

/* Screenreader text support: */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  padding: 15px 23px 14px;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.popup-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
}
.popup-wrapper .container p {
  color: #FFF;
}
.popup-wrapper .container .button, .popup-wrapper .container .btn, .popup-wrapper .container a[class^="btn--"], .popup-wrapper .container .section.guide-cta a, .section.guide-cta .popup-wrapper .container a {
  cursor: pointer;
}
.popup-wrapper .container .button i, .popup-wrapper .container .btn i, .popup-wrapper .container a[class^="btn--"] i, .popup-wrapper .container .section.guide-cta a i, .section.guide-cta .popup-wrapper .container a i {
  color: #FFF;
}
.popup-wrapper .container .content-side {
  display: inline-block;
  float: left;
  width: 70%;
}
.popup-wrapper .container .message-buttons {
  display: inline-block;
  float: right;
}
.popup-wrapper .container .message-buttons .button, .popup-wrapper .container .message-buttons .btn, .popup-wrapper .container .message-buttons a[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .popup-wrapper .container .message-buttons a {
  margin-bottom: 10px;
  position: relative;
  padding-left: 60px;
  display: block;
  width: 100%;
}
.popup-wrapper .container .message-buttons .button span, .popup-wrapper .container .message-buttons .btn span, .popup-wrapper .container .message-buttons a[class^="btn--"] span, .popup-wrapper .container .message-buttons .section.guide-cta a span, .section.guide-cta .popup-wrapper .container .message-buttons a span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 44px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.popup-wrapper .container .message-buttons .button span i, .popup-wrapper .container .message-buttons .btn span i, .popup-wrapper .container .message-buttons a[class^="btn--"] span i, .popup-wrapper .container .message-buttons .section.guide-cta a span i, .section.guide-cta .popup-wrapper .container .message-buttons a span i {
  position: absolute;
  top: 50%;
  width: 44px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  font-size: 1.25rem;
}
.popup-wrapper .container .message-buttons .button.accept-message, .popup-wrapper .container .message-buttons .accept-message.btn, .popup-wrapper .container .message-buttons a.accept-message[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a.accept-message, .section.guide-cta .popup-wrapper .container .message-buttons a.accept-message {
  background: #2e9d6e;
}
.popup-wrapper .container .message-buttons .button.accept-message span, .popup-wrapper .container .message-buttons .accept-message.btn span, .popup-wrapper .container .message-buttons a.accept-message[class^="btn--"] span, .popup-wrapper .container .message-buttons .section.guide-cta a.accept-message span, .section.guide-cta .popup-wrapper .container .message-buttons a.accept-message span {
  background: #237653;
}
.popup-wrapper .container .message-buttons .button.accept-message:hover, .popup-wrapper .container .message-buttons .accept-message.btn:hover, .popup-wrapper .container .message-buttons a.accept-message[class^="btn--"]:hover, .popup-wrapper .container .message-buttons .section.guide-cta a.accept-message:hover, .section.guide-cta .popup-wrapper .container .message-buttons a.accept-message:hover {
  background: #009fe3;
}
.popup-wrapper .container .message-buttons .button.accept-message:hover span, .popup-wrapper .container .message-buttons .accept-message.btn:hover span, .popup-wrapper .container .message-buttons a.accept-message[class^="btn--"]:hover span, .popup-wrapper .container .message-buttons .section.guide-cta a.accept-message:hover span, .section.guide-cta .popup-wrapper .container .message-buttons a.accept-message:hover span {
  background: #006997;
}
.popup-wrapper .container .message-buttons .button.deny-message, .popup-wrapper .container .message-buttons .deny-message.btn, .popup-wrapper .container .message-buttons a.deny-message[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a.deny-message, .section.guide-cta .popup-wrapper .container .message-buttons a.deny-message {
  background: #ae2d30;
}
.popup-wrapper .container .message-buttons .button.deny-message span, .popup-wrapper .container .message-buttons .deny-message.btn span, .popup-wrapper .container .message-buttons a.deny-message[class^="btn--"] span, .popup-wrapper .container .message-buttons .section.guide-cta a.deny-message span, .section.guide-cta .popup-wrapper .container .message-buttons a.deny-message span {
  background: #711d1f;
}
.popup-wrapper .container .message-buttons .button.deny-message:hover, .popup-wrapper .container .message-buttons .deny-message.btn:hover, .popup-wrapper .container .message-buttons a.deny-message[class^="btn--"]:hover, .popup-wrapper .container .message-buttons .section.guide-cta a.deny-message:hover, .section.guide-cta .popup-wrapper .container .message-buttons a.deny-message:hover {
  background: #009fe3;
}
.popup-wrapper .container .message-buttons .button.deny-message:hover span, .popup-wrapper .container .message-buttons .deny-message.btn:hover span, .popup-wrapper .container .message-buttons a.deny-message[class^="btn--"]:hover span, .popup-wrapper .container .message-buttons .section.guide-cta a.deny-message:hover span, .section.guide-cta .popup-wrapper .container .message-buttons a.deny-message:hover span {
  background: #006997;
}
.popup-wrapper .container .message-buttons .button:last-of-type, .popup-wrapper .container .message-buttons .btn:last-of-type, .popup-wrapper .container .message-buttons a[class^="btn--"]:last-of-type, .popup-wrapper .container .message-buttons .section.guide-cta a:last-of-type, .section.guide-cta .popup-wrapper .container .message-buttons a:last-of-type {
  margin: 0;
}
.popup-wrapper .container:after {
  content: "";
  display: block;
  clear: both;
}

.entry-content-asset iframe {
  max-width: 100%;
}

.page-template-landingspagina-template #main {
  margin-top: 0;
}

/**
* UI CSS file 
* Everything that enables user-interaction gets bootstrapped here
* 
*/
a, a:visited {
  color: #323232;
  text-decoration: underline;
}

.column a {
  color: #009fe3;
}
.column a:hover {
  color: #ED9D5F;
}

.button, .btn, a[class^="btn--"], .section.guide-cta a, .section.guide-cta a:visited {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 30px;
  background: #009fe3;
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: bold;
  line-height: 100%;
  border-radius: 3px;
}
.button:hover, .btn:hover, a[class^="btn--"]:hover, .section.guide-cta a:hover {
  background: #ED9D5F;
}
.button:visited, .btn:visited, a[class^="btn--"]:visited, .section.guide-cta a:visited {
  color: #fff;
}
.button.with-arrow, .with-arrow.btn, a.with-arrow[class^="btn--"], .section.guide-cta a.with-arrow {
  padding-right: 75px;
  position: relative;
}
.button .arrow, .btn .arrow, a[class^="btn--"] .arrow, .section.guide-cta a .arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding-top: 14px;
}
.button .arrow i, .btn .arrow i, a[class^="btn--"] .arrow i, .section.guide-cta a .arrow i {
  color: #fff;
  font-size: 1.25rem;
}

.column .button, .column .btn, .column a[class^="btn--"], .column .section.guide-cta a, .section.guide-cta .column a {
  color: #fff;
}
.column .button:hover, .column .btn:hover, .column a[class^="btn--"]:hover, .column .section.guide-cta a:hover, .section.guide-cta .column a:hover {
  color: #fff;
}

/**
* Forms CSS file 
* Styling for forms:
* 
*/
.form {
  padding: 0 !important;
}
.form .form-fields .field-wrapper {
  position: relative;
  margin-bottom: 30px;
}
.form .form-fields .field-wrapper .validation-error {
  position: absolute;
  top: -25px;
  right: -10px;
  padding: 4px 8px;
  background: #AE2D30 !important;
  color: #fff !important;
  font-size: 0.875rem;
  display: none;
}
.form .form-fields .field-wrapper .validation-error:after {
  content: '';
  width: 0;
  height: 0;
  border: 6px solid #AE2D30;
  border-color: #AE2D30 transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  right: 20px;
}
.form .form-fields .field-wrapper.textarea textarea {
  height: 150px;
}
.form .form-fields .field-wrapper.textarea textarea.validated-true, .form .form-fields .field-wrapper.textarea textarea.validated-false {
  background-position: 97.5% 7.5%;
}
.form .form-fields .field-wrapper:hover .validation-error {
  display: block;
}
.form .form-footer {
  width: 100%;
  text-align: right;
}
.form .form-footer .submit-form {
  display: inline-block;
  padding: 15px 30px;
  background: #EDF7FA;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  border: 0;
  color: #009fe3;
}
.form .form-footer .submit-form:hover {
  background: #007bb0;
  color: #fff;
}

/* generated with grunt-sass-globbing */
/*! Flickity v1.1.0
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1;
}

.form-fields .field-wrapper {
  width: 45%;
  float: left;
  clear: none;
}
.form-fields .field-wrapper:nth-child(odd) {
  margin-right: 10%;
}
.form-fields .field-wrapper.textarea, .form-fields .field-wrapper.content, .form-fields .field-wrapper.checkboxes, .form-fields .field-wrapper.radio, .form-fields .field-wrapper.address-wrapper {
  width: 100%;
  clear: both;
}
.form-fields .field-wrapper.hidden {
  display: none;
}
.form-fields .field-wrapper input, .form-fields .field-wrapper textarea, .form-fields .field-wrapper select {
  box-sizing: border-box;
  padding: 8px 16px;
  box-shadow: none;
  border: 1px solid #ccc;
  width: 100% !important;
}
.form-fields .field-wrapper input:focus, .form-fields .field-wrapper textarea:focus, .form-fields .field-wrapper select:focus {
  border: 1px solid #444;
}
.form-fields .field-wrapper input.validated-true, .form-fields .field-wrapper input.validated-false, .form-fields .field-wrapper textarea.validated-true, .form-fields .field-wrapper textarea.validated-false, .form-fields .field-wrapper select.validated-true, .form-fields .field-wrapper select.validated-false {
  background-image: url("../../../plugins/chef-forms/Assets/images/ok.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: 97.5% center;
}
.form-fields .field-wrapper input.validated-false, .form-fields .field-wrapper textarea.validated-false, .form-fields .field-wrapper select.validated-false {
  background-image: url("../../../plugins/chef-forms/Assets/images/fail.png");
}
.form-fields .field-wrapper.label-top label {
  width: 100%;
  display: block;
  padding-bottom: 4px;
}
.form-fields .field-wrapper.label-left label {
  padding-right: 15px;
}
.form-fields .validation-error {
  padding: 5px 0 0 0;
  color: red;
}

.form {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  padding: 15px 15px 65px 15px;
  display: block;
  position: relative;
}
.form .form-fields, .form .form-footer {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form .form-footer {
  display: block;
  width: 100% !important;
  clear: both;
}
.form .loader {
  position: absolute;
  display: none;
  pointer-events: none;
  top: 30%;
  left: 0;
  right: 0;
  width: 140px;
}
.form .loader > div {
  background-color: rgba(0, 0, 0, 0.5);
  width: 32px;
  height: 32px;
}
.form .message {
  position: absolute;
  padding: 30px;
  background: #f8f8f8;
  font-size: 1.5rem;
  display: none;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  top: 15%;
}
.form.active .form-fields, .form.active .form-footer, .form.msg .form-fields, .form.msg .form-footer {
  opacity: .15;
  pointer-events: none;
}
.form.active .loader, .form.msg .loader {
  display: block;
  pointer-events: auto;
}
.form.msg .message {
  display: block;
}
.form.msg .loader {
  display: none;
}

.collection.gallery .gallery-row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.collection.gallery .gallery-item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}
.collection.gallery .gallery-item img {
  max-width: 100%;
  height: auto;
}
.collection.gallery .gallery-item:last-of-type {
  margin-right: 0;
}
.collection.gallery.masonry {
  display: block;
  width: 100% !important;
}
.collection.gallery.masonry .gallery-item {
  -webkit-box-flex: none;
  -moz-box-flex: none;
  box-flex: none;
  -webkit-flex: none;
  -moz-flex: none;
  -ms-flex: none;
  flex: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0;
  width: 30%;
  display: block;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: transparent;
  }

  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }

  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    /* dimensions: handling small or empty content */
    min-width: 30%;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal;
  }

  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }

  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font: Arial, sans-serif;
    background: #fff;
    /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000;
  }

  .featherlight .featherlight-image {
    /* styling */
    width: 100%;
  }

  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
  }

  .featherlight iframe {
    /* styling */
    border: none;
  }
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight-next,
  .featherlight-previous {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 0;
    left: 80%;
    cursor: pointer;
    /* preventing text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* IE9 hack, otherwise navigation doesn't appear */
    background: transparent;
  }

  .featherlight-previous {
    left: 25px;
    right: 80%;
  }

  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .featherlight-next span,
  .featherlight-previous span {
    display: none;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 82%;
    /* center horizontally */
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    /* center vertically */
    margin-top: -40px;
    text-shadow: 0px 0px 5px #fff;
    color: #fff;
    font-style: normal;
    font-weight: normal;
  }

  .featherlight-next span {
    right: 5%;
    left: auto;
  }

  .featherlight-next:hover span,
  .featherlight-previous:hover span {
    display: inline-block;
  }

  /* Hide navigation while loading */
  .featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
    display: none;
  }
}
/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: none;
  }

  .featherlight-next span,
  .featherlight-previous span {
    display: block;
  }
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight-next,
  .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%;
  }

  .featherlight-previous {
    left: 10px;
    right: 85%;
  }

  .featherlight-next span,
  .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px;
  }
}
/**
 * Isotope styling:
 */
.overview.collection {
  display: block;
  display: block;
  width: 100%;
}
.overview.collection:after {
  content: "";
  display: table;
  clear: both;
}
.overview.collection .block {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0;
  width: 32%;
}
.overview.collection .block.medium {
  margin-right: 0;
  width: 65%;
}
.overview.collection .block.large {
  margin-right: 0;
  width: 100%;
}
.overview.collection .block-row {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.overview.collection .block-row .block {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}
.overview.collection .block-row .block:last-of-type {
  margin-right: 0;
}
.overview.collection .autoload-msg {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Rubrik";
  font-weight: bold;
  margin: 45px 0 0 0;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.overview.collection.masonry .autoload-msg {
  position: absolute;
  width: 100%;
}

.section {
  clear: both;
}

.column-row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  padding: 30px 0;
}
.column-row .column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}
.column-row .column img {
  max-width: 100%;
  height: auto;
}
.column-row .column:last-of-type {
  margin-right: 0;
}
.column-row .column .video-wrapper {
  position: relative;
  width: 100%;
}
.column-row .column .video-wrapper img {
  position: absolute;
  z-index: 100;
  cursor: pointer;
  width: 100%;
}
.column-row .column .video-wrapper:before {
  content: '';
  position: absolute;
  top: 43%;
  left: 50%;
  margin: -20px 0 0 -40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  width: 80px;
  height: 80px;
  z-index: 101;
}
.column-row .column .video-wrapper:after {
  content: '';
  position: absolute;
  top: 43%;
  left: 50%;
  margin-left: -5px;
  border: 20px solid #fff;
  border-color: transparent transparent transparent #fff;
  width: 0;
  height: 0;
  z-index: 102;
}
.column-row .column .video-wrapper:hover:before {
  background: rgba(0, 0, 0, 0.75);
}
.column-row .column .video-wrapper.playing:before, .column-row .column .video-wrapper.playing:after {
  display: none;
}
.column-row.sidebar-right .column:first-of-type {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.column-row.sidebar-left .column:last-of-type {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.column-row.fullwidth {
  float: none;
}

/**
 * Loader
 */
.loader {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.loader > div {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.loader .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@media only screen and (max-width: 980px) {
  .column-row {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .column-row.four-columns .column, .column-row.three-columns .column {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 47%;
    -moz-flex: 1 47%;
    -ms-flex: 1 47%;
    flex: 1 47%;
    margin-right: 0;
  }
  .column-row.four-columns .column:nth-child(even), .column-row.three-columns .column:nth-child(even) {
    margin-left: 5%;
  }

  .overview.collection {
    display: block;
  }
  .overview.collection:after {
    content: "";
    display: table;
    clear: both;
  }
  .overview.collection .block {
    width: 47%;
  }
  .overview.collection .block.medium {
    width: 100%;
  }
  .overview.collection .block-row {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .overview.collection .block-row .block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 50%;
    -moz-flex: 1 50%;
    -ms-flex: 1 50%;
    flex: 1 50%;
    margin-right: 30px;
  }
  .overview.collection .block-row .block:last-of-type {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .column-row .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 100%;
    -moz-flex: 1 100%;
    -ms-flex: 1 100%;
    flex: 1 100%;
  }
  .column-row.four-columns .column, .column-row.four-columns .column:nth-child(odd), .column-row.four-columns .column:nth-child(even), .column-row.three-columns .column, .column-row.three-columns .column:nth-child(odd), .column-row.three-columns .column:nth-child(even), .column-row.half-half .column, .column-row.half-half .column:nth-child(odd), .column-row.half-half .column:nth-child(even) {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 100%;
    -moz-flex: 1 100%;
    -ms-flex: 1 100%;
    flex: 1 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .overview.collection {
    display: block;
  }
  .overview.collection:after {
    content: "";
    display: table;
    clear: both;
  }
  .overview.collection .block {
    width: 100%;
  }
  .overview.collection .block-row {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .overview.collection .block-row .block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 100%;
    -moz-flex: 1 100%;
    -ms-flex: 1 100%;
    flex: 1 100%;
    margin-right: 0;
  }
}
.socials .social {
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  padding-top: 8px;
  text-align: center;
  color: #fff;
  display: inline-block;
  background: #3b539b;
}
.socials .social i {
  color: #fff;
}
.socials .social.tw {
  background: #00c2f5;
}
.socials .social.pin {
  background: #ff001d;
}
.socials .social.in {
  background: #0080c9;
}
.socials .social.gp {
  background: #d62020;
}
.socials .social.ins {
  background: #E7DDD3;
}
.socials .social.ins i {
  color: #603825;
}

/**
* Header CSS file 
* Styling for the header:
* 
*/
header.header .top-nav ul a:hover {
  color: #009fe3;
}

header.header .top-nav ul li.current-menu-item a:hover {
  color: #323232;
}

header.header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  height: 116px;
  z-index: 200;
  /**
   * Mobile:
   */
}
header.header .container {
  position: relative;
}
header.header .logo {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  background: #fff;
  top: 5px;
  left: -10px;
  width: 233px;
  height: 126px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  text-decoration: none;
  text-align: center;
  padding-top: 15px;
  z-index: 300;
}
header.header .logo svg {
  display: inline-block;
  width: 85%;
  margin-top: 0;
  height: auto;
  max-height: 86px;
}
header.header .logo svg path {
  fill: #009fe3;
}
header.header nav {
  float: right;
}
header.header ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}
header.header ul li {
  display: inline-block;
}
header.header ul a, header.header ul a:visited {
  display: block;
  padding: 11px 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
}
header.header ul a:hover {
  border-color: #009fe3;
}
header.header ul .special a {
  background: #74C6A0;
  color: #fff;
}
header.header ul .special a:hover {
  border-color: transparent;
  background: #34B17C;
  color: #FFF;
}
header.header ul .cart {
  margin-right: 5px;
}
header.header ul .cart a {
  padding: 9px 13px 10px 13px;
  font-weight: bold;
}
header.header ul .cart a .label {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}
header.header ul .cart a .cart-icon {
  display: inline-block;
  margin: -2px 5px 0 0;
}
header.header ul .cart a .badge {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #74C6A0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  padding-top: 2px;
  margin: -2px 0 0 5px;
  border-radius: 10px;
}
header.header ul .current-menu-item a {
  border-color: rgba(0, 0, 0, 0.3);
}
header.header .topmenu {
  background: #fff;
}
header.header .mainmenu {
  background: #009fe3;
}
header.header .mainmenu ul {
  padding: 0;
}
header.header .mainmenu ul a {
  color: #fff;
  border: 0;
  padding: 13px 20px;
  text-transform: none;
  font-size: 1rem;
  border-radius: 0 !important;
}
header.header .mainmenu ul a:hover, header.header .mainmenu ul .current-menu-item a {
  background: #007bb0;
  color: #fff;
}
header.header .mobile-nav {
  background: #009fe3;
  width: 300px;
  position: absolute;
  right: 15px;
  display: none;
  z-index: 400;
  max-height: calc( 100vh - 150px );
  overflow-y: scroll;
}
header.header .mobile-nav ul {
  padding: 0;
  width: 100%;
}
header.header .mobile-nav ul li {
  width: 100%;
  float: none;
  display: block;
}
header.header .mobile-nav.fold-out {
  display: block;
  opacity: 1 !important;
}
header.header .menu-switch {
  display: none;
  width: 44px;
  height: 44px;
  padding-top: 8px;
  text-align: center;
  background: #009fe3;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}
header.header .menu-switch i {
  font-size: 1.5rem;
  color: #fff;
}
header.header .menu-switch:hover {
  background: rgba(0, 0, 0, 0.25);
}
header.header .mlp_widget {
  float: right;
  margin-right: -20px;
  padding-left: 20px;
}
header.header .mlp_widget ul li a {
  padding: 11px 5px;
}
header.header .mlp_widget ul li a.current-language-item {
  color: #009fe3;
}
header.header .mlp_widget ul li a:hover {
  border-color: transparent !important;
  color: #009fe3;
}
header.header .mlp_widget ul li:first-of-type a {
  border-right: 1px solid #eee !important;
}

.home header ul .current-menu-item a {
  border-color: rgba(255, 255, 255, 0.3);
}

#main {
  margin-top: 156px;
}

.home-header .headline {
  color: #FFF;
  font-size: 30px;
}

header.header .mainmenu .main-nav > ul > li a, header.header .mainmenu .main-nav > ul > li a:visited {
  padding-right: 32px;
}

header.header .mainmenu .main-nav ul li {
  position: relative;
}
header.header .mainmenu .main-nav ul li.menu-item-has-children > a:after, header.header .mainmenu .main-nav ul li.menu-item-has-children > a:visited:after {
  content: "\f053";
  font-family: fontAwesome;
  color: #FFF;
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 0.625rem;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header.header .mainmenu .main-nav ul li.menu-item-has-children:hover > a:after, header.header .mainmenu .main-nav ul li.menu-item-has-children:hover > a:visited:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

header.header .mainmenu .main-nav ul .sub-menu li {
  position: relative;
}
header.header .mainmenu .main-nav ul .sub-menu li.menu-item-has-children > a:after, header.header .mainmenu .main-nav ul .sub-menu li.menu-item-has-children > a:visited:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header.header .mainmenu .main-nav ul .sub-menu li.menu-item-has-children:hover > a:after, header.header .mainmenu .main-nav ul .sub-menu li.menu-item-has-children:hover > a:visited:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

header.header .mainmenu .main-nav ul .current_page_parent > a, header.header .mainmenu .main-nav ul .current_page_ancestor > a {
  color: #fff;
}

header.header .mainmenu .main-nav ul .sub-menu .current_page_ancestor > a {
  background: #00608a;
}

header.header .mainmenu .main-nav .sub-menu {
  display: none;
  background: #007bb0;
  position: absolute;
  right: 0;
  width: 220px;
}
header.header .mainmenu .main-nav .sub-menu li {
  display: block;
  width: 100%;
}
header.header .mainmenu .main-nav .sub-menu li a, header.header .mainmenu .main-nav .sub-menu li a:visited {
  font-size: 0.875rem;
  padding: 10px 15px;
}
header.header .mainmenu .main-nav .sub-menu li:hover a, header.header .mainmenu .main-nav .sub-menu li:hover a:visited {
  background: #00608a;
}
header.header .mainmenu .main-nav .sub-menu li.current-menu-item a, header.header .mainmenu .main-nav .sub-menu li.current-menu-item a:visited {
  background: #00608a;
}

header.header .mainmenu .main-nav li {
  position: relative;
}

header.header .main-nav ul li:hover {
  background: #007bb0;
}
header.header .main-nav ul li:hover .sub-menu {
  display: block;
}

header.header .mainmenu .main-nav .sub-menu .sub-menu {
  display: none;
  background: #007bb0;
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
header.header .mainmenu .main-nav .sub-menu .sub-menu li {
  display: block;
  width: 100%;
}
header.header .mainmenu .main-nav .sub-menu .sub-menu li a, header.header .mainmenu .main-nav .sub-menu .sub-menu li a:visited {
  font-size: 0.875rem;
  padding: 10px 15px;
}
header.header .mainmenu .main-nav .sub-menu .sub-menu li:hover > a, header.header .mainmenu .main-nav .sub-menu .sub-menu li:hover > a:visited {
  background: #004664;
}
header.header .mainmenu .main-nav .sub-menu .sub-menu li.current-menu-item > a, header.header .mainmenu .main-nav .sub-menu .sub-menu li.current-menu-item > a:visited {
  background: #004664;
}

header.header .mainmenu .main-nav .sub-menu li:hover {
  background: #007bb0;
}
header.header .mainmenu .main-nav .sub-menu li:hover .sub-menu {
  display: block;
}

header.header .mobile-nav li {
  position: relative;
}

header.header .mobile-nav .sub-menu {
  display: none !important;
  position: static;
  width: 100%;
}

header.header .mobile-nav li.menu-item-has-children a, header.header .mobile-nav li.menu-item-has-children a:visited {
  padding: 13px 50px 13px 20px;
}
header.header .mobile-nav li.menu-item-has-children:after {
  content: "\f053";
  font-family: fontAwesome;
  color: #FFF;
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 0.75rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header.header .mobile-nav li.menu-item-has-children.fold-out:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

header.header .mobile-nav li.current_page_parent:before, header.header .mobile-nav li.currentmenu-item:before {
  background: #00608a;
}

header.header .mobile-nav li.current_page_parent:hover > a, header.header .mobile-nav li.current_page_parent:hover > a:visited, header.header .mobile-nav li.current_page_ancestor:hover > a, header.header .mobile-nav li.current_page_ancestor:hover > a:visited {
  background: #00608a;
}

header.header .mobile-nav li.menu-item-has-children.fold-out > a, header.header .mobile-nav li.menu-item-has-children.fold-out > a:visited {
  background: #00608a;
}

header.header .mobile-nav li.current_page_parent a, header.header .mobile-nav li.current_page_parent a:visited, header.header .mobile-nav li.current_page_ancestor a, header.header .mobile-nav li.current_page_ancestor a:visited {
  background: #007bb0;
}

header.header .mobile-nav li.fold-out > a + .sub-menu {
  display: block !important;
}

header.header .mobile-nav li.fold-out li.fold-out > a + .sub-menu {
  display: block !important;
}

header.header .mobile-nav .sub-menu .sub-menu li a, header.header .mobile-nav .sub-menu .sub-menu li a:visited {
  background: #004664;
}

header.header .mobile-nav .sub-menu .sub-menu li.current-menu-item a, header.header .mobile-nav .sub-menu .sub-menu li.current-menu-item a:visited {
  background: #002b3d;
}

.home header {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.home header .topmenu, .home header .mainmenu, .home header nav ul li a, .home header .mainmenu nav, .home header .logo, .home header .logo svg path {
  -webkit-transition: 0.15s;
  -moz-transition: 0.15s;
  transition: 0.15s;
}
.home header .mainmenu {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
  background: transparent;
  background: -webkit-gradient(linear, top top, right top, color-stop(0%, #009fe3), color-stop(50%, #009fe3), color-stop(50%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, #009fe3 0%, #009fe3 50%, transparent 50%, transparent 100%);
  background: -moz-linear-gradient(top, #009fe3 0%, #009fe3 50%, transparent 50%, transparent 100%);
  background: -ms-linear-gradient(top, #009fe3 0%, #009fe3 50%, transparent 50%, transparent 100%);
  background: -o-linear-gradient(top, #009fe3 0%, #009fe3 50%, transparent 50%, transparent 100%);
  background: linear, to bottom, #009fe3 0%, #009fe3 50%, transparent 50%, transparent 100%;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  background-size: 100% 200%;
  background-position: 0 0;
}
.home header .mainmenu nav {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.home header .topmenu, .home header .logo {
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
  background: transparent;
  background: -webkit-gradient(linear, top top, right top, color-stop(0%, #fff), color-stop(50%, #fff), color-stop(50%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: -moz-linear-gradient(top, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: -ms-linear-gradient(top, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: -o-linear-gradient(top, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: linear, to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  background-size: 100% 200%;
  background-position: 0 0;
}
.home header .logo {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.home header.translucent {
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  transition: 0.1s;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  transition-delay: 0;
  background: transparent;
  border-bottom: 0;
}
.home header.translucent .topmenu, .home header.translucent .mainmenu, .home header.translucent nav ul li a, .home header.translucent .mainmenu nav, .home header.translucent .logo, .home header.translucent .logo svg path {
  -webkit-transition: 0.15s;
  -moz-transition: 0.15s;
  transition: 0.15s;
}
.home header.translucent .topmenu {
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
  background-position: 0 100%;
}
.home header.translucent .topmenu ul li.special a {
  background: transparent;
}
.home header.translucent .topmenu ul li.special a:hover {
  background: #74C6A0;
}
.home header.translucent .mainmenu {
  -webkit-transition-delay: 0.07s;
  -moz-transition-delay: 0.07s;
  transition-delay: 0.07s;
  background-position: 0 100%;
}
.home header.translucent .mainmenu nav {
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  transition-delay: 0;
  opacity: 0;
}
.home header.translucent .mainmenu .main-nav {
  pointer-events: none;
}
.home header.translucent nav ul li a {
  color: #FFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.home header.translucent .logo {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
  background-position: 0 100%;
  box-shadow: none;
}
.home header.translucent .logo svg path {
  fill: #FFF;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.home .section.home-header {
  background-size: cover !important;
  background-position: center 30% !important;
  min-height: 600px;
}

header.header.translucent .top-nav ul a:hover {
  color: #FFF;
  border-color: #FFF;
}

header.header.translucent .top-nav ul li.special a:hover {
  border-color: #34B17C;
}

/**
* Footer CSS file 
* Styling for the footer:
* 
*/
.wrapper {
  min-height: 100%;
}

footer {
  width: 100%;
  background: #5A5E61;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
footer .column h2 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: normal;
  font-family: "Rubrik-light";
}
footer .column p, footer .column a {
  color: #fff;
  margin-bottom: 5px;
}
footer .column a:hover {
  color: #74C6A0;
}
footer #section-1.footer .column.content:first-of-type h2 {
  font-size: 1.5rem;
  padding-bottom: 15px;
}
footer .section.footer {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  box-ordinal-group: 2;
  -webkit-order: 2;
  -moz-order: 2;
  order: 2;
  -ms-flex-order: 2;
}
footer .section.contact {
  background: #34B17C;
  padding: 15px 0;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  box-ordinal-group: 1;
  -webkit-order: 1;
  -moz-order: 1;
  order: 1;
  -ms-flex-order: 1;
}
footer .section.contact .column-wrapper {
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
footer .section.contact .column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  margin-right: 0;
  text-align: center;
}
footer .section.contact .column h2, footer .section.contact .column h3, footer .section.contact .column p {
  color: #fff;
}
footer .section.contact .column h2 {
  padding: 30px 0 15px 0;
}
footer .section.contact .column:first-child {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding-left: 25%;
  padding-right: 25%;
  padding-bottom: 60px;
}
footer .section.contact .column:first-child p {
  position: relative;
  display: block;
}
footer .section.contact .column:first-child p:after {
  content: '';
  width: 150px;
  height: 5px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -75px;
}
footer .section.contact .column strong {
  font-size: 2rem;
  color: #fff;
  display: block;
}
footer .section.contact .column strong:before {
  content: "\f10b";
  font-family: 'FontAwesome';
  font-size: 2.25rem;
  padding-right: 15px;
  display: inline-block;
}
footer .section.contact .column .form-fields .field-wrapper {
  width: 50%;
  float: right;
  margin: 0 20% 15px 0;
}
footer .section.contact .column .form-fields .field-wrapper.text label, footer .section.contact .column .form-fields .field-wrapper.email label {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
footer .section.contact .column .form-fields .field-wrapper.text:before {
  content: "\f1ea";
  font-family: 'FontAwesome';
  font-size: 2.25rem;
  position: absolute;
  left: -56px;
  margin-right: 20%;
  color: #fff;
  top: 2px;
}
footer .section.contact .column .form-fields .field-wrapper.checkbox {
  text-align: right;
}
footer .section.contact .column .form-fields .field-wrapper.checkbox input[type=checkbox] {
  display: none;
}
footer .section.contact .column .form-fields .field-wrapper input[type=checkbox]:checked + label:before {
  content: "\2713";
  font-size: 30px;
  font-size: 1.875rem;
  color: #444;
  text-align: center;
  line-height: 15px;
  background: #FFF;
}
footer .section.contact .column .form-fields .field-wrapper.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #FFF;
}
footer .section.contact .column .form-fields .field-wrapper.checkbox label:hover:before {
  border: 1px solid #444;
}
footer .section.contact .column .form-fields .field-wrapper.checkbox label:before {
  content: "\2713";
  color: transparent;
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 18px;
  padding-bottom: 2px;
  margin-right: 10px;
  position: absolute;
  left: -35px;
  bottom: 1px;
  background: #FFF;
  border: 1px solid #ccc;
}
footer .section.contact .column .form-fields .field-wrapper input {
  width: 275px;
  position: relative;
}
footer .section.contact .column .form-footer {
  padding: 0 20% 0 0;
}
footer .section.contact .column .form-footer .submit-form {
  float: right;
  padding: 10px 20px;
  background: #444;
  color: #fff;
  border: 0;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
footer .section.contact .column .form-footer .submit-form:hover {
  background: #009fe3;
}
footer .section.contact .column .form {
  position: relative;
}
footer .section.contact .column .form .loader {
  top: -60px;
}
footer .section.contact .column .form .loader > div {
  background: rgba(255, 255, 255, 0.8);
}
footer .section.contact .column .message {
  background: #34B17C;
  width: 100%;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  left: 0;
  margin-left: 0;
  top: 0;
  left: 0;
}
footer .language-selector {
  display: block;
  padding: 15px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  box-ordinal-group: 3;
  -webkit-order: 3;
  -moz-order: 3;
  order: 3;
  -ms-flex-order: 3;
}
footer .language-selector .lang-label {
  display: inline-block;
  color: #fff;
  padding-right: 10px;
}
footer .language-selector .widget.mlp_widget, footer .language-selector .mlp_language_box {
  display: inline-block;
}
footer .language-selector .mlp_language_box {
  border-radius: 4px;
}
footer .language-selector .mlp_language_box ul {
  margin-left: 0;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}
footer .language-selector li {
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #fff;
}
footer .language-selector li a {
  color: #fff;
}
footer .language-selector li:last-of-type {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
footer .copyright {
  -webkit-box-ordinal-group: 4;
  -moz-box-ordinal-group: 4;
  box-ordinal-group: 4;
  -webkit-order: 4;
  -moz-order: 4;
  order: 4;
  -ms-flex-order: 4;
  background: #009fe3;
  display: block;
  height: 50px;
}
footer .copyright .container {
  padding-top: 15px;
}
footer .copyright .app-icon {
  display: inline-block;
  width: 18px;
  height: auto;
  margin-right: 5px;
}
footer .copyright p, footer .copyright a, footer .copyright span {
  display: inline;
  color: #fff;
  padding-right: 30px;
  text-decoration: none;
}
footer .copyright p i, footer .copyright a i, footer .copyright span i {
  color: #fff;
}
footer .copyright span > i {
  font-size: 1.5rem;
}
footer .copyright .term-link {
  float: right;
  margin-top: 5px;
}

.lang-de_DE footer .section.contact .column:first-child {
  display: none;
}

.textual-content h1, .textual-content h2, .textual-content h3, .textual-content h4, .textual-content h5, .textual-content h6, .textual-content p, .tab-content h1, .tab-content h2, .tab-content h3, .tab-content h4, .tab-content h5, .tab-content h6, .tab-content p {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.textual-content ul, .textual-content ol, .tab-content ul, .tab-content ol {
  padding-left: 16px;
  margin-left: 0;
}
.textual-content p, .tab-content p {
  line-height: 135%;
}
.textual-content a, .tab-content a {
  color: #009fe3;
}
.textual-content a:hover, .tab-content a:hover {
  color: #ED9D5F;
}
.textual-content strong, .textual-content b, .tab-content strong, .tab-content b {
  font-weight: 600;
}
.textual-content img, .tab-content img {
  max-width: 100%;
  height: auto;
}
.textual-content img.size-full, .textual-content img.size-large, .tab-content img.size-full, .tab-content img.size-large {
  width: 100%;
}
.textual-content img.size-medium, .tab-content img.size-medium {
  width: 45%;
}
.textual-content .wp-caption, .tab-content .wp-caption {
  max-width: 100% !important;
}
.textual-content .wp-caption p, .tab-content .wp-caption p {
  font-size: 1rem;
  display: block;
  text-align: center;
}
.textual-content .intro, .tab-content .intro {
  padding-bottom: 15px;
}
.textual-content .intro p, .textual-content .intro strong, .textual-content .intro i, .textual-content .intro li, .textual-content .intro span, .textual-content .intro a, .tab-content .intro p, .tab-content .intro strong, .tab-content .intro i, .tab-content .intro li, .tab-content .intro span, .tab-content .intro a {
  font-size: 1.25rem;
  line-height: 150%;
  padding-bottom: 15px;
}
.textual-content blockquote, .tab-content blockquote {
  position: relative;
}
.textual-content blockquote p, .textual-content blockquote i, .textual-content blockquote li, .textual-content blockquote span, .textual-content blockquote a, .tab-content blockquote p, .tab-content blockquote i, .tab-content blockquote li, .tab-content blockquote span, .tab-content blockquote a {
  font-size: 1.5rem;
  font-style: italic;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
}

.column ul, .column ol {
  padding-left: 16px;
}

/**
* Page CSS file 
* Styling for page:
* 
*/
/**
 * General column styling:
 */
.page-title {
  padding: 15px 0;
}
.page-title h1 {
  display: block;
  font-size: 2.25rem;
}

.regular-page .loader > div {
  background-color: rgba(255, 255, 255, 0.8);
}
.regular-page .section {
  padding: 20px 0;
}
.regular-page .section .column-wrapper {
  padding: 20px 0;
}
.regular-page .section .column-wrapper.half-half, .regular-page .section .column-wrapper.sidebar-left, .regular-page .section .column-wrapper.sidebar-right {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.regular-page .section .column-wrapper .column.image {
  text-align: center;
}
.regular-page .section .column-wrapper .column.image img {
  max-height: 400px;
  height: auto;
  width: auto;
  max-width: 100%;
}
.regular-page .section .column-wrapper.fullwidth .column.content p {
  max-width: 47.5%;
}
.regular-page .section.align-stretch .column-wrapper.half-half, .regular-page .section.align-stretch .column-wrapper.sidebar-left, .regular-page .section.align-stretch .column-wrapper.sidebar-right {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.regular-page .section.socials .column-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.regular-page .section.toggle-target-audience .column-wrapper.half-half {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.regular-page .section:nth-child(even), .regular-page .conditional {
  background: #F7F5F3;
}
.regular-page .conditional + .section, .regular-page .call-to-action + .section {
  background: #fff;
}
.regular-page .conditional + .conditional {
  background: #F7F5F3;
}

.column h2 {
  font-size: 1.375rem;
  padding-bottom: 15px;
}

.page.premium .detail #section-3 {
  background: #F7F5F3;
}

.block-column .button, .block-column .btn, .block-column a[class^="btn--"], .block-column .section.guide-cta a, .section.guide-cta .block-column a {
  margin-top: 30px;
}

.gallery {
  text-align: center;
  width: 100%;
  -webkit-box-flex: none;
  -moz-box-flex: none;
  box-flex: none;
  -webkit-flex: none;
  -moz-flex: none;
  -ms-flex: none;
  flex: none;
  display: block;
}

.column.social-proof-gallery {
  width: 100%;
  text-align: center;
}
.column.social-proof-gallery strong, .column.social-proof-gallery img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 30px 0;
}
.column.social-proof-gallery strong {
  display: block;
  text-align: center;
}

.column.slider-column .main-gallery .gallery-cell {
  width: 100%;
  display: block;
  position: relative;
}
.column.slider-column .main-gallery .gallery-cell .caption {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 15px;
  text-align: center;
}

.half-half .column, .half-half .collection {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.three-columns .column:last-of-type.slider-column {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.column.blocks .block-row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.column.blocks .block-row .block {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section.call-to-action {
  background: #74C6A0 !important;
  text-align: center;
  padding: 50px 0;
}
.section.call-to-action .column-wrapper {
  padding: 0;
}

.cta-column {
  width: 100%;
  text-align: center;
}
.cta-column strong, .cta-column p, .cta-column i, .cta-column em, .cta-column ul, .cta-column li, .cta-column ol, .cta-column span {
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
}
.cta-column p.addendum {
  font-size: 1.125rem;
  font-weight: 400;
}
.cta-column .button, .cta-column .btn, .cta-column a[class^="btn--"], .cta-column .section.guide-cta a, .section.guide-cta .cta-column a, .cta-column .button:visited, .cta-column .btn:visited, .cta-column a[class^="btn--"]:visited, .cta-column .section.guide-cta a:visited, .section.guide-cta .cta-column a:visited {
  color: #fff;
  background: #444;
  padding: 15px 30px;
  align-self: center;
  display: inline-block;
  width: 280px;
  margin: 30px 0;
  font-weight: bold;
  cursor: pointer;
}
.cta-column .button:hover, .cta-column .btn:hover, .cta-column a[class^="btn--"]:hover, .cta-column .section.guide-cta a:hover, .section.guide-cta .cta-column a:hover, .cta-column .button:visited:hover, .cta-column .btn:visited:hover, .cta-column a[class^="btn--"]:visited:hover, .cta-column .section.guide-cta a:visited:hover, .section.guide-cta .cta-column a:visited:hover {
  background: #009fe3;
}

.section.socials {
  background: #74C6A0 !important;
}
.section.socials .column h2 {
  font-size: 1.375rem !important;
  color: #fff;
  padding-bottom: 30px !important;
}
.section.socials .column .socials-icons a {
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 3px;
  padding-top: 10px;
  text-align: center;
  margin-right: 15px;
}
.section.socials .column .socials-icons a i {
  font-size: 3rem;
}
.section.socials .column .socials-icons a:hover {
  background: #34B17C;
}
.section.socials .column .form {
  padding: 0;
}
.section.socials .column .form label {
  display: none !important;
}
.section.socials .column .form .loader {
  margin-top: 10px;
}
.section.socials .column .form .loader > div {
  background: #fff;
}
.section.socials .column .form .form-footer {
  padding-top: 15px;
}
.section.socials .column .form .form-footer .submit-form {
  float: right;
  background: #34B17C;
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 7px 14px;
}
.section.socials .column .form .form-footer .submit-form:hover {
  background: #237653;
}

.section.partner-section .block-row {
  width: 100%;
}

/**
 * Hide wrongful page titles:
 */
.blog .page-title {
  display: none;
}

.regular-page .section.big-image .column-wrapper .column.image img {
  max-height: none;
}

.regular-page .section.conditional .column-wrapper.half-half, .regular-page .section.conditional .column-wrapper.sidebar-left, .regular-page .section.conditional .column-wrapper.sidebar-right {
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}

.socials .social.youtube {
  background: #DE3236;
}

.login-container {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: right;
  width: 100%;
}

.section.cta-link-block .column.block-column .login-btn.button, .section.cta-link-block .column.block-column .login-btn.btn, .section.cta-link-block .column.block-column a.login-btn[class^="btn--"], .section.cta-link-block .column.block-column .section.guide-cta a.login-btn, .section.guide-cta .section.cta-link-block .column.block-column a.login-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 11px 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
  border: none;
  background: #74C6A0 !important;
  line-height: 145%;
}
.section.cta-link-block .column.block-column .login-btn.button:hover, .section.cta-link-block .column.block-column .login-btn.btn:hover, .section.cta-link-block .column.block-column a.login-btn[class^="btn--"]:hover, .section.cta-link-block .column.block-column .section.guide-cta a.login-btn:hover, .section.guide-cta .section.cta-link-block .column.block-column a.login-btn:hover {
  background: #34B17C !important;
}

/**
* Blog CSS file 
* Styling for blog:
* 
*/
.block.post {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  background: #F7F5F3;
  max-width: calc( 50% - 15px );
}
.block.post .img-wrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 48%;
  margin-right: 2%;
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
}
.block.post .img-wrapper img {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.block.post .img-wrapper time {
  position: absolute;
  top: 25px;
  left: 0;
  padding: 5px 10px;
  background: #444;
  font-weight: bold;
}
.block.post .img-wrapper time span {
  color: #fff;
}
.block.post .img-wrapper time span.day {
  padding-right: 10px;
}
.block.post .img-wrapper:hover img {
  opacity: .6;
}
.block.post .post-desc {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px 15px 60px 15px;
  position: relative;
}
.block.post .post-desc h2 {
  font-size: 1.375rem;
}
.block.post .post-desc .button, .block.post .post-desc .btn, .block.post .post-desc a[class^="btn--"], .block.post .post-desc .section.guide-cta a, .section.guide-cta .block.post .post-desc a {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 3px 0 3px 0;
}

.collection nav {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.collection nav a, .collection nav span {
  display: inline-block;
  width: 40px;
  padding: 8px 0;
  text-align: center;
  background: #F7F5F3;
  color: #444;
  text-decoration: none;
  font-weight: bold;
}
.collection nav a {
  background: #009fe3;
  color: #fff;
}
.collection nav a:hover {
  background: #444;
}

.detail-post.article-content > h1 {
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.detail-post.article-content > .date {
  margin-bottom: 50px;
  display: inline-block;
  background: #009fe3;
  padding: 5px 10px;
  border-radius: 3px;
}
.detail-post.article-content > .date span {
  color: #fff;
}
.detail-post.article-content > .date .day {
  padding-right: 5px;
}
.detail-post.article-content h2 {
  font-size: 1.75rem;
  padding-bottom: 15px;
}
.detail-post.article-content h3 {
  font-size: 1.5rem;
  padding-bottom: 15px;
}
.detail-post.article-content .article-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  padding-right: 30px;
}
.detail-post.article-content .article-wrapper .textual-content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 47.5%;
  -moz-flex: 1 0 47.5%;
  -ms-flex: 1 0 47.5%;
  flex: 1 0 47.5%;
  margin-right: 5%;
  padding-bottom: 50px;
}
.detail-post.article-content .article-wrapper h1 {
  font-size: 2rem;
}
.detail-post.article-content .article-wrapper .article-meta {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}
.detail-post.article-content .article-wrapper .article-meta img {
  width: 100%;
  height: auto;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons {
  margin: 30px 0;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons h3 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  display: block;
  text-align: center;
  padding-bottom: 15px;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons a {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 15px;
  cursor: pointer;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons a:last-of-type {
  margin-right: 0;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons a i {
  font-size: 1.75rem;
  color: #fff;
}
.detail-post.article-content .article-wrapper .article-meta .share-buttons a .count {
  display: none;
}
.detail-post.article-content .article-wrapper .article-meta .block {
  width: 100%;
  max-width: initial;
  margin-bottom: 30px;
}
.detail-post.article-content .article-wrapper .article-meta .related h3 {
  display: block;
  text-align: center;
  padding: 30px 0 5px 0;
  text-transform: uppercase;
}

.single-nav {
  text-align: center;
  padding: 10px 0;
  border: 1px solid #444;
  border-left: 0;
  border-right: 0;
  margin-bottom: 50px;
}
.single-nav .link-wrapper {
  float: left;
  display: inline-block;
}
.single-nav .link-wrapper.pull-right {
  float: right;
}
.single-nav a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  padding-left: 0;
  padding-right: 0;
  display: inline-block !important;
}
.single-nav a:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: #009fe3;
}
.single-nav a:hover i {
  color: #009fe3;
}

.blogposts .column-wrapper {
  margin: 0;
  padding: 0;
}

.blogposts .section.socials, .single-post .section.socials {
  margin-top: 30px;
}
.blogposts .section.socials .form .message, .single-post .section.socials .form .message {
  background: #34B17C;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  margin-left: 0;
}
.blogposts .section.socials .form .message p, .single-post .section.socials .form .message p {
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.blogposts .section.socials .form .form-fields, .blogposts .section.socials .form .form-footer, .single-post .section.socials .form .form-fields, .single-post .section.socials .form .form-footer {
  width: 65%;
  margin: 0;
  padding: 0;
  float: left;
  clear: none;
}
.blogposts .section.socials .form .form-fields .field-wrapper, .blogposts .section.socials .form .form-footer .field-wrapper, .single-post .section.socials .form .form-fields .field-wrapper, .single-post .section.socials .form .form-footer .field-wrapper {
  width: 100%;
  margin-right: 0;
  margin-bottom: 15px;
}
.blogposts .section.socials .form .form-fields .submit-form, .blogposts .section.socials .form .form-footer .submit-form, .single-post .section.socials .form .form-fields .submit-form, .single-post .section.socials .form .form-footer .submit-form {
  width: 90%;
  padding: 35px 0 !important;
}
.blogposts .section.socials .form .form-footer, .single-post .section.socials .form .form-footer {
  width: 35% !important;
}
.blogposts .section.socials .form .message, .single-post .section.socials .form .message {
  height: 100px;
}

.detail-post.article-content .top-img-article {
  display: block;
  width: 100%;
}
.detail-post.article-content .top-img-article img {
  display: none;
}

.tour-video .column-wrapper {
  padding-top: 0;
}

.regular-page .section.ggz-columns, .section.ggz-columns {
  background: #F7F5F3 !important;
}
.regular-page .section.ggz-columns .column-wrapper, .section.ggz-columns .column-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}

.section.toggle-target-audience {
  padding: 0 0 15px 0;
  margin-top: 0;
  background: transparent !important;
}
.section.toggle-target-audience .column {
  cursor: pointer;
  border: 2px solid #F7F5F3;
  position: relative;
  border-radius: 3px;
  padding: 30px;
}
.section.toggle-target-audience .column strong {
  font-size: 1.5rem;
  padding: 0 0 15px 170px;
  display: block;
}
.section.toggle-target-audience .column.active {
  background: #F7F5F3;
  border-color: #cec2b6;
}
.section.toggle-target-audience .column.active:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #F7F5F3;
  border: 2px solid #cec2b6;
  border-left: 0;
  border-top: 0;
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -20px;
  border-radius: 3px;
}

.image-link-block {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}
.image-link-block img {
  display: block;
}
.image-link-block .button, .image-link-block .btn, .image-link-block a[class^="btn--"], .image-link-block .section.guide-cta a, .section.guide-cta .image-link-block a {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.conditional .column, .gezondheidszorg-columns .column, .ggz-columns .column {
  position: relative;
  padding: 0 30px 90px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.conditional .column:last-of-type, .gezondheidszorg-columns .column:last-of-type, .ggz-columns .column:last-of-type {
  border-right: 0;
  padding-right: 0;
}
.conditional .column img, .gezondheidszorg-columns .column img, .ggz-columns .column img {
  height: 226px;
  width: auto;
}
.conditional .column a, .conditional .column a h2, .gezondheidszorg-columns .column a, .gezondheidszorg-columns .column a h2, .ggz-columns .column a, .ggz-columns .column a h2 {
  text-decoration: none;
}
.conditional .column h2, .gezondheidszorg-columns .column h2, .ggz-columns .column h2 {
  font-size: 1.375rem;
  line-height: 100%;
  height: 60px;
}
.conditional .column .button, .conditional .column .btn, .conditional .column a[class^="btn--"], .conditional .column .section.guide-cta a, .section.guide-cta .conditional .column a, .gezondheidszorg-columns .column .button, .gezondheidszorg-columns .column .btn, .gezondheidszorg-columns .column a[class^="btn--"], .gezondheidszorg-columns .column .section.guide-cta a, .section.guide-cta .gezondheidszorg-columns .column a, .ggz-columns .column .button, .ggz-columns .column .btn, .ggz-columns .column a[class^="btn--"], .ggz-columns .column .section.guide-cta a, .section.guide-cta .ggz-columns .column a {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
}
.conditional .column .button:visited, .conditional .column .btn:visited, .conditional .column a[class^="btn--"]:visited, .conditional .column .section.guide-cta a:visited, .section.guide-cta .conditional .column a:visited, .gezondheidszorg-columns .column .button:visited, .gezondheidszorg-columns .column .btn:visited, .gezondheidszorg-columns .column a[class^="btn--"]:visited, .gezondheidszorg-columns .column .section.guide-cta a:visited, .section.guide-cta .gezondheidszorg-columns .column a:visited, .ggz-columns .column .button:visited, .ggz-columns .column .btn:visited, .ggz-columns .column a[class^="btn--"]:visited, .ggz-columns .column .section.guide-cta a:visited, .section.guide-cta .ggz-columns .column a:visited {
  color: #fff;
}

.regular-page .gezondheidszorg-columns .column-wrapper.half-half, .regular-page .section.ggz-columns .column-wrapper.half-half {
  padding-left: 23%;
  padding-right: 23%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type, .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type {
  padding-left: 30px;
}
.regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type .button, .regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type .btn, .regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type a[class^="btn--"], .regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type .section.guide-cta a, .section.guide-cta .regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type a, .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type .button, .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type .btn, .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type a[class^="btn--"], .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type .section.guide-cta a, .section.guide-cta .regular-page .section.ggz-columns .column-wrapper.half-half .column:last-of-type a {
  left: 30px;
}
.regular-page .gezondheidszorg-columns .column-wrapper.half-half img, .regular-page .section.ggz-columns .column-wrapper.half-half img {
  margin-bottom: 30px;
}

.store .section:first-of-type .column.column:first-of-type h2 {
  font-size: 1.375rem;
  padding-bottom: 15px;
}

.woocommerce .loader:before {
  display: none !important;
}

.form-row.create-account {
  display: none;
}

.form-row.notes {
  width: 100% !important;
  max-width: 100% !important;
}

.overview {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}
.overview .sidebar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 30px;
  background: #F7F5F3;
  padding: 30px;
}
.overview .sidebar h4 {
  display: block;
  font-size: 1.25rem;
  padding: 0 0 5px 0;
  margin: 0 0 15px 0;
  border-bottom: 2px solid #444;
  text-align: center;
}
.overview .product-overview {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  box-flex: 3;
  -webkit-flex: 3;
  -moz-flex: 3;
  -ms-flex: 3;
  flex: 3;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.overview .product-overview .product {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 30%;
  -moz-flex: 0 1 30%;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  margin-right: 0;
  margin-bottom: 30px;
  min-width: 30%;
}
.overview .product-overview .product.featured {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 2 65%;
  -moz-flex: 0 2 65%;
  -ms-flex: 0 2 65%;
  flex: 0 2 65%;
  min-width: 65%;
}
.overview .product-overview .product.featured:hover .product-icon {
  box-shadow: 0 0 0 250px #009fe3;
}

.search-column {
  position: relative;
}
.search-column .store-anchor {
  position: absolute;
  top: -170px;
  right: 0;
  width: 0;
  height: 0;
}

.store-images {
  padding: 30px 0 0 0 !important;
}
.store-images .column-wrapper {
  padding: 0 !important;
}

.store-intro {
  padding-top: 0 !important;
}
.store-intro .search-field {
  width: 100%;
  position: relative;
}
.store-intro .search-field input {
  width: 100%;
  margin-top: 10px;
  padding: 10px 15px;
  font-size: 1.25rem;
  font-weight: 300;
}
.store-intro .search-field input.placeholder {
  color: #ccc;
}
.store-intro .search-field input:-moz-placeholder {
  color: #ccc;
}
.store-intro .search-field input::-moz-placeholder {
  color: #ccc;
}
.store-intro .search-field input::-webkit-input-placeholder {
  color: #ccc;
}
.store-intro .search-field input:focus.placeholder {
  color: #009fe3;
}
.store-intro .search-field input:focus:-moz-placeholder {
  color: #009fe3;
}
.store-intro .search-field input:focus::-moz-placeholder {
  color: #009fe3;
}
.store-intro .search-field input:focus::-webkit-input-placeholder {
  color: #009fe3;
}
.store-intro .search-field .search-click {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  right: 10px;
  top: 15px;
  text-align: center;
  display: block;
  width: 44px;
  height: 44px;
  padding: 8px 0 0 0;
  cursor: pointer;
}
.store-intro .search-field .search-click i {
  font-size: 1.75rem;
  color: #444;
}
.store-intro .search-field .search-click:hover {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.store-intro .search-field .search-click:hover i {
  color: #009fe3;
}

#products {
  position: relative;
}
#products .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -100px;
  width: 200px;
  display: none;
}
#products .loader > div {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #009fe3;
}
#products.loading .loader {
  display: block;
}
#products.loading .product {
  opacity: .2;
}

.filters {
  list-style: none;
  margin: 30px 0 0 0;
  padding-left: 0;
}
.filters ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding-left: 0;
  display: none;
}
.filters ul .checkbox {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 15px;
  border: 1px solid #ccc;
  text-align: center;
  background: #fff;
  border-radius: 3px;
}
.filters ul .checkbox i {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  color: #009fe3;
  opacity: 0;
}
.filters ul li {
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: normal;
}
.filters ul li:hover {
  color: #009fe3;
}
.filters ul li:hover i {
  opacity: .3;
}
.filters ul li.click-all, .filters ul li.illness-toggle {
  cursor: pointer;
  margin: 10px 0 0 0;
  color: #009fe3;
  font-size: 0.875rem;
}
.filters ul li.click-all i, .filters ul li.illness-toggle i {
  padding-right: 10px;
  color: #009fe3;
}
.filters ul li.click-all:hover, .filters ul li.illness-toggle:hover {
  color: #444;
}
.filters ul li.illness-toggle {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  border-right: 0;
  padding: 4px 0;
  margin: 4px 0;
}
.filters ul li.illness-toggle i {
  padding-left: 10px;
  padding-right: 0;
  color: #009fe3;
}
.filters ul li.checked .checkbox i {
  opacity: 1 !important;
}
.filters ul.items-illness li {
  display: none;
}
.filters ul.items-illness li:nth-child(1), .filters ul.items-illness li:nth-child(2), .filters ul.items-illness li:nth-child(3), .filters ul.items-illness li.show-more, .filters ul.items-illness li.click-all {
  display: block;
}
.filters ul.items-illness.activated li {
  display: block;
}
.filters ul.items-illness.activated li.show-more {
  display: none !important;
}
.filters > li {
  position: relative;
}
.filters > li strong {
  padding: 0 0 5px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ccc;
  display: block;
}
.filters > li strong:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  content: '';
  width: 0;
  height: 0;
  display: block;
  border: 6px solid #333;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  top: 10px;
  right: 5px;
}
.filters > li:hover {
  cursor: pointer;
}
.filters > li:hover strong {
  color: #009fe3;
}
.filters > li:hover strong:after {
  border-color: #009fe3 transparent transparent transparent;
}
.filters > li.open strong:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 5px;
}
.filters > li.open ul {
  display: block;
}

.regular-page .form-row.terms {
  width: 100% !important;
  max-width: 100% !important;
  padding-top: 10px;
}
.regular-page .form-row.terms input {
  display: inline-block !important;
  width: 16px;
  height: 16px;
}

.product {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 250px;
  -moz-flex: 1 0 250px;
  -ms-flex: 1 0 250px;
  flex: 1 0 250px;
  background-color: #F7F5F3;
  height: 275px;
  border: 2px solid #009fe3;
  border-radius: 3px;
  position: relative;
  margin-right: 30px;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
}
.product:last-child {
  margin-right: 0;
}
.product .price-type {
  position: absolute;
  top: 35px;
  text-align: center;
  right: 10px;
}
.product .price-type.gratis, .product .price-type.free {
  background-color: #34B17C;
  right: 0;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  top: 30px;
  color: #fff;
  padding: 3px 5px;
}
.product .title {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #009fe3;
  font-size: 1.25rem;
}
.product .product-cat {
  padding: 4px 14px;
  background: #ED9D5F;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 3px 0 3px;
}
.product .product-icon {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  padding: 2px 25px 25px 8px;
  border-radius: 3px;
  background: #009fe3;
  box-shadow: 0 0 0 1px #009fe3;
  color: #fff;
  font-size: 2.375rem;
  font-family: "Rubrik";
  display: inline-block;
  margin-top: 65px;
}
.product:hover {
  background-size: 700px 700px;
  background-position: center center;
}
.product:hover .title {
  color: #fff;
}
.product:hover .product-icon {
  box-shadow: 0 0 0 350px #009fe3 !important;
}
.product:hover .price-type {
  color: #fff;
}

.select-message {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  width: 80%;
  margin: 0 auto 50px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.select-message > div {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 60px;
  position: relative;
}
.select-message > div .button, .select-message > div .btn, .select-message > div a[class^="btn--"], .select-message > div .section.guide-cta a, .section.guide-cta .select-message > div a {
  position: absolute;
  bottom: 0;
  cursor: pointer;
}
.select-message .message-left {
  padding-right: 20px;
}
.select-message .message-left .button, .select-message .message-left .btn, .select-message .message-left a[class^="btn--"], .select-message .message-left .section.guide-cta a, .section.guide-cta .select-message .message-left a {
  left: 0;
}
.select-message .message-right {
  padding-left: 20px;
  text-align: right;
}
.select-message .message-right .button, .select-message .message-right .btn, .select-message .message-right a[class^="btn--"], .select-message .message-right .section.guide-cta a, .section.guide-cta .select-message .message-right a {
  right: 0;
}

form.woocommerce-checkout {
  display: none;
}
form.woocommerce-checkout.show {
  display: block;
}

.user-cookie-exists form.woocommerce-checkout, .woo-checkout-has-errors form.woocommerce-checkout {
  display: block;
}
.user-cookie-exists .select-message, .woo-checkout-has-errors .select-message {
  display: none;
}

.section.store-intro {
  background: #fff !important;
}

.vat-notice {
  padding: 4px 8px;
  background: #eee;
  float: right;
  margin: 30px 0;
}

.vat-wrapper {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
  margin-top: 0 !important;
}
.vat-wrapper .vat-notice {
  margin: 0;
}

.woocommerce-order-received header.title, .woocommerce-order-received address {
  display: none;
}

.detail-product {
  display: block;
  padding-top: 50px;
  /**
   * Head:
   */
  /**
   * Taxonomy:
   */
  /**
   * Description:
   */
}
.detail-product .msg {
  background: #74C6A0;
  padding: 15px;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.detail-product .msg i {
  float: left;
  margin: 0 0 0 10px;
  font-size: 1.4375rem;
  color: rgba(0, 0, 0, 0.5);
}
.detail-product .msg a {
  font-size: 1.25rem;
  color: #444 !important;
  font-weight: bold;
}
.detail-product .msg a:hover {
  color: #fff !important;
}
.detail-product .row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  margin: 30px 0;
}
.detail-product .row > div {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}
.detail-product .row > div:last-of-type {
  margin-right: 0;
}
.detail-product .product-message {
  margin-top: 80px;
  display: block;
  width: 50%;
  margin: 80px auto 0 auto;
  background: #34B17C;
  padding: 30px;
}
.detail-product .product-message i {
  font-size: 2.5rem;
  color: #fff;
  float: left;
  margin-right: 15px;
}
.detail-product .product-message p {
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}
.detail-product .product-head .iconic {
  background: #009fe3;
  position: relative;
}
.detail-product .product-head .iconic .product-icon {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  font-size: 2.625rem;
  color: #fff;
  display: block;
  text-align: center;
}
.detail-product .product-head .iconic strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.detail-product .product-head .iconic strong span {
  color: #fff;
}
.detail-product .product-head .add-to-cart .arrow {
  padding-top: 20px;
}
.detail-product .product-head .private-price {
  width: 50%;
  display: block;
  float: right;
  padding: 10px;
  background: #F7F5F3;
  text-align: center;
}
.detail-product .product-head .info {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.detail-product .product-head .info h1 {
  font-size: 1.375rem;
  padding-bottom: 10px;
}
.detail-product .product-head .info .read-more {
  color: #009fe3;
  display: inline-block;
  padding-left: 10px;
  text-decoration: underline;
  cursor: pointer;
}
.detail-product .product-head .info .read-more:hover {
  color: #ED9D5F;
}
.detail-product .product-head .info .meta {
  position: relative;
  padding: 30px 0 0 0;
}
.detail-product .product-head .info .meta .price {
  font-size: 1.75rem;
  padding-top: 8px;
  display: inline-block;
}
.detail-product .product-head .info .meta .price small {
  display: block;
}
.detail-product .product-head .info .meta .button, .detail-product .product-head .info .meta .btn, .detail-product .product-head .info .meta a[class^="btn--"], .detail-product .product-head .info .meta .section.guide-cta a, .section.guide-cta .detail-product .product-head .info .meta a {
  float: right;
  padding: 20px 80px 20px 40px;
  background: #34B17C;
  color: #fff;
}
.detail-product .product-head .info .meta .button:hover, .detail-product .product-head .info .meta .btn:hover, .detail-product .product-head .info .meta a[class^="btn--"]:hover, .detail-product .product-head .info .meta .section.guide-cta a:hover, .section.guide-cta .detail-product .product-head .info .meta a:hover {
  background: #009fe3;
}
.detail-product .product-head .review {
  position: relative;
}
.detail-product .product-head .review .ref-text {
  position: absolute;
  bottom: 100px;
  padding: 15px;
  border: 2px solid #009fe3;
  color: #009fe3;
  font-size: 1rem;
  font-weight: bold;
  display: block;
}
.detail-product .product-head .review .ref-text:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  bottom: -7px;
  left: 20px;
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #009fe3;
  border-top: 0;
  border-left: 0;
  background: #fff;
}
.detail-product .product-head .review .ref-person {
  display: block;
  position: absolute;
  bottom: 0;
  min-height: 40px;
}
.detail-product .product-head .review .ref-person .avatar {
  float: left;
  width: 40px;
  height: 40px;
  margin: 0 15px 0 0;
}
.detail-product .product-head .review .ref-person span {
  line-height: 100%;
  padding: 0;
}
.detail-product .product-head .review .ref-person .name {
  font-size: 1.125rem;
}
.detail-product .product-head .review .ref-person .func {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875rem;
  font-style: italic;
  color: #009fe3;
  position: absolute;
  padding-left: 55px;
  display: block;
}
.detail-product .product-tax {
  padding: 15px 30px 30px 30px;
  background: #F7F5F3;
  margin: 60px 0;
}
.detail-product .product-tax strong {
  font-size: 1.125rem;
  display: block;
  width: 100%;
  padding: 15px 0 0 0;
}
.detail-product .product-tax p, .detail-product .product-tax a {
  font-size: 1rem;
}
.detail-product .product-tax a {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 2px;
  text-decoration: none;
  margin: 0 4px 4px 0;
  display: inline-block;
  line-height: 110%;
}
.detail-product .product-tax a:hover {
  background: #009fe3;
}
.detail-product .product-description .product-images .main-gallery img {
  min-width: 100%;
  max-width: 100%;
  height: auto;
}
.detail-product .product-description .flickity-page-dots {
  display: none;
}
.detail-product .product-description .gallery-nav .gallery-cell {
  width: 70px;
  height: 70px;
  margin-left: 5px;
  border: 1px solid #ccc;
}
.detail-product .product-description .gallery-nav .gallery-cell:hover {
  opacity: .4;
  cursor: pointer;
}
.detail-product .product-description .tabbed-desc .tabs {
  list-style: none;
  padding-left: 0;
  margin-left: 10px;
}
.detail-product .product-description .tabbed-desc .tabs .tab {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 2px;
  border: 1px solid #ccc;
  border-bottom: 0;
  background: #ccc;
  margin: 0 0 -1px 0;
}
.detail-product .product-description .tabbed-desc .tabs .tab.current {
  background: #fff;
}
.detail-product .product-description .tabbed-desc .tabs .tab:hover {
  border-color: #009fe3;
  background: #009fe3;
  color: #fff;
  cursor: pointer;
}
.detail-product .product-description .tabbed-desc .tab-content {
  padding: 15px 30px;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: none;
}
.detail-product .product-description .tabbed-desc .tab-content.current {
  display: block;
}
.detail-product .product-related {
  border-top: 1px solid #ccc;
  padding: 25px 0;
  margin: 35px 0 0 0;
}
.detail-product .product-related h2 {
  font-size: 1.375rem;
  text-transform: uppercase;
  color: #444;
}
.detail-product .product-related .row > .product {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 23%;
  -moz-flex: 0 1 23%;
  -ms-flex: 0 1 23%;
  flex: 0 1 23%;
}

.product-store-link {
  text-decoration: none;
  font-size: 0.875rem;
}
.product-store-link:hover {
  color: #009fe3;
}

.cross-sells .products {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.cross-sells .products .product {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 23.5%;
  -moz-flex: 0 0 23.5%;
  -ms-flex: 0 0 23.5%;
  flex: 0 0 23.5%;
  margin: 0 2% 20px 0;
}
.cross-sells .products .product:nth-child(4n+4) {
  margin-right: 0;
}

/**
* Home CSS file 
* Styling for home:
* 
*/
.home .home-header {
  padding: 0;
  min-height: 550px;
  background: url("../images/reference-bg.jpg");
  background-position: center 30%;
  background-size: 100% auto;
  margin-top: -156px;
  background-repeat: no-repeat;
}
.home .home-header .column-wrapper {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0;
  min-height: 550px;
}
.home .home-header .column-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.home .home-header .avatar {
  display: none;
}
.home .home-header .headline-wrapper {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
.home .home-header .headline-wrapper h1, .home .home-header .headline-wrapper p {
  font-size: 82px;
  line-height: 100%;
  font-weight: 100;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.home .home-header .headline-wrapper p {
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.home .home-header .column.reference {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  box-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.home .home-header .column.reference .inner-wrapper {
  width: 100%;
}
.home .home-header .btn-wrapper {
  margin-top: 30px;
  padding: 0;
  width: 100%;
  text-align: center;
}
.home .home-header .btn-wrapper .button, .home .home-header .btn-wrapper .btn, .home .home-header .btn-wrapper a[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a, .section.guide-cta .home .home-header .btn-wrapper a {
  font-weight: normal;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  border: 2px solid #ED9D5F;
  padding: 0;
  background: #ED9D5F;
  margin-right: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.home .home-header .btn-wrapper .button:last-child, .home .home-header .btn-wrapper .btn:last-child, .home .home-header .btn-wrapper a[class^="btn--"]:last-child, .home .home-header .btn-wrapper .section.guide-cta a:last-child, .section.guide-cta .home .home-header .btn-wrapper a:last-child {
  margin-right: 0;
}
.home .home-header .btn-wrapper .button .btn-content, .home .home-header .btn-wrapper .btn .btn-content, .home .home-header .btn-wrapper a[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a .btn-content, .section.guide-cta .home .home-header .btn-wrapper a .btn-content {
  padding: 13px 50px 13px 30px;
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.home .home-header .btn-wrapper .button.ghost, .home .home-header .btn-wrapper .ghost.btn, .home .home-header .btn-wrapper a.ghost[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a.ghost, .section.guide-cta .home .home-header .btn-wrapper a.ghost {
  box-shadow: none;
  background-color: transparent;
  margin-right: 15px;
}
.home .home-header .btn-wrapper .button.ghost .btn-content, .home .home-header .btn-wrapper .ghost.btn .btn-content, .home .home-header .btn-wrapper a.ghost[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a.ghost .btn-content, .section.guide-cta .home .home-header .btn-wrapper a.ghost .btn-content {
  padding: 13px 30px;
  color: #009fe3;
}
.home .home-header .btn-wrapper .button.first-button, .home .home-header .btn-wrapper .first-button.btn, .home .home-header .btn-wrapper a.first-button[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a.first-button, .section.guide-cta .home .home-header .btn-wrapper a.first-button {
  border-color: #009fe3;
  background: #009fe3;
}
.home .home-header .btn-wrapper .button.first-button .btn-content, .home .home-header .btn-wrapper .first-button.btn .btn-content, .home .home-header .btn-wrapper a.first-button[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a.first-button .btn-content, .section.guide-cta .home .home-header .btn-wrapper a.first-button .btn-content {
  padding: 13px 50px 13px 30px;
}
.home .home-header .btn-wrapper .button.green-button, .home .home-header .btn-wrapper .green-button.btn, .home .home-header .btn-wrapper a.green-button[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a.green-button, .section.guide-cta .home .home-header .btn-wrapper a.green-button {
  border-color: #FFF;
  background: #34B17C;
}
.home .home-header .btn-wrapper .button.green-button .btn-content, .home .home-header .btn-wrapper .green-button.btn .btn-content, .home .home-header .btn-wrapper a.green-button[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a.green-button .btn-content, .section.guide-cta .home .home-header .btn-wrapper a.green-button .btn-content {
  padding: 13px 50px 13px 30px;
}
.home .home-header .btn-wrapper .button .btn-content, .home .home-header .btn-wrapper .btn .btn-content, .home .home-header .btn-wrapper a[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a .btn-content, .section.guide-cta .home .home-header .btn-wrapper a .btn-content {
  text-transform: initial;
  font-weight: bold;
}
.home .home-header .btn-wrapper .button .arrow, .home .home-header .btn-wrapper .btn .arrow, .home .home-header .btn-wrapper a[class^="btn--"] .arrow, .home .home-header .btn-wrapper .section.guide-cta a .arrow, .section.guide-cta .home .home-header .btn-wrapper a .arrow {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  width: 50px;
  padding: 15px 10px 15px 18px;
  background: none;
  color: #fff;
  display: inline-block;
  border-radius: 0 3px 3px 0;
}
.home .home-header .btn-wrapper .button .arrow i, .home .home-header .btn-wrapper .btn .arrow i, .home .home-header .btn-wrapper a[class^="btn--"] .arrow i, .home .home-header .btn-wrapper .section.guide-cta a .arrow i, .section.guide-cta .home .home-header .btn-wrapper a .arrow i {
  color: #fff;
}
.home .home-header .btn-wrapper .button:hover, .home .home-header .btn-wrapper .btn:hover, .home .home-header .btn-wrapper a[class^="btn--"]:hover, .home .home-header .btn-wrapper .section.guide-cta a:hover, .section.guide-cta .home .home-header .btn-wrapper a:hover {
  border-color: #34B17C;
  background: #34B17C;
}
.home .home-header .btn-wrapper .button:hover.ghost, .home .home-header .btn-wrapper .btn:hover.ghost, .home .home-header .btn-wrapper a[class^="btn--"]:hover.ghost, .home .home-header .btn-wrapper .section.guide-cta a:hover.ghost, .section.guide-cta .home .home-header .btn-wrapper a:hover.ghost {
  border-color: #009fe3;
}
.home .home-header .btn-wrapper .button:hover.ghost .btn-content, .home .home-header .btn-wrapper .btn:hover.ghost .btn-content, .home .home-header .btn-wrapper a[class^="btn--"]:hover.ghost .btn-content, .home .home-header .btn-wrapper .section.guide-cta a:hover.ghost .btn-content, .section.guide-cta .home .home-header .btn-wrapper a:hover.ghost .btn-content {
  background: #009fe3;
  color: #fff;
}
.home .home-header .btn-wrapper .button:hover.green-button, .home .home-header .btn-wrapper .btn:hover.green-button, .home .home-header .btn-wrapper a[class^="btn--"]:hover.green-button, .home .home-header .btn-wrapper .section.guide-cta a:hover.green-button, .section.guide-cta .home .home-header .btn-wrapper a:hover.green-button {
  border-color: #FFF;
  background: #009fe3;
}
.home .home-header .btn-wrapper .button:hover .arrow, .home .home-header .btn-wrapper .btn:hover .arrow, .home .home-header .btn-wrapper a[class^="btn--"]:hover .arrow, .home .home-header .btn-wrapper .section.guide-cta a:hover .arrow, .section.guide-cta .home .home-header .btn-wrapper a:hover .arrow {
  padding: 15px 10px 15px 22px;
}
.home .product-intro {
  text-align: center;
  margin-bottom: 0;
}
.home .product-intro h2.section-title {
  font-size: 2.375rem;
}
.home .product-intro h3 {
  padding-bottom: 20px;
}
.home .product-intro h3 i {
  color: #009fe3;
  padding-right: 5px;
}
.home .product-intro .column {
  text-align: left;
}
.home .product-intro .button, .home .product-intro .btn, .home .product-intro a[class^="btn--"], .home .product-intro .section.guide-cta a, .section.guide-cta .home .product-intro a {
  background: #009fe3;
  margin: 30px auto;
  padding: 15px 30px;
  color: #fff;
  font-weight: bold;
}
.home .product-intro .button:hover, .home .product-intro .btn:hover, .home .product-intro a[class^="btn--"]:hover, .home .product-intro .section.guide-cta a:hover, .section.guide-cta .home .product-intro a:hover {
  background: #34B17C;
}
.home .social-proof {
  background: #F7F5F3;
  padding: 15px 0;
}
.home .social-proof div {
  width: 100%;
}
.home .intro-patients {
  background: #fff;
  padding-bottom: 0;
}
.home .intro-patients h2 {
  padding-bottom: 30px;
}
.home .intro-patients .column-wrapper {
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.home .intro-patients .column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  margin-bottom: 25px;
  padding: 0 20%;
}
.home .intro-patients .column img {
  float: left;
  margin: 0 30px 15px 0;
  max-height: 200px;
  width: auto;
}
.home .intro-patients .column h2 {
  font-size: 1.5rem;
  padding-bottom: 5px;
}
.home .intro-patients .column.button-column {
  text-align: center;
}
.home .intro-patients .column .button, .home .intro-patients .column .btn, .home .intro-patients .column a[class^="btn--"], .home .intro-patients .column .section.guide-cta a, .section.guide-cta .home .intro-patients .column a {
  background: #ED9D5F;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 15px 30px;
}
.home .intro-patients .column .button:hover, .home .intro-patients .column .btn:hover, .home .intro-patients .column a[class^="btn--"]:hover, .home .intro-patients .column .section.guide-cta a:hover, .section.guide-cta .home .intro-patients .column a:hover {
  background: #34B17C;
}
.home .shop {
  background: url("../images/shop-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.home .shop .column-wrapper {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background: #fff;
  padding: 30px;
}
.home .shop .column-wrapper .column {
  -webkit-box-flex: none;
  -moz-box-flex: none;
  box-flex: none;
  -webkit-flex: none;
  -moz-flex: none;
  -ms-flex: none;
  flex: none;
  display: block;
  width: 100%;
}
.home .shop .collection {
  display: block !important;
}
.home .shop .collection h2 {
  font-size: 1.5rem;
  display: block;
  text-align: center;
  padding: 30px 0 0 0;
}
.home .shop .collection .column-row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.home .shop .collection .block {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 25%;
  -moz-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  margin-right: 30px;
}
.home .shop .collection .block:last-of-type {
  margin-right: 0;
}
.home .shop .shop-block {
  width: 100%;
  margin-right: 0;
}
.home .shop .shop-block img {
  width: 47.5%;
  float: left;
  margin-right: 5%;
}
.home .shop .shop-block .description {
  float: left;
  width: 47.5%;
  margin-right: 0;
}
.home .shop .shop-block .description h3, .home .shop .shop-block .description p {
  padding-bottom: 20px;
}
.home .shop .shop-block .description .button, .home .shop .shop-block .description .btn, .home .shop .shop-block .description a[class^="btn--"], .home .shop .shop-block .description .section.guide-cta a, .section.guide-cta .home .shop .shop-block .description a {
  padding: 15px 75px 15px 30px;
  background: #009fe3;
  color: #fff;
  float: right;
}
.home .shop .shop-block .description .button:hover, .home .shop .shop-block .description .btn:hover, .home .shop .shop-block .description a[class^="btn--"]:hover, .home .shop .shop-block .description .section.guide-cta a:hover, .section.guide-cta .home .shop .shop-block .description a:hover {
  background: #34B17C;
}

.social-proof-item, .social-proof-item:visited {
  vertical-align: middle;
  display: inline-block;
}

a.social-proof-item, a.social-proof-item:visited {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
a.social-proof-item:hover, a.social-proof-item:visited:hover {
  opacity: .5;
}

.section.platform-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 90px auto 0 auto;
}
.section.platform-section .button-wrapper {
  display: block;
  width: 100%;
  text-align: center;
}
.section.platform-section .button-wrapper .button, .section.platform-section .button-wrapper .btn, .section.platform-section .button-wrapper a[class^="btn--"], .section.platform-section .button-wrapper .section.guide-cta a, .section.guide-cta .section.platform-section .button-wrapper a {
  min-width: 280px;
}
.section.platform-section .link-content-wrapper {
  text-align: center;
  display: block;
  max-width: 600px;
  margin: 0 auto 30px auto;
}
.section.platform-section .link-content-wrapper h1, .section.platform-section .link-content-wrapper h2, .section.platform-section .link-content-wrapper h3, .section.platform-section .link-content-wrapper h4, .section.platform-section .link-content-wrapper h5, .section.platform-section .link-content-wrapper h6 {
  margin-bottom: 30px;
}

.section.cta-link-block {
  padding: 0;
}
.section.cta-link-block .column-wrapper {
  padding: 0;
}
.section.cta-link-block .inner-container {
  padding: 50px 0;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}
.section.cta-link-block .column.block-column {
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  background-position: center center;
}
.section.cta-link-block .column.block-column h1, .section.cta-link-block .column.block-column h2, .section.cta-link-block .column.block-column h3, .section.cta-link-block .column.block-column h4, .section.cta-link-block .column.block-column h5, .section.cta-link-block .column.block-column h6, .section.cta-link-block .column.block-column p {
  color: #FFF;
  margin-bottom: 15px;
}
.section.cta-link-block .column.block-column h1:last-child, .section.cta-link-block .column.block-column h2:last-child, .section.cta-link-block .column.block-column h3:last-child, .section.cta-link-block .column.block-column h4:last-child, .section.cta-link-block .column.block-column h5:last-child, .section.cta-link-block .column.block-column h6:last-child, .section.cta-link-block .column.block-column p:last-child {
  margin-bottom: 0;
}
.section.cta-link-block .column.block-column h3 {
  font-size: 36px;
}
.section.cta-link-block .column.block-column h2 {
  font-size: 44px;
}
.section.cta-link-block .column.block-column .button, .section.cta-link-block .column.block-column .btn, .section.cta-link-block .column.block-column a[class^="btn--"], .section.cta-link-block .column.block-column .section.guide-cta a, .section.guide-cta .section.cta-link-block .column.block-column a {
  background: #34B17C;
  border: 2px solid #FFF;
}
.section.cta-link-block .column.block-column .button .arrow, .section.cta-link-block .column.block-column .btn .arrow, .section.cta-link-block .column.block-column a[class^="btn--"] .arrow, .section.cta-link-block .column.block-column .section.guide-cta a .arrow, .section.guide-cta .section.cta-link-block .column.block-column a .arrow {
  background: none;
}
.section.cta-link-block .column.block-column .button:hover, .section.cta-link-block .column.block-column .btn:hover, .section.cta-link-block .column.block-column a[class^="btn--"]:hover, .section.cta-link-block .column.block-column .section.guide-cta a:hover, .section.guide-cta .section.cta-link-block .column.block-column a:hover {
  background: #009fe3;
  border-color: #FFF;
}

.section.product-intro-section {
  background: #F7F5F3;
}
.section.product-intro-section .column.block-column {
  text-align: left;
  position: relative;
  padding-bottom: 70px;
  border-right: 2px solid #e3dcd4;
  padding-right: 30px;
}
.section.product-intro-section .column.block-column:last-child {
  border: none;
  padding-right: 0;
}
.section.product-intro-section .column.block-column h2 {
  min-height: 67px;
  text-align: center;
}
.section.product-intro-section .column.block-column img {
  max-width: 80%;
  margin: 5px auto 20px auto;
  display: block;
}
.section.product-intro-section .column.block-column .button, .section.product-intro-section .column.block-column .btn, .section.product-intro-section .column.block-column a[class^="btn--"], .section.product-intro-section .column.block-column .section.guide-cta a, .section.guide-cta .section.product-intro-section .column.block-column a {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 175px;
  text-align: center;
}

.column.cta-column p strong {
  font-weight: 700 !important;
}

.partner-section {
  padding-bottom: 0;
}
.partner-section .collection.blocks .block-row {
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0;
}

.collection.blocks .block.partners {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 30%;
  -moz-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  margin-right: 5%;
  margin-bottom: 40px;
  position: relative;
}
.collection.blocks .block.partners:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #000;
}
.collection.blocks .block.partners:nth-child(3n+3), .collection.blocks .block.partners:last-child {
  margin-right: 0;
}
.collection.blocks .block.partners .thumb {
  display: block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.collection.blocks .block.partners img {
  max-width: 100%;
  height: auto;
  display: block;
}
.collection.blocks .block.partners h2 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #FFF;
  background: #009fe3;
  max-width: calc(100% - 40px);
  font-size: 24px;
  padding: 13px 50px 13px 30px;
  line-height: 125%;
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.collection.blocks .block.partners h2 .arrow {
  width: 50px;
  padding: 15px 10px 15px 18px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
}
.collection.blocks .block.partners h2 i {
  transition: .3s;
  color: #FFF;
  position: relative;
  top: 3px;
}
.collection.blocks a.block.partners:hover h2 {
  background: #34B17C;
}
.collection.blocks a.block.partners:hover .thumb {
  opacity: .6;
}

.section.address .column-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.section.address .column-wrapper .form-column {
  padding: 30px;
  background: #009fe3;
}
.section.address .column-wrapper .form-column h2 {
  color: #fff;
}

.section.follow-us {
  vertical-align: middle;
}
.section.follow-us h2 {
  display: inline-block;
  width: 50%;
  text-align: right;
  padding-right: 30px;
  font-size: 1.5rem;
}
.section.follow-us .socials-icons {
  display: inline-block;
  width: 50%;
  margin: 0;
}
.section.follow-us .socials-icons a.social {
  width: 80px;
  height: 80px;
  padding-top: 15px;
  margin: -25px 15px 0 0;
}
.section.follow-us .socials-icons a.social i {
  font-size: 2.625rem;
}

.section.section-support .block-column {
  text-align: center;
}

.section.pricing {
  background: #F7F5F3 !important;
  padding: 50px 0 70px 0;
  margin-top: -21px;
}
.section.pricing .column-wrapper {
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}
.section.pricing .prices-column {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.section.pricing .prices-column .prices-head {
  padding: 25px 0;
  background: #009fe3;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.section.pricing .prices-column .prices-head h1, .section.pricing .prices-column .prices-head h3, .section.pricing .prices-column .prices-head p, .section.pricing .prices-column .prices-head small {
  color: #fff;
  line-height: 100%;
  padding-bottom: 10px;
}
.section.pricing .prices-column .prices-head h1 {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.section.pricing .prices-column .prices-head h1 .currency {
  line-height: 52px;
  font-size: 1.5rem;
  color: #fff;
  padding-right: 10px;
  display: inline-block;
}
.section.pricing .prices-column .prices-head h1 sub {
  color: #fff;
  font-size: 1.5rem;
  line-height: 52px;
  vertical-align: middle;
  padding: 0 0 0 5px;
  margin: 0;
  display: inline-block;
}
.section.pricing .prices-column .prices-head p {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 150%;
}
.section.pricing .prices-column .prices-head p small {
  padding-top: 5px;
  font-size: 0.8125rem;
  display: block;
  text-align: center;
}
.section.pricing .prices-column .prices-head .prices-head-hover {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 30px 30px 50px 30px;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.section.pricing .prices-column .prices-head .prices-head-hover .link {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #009fe3;
  text-decoration: underline;
}
.section.pricing .prices-column .prices-head .prices-head-hover .link:hover {
  color: #00587d;
}
.section.pricing .prices-column .prices-head:hover .prices-head-hover {
  pointer-events: auto;
  opacity: 1;
}
.section.pricing .prices-column ul {
  list-style: none;
  display: block;
  padding: 30px;
}
.section.pricing .prices-column ul li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 7px 15px;
}
.section.pricing .prices-column ul li:nth-child(even) {
  background: #f8f8f8;
}
.section.pricing .prices-column .prices-cta {
  display: block;
  padding: 15px 15px 0 15px;
  background: #fff;
  color: #fff;
  font-size: 1.375rem;
}
.section.pricing .prices-column .prices-cta a, .section.pricing .prices-column .prices-cta a:visited {
  width: 100%;
  display: block;
  padding: 13px 50px 13px 30px;
  background: #009fe3;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  position: relative;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.section.pricing .prices-column .prices-cta a .arrow, .section.pricing .prices-column .prices-cta a:visited .arrow {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  padding: 18px 10px 18px 18px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.section.pricing .prices-column .prices-cta a .arrow i, .section.pricing .prices-column .prices-cta a:visited .arrow i {
  color: #FFF;
  font-size: 1.25rem;
}
.section.pricing .prices-column .prices-cta a:hover, .section.pricing .prices-column .prices-cta a:visited:hover {
  background: #34B17C;
}
.section.pricing .prices-column .prices-cta a:hover .arrow, .section.pricing .prices-column .prices-cta a:visited:hover .arrow {
  right: -4px;
}
.section.pricing .prices-column:nth-child(2) .prices-head {
  background: #ED9D5F;
}
.section.pricing .prices-column:nth-child(3) .prices-head {
  background: #34B17C;
}
.section.pricing .prices-column.featured {
  position: relative;
  margin-top: -30px;
}
.section.pricing .prices-column.featured .feat-graph {
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
  content: '';
  width: 132px;
  height: 107px;
  background: url("../images/featured-price.png");
  display: block;
  position: absolute;
  bottom: -90px;
  right: -85px;
  pointer-events: none;
  z-index: 199;
}
.section.pricing .prices-column.featured .prices-cta a {
  padding-top: 25px;
  padding-bottom: 25px;
}
.section.pricing .prices-column.featured .prices-cta a .arrow {
  padding: 30px 10px 30px 18px;
}
.section.pricing .overlay {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  display: none;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.section.pricing .overlay .popup {
  width: 90%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 10px;
}
.section.pricing .overlay .popup .close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 1.875rem;
  color: #444;
  cursor: pointer;
}
.section.pricing .overlay .popup .close:hover {
  color: #009fe3;
}
.section.pricing .overlay .popup .popup-inner {
  padding: 40px;
}
.section.pricing .overlay.active {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
}

.prijzen .regular-page .section .column-wrapper.half-half, body.pricing .regular-page .section .column-wrapper.half-half {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}
.prijzen .regular-page > #section-1, body.pricing .regular-page > #section-1 {
  background: #fff;
}
.prijzen .pricing-faq, .prijzen .faq, body.pricing .pricing-faq, body.pricing .faq {
  background: #F7F5F3 !important;
}
.prijzen .pricing-faq .section-title, .prijzen .faq .section-title, body.pricing .pricing-faq .section-title, body.pricing .faq .section-title {
  font-size: 1.5rem;
}

.regular-page .section.pricing-bottom {
  background: #F7F5F3;
}

.page .collection {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.page .collection .faq-item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  padding-right: 30px;
  margin-bottom: 30px;
  cursor: pointer;
}
.page .collection .faq-item:nth-child(2n+0), .page .collection .faq-item:last-of-type {
  padding-right: 0;
}
.page .collection .faq-item strong {
  width: 100%;
  min-height: 68px;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #ccc;
  display: block;
  position: relative;
}
.page .collection .faq-item strong:hover {
  background: #ccc;
}
.page .collection .faq-item strong:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  content: '';
  width: 0;
  height: 0;
  border: 6px solid #444;
  border-color: #444 transparent transparent transparent;
  position: absolute;
  right: 15px;
  top: 21px;
}
.page .collection .faq-item .faq-content {
  width: 100%;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: -1px;
  display: none;
}
.page .collection .faq-item .faq-content a {
  color: #009fe3;
}
.page .collection .faq-item .faq-content a:hover {
  color: #ED9D5F;
}
.page .collection .faq-item.active strong:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 16px;
}
.page .collection .faq-item.active .faq-content {
  display: block;
}

.page-template-page-proefaccount {
  background: #F7F5F3;
}

.proefaccount {
  background: #F7F5F3;
  padding-bottom: 100px;
  padding-top: 50px;
}
.proefaccount .section {
  display: none;
  padding: 0;
  margin: 0 auto;
  width: 75%;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  /**
   * Prices:
   */
  /**
   * Fields:
   */
}
.proefaccount .section h2 {
  position: relative;
  font-size: 1.5rem !important;
  padding: 15px 0 !important;
  line-height: 100%;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #009fe3;
}
.proefaccount .section h2 .prev-button {
  padding: 10px 20px;
  border-radius: 3px;
  background: #007bb0;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  position: absolute;
  left: 10px;
  top: 10px;
}
.proefaccount .section h2 .prev-button i {
  color: #fff;
}
.proefaccount .section h2 .prev-button:hover {
  background: #444;
  box-shadow: 0;
  color: #fff;
}
.proefaccount .section h2 .prev-button:hover i {
  color: #fff;
}
.proefaccount .section .column-wrapper {
  padding: 0;
  margin: 0;
}
.proefaccount .section.intro {
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 0 25% 50px 25%;
  width: 100%;
}
.proefaccount .section.intro h2 {
  font-size: 2rem !important;
  padding: 50px 0 15px 0 !important;
  background: transparent;
  color: #444;
}
.proefaccount .section.intro, .proefaccount .section.step-1 {
  display: block;
}
.proefaccount .section .content-wrapper {
  padding: 30px 30px 60px 30px;
}
.proefaccount .section .content-wrapper.form-wrapper {
  padding-bottom: 0;
}
.proefaccount .section .next-button {
  float: right;
  color: #fff;
  border-radius: 3px 0 3px 0;
  cursor: pointer;
}
.proefaccount .section .next-button i {
  color: #fff;
}
.proefaccount .section.step-2 .content-wrapper p {
  padding-left: 10%;
  padding-right: 10%;
}
.proefaccount .section .content-wrapper h1, .proefaccount .section .content-wrapper h2, .proefaccount .section .content-wrapper h3 {
  margin-bottom: 30px;
  font-weight: 400;
}
.proefaccount .section .content-wrapper h3 {
  font-size: 26px;
  font-size: 1.625rem;
}
.proefaccount .section .content-wrapper p strong {
  font-weight: 600;
}
.proefaccount .section .content-wrapper p {
  margin-bottom: 30px;
}
.proefaccount .section .content-wrapper p:last-child {
  margin-bottom: 0;
}
.proefaccount .section .content-wrapper .green-text {
  color: #34B17C;
}
.proefaccount .section .next-button {
  margin: 0 30px 30px 30px;
}
.proefaccount .section .prices-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  max-width: 100%;
}
.proefaccount .section .prices-wrapper .column {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  border: 2px solid #F7F5F3;
  position: relative;
  margin: 0;
}
.proefaccount .section .prices-wrapper .column:nth-child(2) {
  margin: 0 30px;
}
.proefaccount .section .prices-wrapper .column .prices-head {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #74C6A0;
  position: relative;
  padding: 30px 0;
  display: block;
  cursor: pointer;
  text-align: center;
}
.proefaccount .section .prices-wrapper .column .prices-head h2, .proefaccount .section .prices-wrapper .column .prices-head h3, .proefaccount .section .prices-wrapper .column .prices-head p {
  color: #fff;
  background: transparent;
  display: block;
}
.proefaccount .section .prices-wrapper .column .prices-head h3 {
  margin-bottom: 0;
  font-size: 26px;
  font-size: 1.625rem;
}
.proefaccount .section .prices-wrapper .column .prices-head h2 {
  display: none;
}
.proefaccount .section .prices-wrapper .column .prices-features {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: block;
  padding: 15px 0 30px 0;
}
.proefaccount .section .prices-wrapper .column .prices-features li {
  width: 100%;
  text-align: center;
  display: block;
  padding: 5px 0;
  color: #444;
}
.proefaccount .section .prices-wrapper .column .prices-features li:nth-child(even) {
  background: rgba(0, 0, 0, 0.1);
}
.proefaccount .section .prices-wrapper .column .type-wrapper {
  display: block;
  cursor: pointer;
  padding-bottom: 10px;
}
.proefaccount .section .prices-wrapper .column .type-wrapper input {
  display: none;
}
.proefaccount .section .prices-wrapper .column .type-wrapper .custom-radio {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #008dca;
  background: #fff;
  cursor: pointer;
  display: inline-block;
  border-radius: 100px;
}
.proefaccount .section .prices-wrapper .column .type-wrapper .custom-radio i {
  display: inline-block;
  padding: 8px 0 0 1px;
  text-align: center;
  opacity: 0;
  font-size: 1.375rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.proefaccount .section .prices-wrapper .column .type-wrapper input:checked + .custom-radio {
  background: #009fe3;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #008dca;
}
.proefaccount .section .prices-wrapper .column .type-wrapper input:checked + .custom-radio i {
  opacity: 1;
}
.proefaccount .section .prices-wrapper .column:hover .type-wrapper .custom-radio {
  background: #EDF7FA;
}
.proefaccount .section .prices-wrapper .column:hover .type-wrapper .custom-radio i {
  opacity: .3;
}
.proefaccount .section .url-wrapper {
  padding: 20px 0 0 20%;
  margin-bottom: 60px;
}
.proefaccount .section .url-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.proefaccount .section .url-wrapper .validation-error {
  background: #AE2D30;
  padding: 4px 8px;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}
.proefaccount .section .url-wrapper input, .proefaccount .section .url-wrapper span {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 35%;
  display: inline-block;
  font-size: 1.375rem;
  float: left;
  text-align: right;
  padding: 10px 10px 10px 20px;
}
.proefaccount .section .url-wrapper input {
  border: 2px solid #74C6A0;
}
.proefaccount .section .url-wrapper input.error {
  border-color: #AE2D30;
}
.proefaccount .section .url-wrapper.validated-true input {
  border-color: #34B17C;
}
.proefaccount .section .url-wrapper.validated-false input {
  border-color: #AE2D30;
}
.proefaccount .section .url-wrapper .doturl {
  text-align: left;
  background: #74C6A0;
  color: #fff;
  padding: 12px 20px 12px 10px;
}
.proefaccount .section .form-wrapper .field-wrapper {
  width: 47.5%;
}
.proefaccount .section .form-wrapper .field-wrapper.address-wrapper {
  width: 100% !important;
  clear: both;
}
.proefaccount .section .form-wrapper .field-wrapper.address-wrapper .field-wrapper:first-child {
  width: 100%;
  clear: both;
}
.proefaccount .section .form-wrapper .field-wrapper.address-wrapper .field-wrapper:nth-child(2) {
  width: 30%;
  margin-right: 5%;
}
.proefaccount .section .form-wrapper .field-wrapper.address-wrapper .field-wrapper:nth-child(3) {
  width: 65%;
  margin-right: 0;
}
.proefaccount .section .form-wrapper .field-wrapper.field-wrapper.select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 8px 16px;
  position: relative;
  cursor: pointer;
}
.proefaccount .section .form-wrapper .field-wrapper.field-wrapper.select:after {
  content: '';
  border: 6px solid #444;
  border-color: #ccc transparent transparent transparent;
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  top: 15px;
  pointer-events: none;
}
.proefaccount .section .form-wrapper .field-wrapper.field-wrapper.select:hover:after {
  border-color: #009fe3 transparent transparent transparent;
}
.proefaccount .section .form-wrapper .field-wrapper.field-wrapper.select select {
  border: none;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  background: #fff;
  cursor: pointer;
}
.proefaccount .section .form-wrapper .field-wrapper.field-wrapper.select label {
  position: absolute;
  top: -23px;
  left: 0;
}
.proefaccount .section .form-wrapper .field-wrapper label {
  display: block;
  text-align: left;
  font-weight: bold;
}
.proefaccount .section .form-wrapper .field-wrapper:nth-child(odd) {
  margin-right: 5%;
}
.proefaccount .section .form-wrapper .field-wrapper.label-Bedrijfsnaam, .proefaccount .section .form-wrapper .field-wrapper.address-field, .proefaccount .section .form-wrapper .field-wrapper.label-Land, .proefaccount .section .form-wrapper .field-wrapper.label-Country {
  width: 100%;
  margin-right: 0;
}
.proefaccount .section .form-wrapper .field-wrapper.label-Telefoonnummer {
  margin-right: 0%;
}
.proefaccount .section .form-wrapper .field-wrapper.label-E-mailadres {
  margin-right: 5%;
}
.proefaccount .section .form-wrapper .field-wrapper.label-Land {
  padding-bottom: 45px;
}
.proefaccount .section .form-wrapper .field-wrapper.address-field {
  padding: 30px 0 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 20px 0 50px 0;
}
.proefaccount .section .form-wrapper .field-wrapper.address-field .field-wrapper:first-child {
  width: 100%;
  margin-right: 0;
}
.proefaccount .section .form-wrapper .field-wrapper.address-field .field-wrapper:nth-child(2) {
  width: 25%;
  margin-right: 5%;
}
.proefaccount .section .form-wrapper .field-wrapper.address-field .field-wrapper:nth-child(3) {
  width: 70%;
  clear: none;
  margin-right: 0;
}
.proefaccount .section .form-footer {
  display: none;
}
.proefaccount .section .last-step .form .message p, .proefaccount .section .last-step .form .message p a {
  display: inline-block;
  font-size: 1.375rem !important;
}
.proefaccount .section .last-step .form .message p a:hover {
  color: #009fe3;
}
.proefaccount .section.step-4 .terms {
  width: 100%;
  vertical-align: middle;
  display: block;
  background: #eee;
  margin: 0 0 30px;
  padding: 15px 0;
  position: relative;
}
.proefaccount .section.step-4 .terms .error-msg {
  background: #AE2D30;
  color: #fff;
  padding: 4px 8px;
  position: absolute;
  top: -40px;
  left: 25%;
  display: none;
}
.proefaccount .section.step-4 .terms .error-msg:after {
  content: '';
  position: absolute;
  border: 8px solid #AE2D30;
  border-color: #AE2D30 transparent transparent transparent;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -4px;
}
.proefaccount .section.step-4 .terms input {
  display: none;
}
.proefaccount .section.step-4 .terms span.check {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: #009fe3;
  padding: 14px 0;
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
}
.proefaccount .section.step-4 .terms span.check i {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-size: 1.625rem;
  opacity: 0;
}
.proefaccount .section.step-4 .terms span.check.error {
  background: #ED9D5F;
}
.proefaccount .section.step-4 .terms span.check:hover {
  background: #007bb0;
}
.proefaccount .section.step-4 .terms input:checked + span i {
  opacity: 1;
}
.proefaccount .section.step-4 .terms p, .proefaccount .section.step-4 .terms p a {
  display: inline-block;
  font-size: 1.375rem !important;
}
.proefaccount .section.step-4 .terms p a:hover {
  color: #009fe3;
}
.proefaccount .section.step-4 .terms-content {
  padding: 0 10% 30px 10%;
}
.proefaccount .section.step-4 .digest {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.proefaccount .section.step-4 .digest li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  padding: 5px 15px;
}
.proefaccount .section.step-4 .digest li strong {
  display: inline-block;
  width: 40%;
}
.proefaccount .section.step-4 .digest li:nth-child(even) {
  background: #F7F5F3;
}
.proefaccount .section.step-4 .last-step {
  position: relative;
}
.proefaccount .section.step-4 .last-step .form .message {
  position: relative;
  margin-top: 20px;
  left: 0;
  right: 0;
  margin-left: 0;
  width: 100%;
  background: #fff;
}
.proefaccount .section.step-4 .last-step .form .message p {
  display: inline-block;
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 30px;
}
.proefaccount .section.step-4 .last-step .form .message p:first-of-type:before {
  content: "\f05d";
  font-family: 'FontAwesome';
  font-size: 3rem;
  color: #34B17C;
  padding-bottom: 20px;
  display: block;
}
.proefaccount .section.step-4 .last-step .digest, .proefaccount .section.step-4 .last-step .terms-content, .proefaccount .section.step-4 .last-step .terms {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.proefaccount .section.step-4 .last-step #mainloader {
  display: none !important;
}
.proefaccount .section.step-4 .last-step .form .loader {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -85px;
}
.proefaccount .section.step-4 .last-step .form .loader .loader {
  width: 130px;
}
.proefaccount .section.step-4 .last-step .form .loader .loader > div {
  width: 40px;
  height: 40px;
  background: #009fe3;
}
.proefaccount .section.step-4 .last-step.loading .digest, .proefaccount .section.step-4 .last-step.loading .terms-content, .proefaccount .section.step-4 .last-step.loading .terms {
  opacity: 0;
}
.proefaccount .section.step-4 .last-step.loading .digest {
  height: 0;
  overflow: hidden;
}

.page-not-found {
  padding: 100px 0 150px 0;
}
.page-not-found img {
  float: left;
  max-width: 45%;
  margin-right: 5%;
}
.page-not-found .text-wrapper {
  float: left;
  max-width: 50%;
  padding-top: 25px;
}
.page-not-found .text-wrapper h1 {
  color: #009fe3;
  font-size: 2rem;
  padding-bottom: 30px;
}
.page-not-found .text-wrapper p {
  max-width: 70%;
  font-size: 1.125rem;
  padding-bottom: 50px;
}
.page-not-found .text-wrapper .button i, .page-not-found .text-wrapper .btn i, .page-not-found .text-wrapper a[class^="btn--"] i, .page-not-found .text-wrapper .section.guide-cta a i, .section.guide-cta .page-not-found .text-wrapper a i {
  color: #fff;
  padding-right: 15px;
}
.page-not-found:after {
  clear: both;
}

.error404 .wrapper {
  min-height: initial;
}

body.woocommerce-page input.button, body.woocommerce-page input.btn, body.woocommerce-page a.checkout-button {
  background-color: #009fe3;
  color: #FFF;
  outline: none;
  border: none;
}
body.woocommerce-page input.button:hover, body.woocommerce-page input.btn:hover, body.woocommerce-page a.checkout-button:hover {
  background-color: #34B17C;
  color: #FFF;
}
body.woocommerce-page input[type="text"], body.woocommerce-page input[type="number"], body.woocommerce-page #billing_country, body.woocommerce-page #shipping_country, body.woocommerce-page input[type="email"], body.woocommerce-page input[type="tel"], body.woocommerce-page .country_select a, body.woocommerce-page .cart_totals .country_to_state, body.woocommerce-page textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px 15px;
  box-shadow: none;
  display: inline-block;
  width: 100%;
  outline: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  border: 1px solid #cec2b6;
  -webkit-appearance: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
body.woocommerce-page input[type="text"]:focus, body.woocommerce-page input[type="number"]:focus, body.woocommerce-page #billing_country:focus, body.woocommerce-page #shipping_country:focus, body.woocommerce-page input[type="email"]:focus, body.woocommerce-page input[type="tel"]:focus, body.woocommerce-page .country_select a:focus, body.woocommerce-page .cart_totals .country_to_state:focus, body.woocommerce-page textarea:focus {
  border-color: #444;
}
body.woocommerce-page #coupon_code {
  width: auto;
}
body.woocommerce-page .cart_totals {
  width: 100%;
}
body.woocommerce-page #ship-to-different-address label {
  margin-left: 15px;
  font-weight: lighter;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  width: auto;
  display: inline;
  background: none;
  display: block;
  color: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  font-family: "Rubrik";
}
body.woocommerce-page #ship-to-different-address label:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
  background: #FFF;
}
body.woocommerce-page #ship-to-different-address label:after {
  content: "\f00c";
  font-family: fontAwesome;
  color: #4d4d4d;
  text-align: center;
  position: absolute;
  left: 4px;
  top: 0px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
  font-size: 1.5rem;
}
body.woocommerce-page #ship-to-different-address label:hover:after {
  display: block !important;
  opacity: .5;
}
body.woocommerce-page input[type="checkbox"] {
  display: none !important;
}
body.woocommerce-page input[type="checkbox"]:checked ~ label:after {
  opacity: 1 !important;
}
body.woocommerce-page .payment_methods.methods {
  list-style: none;
  padding-left: 0;
}
body.woocommerce-page .payment_methods.methods li {
  position: relative;
}
body.woocommerce-page .payment_methods.methods li label {
  cursor: pointer;
  display: block;
  padding-bottom: 10px;
  padding-left: 30px;
}
body.woocommerce-page .payment_methods.methods li label:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #FFF;
  border: 2px solid #404040;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.woocommerce-page .payment_methods.methods li label:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  background: #FFF;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
body.woocommerce-page .payment_methods.methods li label:hover:after {
  background: gray;
}
body.woocommerce-page input[type="radio"] {
  display: none;
}
body.woocommerce-page input[type="radio"] ~ label:after {
  background: gray;
}
body.woocommerce-page input[type="radio"]:checked ~ label:after {
  background: #1a1a1a !important;
}
body.woocommerce-page .notes {
  margin-top: 30px;
  border: 2px solid #F7F5F3;
  border-top: none;
}
body.woocommerce-page .notes label {
  display: block;
  color: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  background: #009fe3;
  padding: 15px;
  font-family: "Rubrik";
}
body.woocommerce-page .notes textarea {
  width: calc(100% - 30px);
  height: 200px;
  margin: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.woocommerce-checkout .col2-set {
  margin-bottom: 30px;
}
.woocommerce-checkout .required {
  color: #009fe3 !important;
  border-bottom: none !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  text-align: left;
  width: 60%;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
  text-align: left;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal th, .woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal td {
  padding-bottom: 15px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  padding-bottom: 10px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th, .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  padding-top: 15px;
  text-align: left;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .shipping td {
  padding-bottom: 15px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th, .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
  border-top: 2px solid #000000;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .amount {
  font-weight: bold;
}

.woocommerce-cart .woocommerce-message {
  display: none;
}
.woocommerce-cart .shop_table.cart {
  margin-bottom: 30px;
}
.woocommerce-cart .shop_table.cart thead {
  background: transparent;
  border: transparent;
}
.woocommerce-cart .shop_table.cart thead th {
  color: #444;
  padding: 16px 12px;
  border: 0;
  border-bottom: 2px solid #F7F5F3;
}
.woocommerce-cart .shop_table.cart thead tr {
  border: none !important;
}
.woocommerce-cart .shop_table.cart tr td {
  padding: 15px 12px;
}
.woocommerce-cart .shop_table.cart tr td.actions {
  padding-left: 0;
  padding-right: 0;
}
.woocommerce-cart .shop_table.cart tbody {
  border: none;
}
.woocommerce-cart .shop_table.cart .product-thumbnail {
  width: 19%;
}
.woocommerce-cart .shop_table.cart .product-name {
  width: 35%;
}
.woocommerce-cart .shop_table.cart .product-name a, .woocommerce-cart .shop_table.cart .product-name a:visited {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce-cart .shop_table.cart .product-name a:hover, .woocommerce-cart .shop_table.cart .product-name a:visited:hover {
  color: #34B17C;
}
.woocommerce-cart .shop_table.cart .product-price, .woocommerce-cart .shop_table.cart .product-quantity, .woocommerce-cart .shop_table.cart .product-subtotal {
  width: 12%;
}
.woocommerce-cart .shop_table.cart .product-quantity input {
  width: 80px;
}
.woocommerce-cart .shop_table.cart .product-remove {
  width: 5%;
}
.woocommerce-cart .shop_table.cart .product-remove .remove {
  color: #ED9D5F;
  text-decoration: none;
  font-size: 24px;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
}
.woocommerce-cart .shop_table.cart .product-remove .remove:hover {
  background: #ED9D5F;
  color: #FFF;
}
.woocommerce-cart .shop_table.cart .cart_item {
  border-top: 2px solid #F7F5F3;
}
.woocommerce-cart .shop_table.cart .cart_item td {
  border-bottom: 2px solid #F7F5F3;
  text-align: center;
}
.woocommerce-cart .shop_table.cart .cart_item:first-of-type {
  border-top: 0;
}
.woocommerce-cart .shop_table.cart .actions .coupon {
  float: left;
}
.woocommerce-cart .shop_table.cart .actions .coupon label {
  display: none;
}
.woocommerce-cart .shop_table.cart .actions .coupon .button, .woocommerce-cart .shop_table.cart .actions .coupon .btn, .woocommerce-cart .shop_table.cart .actions .coupon a[class^="btn--"], .woocommerce-cart .shop_table.cart .actions .coupon .section.guide-cta a, .section.guide-cta .woocommerce-cart .shop_table.cart .actions .coupon a {
  float: none;
}
.woocommerce-cart .shop_table.cart .actions .button, .woocommerce-cart .shop_table.cart .actions .btn, .woocommerce-cart .shop_table.cart .actions a[class^="btn--"], .woocommerce-cart .shop_table.cart .actions .section.guide-cta a, .section.guide-cta .woocommerce-cart .shop_table.cart .actions a {
  float: right;
  background: #34B17C;
}
.woocommerce-cart .cart_totals {
  width: 40%;
  float: right;
  background: #FDEFDE;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
}
.woocommerce-cart .cart_totals .shipping-calculator-form {
  margin: 15px 0;
}
.woocommerce-cart .cart_totals .shipping-calculator-form .form-row {
  margin-bottom: 15px;
}
.woocommerce-cart .cart_totals .shipping-calculator-form .form-row:last-of-type {
  margin-bottom: 0;
}
.woocommerce-cart .cart_totals .shipping-calculator-form .button, .woocommerce-cart .cart_totals .shipping-calculator-form .btn, .woocommerce-cart .cart_totals .shipping-calculator-form a[class^="btn--"], .woocommerce-cart .cart_totals .shipping-calculator-form .section.guide-cta a, .section.guide-cta .woocommerce-cart .cart_totals .shipping-calculator-form a {
  background: #009fe3;
  border: none;
}
.woocommerce-cart .cart_totals .shipping-calculator-form .button:hover, .woocommerce-cart .cart_totals .shipping-calculator-form .btn:hover, .woocommerce-cart .cart_totals .shipping-calculator-form a[class^="btn--"]:hover, .woocommerce-cart .cart_totals .shipping-calculator-form .section.guide-cta a:hover, .section.guide-cta .woocommerce-cart .cart_totals .shipping-calculator-form a:hover {
  background: #34B17C;
}
.woocommerce-cart .cart_totals .shipping-calculator-button, .woocommerce-cart .cart_totals .shipping-calculator-button:visited {
  color: #009fe3;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce-cart .cart_totals .shipping-calculator-button:hover, .woocommerce-cart .cart_totals .shipping-calculator-button:visited:hover {
  color: #34B17C;
  border-bottom: 1px solid #34B17C;
}
.woocommerce-cart .cart_totals h2 {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
  margin-bottom: 30px;
}
.woocommerce-cart .cart_totals table {
  margin-bottom: 30px;
}
.woocommerce-cart .cart_totals table tr th {
  width: 30%;
  text-align: left;
  padding: 5px 0;
}
.woocommerce-cart .cart_totals table tr td {
  width: 70%;
  padding: 5px 0;
  text-align: right;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  text-align: right;
}

.woocommerce-checkout .woocommerce h3 {
  width: 100%;
  display: block;
  color: #FFF;
  background: #009fe3;
  padding: 15px;
  margin-top: 30px;
}

.col2-set {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.col2-set .woocommerce-billing-fields, .col2-set .shipping_address {
  background: #FFF;
  border: 2px solid #F7F5F3;
  padding: 15px;
}
.col2-set .woocommerce-billing-fields .form-row, .col2-set .shipping_address .form-row {
  width: 100% !important;
  max-width: initial !important;
  margin-bottom: 15px;
}
.col2-set .woocommerce-billing-fields .form-row label, .col2-set .shipping_address .form-row label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.col2-set .woocommerce-billing-fields .form-row label .required, .col2-set .shipping_address .form-row label .required {
  color: #ED9D5F;
  text-decoration: none;
}
.col2-set .woocommerce-billing-fields .form-row input, .col2-set .woocommerce-billing-fields .form-row select, .col2-set .shipping_address .form-row input, .col2-set .shipping_address .form-row select {
  width: 100%;
  display: block;
}
.col2-set .col-1, .col2-set .col-2 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 49%;
  -moz-flex: 0 0 49%;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
}
.col2-set .col-1 {
  margin-right: 2%;
}

.woocommerce-checkout .col-1 h3, .woocommerce-checkout .col-2 h3 {
  margin-top: 0;
}
.woocommerce-checkout .col-1 .notes, .woocommerce-checkout .col-2 .notes {
  margin-top: 0 !important;
}
.woocommerce-checkout #order_review_heading {
  margin-top: 30px;
}

.woocommerce-checkout-review-order {
  background: #FFF;
  border: 2px solid #F7F5F3;
  padding: 15px;
  margin-bottom: 30px;
}

.woocommerce-order-received ul.order_details {
  background: #F7F5F3;
  list-style: none;
  padding: 15px;
  margin-bottom: 30px;
}
.woocommerce-order-received ul.order_details .amount {
  font-weight: bold;
}
.woocommerce-order-received .woocommerce {
  margin-bottom: 30px;
}
.woocommerce-order-received .woocommerce p:first-of-type {
  background: #009fe3;
  color: #FFF;
  width: 100%;
  display: block;
  padding: 15px;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Rubrik";
  font-weight: bold;
}
.woocommerce-order-received .woocommerce h2 {
  background: #009fe3;
  color: #FFF;
  width: 100%;
  display: block;
  padding: 15px;
  margin-top: 30px;
  font-size: 22px;
  font-size: 1.375rem;
}
.woocommerce-order-received .order_details {
  border-left: 2px solid #F7F5F3;
}
.woocommerce-order-received .order_details a, .woocommerce-order-received .order_details a:visited {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce-order-received .order_details a:hover, .woocommerce-order-received .order_details a:visited:hover {
  color: #34B17C;
}
.woocommerce-order-received .order_details .product-name {
  width: 75%;
}
.woocommerce-order-received .order_details th {
  padding: 15px 12px;
  text-align: right;
  border-bottom: 2px solid #F7F5F3;
  border-right: 2px solid #F7F5F3;
}
.woocommerce-order-received .order_details thead th {
  text-align: left;
}
.woocommerce-order-received .order_details tbody td {
  text-align: left;
}
.woocommerce-order-received .order_details td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 2px solid #F7F5F3;
  border-right: 2px solid #F7F5F3;
}
.woocommerce-order-received .order_details tfoot tr:last-of-type .amount {
  font-weight: bold;
}
.woocommerce-order-received .col2-set {
  margin-top: 30px;
}
.woocommerce-order-received .col2-set h3 {
  margin-top: 0;
}
.woocommerce-order-received .col2-set .col-1 address, .woocommerce-order-received .col2-set .col-2 address {
  background: #F7F5F3;
  padding: 15px;
}
.woocommerce-order-received .customer_details {
  background: #F7F5F3;
  display: block;
  padding-top: 15px;
}
.woocommerce-order-received .customer_details a, .woocommerce-order-received .customer_details a:visited {
  text-decoration: none;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
}
.woocommerce-order-received .customer_details th, .woocommerce-order-received .customer_details td {
  padding: 0px 15px;
  text-align: left;
  display: block;
}
.woocommerce-order-received .customer_details th {
  padding-bottom: 5px;
}
.woocommerce-order-received .customer_details tr {
  margin-bottom: 15px;
  display: block;
}
.woocommerce-order-received address {
  padding: 15px;
  background: #F7F5F3;
}

.woocommerce-checkout .woocommerce-checkout-payment ul li div {
  height: 0 !important;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  display: block !important;
}
.woocommerce-checkout .woocommerce-checkout-payment ul li.clicked div {
  height: auto !important;
}
.woocommerce-checkout .button, .woocommerce-checkout .btn, .woocommerce-checkout a[class^="btn--"], .woocommerce-checkout .section.guide-cta a, .section.guide-cta .woocommerce-checkout a {
  margin-top: 30px;
}
.woocommerce-checkout .woocommerce-info {
  display: none;
}
.woocommerce-checkout .shipping_address, .woocommerce-checkout #ship-to-different-address {
  display: none;
}
.woocommerce-checkout .woocommerce-shipping-fields h3 {
  display: none;
}
.woocommerce-checkout .payment_methods img, .woocommerce-checkout .payment_methods a {
  display: none;
}
.woocommerce-checkout .payment_methods p {
  margin-bottom: 10px;
}
.woocommerce-checkout .woocommerce-error {
  background: #34B17C;
  padding: 15px 15px 15px 60px;
  list-style: none;
  position: relative;
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-error:before {
  content: "\f06a";
  font-family: fontAwesome;
  position: absolute;
  top: 15px;
  left: 15px;
  color: #FFF;
  font-size: 30px;
  font-size: 1.875rem;
}
.woocommerce-checkout .woocommerce-error li, .woocommerce-checkout .woocommerce-error p, .woocommerce-checkout .woocommerce-error li p, .woocommerce-checkout .woocommerce-error li strong {
  color: #FFF;
}

.collection.gallery {
  display: block;
}
.collection.gallery strong {
  vertical-align: middle;
  margin: 0 30px 30px 0;
  display: block;
  width: 100%;
}

.regular-page .section.align-top .column-wrapper {
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}

#main.main-guide {
  margin-top: 0;
}

.page-template-guide-pages .section, .page-template-client-guide-pages .section {
  overflow: visible;
}

.header-banner {
  background: #26abe2;
  position: relative;
  overflow: hidden;
}
.header-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.header-banner h1 {
  position: absolute;
  bottom: 30px;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.header-banner .banner-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  max-width: 68em;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-banner .guide-logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-75%);
  -moz-transform: translateY(-50%) translateX(-75%);
  -ms-transform: translateY(-50%) translateX(-75%);
  -o-transform: translateY(-50%) translateX(-75%);
  transform: translateY(-50%) translateX(-75%);
  display: none;
}
.header-banner.child-page {
  height: 300px;
}
.header-banner.child-page img {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: .6;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: none;
  width: auto;
  max-height: 250px;
}
.header-banner .banner-button, .header-banner .banner-button:visited {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  color: #FFF;
  background: none;
  display: inline-block;
  padding: 15px 30px;
  line-height: 100%;
  border-radius: 3px;
  font-size: 1.125rem;
  border: 2px solid #FFF;
  position: absolute;
  text-decoration: none;
  top: 30px;
  left: 0;
}
.header-banner .banner-button:hover, .header-banner .banner-button:visited:hover {
  background: #FFF;
  color: #00aeef;
}
.header-banner.pink {
  background: #f282a9;
}
.header-banner.pink .banner-button:hover {
  color: #f282a9;
}
.header-banner.light-blue {
  background: #60cdf6;
}
.header-banner.light-blue .banner-button:hover {
  color: #60cdf6;
}
.header-banner.dark-blue {
  background: #00aeef;
}
.header-banner.dark-blue .banner-button:hover {
  color: #00aeef;
}
.header-banner.light-green {
  background: #73c7a1;
}
.header-banner.light-green .banner-button:hover {
  color: #73c7a1;
}
.header-banner.dark-green {
  background: #2eb17d;
}
.header-banner.dark-green .banner-button:hover {
  color: #2eb17d;
}
.header-banner.orange {
  background: #F6921E;
}
.header-banner.orange .banner-button:hover {
  color: #F6921E;
}
.header-banner.grey {
  background: #666767;
}
.header-banner.grey .banner-button:hover {
  color: #666767;
}

.guide-page .section.intro-section .fullwidth {
  padding-top: 20px;
}

.show-guide-version {
  max-width: 1170px;
  margin: 0 auto;
  text-align: right;
  position: relative;
  z-index: 3;
}
.show-guide-version .guide-version-container {
  max-width: 160px;
  width: 100%;
  display: inline-block;
  position: relative;
  margin-top: -30px;
  margin-right: 50px;
}
.show-guide-version .guide-container-link, .show-guide-version .guide-container-link:visited {
  position: absolute;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
  transform: scale(0.75);
  moz-transform-origin: top center;
  -o-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  right: 125px;
  top: 0;
  z-index: -1;
}
.show-guide-version .guide-container-link .version-text, .show-guide-version .guide-container-link:visited .version-text {
  pointer-events: none;
}
.show-guide-version .guide-container-link svg path, .show-guide-version .guide-container-link:visited svg path {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.show-guide-version .guide-container-link svg .front-side path, .show-guide-version .guide-container-link:visited svg .front-side path {
  fill: #009bd6;
}
.show-guide-version .guide-container-link .back-side path, .show-guide-version .guide-container-link:visited .back-side path {
  fill: rgba(0, 0, 0, 0.15);
}
.show-guide-version .guide-container-link:hover .front-side path, .show-guide-version .guide-container-link:visited:hover .front-side path {
  fill: #0089bc;
}
.show-guide-version svg {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.show-guide-version svg g {
  display: block;
}
.show-guide-version svg path {
  fill: #60cdf6;
}
.show-guide-version .version-text {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  padding: 5px 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  color: #FFF;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}
.show-guide-version.pink svg path {
  fill: #ed5489;
}
.show-guide-version.pink .guide-container-link svg path {
  fill: #eb3d79;
}
.show-guide-version.pink .guide-container-link svg:hover path {
  fill: #e82669;
}
.show-guide-version.light-blue svg path {
  fill: #00aeef;
}
.show-guide-version.light-blue .guide-container-link svg path {
  fill: #009bd6;
}
.show-guide-version.light-blue .guide-container-link svg:hover path {
  fill: #0089bc;
}
.show-guide-version.dark-blue svg path {
  fill: #60cdf6;
}
.show-guide-version.dark-blue .guide-container-link svg path {
  fill: #48c5f5;
}
.show-guide-version.dark-blue .guide-container-link svg:hover path {
  fill: #30bef3;
}
.show-guide-version.light-green svg path {
  fill: #2eb17d;
}
.show-guide-version.light-green .guide-container-link svg path {
  fill: #299d6f;
}
.show-guide-version.light-green .guide-container-link svg:hover path {
  fill: #238960;
}
.show-guide-version.dark-green svg path {
  fill: #73c7a1;
}
.show-guide-version.dark-green .guide-container-link svg path {
  fill: #61c095;
}
.show-guide-version.dark-green .guide-container-link svg:hover path {
  fill: #4fb889;
}
.show-guide-version.orange svg path {
  fill: #e88131;
}
.show-guide-version.orange .guide-container-link svg path {
  fill: #e5731a;
}
.show-guide-version.orange .guide-container-link svg:hover path {
  fill: #cf6717;
}
.show-guide-version.grey svg path {
  fill: #7f8181;
}
.show-guide-version.grey .guide-container-link svg path {
  fill: #4a4b4b;
}
.show-guide-version.grey .guide-container-link svg:hover path {
  fill: #3d3e3e;
}

.show-guide-version .link-cloud {
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
  transform: scale(0.75);
  position: initial;
  moz-transform-origin: top center;
  -o-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  right: 0;
  top: 0;
  z-index: -1;
}
.show-guide-version .normal-cloud {
  position: absolute;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  moz-transform-origin: top center;
  -o-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  right: 125px;
  top: 0;
  z-index: 1;
}

.intro-section {
  padding-top: 0;
}
.intro-section .container {
  position: relative;
  padding-bottom: 30px;
  text-align: center;
}
.intro-section .container:after {
  content: "";
  position: absolute;
  background: url("../images/after-text-image.png");
  background-size: 100% auto;
  width: 66px;
  height: 32px;
  background-repeat: no-repeat;
  bottom: 20px;
  left: 50%;
  margin-left: -33px;
}

.sub-page-blocks {
  padding: 0 0 20px 0;
}
.sub-page-blocks .column-wrapper {
  padding: 0 50px;
}
.sub-page-blocks .column-wrapper.fullwidth {
  padding: 0 50px !important;
}
.sub-page-blocks .column, .sub-page-blocks .column:visited {
  border-radius: 10px;
  height: 290px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 32%;
  -moz-flex: 0 1 32%;
  -ms-flex: 0 1 32%;
  flex: 0 1 32%;
  margin-right: 2%;
}
.sub-page-blocks .column .column-title, .sub-page-blocks .column:visited .column-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: #f3f3f4;
  text-align: center;
  font-weight: normal;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.sub-page-blocks .column img, .sub-page-blocks .column:visited img {
  max-width: 80%;
  height: auto;
  display: block;
  position: absolute;
  top: 42.5%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.sub-page-blocks .column:nth-of-type(1), .sub-page-blocks .column:visited:nth-of-type(1) {
  background: #2eb17d;
}
.sub-page-blocks .column:nth-of-type(2), .sub-page-blocks .column:visited:nth-of-type(2) {
  background: #73c7a1;
}
.sub-page-blocks .column:nth-of-type(3), .sub-page-blocks .column:visited:nth-of-type(3) {
  background: #60cdf6;
}
.sub-page-blocks .column:last-child, .sub-page-blocks .column:visited:last-child {
  margin-right: 0;
}
.sub-page-blocks:nth-of-type(3) .column:nth-of-type(1) {
  background: #f282a9;
}
.sub-page-blocks:nth-of-type(3) .column:nth-of-type(2) {
  background: #F6921E;
}
.sub-page-blocks:nth-of-type(3) .column:nth-of-type(3) {
  background: #00aeef;
}
.sub-page-blocks:nth-of-type(4) .column:nth-of-type(1) {
  background: #666767;
}
.sub-page-blocks:nth-of-type(4) .column:nth-of-type(2) {
  background: #73c7a1;
}
.sub-page-blocks:nth-of-type(4) .column:nth-of-type(3) {
  background: #00aeef;
}
.sub-page-blocks .column, .sub-page-blocks .column:visited {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 10;
}
.sub-page-blocks .column:hover, .sub-page-blocks .column:visited:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.client-parent-page .sub-page-blocks .column:nth-of-type(1), .client-parent-page .sub-page-blocks .column:visited:nth-of-type(1) {
  background: #2eb17d;
}
.client-parent-page .sub-page-blocks .column:nth-of-type(2), .client-parent-page .sub-page-blocks .column:visited:nth-of-type(2) {
  background: #666767;
}
.client-parent-page .sub-page-blocks .column:nth-of-type(3), .client-parent-page .sub-page-blocks .column:visited:nth-of-type(3) {
  background: #73c7a1;
}
.client-parent-page .sub-page-blocks:nth-of-type(3) .column:nth-of-type(1) {
  background: #60cdf6;
}
.client-parent-page .sub-page-blocks:nth-of-type(3) .column:nth-of-type(2) {
  background: #F6921E;
}
.client-parent-page .sub-page-blocks:nth-of-type(3) .column:nth-of-type(3) {
  background: #f282a9;
}
.client-parent-page .sub-page-blocks:nth-of-type(4) .column:nth-of-type(1) {
  background: #00aeef;
}
.client-parent-page .sub-page-blocks:nth-of-type(4) .column:nth-of-type(2) {
  background: #73c7a1;
}
.client-parent-page .sub-page-blocks:nth-of-type(4) .column:nth-of-type(3) {
  background: #73c7a1;
}

.container.container-wrapper {
  padding: 0 50px;
}

.guide-single {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 50px 0;
}
.guide-single .section .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.guide-single .collection {
  width: 100%;
}
.guide-single .column ol li, .guide-single .collection ol li {
  padding-left: 10px;
}
.guide-single .column h1, .guide-single .column h2, .guide-single .column h3, .guide-single .column h4, .guide-single .column h5, .guide-single .column h6, .guide-single .column li, .guide-single .column p, .guide-single .collection h1, .guide-single .collection h2, .guide-single .collection h3, .guide-single .collection h4, .guide-single .collection h5, .guide-single .collection h6, .guide-single .collection li, .guide-single .collection p {
  padding-bottom: 15px;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, sans-serif;
}
.guide-single .column h1, .guide-single .column h2, .guide-single .column h3, .guide-single .column h4, .guide-single .column h5, .guide-single .column h6, .guide-single .collection h1, .guide-single .collection h2, .guide-single .collection h3, .guide-single .collection h4, .guide-single .collection h5, .guide-single .collection h6 {
  padding-top: 30px;
}
.guide-single .column > h2, .guide-single .collection > h2 {
  padding-top: 0;
}
.guide-single .column h2, .guide-single .collection h2 {
  font-size: 24px;
  font-size: 1.5rem;
}
.guide-single .section {
  padding: 0 0 50px 0;
}
.guide-single .section .column-row, .guide-single .section .column-row.fullwidth {
  padding: 0;
}
.guide-single .section:last-of-type {
  padding: 0;
}
.guide-single .left-content-wrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 60px;
}
.guide-single .left-content-wrapper .nav-button, .guide-single .left-content-wrapper .nav-button:visited {
  margin-top: 40px;
  float: right;
  background: none;
  border: 2px solid #60cdf6;
  color: #60cdf6;
  text-align: center;
  font-size: 1.125rem;
  font-weight: normal;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.guide-single .left-content-wrapper .nav-button i, .guide-single .left-content-wrapper .nav-button:visited i {
  margin-left: 30px;
  position: relative;
  left: 0;
  color: #60cdf6;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.guide-single .left-content-wrapper .nav-button:hover, .guide-single .left-content-wrapper .nav-button:visited:hover {
  background: #60cdf6;
  color: #FFF;
}
.guide-single .left-content-wrapper .nav-button:hover i, .guide-single .left-content-wrapper .nav-button:visited:hover i {
  color: #FFF !important;
  left: 5px;
}
.guide-single .left-content-wrapper .flickity-page-dots .dot {
  background: #009fe3;
}
.guide-single .right-content-wrapper {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 270px;
  -moz-flex: 0 0 270px;
  -ms-flex: 0 0 270px;
  flex: 0 0 270px;
}
.guide-single .right-content-wrapper nav ul {
  list-style: none;
  padding-left: 8px;
}
.guide-single .right-content-wrapper nav ul li {
  line-height: 100%;
}
.guide-single .right-content-wrapper nav ul li a, .guide-single .right-content-wrapper nav ul li a:visited {
  position: relative;
  border-left: 3px solid #e7e8e9;
  line-height: 100%;
  display: inline-block;
  padding: 2px 0 10px 30px;
  text-decoration: none;
}
.guide-single .right-content-wrapper nav ul li a:before, .guide-single .right-content-wrapper nav ul li a:visited:before {
  content: "";
  height: 18px;
  width: 18px;
  position: absolute;
  left: -10px;
  top: 0;
  border-radius: 50%;
  background: #e7e8e9;
  display: inline-block;
  z-index: 5;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.guide-single .right-content-wrapper nav ul li a:hover:before, .guide-single .right-content-wrapper nav ul li a:visited:hover:before {
  background: #777777;
}
.guide-single .right-content-wrapper nav ul li:last-of-type a, .guide-single .right-content-wrapper nav ul li:last-of-type a:visited {
  border-left: 2px solid transparent;
}
.guide-single .right-content-wrapper nav ul li.current-menu-item a, .guide-single .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #009fe3;
}
.guide-single .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #009fe3;
}
.guide-single .right-content-wrapper nav ul li.current-menu-item a:hover, .guide-single .right-content-wrapper nav ul li.current-menu-item a:visited:hover {
  padding-left: 30px;
}
.guide-single.light-green .right-content-wrapper nav ul li.current-menu-item a, .guide-single.light-green .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #73c7a1;
}
.guide-single.light-green .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.light-green .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #73c7a1;
}
.guide-single.light-green .left-content-wrapper .button, .guide-single.light-green .left-content-wrapper .btn, .guide-single.light-green .left-content-wrapper a[class^="btn--"], .guide-single.light-green .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.light-green .left-content-wrapper a {
  background: #73c7a1;
}
.guide-single.light-green .left-content-wrapper .button:hover, .guide-single.light-green .left-content-wrapper .btn:hover, .guide-single.light-green .left-content-wrapper a[class^="btn--"]:hover, .guide-single.light-green .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.light-green .left-content-wrapper a:hover {
  background: #4fb889;
}
.guide-single.light-green .left-content-wrapper .nav-button, .guide-single.light-green .left-content-wrapper .nav-button:visited {
  border: 2px solid #73c7a1;
  color: #73c7a1;
  background: none;
  text-align: center;
}
.guide-single.light-green .left-content-wrapper .nav-button i, .guide-single.light-green .left-content-wrapper .nav-button:visited i {
  color: #73c7a1;
}
.guide-single.light-green .left-content-wrapper .nav-button:hover, .guide-single.light-green .left-content-wrapper .nav-button:visited:hover {
  background: #73c7a1;
  color: #FFF;
}
.guide-single.light-green .left-content-wrapper .flickity-page-dots .dot {
  background: #73c7a1;
}
.guide-single.dark-green .right-content-wrapper nav ul li.current-menu-item a, .guide-single.dark-green .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #2eb17d;
}
.guide-single.dark-green .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.dark-green .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #2eb17d;
}
.guide-single.dark-green .left-content-wrapper .button, .guide-single.dark-green .left-content-wrapper .btn, .guide-single.dark-green .left-content-wrapper a[class^="btn--"], .guide-single.dark-green .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.dark-green .left-content-wrapper a {
  background: #2eb17d;
}
.guide-single.dark-green .left-content-wrapper .button:hover, .guide-single.dark-green .left-content-wrapper .btn:hover, .guide-single.dark-green .left-content-wrapper a[class^="btn--"]:hover, .guide-single.dark-green .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.dark-green .left-content-wrapper a:hover {
  background: #238960;
}
.guide-single.dark-green .left-content-wrapper .nav-button, .guide-single.dark-green .left-content-wrapper .nav-button:visited {
  border: 2px solid #2eb17d;
  color: #2eb17d;
  background: none;
}
.guide-single.dark-green .left-content-wrapper .nav-button i, .guide-single.dark-green .left-content-wrapper .nav-button:visited i {
  color: #2eb17d;
}
.guide-single.dark-green .left-content-wrapper .nav-button:hover, .guide-single.dark-green .left-content-wrapper .nav-button:visited:hover {
  background: #2eb17d;
  color: #FFF;
}
.guide-single.dark-green .left-content-wrapper .flickity-page-dots .dot {
  background: #2eb17d;
}
.guide-single.pink .right-content-wrapper nav ul li.current-menu-item a, .guide-single.pink .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #f282a9;
}
.guide-single.pink .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.pink .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #f282a9;
}
.guide-single.pink .left-content-wrapper .button, .guide-single.pink .left-content-wrapper .btn, .guide-single.pink .left-content-wrapper a[class^="btn--"], .guide-single.pink .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.pink .left-content-wrapper a {
  background: #f282a9;
}
.guide-single.pink .left-content-wrapper .button:hover, .guide-single.pink .left-content-wrapper .btn:hover, .guide-single.pink .left-content-wrapper a[class^="btn--"]:hover, .guide-single.pink .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.pink .left-content-wrapper a:hover {
  background: #ed5489;
}
.guide-single.pink .left-content-wrapper .nav-button, .guide-single.pink .left-content-wrapper .nav-button:visited {
  border: 2px solid #f282a9;
  color: #f282a9;
  background: none;
}
.guide-single.pink .left-content-wrapper .nav-button i, .guide-single.pink .left-content-wrapper .nav-button:visited i {
  color: #f282a9;
}
.guide-single.pink .left-content-wrapper .nav-button:hover, .guide-single.pink .left-content-wrapper .nav-button:visited:hover {
  background: #f282a9;
  color: #FFF;
}
.guide-single.pink .left-content-wrapper .flickity-page-dots .dot {
  background: #f282a9;
}
.guide-single.orange .right-content-wrapper nav ul li.current-menu-item a, .guide-single.orange .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #F6921E;
}
.guide-single.orange .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.orange .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #F6921E;
}
.guide-single.orange .left-content-wrapper .button, .guide-single.orange .left-content-wrapper .btn, .guide-single.orange .left-content-wrapper a[class^="btn--"], .guide-single.orange .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.orange .left-content-wrapper a {
  background: #F6921E;
}
.guide-single.orange .left-content-wrapper .button:hover, .guide-single.orange .left-content-wrapper .btn:hover, .guide-single.orange .left-content-wrapper a[class^="btn--"]:hover, .guide-single.orange .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.orange .left-content-wrapper a:hover {
  background: #d87809;
}
.guide-single.orange .left-content-wrapper .nav-button, .guide-single.orange .left-content-wrapper .nav-button:visited {
  border: 2px solid #F6921E;
  color: #F6921E;
  background: none;
}
.guide-single.orange .left-content-wrapper .nav-button i, .guide-single.orange .left-content-wrapper .nav-button:visited i {
  color: #F6921E;
}
.guide-single.orange .left-content-wrapper .nav-button:hover, .guide-single.orange .left-content-wrapper .nav-button:visited:hover {
  background: #F6921E;
  color: #FFF;
}
.guide-single.orange .left-content-wrapper .flickity-page-dots .dot {
  background: #F6921E;
}
.guide-single.light-blue .right-content-wrapper nav ul li.current-menu-item a, .guide-single.light-blue .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #60cdf6;
}
.guide-single.light-blue .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.light-blue .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #60cdf6;
}
.guide-single.light-blue .left-content-wrapper .button, .guide-single.light-blue .left-content-wrapper .btn, .guide-single.light-blue .left-content-wrapper a[class^="btn--"], .guide-single.light-blue .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.light-blue .left-content-wrapper a {
  background: #60cdf6;
}
.guide-single.light-blue .left-content-wrapper .button:hover, .guide-single.light-blue .left-content-wrapper .btn:hover, .guide-single.light-blue .left-content-wrapper a[class^="btn--"]:hover, .guide-single.light-blue .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.light-blue .left-content-wrapper a:hover {
  background: #30bef3;
}
.guide-single.light-blue .left-content-wrapper .nav-button, .guide-single.light-blue .left-content-wrapper .nav-button:visited {
  border: 2px solid #60cdf6;
  color: #60cdf6;
  background: none;
}
.guide-single.light-blue .left-content-wrapper .nav-button i, .guide-single.light-blue .left-content-wrapper .nav-button:visited i {
  color: #60cdf6;
}
.guide-single.light-blue .left-content-wrapper .nav-button:hover, .guide-single.light-blue .left-content-wrapper .nav-button:visited:hover {
  background: #60cdf6;
  color: #FFF;
}
.guide-single.light-blue .left-content-wrapper .flickity-page-dots .dot {
  background: #60cdf6;
}
.guide-single.dark-blue .right-content-wrapper nav ul li.current-menu-item a, .guide-single.dark-blue .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #00aeef;
}
.guide-single.dark-blue .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.dark-blue .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #00aeef;
}
.guide-single.dark-blue .left-content-wrapper .button, .guide-single.dark-blue .left-content-wrapper .btn, .guide-single.dark-blue .left-content-wrapper a[class^="btn--"], .guide-single.dark-blue .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.dark-blue .left-content-wrapper a {
  background: #00aeef;
}
.guide-single.dark-blue .left-content-wrapper .button:hover, .guide-single.dark-blue .left-content-wrapper .btn:hover, .guide-single.dark-blue .left-content-wrapper a[class^="btn--"]:hover, .guide-single.dark-blue .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.dark-blue .left-content-wrapper a:hover {
  background: #0089bc;
}
.guide-single.dark-blue .left-content-wrapper .nav-button, .guide-single.dark-blue .left-content-wrapper .nav-button:visited {
  border: 2px solid #00aeef;
  color: #00aeef;
  background: none;
}
.guide-single.dark-blue .left-content-wrapper .nav-button i, .guide-single.dark-blue .left-content-wrapper .nav-button:visited i {
  color: #00aeef;
}
.guide-single.dark-blue .left-content-wrapper .nav-button:hover, .guide-single.dark-blue .left-content-wrapper .nav-button:visited:hover {
  background: #00aeef;
  color: #FFF;
}
.guide-single.dark-blue .left-content-wrapper .flickity-page-dots .dot {
  background: #00aeef;
}
.guide-single.grey .right-content-wrapper nav ul li.current-menu-item a, .guide-single.grey .right-content-wrapper nav ul li.current-menu-item a:visited {
  color: #666767;
}
.guide-single.grey .right-content-wrapper nav ul li.current-menu-item a:before, .guide-single.grey .right-content-wrapper nav ul li.current-menu-item a:visited:before {
  background: #666767;
}
.guide-single.grey .left-content-wrapper .button, .guide-single.grey .left-content-wrapper .btn, .guide-single.grey .left-content-wrapper a[class^="btn--"], .guide-single.grey .left-content-wrapper .section.guide-cta a, .section.guide-cta .guide-single.grey .left-content-wrapper a {
  background: #666767;
}
.guide-single.grey .left-content-wrapper .button:hover, .guide-single.grey .left-content-wrapper .btn:hover, .guide-single.grey .left-content-wrapper a[class^="btn--"]:hover, .guide-single.grey .left-content-wrapper .section.guide-cta a:hover, .section.guide-cta .guide-single.grey .left-content-wrapper a:hover {
  background: #4d4d4d;
}
.guide-single.grey .left-content-wrapper .nav-button, .guide-single.grey .left-content-wrapper .nav-button:visited {
  border: 2px solid #666767;
  color: #666767;
  background: none;
}
.guide-single.grey .left-content-wrapper .nav-button i, .guide-single.grey .left-content-wrapper .nav-button:visited i {
  color: #666767;
}
.guide-single.grey .left-content-wrapper .nav-button:hover, .guide-single.grey .left-content-wrapper .nav-button:visited:hover {
  background: #666767;
  color: #FFF;
}
.guide-single.grey .left-content-wrapper .flickity-page-dots .dot {
  background: #666767;
}

.header-banner .banner-wrapper {
  background-size: 100% auto !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

.section.guide-cta {
  background: #73c7a1;
  text-align: center;
}
.section.guide-cta .column-wrapper {
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  flex-flow: row wrap;
}
.section.guide-cta .column-wrapper .column {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 100% !important;
  -moz-flex: 0 0 100% !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  margin-bottom: 30px;
}
.section.guide-cta .column-wrapper .column:last-of-type {
  margin-bottom: 0;
}
.section.guide-cta h1, .section.guide-cta h2, .section.guide-cta h3, .section.guide-cta h4, .section.guide-cta h5, .section.guide-cta h6, .section.guide-cta p, .section.guide-cta li, .section.guide-cta a, .section.guide-cta a:visited {
  color: #FFF;
  font-weight: normal;
}
.section.guide-cta a, .section.guide-cta a:visited {
  margin-top: 30px;
  background: #2eb17d;
  color: #FFF;
}
.section.guide-cta a:hover, .section.guide-cta a:visited:hover {
  background: #009fe3;
}

.guide-page .section .fullwidth {
  padding: 50px 15%;
}
.guide-page .column-row {
  width: 100%;
}
.guide-page .column-row .faq-item {
  margin-bottom: 15px;
}
.guide-page img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.guide-page li img {
  margin: 5px 0 0 0;
}
.guide-page .column .wpview-selection-before, .guide-page .column .wpview-selection-after {
  padding: 0;
  margin: 0;
  font-size: 0;
}

.section.guide-cta {
  margin-top: 30px;
}
.section.guide-cta .fullwidth {
  padding: 50px 15%;
}
.section.guide-cta .container {
  position: relative;
}

.page-template-guide-pages .wrapper, .page-template-client-guide-pages .wrapper {
  min-height: auto;
}

.guide-footer-part.child-footer .section {
  margin-top: 0;
}

/**
* Responsive General CSS file 
*/
@media only screen and (max-width: 1170px) {
  .container {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    max-width: 100%;
  }

  header .logo {
    left: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  #menu-item-32 {
    display: none;
  }

  footer .copyright {
    height: auto;
  }
}
@media only screen and (max-width: 1070px) {
  header nav {
    display: none;
  }

  header .mainmenu {
    height: 46px;
    margin-top: 76px;
  }

  /*header nav.mobile-nav{display:block;}*/
  header.header .menu-switch {
    display: block;
  }

  #menu-mobile .cart {
    display: none !important;
  }

  header.header .mlp_widget {
    position: absolute;
    right: 100px;
    float: none;
  }
}
@media only screen and (max-width: 1000px) {
  header ul a {
    padding: 11px 15px;
  }
}
@media only screen and (max-width: 980px) {
  .footer .column {
    margin-bottom: 30px;
  }

  #colophon .widget.mlp_widget .mlp_language_box {
    text-align: left;
    padding-left: 20px;
  }
  #colophon .widget.mlp_widget .mlp_language_box ul {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
  }

  .regular-page .section .column-wrapper.fullwidth .column.content p {
    max-width: 700px;
  }
}
@media only screen and (max-width: 890px) {
  footer .copyright p, footer .copyright span, footer .copyright a {
    display: block;
    text-align: center;
    float: none !important;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper .container .content-side {
    float: none;
    width: 100%;
  }
  .popup-wrapper .container .message-buttons {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .popup-wrapper .container .message-buttons .button, .popup-wrapper .container .message-buttons .btn, .popup-wrapper .container .message-buttons a[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .popup-wrapper .container .message-buttons a {
    margin: 0 15px 0 0;
    display: inline-block;
    width: auto;
    text-align: left;
  }
  .popup-wrapper .container .message-buttons .button:last-of-type, .popup-wrapper .container .message-buttons .btn:last-of-type, .popup-wrapper .container .message-buttons a[class^="btn--"]:last-of-type, .popup-wrapper .container .message-buttons .section.guide-cta a:last-of-type, .section.guide-cta .popup-wrapper .container .message-buttons a:last-of-type {
    margin-right: 0;
  }

  .regular-page .section .column-wrapper.fullwidth .column.content p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 730px) {
  .section h2.section-title {
    font-size: 2rem;
  }

  footer .copyright {
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .copyright a {
    display: block;
  }
  footer .copyright span {
    display: block;
  }

  .page-not-found {
    text-align: center;
    padding: 50px 0 100px 0;
  }
  .page-not-found img, .page-not-found .text-wrapper {
    width: 100%;
    margin-right: 0;
    clear: both;
    margin-bottom: 30px;
    max-width: initial;
    text-align: center;
  }
  .page-not-found .text-wrapper p {
    width: 100%;
    max-width: initial;
    padding: 0 30px 30px 30px;
  }
  .page-not-found img {
    max-width: 300px;
    float: none;
    display: inline-block;
  }
}
@media only screen and (max-width: 550px) {
  footer .section.contact .column h2 {
    font-size: 1.375rem;
  }
  footer .section.contact .column .form-fields .field-wrapper {
    width: 75%;
    margin-right: 0 !important;
    float: right;
  }
  footer .section.contact .column .form-footer {
    padding-right: 0;
    width: 100%;
  }
  footer .section.contact .column .form-footer .submit-form {
    float: right;
    margin-right: 0;
  }
  footer .section.contact .column:first-child h2 {
    font-size: 1.5rem;
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: 7px solid #fff;
  }
  footer .section.contact .column:first-child p {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .section h2.section-title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 450px) {
  .home .popup-wrapper .container, .popup-wrapper .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home .popup-wrapper .container .message-buttons, .popup-wrapper .container .message-buttons {
    text-align: center;
  }
  .home .popup-wrapper .container .message-buttons .button, .home .popup-wrapper .container .message-buttons .btn, .home .popup-wrapper .container .message-buttons a[class^="btn--"], .home .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .home .popup-wrapper .container .message-buttons a, .popup-wrapper .container .message-buttons .button, .popup-wrapper .container .message-buttons .btn, .popup-wrapper .container .message-buttons a[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .popup-wrapper .container .message-buttons a {
    display: block;
    float: none;
    margin: 0 auto 15px auto;
    width: 70%;
  }
}
@media only screen and (max-width: 380px) {
  header.header .logo {
    width: 160px;
    height: 96px;
    left: -2px;
  }
}
@media only screen and (max-width: 400px) {
  .home .popup-wrapper .container .message-buttons, .popup-wrapper .container .message-buttons {
    text-align: center;
  }
  .home .popup-wrapper .container .message-buttons .button, .home .popup-wrapper .container .message-buttons .btn, .home .popup-wrapper .container .message-buttons a[class^="btn--"], .home .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .home .popup-wrapper .container .message-buttons a, .popup-wrapper .container .message-buttons .button, .popup-wrapper .container .message-buttons .btn, .popup-wrapper .container .message-buttons a[class^="btn--"], .popup-wrapper .container .message-buttons .section.guide-cta a, .section.guide-cta .popup-wrapper .container .message-buttons a {
    display: block;
    float: none;
    margin: 0 auto 15px auto;
    width: 100%;
  }
}
@media only screen and (max-width: 350px) {
  .page-not-found img {
    margin-bottom: 0;
  }

  footer .section.contact .column:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .section.contact .column:first-child h2 {
    font-size: 1.75rem !important;
    font-weight: bold;
  }
}
/**
* Responsive Page CSS file 
*/
@media only screen and (max-width: 1300px) {
  .section {
    overflow: hidden;
  }
  .section .column-wrapper.half-half .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .section .column.image img {
    max-width: 100%;
    height: auto;
  }
  .section.pricing {
    overflow: visible;
  }
}
@media only screen and (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-row .column.toggle-column img {
    width: 75px;
    height: auto;
  }

  .store-intro .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 980px) {
  .section.pricing .three-columns .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 30px;
    margin-left: 0;
  }
  .section.pricing .three-columns .column:last-of-type {
    margin-right: 0;
  }
  .section.pricing .three-columns .column .prices-foot a {
    font-size: 1.125rem;
  }

  .column-row .column.toggle-column {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 15px 15px 0 15px;
  }
  .column-row .column.toggle-column strong {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
    padding-left: 20px;
  }
  .column-row .column.toggle-column p {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    box-ordinal-group: -1;
    -webkit-order: -1;
    -moz-order: -1;
    order: -1;
    -ms-flex-order: -1;
    text-indent: -99999px;
    max-width: 55px;
    display: block;
  }
  .column-row .column.toggle-column p img {
    width: 100%;
  }

  .gezondheidszorg-columns .column-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .conditional .column {
    margin-bottom: 30px;
  }
  .conditional .column:nth-child(even) {
    border-right: 0;
  }
  .conditional .column img {
    margin-bottom: 15px;
  }

  .three-columns .column:last-of-type.slider-column {
    margin-top: 30px;
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    box-flex: 2;
    -webkit-flex: 2 0 100%;
    -moz-flex: 2 0 100%;
    -ms-flex: 2 0 100%;
    flex: 2 0 100%;
  }
}
@media only screen and (max-width: 930px) {
  .section.voor-wie-intro .column-wrapper {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .section.voor-wie-intro .column-wrapper .column.block-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .section.voor-wie-intro .column-wrapper .column.block-column img {
    display: none;
  }
  .section.voor-wie-intro .column-wrapper .column.block-column .button, .section.voor-wie-intro .column-wrapper .column.block-column .btn, .section.voor-wie-intro .column-wrapper .column.block-column a[class^="btn--"], .section.voor-wie-intro .column-wrapper .column.block-column .section.guide-cta a, .section.guide-cta .section.voor-wie-intro .column-wrapper .column.block-column a {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    margin: 30px 0 0 20px;
  }

  .regular-page .gezondheidszorg-columns .column-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  .regular-page .gezondheidszorg-columns .column-wrapper .column {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-flex: 0 1 40%;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
}
@media only screen and (max-width: 870px) {
  .section.pricing .three-columns .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-bottom: 30px;
  }
  .section.pricing .three-columns .column:last-child {
    margin-bottom: 0;
  }
  .section.pricing .three-columns .column.featured {
    order: -1;
    margin-bottom: 110px;
  }
  .section.pricing .three-columns .column.featured .feat-graph {
    bottom: -70px;
    right: 20px;
  }

  .section.pricing .prices-column.featured .prices-cta a .arrow {
    padding: 18px 10px 18px 18px;
  }

  .section.pricing {
    margin-top: -31px;
    padding-bottom: 0;
  }

  .section.pricing .prices-column.featured .prices-cta a {
    padding: 15px;
  }

  .page .collection .faq-item {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 45.7%;
    -moz-flex: 1 0 45.7%;
    -ms-flex: 1 0 45.7%;
    flex: 1 0 45.7%;
    margin-right: 0;
    padding-right: 0;
  }
  .page .collection .faq-item:nth-child(odd) {
    margin-right: 5%;
  }
}
@media only screen and (max-width: 768px) {
  .section.tour-video {
    margin-top: 0;
    padding-top: 10px;
  }
  .section .column-wrapper.half-half .column {
    padding-bottom: 30px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .section .column-wrapper.half-half .column:last-of-type {
    padding-bottom: 0;
  }

  .contact .form-column {
    padding-bottom: 30px !important;
  }

  .section.pricing .overlay {
    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    overflow-y: scroll;
  }
  .section.pricing .overlay .popup {
    margin: 30px 0;
  }

  .page .collection .faq-item {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-right: 0 !important;
    padding-right: 0;
  }

  .conditional .column-row.four-columns .column, .conditional .column-row.half-half .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 50%;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
  }
  .conditional .column-row.four-columns .column .button, .conditional .column-row.four-columns .column .btn, .conditional .column-row.four-columns .column a[class^="btn--"], .conditional .column-row.four-columns .column .section.guide-cta a, .section.guide-cta .conditional .column-row.four-columns .column a, .conditional .column-row.half-half .column .button, .conditional .column-row.half-half .column .btn, .conditional .column-row.half-half .column a[class^="btn--"], .conditional .column-row.half-half .column .section.guide-cta a, .section.guide-cta .conditional .column-row.half-half .column a {
    left: 20px;
  }

  .section .half-half.column-row .column.toggle-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 47.5%;
    -moz-flex: 1 0 47.5%;
    -ms-flex: 1 0 47.5%;
    flex: 1 0 47.5%;
    padding-bottom: 0 !important;
  }
  .section .half-half.column-row .column.toggle-column strong {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 680px) {
  .section .half-half.column-row .column.toggle-column p {
    max-width: 35px;
  }
  .section .half-half.column-row .column.toggle-column strong {
    font-size: 1.125rem;
  }
  .section .half-half.column-row .column.toggle-column:first-child {
    max-width: 40%;
  }

  .section.pricing .three-columns .column.featured {
    margin-bottom: 30px;
  }
  .section.pricing .three-columns .column.featured .feat-graph {
    display: none;
  }
}
@media only screen and (max-width: 620px) {
  .conditional .column-row.four-columns .column, .conditional .column-row.half-half .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    display: block;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border: none;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
  }
  .conditional .column-row.four-columns .column img, .conditional .column-row.half-half .column img {
    float: left;
    margin: 0 15px 15px 0;
  }
  .conditional .column-row.four-columns .column .button, .conditional .column-row.four-columns .column .btn, .conditional .column-row.four-columns .column a[class^="btn--"], .conditional .column-row.four-columns .column .section.guide-cta a, .section.guide-cta .conditional .column-row.four-columns .column a, .conditional .column-row.half-half .column .button, .conditional .column-row.half-half .column .btn, .conditional .column-row.half-half .column a[class^="btn--"], .conditional .column-row.half-half .column .section.guide-cta a, .section.guide-cta .conditional .column-row.half-half .column a {
    position: relative;
    display: inline-block;
    left: auto !important;
    bottom: auto;
    margin-left: 0;
    margin-right: 0;
    float: right;
  }
  .conditional .column-row.four-columns .column:last-of-type, .conditional .column-row.half-half .column:last-of-type {
    border-bottom: 0;
  }

  .regular-page .gezondheidszorg-columns .column-wrapper.half-half .column:last-of-type {
    padding-left: 0 !important;
  }

  .section.cta-link-block .link-content-wrapper {
    padding: 0 4%;
  }
}
@media only screen and (max-width: 530px) {
  .collection {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .collection .faq-item {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-right: 0;
    padding-right: 0;
  }
  .collection .faq-item .faq-content {
    padding: 10px 15px;
  }

  .conditional .column-row.four-columns .column, .conditional .column-row.half-half .column {
    text-align: center;
  }
  .conditional .column-row.four-columns .column img, .conditional .column-row.half-half .column img {
    float: none;
    display: inline-block;
  }
  .conditional .column-row.four-columns .column p, .conditional .column-row.half-half .column p {
    text-align: left;
    padding: 0 30px 30px 30px;
  }
  .conditional .column-row.four-columns .column .button, .conditional .column-row.four-columns .column .btn, .conditional .column-row.four-columns .column a[class^="btn--"], .conditional .column-row.four-columns .column .section.guide-cta a, .section.guide-cta .conditional .column-row.four-columns .column a, .conditional .column-row.half-half .column .button, .conditional .column-row.half-half .column .btn, .conditional .column-row.half-half .column a[class^="btn--"], .conditional .column-row.half-half .column .section.guide-cta a, .section.guide-cta .conditional .column-row.half-half .column a {
    float: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 450px) {
  .contact .form-fields .field-wrapper {
    width: 100%;
    margin-right: 0 !important;
  }
  .contact .section.follow-us .column-wrapper {
    padding: 0;
  }
  .contact .section.follow-us h2 {
    width: 100%;
    display: block;
    text-align: center;
    margin-right: 0;
    padding-bottom: 40px;
  }
  .contact .section.follow-us .socials-icons {
    display: block;
    width: 100%;
    text-align: center;
  }

  .section .half-half.column-row .column.toggle-column p {
    max-width: 25px;
  }
  .section .half-half.column-row .column.toggle-column p img {
    margin-right: 10px;
  }
  .section .half-half.column-row .column.toggle-column strong {
    font-size: 1rem;
    padding-left: 0;
    margin-left: 0;
  }
  .section .half-half.column-row .column.toggle-column.active:after {
    width: 20px;
    height: 20px;
    bottom: -10px;
    margin-left: -10px;
  }

  .conditional .column-row.four-columns .column p, .conditional .column-row.half-half .column p {
    padding: 0 0 30px 0 !important;
  }
}
@media only screen and (max-width: 400px) {
  .section .half-half.column-row .column.toggle-column p {
    display: none;
  }
  .section .half-half.column-row .column.toggle-column:first-child {
    max-width: 35%;
  }
}
@media only screen and (max-width: 350px) {
  header {
    height: 76px;
  }
  header .logo {
    width: 180px;
    height: 96px;
  }
  header .mainmenu {
    height: 10px;
    margin-top: 67px;
  }
  header .menu-switch {
    top: 12px;
    right: 12px;
  }

  .mobile-nav {
    right: 0 !important;
    padding-top: 40px;
  }

  #main {
    margin-top: 116px;
  }
}
/**
* Responsive Blog CSS file 
*/
@media only screen and (max-width: 980px) {
  .overview.collection .block-row .block.post {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 47.5%;
    -moz-flex: 1 0 47.5%;
    -ms-flex: 1 0 47.5%;
    flex: 1 0 47.5%;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .overview.collection .block-row .block.post:nth-child(odd) {
    margin-right: 5%;
  }
  .overview.collection .block-row .block.post .img-wrapper, .overview.collection .block-row .block.post .post-desc {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
    max-width: initial;
    margin-right: 0;
    position: relative;
    display: block;
    float: none;
    clear: both;
  }

  .detail-post.article-content .article-wrapper {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-right: 0;
  }
  .detail-post.article-content .article-wrapper .textual-content {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-right: 0;
  }
  .detail-post.article-content .article-wrapper .article-meta {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .detail-post.article-content .article-wrapper .article-meta .wp-post-image {
    display: none;
  }
  .detail-post.article-content .top-img-article img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
  }
  .detail-post.article-content .block.post .img-wrapper img {
    display: block !important;
  }
}
@media only screen and (max-width: 640px) {
  .detail-post.article-content .article-wrapper {
    padding-right: 0;
  }
  .detail-post.article-content .article-wrapper .textual-content .intro p {
    font-size: 1.125rem;
  }

  .overview.collection .block-row {
    padding-top: 0;
  }
  .overview.collection .block-row .block.post {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin: 30px 0 0 0 !important;
    max-width: initial;
  }
  .overview.collection .block-row .block.post .img-wrapper, .overview.collection .block-row .block.post .post-desc {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 50%;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
}
@media only screen and (max-width: 520px) {
  .overview.collection .block-row .block.post .img-wrapper, .overview.collection .block-row .block.post .post-desc {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }

  .blogposts .section.socials .form .form-footer, .blogposts .section.socials .form .form-fields {
    width: 100% !important;
  }
  .blogposts .section.socials .form .form-footer .submit-form, .blogposts .section.socials .form .form-fields .submit-form {
    width: auto;
    padding: 12px 24px !important;
  }
  .blogposts .section.socials .form-fields .field-wrapper {
    width: 100%;
    margin: 0 0 15px 0 !important;
  }

  .detail-post.article-content .article-wrapper .textual-content img.size-medium {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
  .detail-post.article-content .article-wrapper .article-meta {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    -webkit-order: 2;
    -moz-order: 2;
    order: 2;
    -ms-flex-order: 2;
  }
  .detail-post.article-content .article-wrapper .article-meta img {
    display: none;
  }
}
@media only screen and (max-width: 450px) {
  .detail-post.article-content .article-wrapper .article-meta .share-buttons a {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 48.75%;
    -moz-flex: 1 0 48.75%;
    -ms-flex: 1 0 48.75%;
    flex: 1 0 48.75%;
    margin: 0 0 15px 0;
  }
  .detail-post.article-content .article-wrapper .article-meta .share-buttons a:nth-child(even) {
    margin-right: 2.5%;
  }
}
@media only screen and (max-width: 1200px) {
  .section.store-intro .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1020px) {
  .single-product .product-head {
    margin-top: 0;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .single-product .product-head .iconic {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-right: 0;
  }
  .single-product .product-head .iconic .product-icon {
    position: initial;
  }
  .single-product .product-head .iconic strong {
    position: initial;
  }
  .single-product .product-head .info {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 66%;
    -moz-flex: 0 0 66%;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%;
    margin-right: 30px;
    margin: 30px 4% 0 0;
  }
  .single-product .product-head .review {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 30%;
    -moz-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
}
@media only screen and (max-width: 980px) {
  .store .column.block-column {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 30px 50px 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #ccc;
  }
  .store .column.block-column .button, .store .column.block-column .btn, .store .column.block-column a[class^="btn--"], .store .column.block-column .section.guide-cta a, .section.guide-cta .store .column.block-column a {
    margin-top: 0;
  }
  .store .column.block-column h2 {
    min-height: initial;
  }
  .store .column.block-column:nth-child(3), .store .column.block-column:nth-child(4) {
    border-bottom: 0;
  }

  .product {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .product .title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 900px) {
  .single-product .product-description {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
  }
  .single-product .product-description .product-images {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
    margin-right: 0;
  }
  .single-product .product-description .product-images .flickity-viewport {
    margin-top: 10px;
  }
  .single-product .product-description .tabbed-desc {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
    position: relative;
    top: 30px;
    padding-bottom: 25px;
  }
  .single-product .product-related .row {
    margin-bottom: 0;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .single-product .product-related .row .product.block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 49%;
    -moz-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    margin: 0 2% 20px 0;
  }
  .single-product .product-related .row .product.block:nth-of-type(even) {
    margin-right: 0;
  }
  .single-product .product-related .row .product:hover .product-icon {
    box-shadow: 0 0 0 220px #009fe3;
  }
}
@media only screen and (max-width: 850px) {
  .woocommerce-cart .shop_table.cart .actions .coupon {
    float: none;
    display: block;
  }
  .woocommerce-cart .shop_table.cart .actions .coupon input {
    margin-right: 10px;
  }
  .woocommerce-cart .shop_table.cart .actions .button, .woocommerce-cart .shop_table.cart .actions .btn, .woocommerce-cart .shop_table.cart .actions a[class^="btn--"], .woocommerce-cart .shop_table.cart .actions .section.guide-cta a, .section.guide-cta .woocommerce-cart .shop_table.cart .actions a {
    margin-top: 15px;
    float: none;
  }
  .woocommerce-cart .cart_totals {
    width: 100%;
    float: right;
  }

  .shop_table .product-total {
    vertical-align: top;
  }

  .cross-sells .products .product {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 49%;
    -moz-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
  .cross-sells .products .product:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .store .column.block-column:nth-child(3) {
    border-bottom: 1px solid #ccc;
  }

  .overview.contents {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .overview .product-filter {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .overview .product-overview .product {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 80%;
    -moz-flex: 0 0 80%;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    margin: 0 auto 30px auto;
  }
  .overview .product-overview .product.featured {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .cross-sells .products .product {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 80%;
    -moz-flex: 0 0 80%;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    margin: 0 auto 30px auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-checkout .col2-set {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
  }
  .woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 {
    display: block;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .product-filter.sidebar {
    display: none;
  }

  .woocommerce-checkout .col-2 .notes {
    margin-top: 30px !important;
  }

  .woocommerce-checkout .col2-set .col-1 {
    margin-right: 0;
  }

  .single-product .product-head {
    margin-top: 0;
  }
  .single-product .product-head .info {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .single-product .product-head .review {
    margin: 30px 0 60px 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .single-product .product-head .review .ref-text {
    position: initial;
  }
  .single-product .product-head .review .ref-person {
    bottom: -70px;
  }
  .single-product .product-tax {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
  }
  .single-product .product-tax .column {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
  .single-product .product-tax .column:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .product {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin: 0 0 30px 0;
  }

  .woocommerce-cart .shop_table.cart .actions .coupon .input-text {
    margin-right: 0px;
    width: 100% !important;
  }
  .woocommerce-cart .shop_table.cart .actions .button, .woocommerce-cart .shop_table.cart .actions .btn, .woocommerce-cart .shop_table.cart .actions a[class^="btn--"], .woocommerce-cart .shop_table.cart .actions .section.guide-cta a, .section.guide-cta .woocommerce-cart .shop_table.cart .actions a {
    display: inline-block;
  }
  .woocommerce-cart .shop_table.cart .product-price {
    display: none;
  }

  .single-product .product-head .info .meta .price {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }
  .single-product .product-head .info .meta .add-to-cart {
    float: none;
  }
  .single-product .gallery-nav {
    display: none !important;
  }
  .single-product .tabbed-desc {
    margin-top: 30px;
  }
  .single-product .tabbed-desc ul.tabs li {
    display: none !important;
  }
  .single-product .tabbed-desc ul.tabs li:first-of-type {
    display: inline-block !important;
  }

  .product-head .add-to-cart .arrow i {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce-cart .button, .woocommerce-cart .btn, .woocommerce-cart a[class^="btn--"], .woocommerce-cart .section.guide-cta a, .section.guide-cta .woocommerce-cart a {
    display: block;
    width: 100%;
  }
  .woocommerce-cart .cart_totals table tr th {
    width: 50%;
  }

  .cart_totals h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .shop_table .product-name {
    width: 70% !important;
  }

  .woocommerce-checkout .button, .woocommerce-checkout .btn, .woocommerce-checkout a[class^="btn--"], .woocommerce-checkout .section.guide-cta a, .section.guide-cta .woocommerce-checkout a {
    width: 100%;
  }

  .woocommerce-page .contents {
    padding: 30px 20px 30px 20px;
  }

  .single-product .product-related {
    padding-bottom: 0;
  }
  .single-product .product-related .row {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
  }
  .single-product .product-related .row .product.block {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    display: block;
    margin-right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .woocommerce-cart .product-quantity {
    display: none;
  }
}
@media only screen and (max-width: 350px) {
  .woocommerce {
    padding-top: 60px;
  }

  .cross-sells .products .product {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 1170px) {
  .proefaccount {
    width: 100%;
    max-width: 100%;
  }
  .proefaccount .section {
    width: 100%;
  }
}
@media only screen and (max-width: 1070px) {
  .proefaccount .section .prices-wrapper .column .prices-head .price-info {
    padding-left: 30%;
  }
  .proefaccount .section .prices-wrapper .column .prices-head .price-info h2, .proefaccount .section .prices-wrapper .column .prices-head .price-info h3, .proefaccount .section .prices-wrapper .column .prices-head .price-info p {
    text-align: left;
  }
}
@media only screen and (max-width: 810px) {
  .proefaccount .section .prices-wrapper {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .proefaccount .section .prices-wrapper .column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin: 0 0 30px 0 !important;
  }
  .proefaccount .section .prices-wrapper .column .type-wrapper {
    padding: 15px 0;
  }
  .proefaccount .section .prices-wrapper .column .prices-features {
    display: none;
  }
  .proefaccount .section .url-wrapper {
    padding-left: 10%;
  }
  .proefaccount .section .url-wrapper #accounturl {
    width: 45%;
  }
}
@media only screen and (max-width: 750px) {
  .proefaccount .section.step-2 .content-wrapper p {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 630px) {
  .proefaccount {
    margin-top: 0;
    padding-top: 0;
  }
  .proefaccount .section .next-button {
    line-height: 120%;
  }
  .proefaccount .section .prices-wrapper .column .prices-head .type-wrapper {
    padding-top: 35px;
  }
  .proefaccount .section .form .field-wrapper {
    width: 100%;
    margin-right: 0 !important;
  }
  .proefaccount .section .form .field-wrapper.address-wrapper .field-wrapper {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .proefaccount .section .url-wrapper {
    padding-left: 0%;
  }
  .proefaccount .section .url-wrapper #accounturl {
    width: 55%;
  }
  .proefaccount .section .url-wrapper .doturl {
    width: 45%;
  }
  .proefaccount .section.step-4 .terms {
    padding-left: 15px;
    padding-right: 15px;
  }
  .proefaccount .section.step-4 .terms p {
    font-size: 1.125rem;
    font-weight: bold;
  }
}
@media only screen and (max-width: 420px) {
  .proefaccount .section .url-wrapper {
    margin-bottom: 30px;
  }
  .proefaccount .section .url-wrapper #accounturl, .proefaccount .section .url-wrapper .doturl {
    width: 100%;
    text-align: center;
  }
  .proefaccount .section .url-wrapper .validation-error {
    width: 100% !important;
  }
  .proefaccount .section .prices-wrapper .column .prices-head .type-wrapper .custom-radio {
    width: 60%;
    padding-bottom: 60%;
  }
  .proefaccount .section .prices-wrapper .column .prices-head h3 {
    font-size: 1.125rem;
    font-weight: bold;
  }
  .proefaccount .section .prices-wrapper .column .prices-head h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
/**
* Responsive Home CSS file 
*/
@media only screen and (max-width: 1900px) {
  .home .home-header {
    background-position: center 50%;
  }
}
@media only screen and (max-width: 1600px) {
  .home .home-header {
    background-position: center 0%;
  }
}
@media only screen and (max-width: 1300px) {
  .home .intro-patients .container:before {
    display: none;
  }

  .home .home-header {
    background-position: center 0%;
    background-size: auto 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .home .section.cta-link-block {
    padding-left: 0;
    padding-right: 0;
  }

  .home .section {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
  }

  .home .product-intro h3 {
    min-height: 74px;
  }

  .column.social-proof-gallery strong {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  .home .home-header .btn-wrapper .button.ghost .btn-content, .home .home-header .btn-wrapper .ghost.btn .btn-content, .home .home-header .btn-wrapper a.ghost[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a.ghost .btn-content, .section.guide-cta .home .home-header .btn-wrapper a.ghost .btn-content {
    background: #fff;
  }
}
@media only screen and (max-width: 980px) {
  .home .product-intro .column {
    padding-bottom: 30px;
  }
  .home .product-intro .column:last-of-type {
    padding-bottom: 0;
  }
  .home .product-intro h3 {
    min-height: initial;
  }
  .home .intro-patients .column-wrapper {
    padding-left: 0;
  }
  .home .intro-patients .column {
    padding: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-left: 0 !important;
  }
  .home .section.shop .half-half {
    width: 100%;
  }
  .home .section.shop .half-half .column, .home .section.shop .half-half .collection {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    box-flex: none;
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    clear: both;
    display: block;
  }

  .home .shop .collection .column-row .block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 23.5%;
    -moz-flex: 0 1 23.5%;
    -ms-flex: 0 1 23.5%;
    flex: 0 1 23.5%;
    margin-right: 2%;
  }
  .home .shop .collection .column-row .block:last-of-type {
    margin-right: 0;
  }

  .section.product-intro-section .column.block-column {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 480px;
    -moz-flex: 0 1 480px;
    -ms-flex: 0 1 480px;
    flex: 0 1 480px;
    margin: 0 auto 30px auto !important;
    padding-right: 0;
    border-right: 0;
    padding-bottom: 110px;
    border-bottom: 2px solid #e3dcd4;
  }
  .section.product-intro-section .column.block-column .button, .section.product-intro-section .column.block-column .btn, .section.product-intro-section .column.block-column a[class^="btn--"], .section.product-intro-section .column.block-column .section.guide-cta a, .section.guide-cta .section.product-intro-section .column.block-column a {
    margin-bottom: 30px;
  }
  .section.product-intro-section .column.block-column h2 {
    min-height: auto;
  }
  .section.product-intro-section .column.block-column:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0;
    border-bottom: none;
  }

  .collection.blocks .block.partners {
    -webkit-box-flex: 48%;
    -moz-box-flex: 48%;
    box-flex: 48%;
    -webkit-flex: 48%;
    -moz-flex: 48%;
    -ms-flex: 48%;
    flex: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
  }
  .collection.blocks .block.partners:nth-child(3n+3) {
    margin-right: 4%;
  }
  .collection.blocks .block.partners:nth-child(even) {
    margin-right: 0;
  }

  .page-template-landingspagina-template .section.product-intro-section .column.block-column {
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 860px) {
  .home .shop .collection .column-row .block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 48%;
    -moz-flex: 0 1 48%;
    -ms-flex: 0 1 48%;
    flex: 0 1 48%;
    margin-right: 4%;
    margin-bottom: 25px;
  }
  .home .shop .collection .column-row .block:nth-of-type(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 830px) {
  .home .home-header strong p, .home .home-header h1 {
    font-size: 1.875rem;
    bottom: 21%;
  }
  .home .intro-patients .column img {
    width: 150px;
    height: auto;
    margin: 0 15px 15px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home .shop .collection .column-row {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  .home .shop .collection .column-row .block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 80%;
    -moz-flex: 0 1 80%;
    -ms-flex: 0 1 80%;
    flex: 0 1 80%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .home .shop .collection .column-row .block:last-of-type {
    margin-bottom: 0;
  }

  .section.platform-section img {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 750px) {
  .home .home-header .btn-wrapper .button.ghost, .home .home-header .btn-wrapper .ghost.btn, .home .home-header .btn-wrapper a.ghost[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a.ghost, .section.guide-cta .home .home-header .btn-wrapper a.ghost {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .home .shop .shop-block .description, .home .shop .shop-block img {
    float: none;
    width: 100%;
    margin: 0 0 30px 0;
  }

  .home .home-header .headline-wrapper {
    width: 100%;
  }

  .home .home-header {
    background-position: center 80%;
    background-size: auto 110%;
  }
}
@media only screen and (max-width: 630px) {
  .home .home-header .headline-wrapper h1 {
    font-size: 36px;
  }

  .home .home-header .headline-wrapper p {
    font-size: 20px;
  }

  .section.cta-link-block .column.block-column h3 {
    font-size: 20px;
  }

  .section.cta-link-block .column.block-column h2 {
    font-size: 30px;
  }

  .collection.blocks .block.partners {
    -webkit-box-flex: 100%;
    -moz-box-flex: 100%;
    box-flex: 100%;
    -webkit-flex: 100%;
    -moz-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .collection.blocks .block.partners:nth-child(3n+3) {
    margin-right: 0;
  }
  .collection.blocks .block.partners:nth-child(even) {
    margin-right: 0;
  }
  .collection.blocks .block.partners:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 560px) {
  .home .home-header .btn-wrapper {
    margin-bottom: 30px;
  }

  .home .section.home-header {
    min-height: auto;
  }

  .home .home-header .column-wrapper {
    min-height: 420px;
  }

  .home .home-header .column-wrapper {
    min-height: 450px;
  }
  .home .home-header .avatar {
    max-width: initial;
    width: 100%;
    height: auto;
  }
  .home .home-header strong p, .home .home-header h1 {
    bottom: 25%;
    line-height: 110%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  .home .home-header .btn-wrapper .button, .home .home-header .btn-wrapper .btn, .home .home-header .btn-wrapper a[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a, .section.guide-cta .home .home-header .btn-wrapper a {
    margin-top: 15px;
  }
  .home .home-header .btn-wrapper .button .arrow, .home .home-header .btn-wrapper .btn .arrow, .home .home-header .btn-wrapper a[class^="btn--"] .arrow, .home .home-header .btn-wrapper .section.guide-cta a .arrow, .section.guide-cta .home .home-header .btn-wrapper a .arrow {
    padding: 5px !important;
    text-align: center;
  }
  .home .home-header .btn-wrapper .button .btn-content, .home .home-header .btn-wrapper .btn .btn-content, .home .home-header .btn-wrapper a[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a .btn-content, .section.guide-cta .home .home-header .btn-wrapper a .btn-content, .home .home-header .btn-wrapper .button.first-button .btn-content, .home .home-header .btn-wrapper .first-button.btn .btn-content, .home .home-header .btn-wrapper a.first-button[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a.first-button .btn-content, .section.guide-cta .home .home-header .btn-wrapper a.first-button .btn-content {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 480px) {
  .home .shop .collection .column-row .block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .home .home-header .btn-wrapper {
    width: 100%;
    left: 0%;
  }
}
@media only screen and (max-width: 450px) {
  .home .home-header {
    overflow: hidden;
  }
  .home .home-header .avatar {
    width: 110%;
  }
  .home .container {
    padding-left: 0;
    padding-right: 0;
  }

  .home .home-header .btn-wrapper .button, .home .home-header .btn-wrapper .btn, .home .home-header .btn-wrapper a[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a, .section.guide-cta .home .home-header .btn-wrapper a, .home .home-header .btn-wrapper .btn, .home .home-header .btn-wrapper a[class^="btn--"], .home .home-header .btn-wrapper .section.guide-cta a, .section.guide-cta .home .home-header .btn-wrapper a {
    margin-right: 0;
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  .home .home-header .avatar {
    width: 135%;
  }
  .home .home-header .btn-wrapper .button .btn-content, .home .home-header .btn-wrapper .btn .btn-content, .home .home-header .btn-wrapper a[class^="btn--"] .btn-content, .home .home-header .btn-wrapper .section.guide-cta a .btn-content, .section.guide-cta .home .home-header .btn-wrapper a .btn-content {
    padding-right: 85px;
  }
  .home .home-header .btn-wrapper .button .arrow i, .home .home-header .btn-wrapper .btn .arrow i, .home .home-header .btn-wrapper a[class^="btn--"] .arrow i, .home .home-header .btn-wrapper .section.guide-cta a .arrow i, .section.guide-cta .home .home-header .btn-wrapper a .arrow i {
    vertical-align: middle;
  }
  .home .intro-patients .column img {
    width: 75px;
    height: auto;
    margin: 0 15px 15px 0;
  }
  .home .column.social-proof-gallery {
    text-align: center;
  }
  .home .column.social-proof-gallery strong, .home .column.social-proof-gallery img {
    margin-right: 0;
    display: inline-block;
    margin: 0 5px 20px 0;
  }
  .home .column.social-proof-gallery img {
    margin: 0 20px 20px 0;
  }
}
@media only screen and (max-width: 390px) {
  .home .home-header .btn-wrapper .button .arrow i, .home .home-header .btn-wrapper .btn .arrow i, .home .home-header .btn-wrapper a[class^="btn--"] .arrow i, .home .home-header .btn-wrapper .section.guide-cta a .arrow i, .section.guide-cta .home .home-header .btn-wrapper a .arrow i {
    vertical-align: top;
  }
}
@media only screen and (max-width: 350px) {
  .home .home-header .avatar {
    width: 150%;
    left: -80px;
  }
  .home .home-header strong p {
    width: 100%;
  }
}
@media only screen and (max-width: 1650px) {
  .header-banner .guide-logo {
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}
@media only screen and (max-width: 1450px) {
  .header-banner .guide-logo {
    -webkit-transform: translateY(-50%) translateX(-40%);
    -moz-transform: translateY(-50%) translateX(-40%);
    -ms-transform: translateY(-50%) translateX(-40%);
    -o-transform: translateY(-50%) translateX(-40%);
    transform: translateY(-50%) translateX(-40%);
  }
}
@media only screen and (max-width: 1350px) {
  .header-banner .guide-logo {
    -webkit-transform: translateY(-50%) translateX(-25%);
    -moz-transform: translateY(-50%) translateX(-25%);
    -ms-transform: translateY(-50%) translateX(-25%);
    -o-transform: translateY(-50%) translateX(-25%);
    transform: translateY(-50%) translateX(-25%);
  }
}
@media only screen and (max-width: 1250px) {
  .header-banner .guide-logo {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 270px;
    height: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .guide-single .container {
    padding: 0;
  }
}
@media only screen and (max-width: 1190px) {
  .header-banner .guide-logo {
    -webkit-transform: translateY(-75%) translateX(-50%);
    -moz-transform: translateY(-75%) translateX(-50%);
    -ms-transform: translateY(-75%) translateX(-50%);
    -o-transform: translateY(-75%) translateX(-50%);
    transform: translateY(-75%) translateX(-50%);
    left: 72%;
    display: block;
  }

  .show-guide-version .guide-version-container {
    margin-right: 4%;
  }

  .client-clouds .guide-version-container {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 1120px) {
  .header-banner .banner-button {
    top: 10px;
    left: 20px;
  }

  .container.container-wrapper {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1025px) {
  .header-banner {
    min-height: 300px;
  }
  .header-banner img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    max-width: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .header-banner.child-page img {
    height: auto;
    max-width: 92%;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  .guide-single {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .guide-single .left-content-wrapper {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0;
  }
  .guide-single .right-content-wrapper {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 30px 0;
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    box-ordinal-group: -1;
    -webkit-order: -1;
    -moz-order: -1;
    order: -1;
    -ms-flex-order: -1;
  }
}
@media only screen and (max-width: 980px) {
  .section.sub-page-blocks .column-wrapper.column-row {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-flex: 0 1 32%;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    margin: 0 2% 0 0;
    height: 280px;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column:last-of-type {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section.sub-page-blocks {
    padding-bottom: 30px;
  }
  .section.sub-page-blocks .column-wrapper.column-row {
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 0 15%;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 30px 0;
    height: 280px;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column img {
    max-width: 40%;
    top: 40%;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column:last-of-type {
    margin: 0;
  }
  .section.sub-page-blocks .column-wrapper.column-row.fullwidth {
    padding: 0 15% !important;
  }

  .section.user-cta .fullwidth, .user-guide-page .section .fullwidth {
    padding: 0 0 50px 0;
  }

  .header-banner .guide-logo {
    left: 50%;
    -webkit-transform: translateY(-65%) translateX(-50%);
    -moz-transform: translateY(-65%) translateX(-50%);
    -ms-transform: translateY(-65%) translateX(-50%);
    -o-transform: translateY(-65%) translateX(-50%);
    transform: translateY(-65%) translateX(-50%);
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .section.sub-page-blocks .column-wrapper.column-row {
    padding: 0 15%;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column {
    height: 280px;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column img {
    max-width: 70%;
    top: 40%;
  }
}
@media only screen and (max-width: 500px) {
  .header-banner h1 {
    font-size: 30px;
    font-size: 1.875rem;
    bottom: 12px;
  }

  .show-guide-version .guide-version-container {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 480px) {
  .section.sub-page-blocks .column-wrapper.column-row {
    padding: 0;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column {
    height: 220px;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column img {
    max-width: 40%;
    top: 40%;
  }
  .section.sub-page-blocks .column-wrapper.column-row.fullwidth {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 380px) {
  .section.sub-page-blocks .column-wrapper.column-row {
    padding: 0;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column {
    height: 220px;
  }
  .section.sub-page-blocks .column-wrapper.column-row .column img {
    max-width: 50%;
    top: 40%;
  }
}

/*# sourceMappingURL=main.css.map */
