/*
 *  Copyright 2019 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-accordion__header {
  margin: 0;
}
.cmp-accordion__button {
  display: block;
  width: 100%;
  text-align: left;
}
.cmp-accordion__panel--hidden {
  display: none;
}
.cmp-accordion__panel--expanded {
  display: block;
}

/*
 *  Copyright 2018 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-carousel__content {
  position: relative;
}
.cmp-carousel__item {
  display: none;
}
.cmp-carousel__item--active {
  display: block;
}
.cmp-carousel__action {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cmp-carousel__indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cmp-carousel__indicator {
  position: relative;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  margin: 0 7px;
  border-radius: 50%;
  font-size: 0;
  text-indent: -3000px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cmp-carousel__indicator--active {
  background-color: rgba(0, 0, 0, 0.8);
}

/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define image */
.cmp-image__image {
  width: 100%;
}

/*
 *  Copyright 2021 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define image */
.cmp-image__image {
  width: 100%;
  height: auto;
}

/*
 *  Copyright 2018 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-tabs__tablist {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.cmp-tabs__tab {
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  padding: .5rem 1rem;
  cursor: pointer;
}
.cmp-tabs__tab--active {
  border-color: inherit;
}
.cmp-tabs__tabpanel {
  display: none;
}
.cmp-tabs__tabpanel--active {
  display: block;
}

/* in real project, use bundling */

/*--1- settings - general settings --*/

/*
    Define your reusable custom media like this in settings.breakpoints.css:

	@custom-media --viewport-medium-min (min-width:48em);

	Use the defined custom media liker this:

	@media (--viewport-medium-min) {
		body{
			color: green;
		}
	}
*/

/* Defenitions of breakpoints
 * Note that we've used less to generate the css for the grid
 * the variables used there (../5-objects/grid-helper-files/variables.less)
 * should have the same values we're using here
 *
 * custom properties (css vars) can not be used for media queries,
 * so we're using a postcss plugin to make that possible
 */

:root {
  /* breakpoints get prefix bp- */

  /* breakpoints to be used with min-width, e.g. @media screen and (min-width: var(--bp-md-min)) */
  /* ems here are relative to the browser's default font-size (usually 16px, unless the user sets something else) */
  --bp-md-min: 48em; /* 768px; */
  --bp-lg-min: 62em; /* 992px; */
  --bp-xl-min: 73.125em; /* 1170px; */
  --bp-2xl-min: 90em; /* 1440px */

  /* breakpoints to be used with max-width, e.g. @media screen and (max-width: var(--bp-sm-max)) */
  --bp-sm-max: 47.99em; /* < 768px */
  --bp-md-max: 61.99em; /* < 992px */
  --bp-lg-max: 73.115em; /* < 1170px */
  --bp-xl-max: 89.99em; /* < 1440px */
}

/* breakpoints for max-width - use only if you can't use the min-width variants */

/* breakpoints for targeting only specific breakpoint(s) - don't overuse! */

:root {
	/* map colors to color names (using name that color) */
	/* https://projects.invisionapp.com/dsm */
	--color-white: hsl(0, 0%, 100%);
	--color-black: hsl(0, 0%, 0%);

	--color-munsell-green: hsl(160, 100%, 33%);
	--color-munsell-green-lightest: hsl(161, 49%, 88%);
	--color-munsell-green-lighter: hsl(161, 50%, 57%);
	--color-munsell-green-darker: hsl(160, 100%, 24%);
	--color-munsell-green-darkest: hsl(160, 100%, 15%);

	--color-coral-reef: hsl(7, 80%, 65%);
	--color-coral-reef-lightest: hsl(8, 80%, 90%);
	--color-coral-reef-lighter: hsl(7, 79%, 77%);
	--color-coral-reef-darker: hsl(7, 44%, 47%);
	--color-coral-reef-darkest: hsl(7, 44%, 29%);

	--color-violet-blue: hsl(235, 44%, 46%);
	--color-violet-blue-lightest: rgb(202, 204, 230);
	--color-violet-blue-lighter: hsl(235, 37%, 65%);
	--color-violet-blue-darker: hsl(235, 44%, 29%);
	--color-violet-blue-darkest: hsl(235, 44%, 21%);
	
	--color-manatee: hsl(214, 4%, 63%);
	--color-manatee-lightest: hsl(0, 0%, 96%);
	--color-manatee-lighter: hsl(225, 3%, 76%);
	--color-manatee-darker: hsl(210, 2%, 40%);
	--color-manatee-darkest: hsl(220, 3%, 23%);

	--color-sunshine-yellow: hsl(45, 100%, 49%);
	--color-sunshine-yellow-lightest: hsl(44, 96%, 90%);
	--color-sunshine-yellow-lighter: hsl(44, 95%, 69%);
	--color-sunshine-yellow-darker: hsl(44, 100%, 34%);
	--color-sunshine-yellow-darkest: hsl(44, 100%, 19%);

	--color-disabled: var(--color-manatee-lighter);

	/* map variables to specific uses */
	
	/* map colors to color variables */
	--color-primary: var(--color-munsell-green);
	--color-secondary: var(--color-violet-blue);
	--color-tertiary: var(--color-coral-reef);
	--color-bg-x-light: var(--color-manatee-lightest);
	
	/* text colors */
	--color-body: var(--color-manatee-darkest);

	--color-body-link: var(--color-violet-blue);
	--color-body-link-hover: var(--color-violet-blue-darkest);
	--color-body-link-active: var(--color-violet-blue-darker);
	--color-body-link-visited: var(--color-munsell-green);

	--color-menu-link-hover: var(--color-violet-blue);

	--color-on-primary-bg: var(--color-white);
	--color-on-secondary-bg: var(--color-white);
	
	/* backgrounds */
	--color-bg-body: var(--color-white);
	--color-bg-content: var(--color-bg-x-light);

	/* border colors */
	--color-border-main: var(--color-manatee);

	/* table colors */
	--color-table-text: inherit;
	--color-bg-table: transparent;
	--color-border-table: var(--color-manatee-lighter);

}

/* spacings - use multiples of 8 (i.e. multiples of 0.8rem) */

:root {
	--spacing-8: 0.8rem;
	--spacing-12: 1.2rem;
	--spacing-14: 1.4rem;
	--spacing-16: 1.6rem;	
	--spacing-24: 2.4rem;
	--spacing-32: 3.2rem;
	--spacing-40: 4.0rem;
	--spacing-48: 4.8rem;
	--spacing-56: 5.6rem;
	--spacing-64: 6.4rem;
	--spacing-96: 9.6rem;
	--spacing-128: 12.8rem;

	--spacing-grid-gutter: 2.4rem;/* same as less-variable @gutter in ../5-objects/grid-helper-files/variables.less */
	--spacing-grid-half-gutter: 1.2rem;/* we can't do calc(grid-gutter/2), because (combined with variables-postcss plugin) that would end up in nested calcs in IE11, and it can't handle that */

	--spacing-grid-gutter-sm: 1.6rem;/* same as less-variable @gutter-sm in ../5-objects/grid-helper-files/variables.less */
	--spacing-grid-half-gutter-sm: 0.8rem;/* we can't do calc(grid-half-gutter/2), because (combined with variables-postcss plugin) that would end up in nested calcs in IE11, and it can't handle that */

	--spacing-body-text: var(--spacing-16);/* spacing for elements in body text, like paragraphs */

	--spacing-list-elements: var(--spacing-32); /* spacing for ol and ul elements */

}

:root {
	/* widths that apply to the whole project */
	--width-max-content: 90em;

	--header-content-height: var(--spacing-40);/* height of content in nav */
	--header-padding: var(--spacing-48);/* top and bottom padding of nav */
	/* can possibly be removed */
	--header-height: calc( var(--header-content-height) + 2 * var(--header-padding));
}

:root {
  /* font-families: prefix ff- */
  --ff-default: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  --ff-secondary: "Nantes Web", georgia, serif;

  /* map font-family variables to specific uses */
  --ff-body: var(--ff-default);
  --ff-headings: var(--ff-default);

  /* font variables */

  --default-fontsize: 1.6rem;
  --default-lineheight: 1.75;

  --font-10: 1rem/1.75 var(--ff-default);
  --font-12: 1.2rem/1.3333333 var(--ff-default);
  --font-14: 1.4rem/1.4285714288 var(--ff-default);
  --font-16: 1.6rem/1.75 var(--ff-default);
  --font-20: 2rem/1.4 var(--ff-default);
  --font-24: 2.4rem/1.1666666667 var(--ff-default);
  --font-36: 3.6rem/1.1666666667 var(--ff-default);

  /* font-weights - prefix fw */
  --fw-normal: normal;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 900;

  /* line-heights */
  --line-height-1-375: 1.375;
  --line-height-input-and-buttons: --line-height-1-375;

  /* specific uses of variables */
  --fw-th: var(--fw-semibold);
}

.pfzw-i:before {
  font-family: "PFZWIcons2";
  font-weight: normal;
  font-style: normal;
  font-size: 96px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  font-size: 1em; /* update accordingly */
}

:root {
	/* border radiuses prefix border-radius */
	--border-radius-xs: 0.4rem;
	--border-radius-default: 2rem;
	--border-radius-button: var(--border-radius-xs);

	--border-radius-balloon: var(--border-radius-default);
	--border-radius-balloon-arrow-default: var(--border-radius-default);
	--border-radius-balloon-arrow--lg: 6.8rem;
}

:root {
	--anim-dur: 0.2s;
	--anim-easing: ease-in-out;
	--anim: var(--anim-dur) var(--anim-easing); 
}

/* balloon-arrows */

:root {
	--balloon-arrow-url-green: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%2300aa72"/></svg>');

	--balloon-arrow-url-white: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ffffff"/></svg>');

	--balloon-arrow-url-blue: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%234149a8"/></svg>');

	--balloon-arrow-url-x-light: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23f5f5f5"/></svg>');


	/* icons from icon font - we need to find a way to implement those when we can't add an icon-class to an element. solve with svgs for now. */
	--arrow-right-url-green: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");

	--arrow-right-url-white: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%23ffffff'/%3e%3c/svg%3e");

	/* this is the default url for right arrows. we can overrule it for specific cases (like colored backgrounds) */
	--arrow-right-url: var(--arrow-right-url-green);

	--icon-small: 24px;
	--icon-medium: 48px;
	--icon-large: 96px;
}

/*
 * z-indexes for pfzw project
 * by keeping them all in one file, you can easily manage indexes in relation with others
 */

:root {
	--z-index-nav-overlay: 5;
	--z-index-hero-teaser-before: 10;
	--z-index-menu: 15;
	--z-index-nav-expanded-menu: 20;
	--z-index-menu-toggle: 30;
	--collabsible-h3-in-code-not-set-in-variable-added-here-as-reference: 99;
	--z-index-cookiebar: 990;
	--z-index-new-design-alert: 1000;
}

/*-- 2-tools - mixins etc --*/

/*-- 3-generic - normalize etc --*/

/*! Fork of normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Set font-size root to 10px
 */

html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.15;
  /* 3 */
}

/**
 * 1. Remove default margin.
 * 2. Set font-size to 16px;
 */

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

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for `main` in IE 11.
 */

main {
  display: block;
}

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

[hidden], template {
  display: none;
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b, strong {
  font-weight: bolder;
}

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

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

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

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button, input {
  /* 1 */
  overflow: visible;
}

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled], html input[disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

progress {
  vertical-align: baseline;
}

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

[type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
   height: auto;
 }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*-- 4-elements - bare html elements --*/

/*
* Default styling of html elements
*/

* {
	margin: 0;
	padding: 0;
	border: none;
	word-break: break-word;
	box-sizing: border-box;
}

*:focus {
	/* only uncomment the line below if you offer an alternative */
	
}

html {
	font-size: 62.5%;/* 10px */
}

body {
	overflow-y: scroll;
	overflow-x: hidden;/* to hide closed menus */
	-webkit-overflow-scrolling: auto;
	
	background-color: hsl(0, 0%, 96%);
	
	background-color: var(--color-bg-content);
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

body.pfzw-page--grey-balls {
	background: radial-gradient(#f1f1f1 150px, #f5f5f5 0px);
	background-color: #f4f4f4;
	background-color: hsl(0, 0%, 96%);
	background-color: var(--color-bg-content);
	background-size: 300px 300px;
	background-position-x: -150px;
}

body.pfzw-page--grey-balls .root.responsivegrid {
	background: none;
}

/* define margin-bottom and font for headers on breakpoints */

:root {
	--font-h1: var(--font-24);
	--fw-h1: var(--fw-bold);
	--mb-h1: var(--spacing-32);
	--font-h2: var(--font-20);
	--mb-h2: var(--spacing-16);
	--font-h3: var(--font-16);
	--mb-h3: var(--spacing-8);
	--mb-p: var(--spacing-16);
	--table-margin: 0 0 var(--spacing-32) 0;
	--td-th-padding: var(--spacing-8);
}

@media screen and (min-width: 48em) {
	:root {
		--font-h1: var(--font-36);
		--fw-h1: var(--fw-extrabold);
		--mb-h1: var(--spacing-48);
		--font-h2: var(--font-24);
		--mb-h2: var(--spacing-32);
		--font-h3: var(--font-20);
		--mb-h3: var(--spacing-24);
		--mb-p: var(--spacing-32);
		--table-margin: 0 0 var(--spacing-48) 0;
	}
}

h1 {
	margin-top: 0;
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-h1);
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);	
}

@media screen and (min-width: 48em) {

  h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  h1 {
	margin-bottom: 4.8rem;
	margin-bottom: var(--mb-h1);
  }
}

.h1 {
	margin-top: 0;
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-h1);
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);	
}

@media screen and (min-width: 48em) {

  .h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  .h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  .h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  .h1 {
	font:900 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-h1) var(--font-h1);
  }
}

@media screen and (min-width: 48em) {

  .h1 {
	margin-bottom: 4.8rem;
	margin-bottom: var(--mb-h1);
  }
}

h2 {
	margin-bottom: 1.6rem;
	margin-bottom: var(--mb-h2);
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
}

@media screen and (min-width: 48em) {

  h2 {
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
  }
}

@media screen and (min-width: 48em) {

  h2 {
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
  }
}

@media screen and (min-width: 48em) {

  h2 {
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-h2);
  }
}

.h2 {
	margin-bottom: 1.6rem;
	margin-bottom: var(--mb-h2);
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
}

@media screen and (min-width: 48em) {

  .h2 {
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
  }
}

@media screen and (min-width: 48em) {

  .h2 {
	font:700 2.4rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h2);
  }
}

@media screen and (min-width: 48em) {

  .h2 {
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-h2);
  }
}

h3 {
	margin-bottom: 0.8rem;
	margin-bottom: var(--mb-h3);
	font:700 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
}

@media screen and (min-width: 48em) {

  h3 {
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
  }
}

@media screen and (min-width: 48em) {

  h3 {
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
  }
}

@media screen and (min-width: 48em) {

  h3 {
	margin-bottom: 2.4rem;
	margin-bottom: var(--mb-h3);
  }
}

.h3 {
	margin-bottom: 0.8rem;
	margin-bottom: var(--mb-h3);
	font:700 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
}

@media screen and (min-width: 48em) {

  .h3 {
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
  }
}

@media screen and (min-width: 48em) {

  .h3 {
	font:700 2rem/1.4 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font:var(--fw-bold) var(--font-h3);
  }
}

@media screen and (min-width: 48em) {

  .h3 {
	margin-bottom: 2.4rem;
	margin-bottom: var(--mb-h3);
  }
}

h4 {
	margin-bottom: 0;
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
}

.h4 {
	margin-bottom: 0;
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
}

h5 {
	margin-bottom: 0;
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
}

.h5 {
	margin-bottom: 0;
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
}

p {
	margin-bottom: 1.6rem;
	margin-bottom: var(--mb-p);
}

@media screen and (min-width: 48em) {

  p {
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-p);
  }
}

p:last-child {
	margin-bottom: 0;
}

a img {
	border: none;
}

button {
	cursor: pointer;
}

/* table styles */

table {
		margin: 0 0 3.2rem 0;
		margin: var(--table-margin);
		border-collapse: collapse;
        background: transparent;
        background: var(--color-bg-table);
        color: inherit;
        color: var(--color-table-text);
	}

@media screen and (min-width: 48em) {

  table {
		margin: 0 0 4.8rem 0;
		margin: var(--table-margin);
  }
}

table:not([width]) {
		/* when table doesn't have width specified, make it 100% */
		width: 100%;
	}

caption {
		padding: 0 0 1.6rem;
		padding: 0 0 var(--spacing-16);
		font-weight: bold;
        text-align: left;
        color: inherit;
	}

td {
		padding: 0.8rem;
		padding: var(--td-th-padding);
		padding-left: 0;
		border-bottom: 1px solid hsl(225, 3%, 76%);
		border-bottom: 1px solid var(--color-border-table);
        text-align: left;
        color: inherit;
	}

th {
		padding: 0.8rem;
		padding: var(--td-th-padding);
		padding-left: 0;
		border-bottom: 1px solid hsl(225, 3%, 76%);
		border-bottom: 1px solid var(--color-border-table);
        text-align: left;
        color: inherit;
	}

th {
		font-weight: 600;
		font-weight: var(--fw-th);
	}

/*-- 5-objects - abstract objects --*/

/*
* compiled version of AEM's grid
* see grid-helper-files/README.md
*/

.aem-Grid {
	display: block;
	width: 100%;
}

.aem-Grid::before, .aem-Grid::after {
	display: table;
	content: " ";
}

.aem-Grid::after {
	clear: both;
}

.aem-Grid-newComponent {
	clear: both;
	margin: 0;
}

.aem-GridColumn {
	box-sizing: border-box;
	clear: both;
}

[class*="aem-Gridcolumn--"] {
	float: left;
	clear: none;
}

.aem-GridShowHidden>.aem-Grid>.aem-GridColumn {
	display: block !important;
}

/* maximum amount of grid cells to be provided */

/* default breakpoint */

.aem-Grid {
	width: auto;
}

.aem-Grid--1>.aem-GridColumn--default--1 {
	width: 100%;
}

.aem-Grid--1>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--1>.aem-GridColumn--offset--default--1 {
	margin-left: 100%;
}

.aem-Grid--default--1>.aem-GridColumn--default--1 {
	width: 100%;
}

.aem-Grid--default--1>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--1>.aem-GridColumn--offset--default--1 {
	margin-left: 100%;
}

.aem-Grid--2>.aem-GridColumn--default--1 {
	width: 50%;
}

.aem-Grid--2>.aem-GridColumn--default--2 {
	width: 100%;
}

.aem-Grid--2>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--2>.aem-GridColumn--offset--default--1 {
	margin-left: 50%;
}

.aem-Grid--2>.aem-GridColumn--offset--default--2 {
	margin-left: 100%;
}

.aem-Grid--default--2>.aem-GridColumn--default--1 {
	width: 50%;
}

.aem-Grid--default--2>.aem-GridColumn--default--2 {
	width: 100%;
}

.aem-Grid--default--2>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--2>.aem-GridColumn--offset--default--1 {
	margin-left: 50%;
}

.aem-Grid--default--2>.aem-GridColumn--offset--default--2 {
	margin-left: 100%;
}

.aem-Grid--3>.aem-GridColumn--default--1 {
	width: 33.33333333%;
}

.aem-Grid--3>.aem-GridColumn--default--2 {
	width: 66.66666667%;
}

.aem-Grid--3>.aem-GridColumn--default--3 {
	width: 100%;
}

.aem-Grid--3>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--3>.aem-GridColumn--offset--default--1 {
	margin-left: 33.33333333%;
}

.aem-Grid--3>.aem-GridColumn--offset--default--2 {
	margin-left: 66.66666667%;
}

.aem-Grid--3>.aem-GridColumn--offset--default--3 {
	margin-left: 100%;
}

.aem-Grid--default--3>.aem-GridColumn--default--1 {
	width: 33.33333333%;
}

.aem-Grid--default--3>.aem-GridColumn--default--2 {
	width: 66.66666667%;
}

.aem-Grid--default--3>.aem-GridColumn--default--3 {
	width: 100%;
}

.aem-Grid--default--3>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--3>.aem-GridColumn--offset--default--1 {
	margin-left: 33.33333333%;
}

.aem-Grid--default--3>.aem-GridColumn--offset--default--2 {
	margin-left: 66.66666667%;
}

.aem-Grid--default--3>.aem-GridColumn--offset--default--3 {
	margin-left: 100%;
}

.aem-Grid--4>.aem-GridColumn--default--1 {
	width: 25%;
}

.aem-Grid--4>.aem-GridColumn--default--2 {
	width: 50%;
}

.aem-Grid--4>.aem-GridColumn--default--3 {
	width: 75%;
}

.aem-Grid--4>.aem-GridColumn--default--4 {
	width: 100%;
}

.aem-Grid--4>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--4>.aem-GridColumn--offset--default--1 {
	margin-left: 25%;
}

.aem-Grid--4>.aem-GridColumn--offset--default--2 {
	margin-left: 50%;
}

.aem-Grid--4>.aem-GridColumn--offset--default--3 {
	margin-left: 75%;
}

.aem-Grid--4>.aem-GridColumn--offset--default--4 {
	margin-left: 100%;
}

.aem-Grid--default--4>.aem-GridColumn--default--1 {
	width: 25%;
}

.aem-Grid--default--4>.aem-GridColumn--default--2 {
	width: 50%;
}

.aem-Grid--default--4>.aem-GridColumn--default--3 {
	width: 75%;
}

.aem-Grid--default--4>.aem-GridColumn--default--4 {
	width: 100%;
}

.aem-Grid--default--4>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--4>.aem-GridColumn--offset--default--1 {
	margin-left: 25%;
}

.aem-Grid--default--4>.aem-GridColumn--offset--default--2 {
	margin-left: 50%;
}

.aem-Grid--default--4>.aem-GridColumn--offset--default--3 {
	margin-left: 75%;
}

.aem-Grid--default--4>.aem-GridColumn--offset--default--4 {
	margin-left: 100%;
}

.aem-Grid--5>.aem-GridColumn--default--1 {
	width: 20%;
}

.aem-Grid--5>.aem-GridColumn--default--2 {
	width: 40%;
}

.aem-Grid--5>.aem-GridColumn--default--3 {
	width: 60%;
}

.aem-Grid--5>.aem-GridColumn--default--4 {
	width: 80%;
}

.aem-Grid--5>.aem-GridColumn--default--5 {
	width: 100%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--1 {
	margin-left: 20%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--2 {
	margin-left: 40%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--3 {
	margin-left: 60%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--4 {
	margin-left: 80%;
}

.aem-Grid--5>.aem-GridColumn--offset--default--5 {
	margin-left: 100%;
}

.aem-Grid--default--5>.aem-GridColumn--default--1 {
	width: 20%;
}

.aem-Grid--default--5>.aem-GridColumn--default--2 {
	width: 40%;
}

.aem-Grid--default--5>.aem-GridColumn--default--3 {
	width: 60%;
}

.aem-Grid--default--5>.aem-GridColumn--default--4 {
	width: 80%;
}

.aem-Grid--default--5>.aem-GridColumn--default--5 {
	width: 100%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--1 {
	margin-left: 20%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--2 {
	margin-left: 40%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--3 {
	margin-left: 60%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--4 {
	margin-left: 80%;
}

.aem-Grid--default--5>.aem-GridColumn--offset--default--5 {
	margin-left: 100%;
}

.aem-Grid--6>.aem-GridColumn--default--1 {
	width: 16.66666667%;
}

.aem-Grid--6>.aem-GridColumn--default--2 {
	width: 33.33333333%;
}

.aem-Grid--6>.aem-GridColumn--default--3 {
	width: 50%;
}

.aem-Grid--6>.aem-GridColumn--default--4 {
	width: 66.66666667%;
}

.aem-Grid--6>.aem-GridColumn--default--5 {
	width: 83.33333333%;
}

.aem-Grid--6>.aem-GridColumn--default--6 {
	width: 100%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--1 {
	margin-left: 16.66666667%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--2 {
	margin-left: 33.33333333%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--3 {
	margin-left: 50%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--4 {
	margin-left: 66.66666667%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--5 {
	margin-left: 83.33333333%;
}

.aem-Grid--6>.aem-GridColumn--offset--default--6 {
	margin-left: 100%;
}

.aem-Grid--default--6>.aem-GridColumn--default--1 {
	width: 16.66666667%;
}

.aem-Grid--default--6>.aem-GridColumn--default--2 {
	width: 33.33333333%;
}

.aem-Grid--default--6>.aem-GridColumn--default--3 {
	width: 50%;
}

.aem-Grid--default--6>.aem-GridColumn--default--4 {
	width: 66.66666667%;
}

.aem-Grid--default--6>.aem-GridColumn--default--5 {
	width: 83.33333333%;
}

.aem-Grid--default--6>.aem-GridColumn--default--6 {
	width: 100%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--1 {
	margin-left: 16.66666667%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--2 {
	margin-left: 33.33333333%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--3 {
	margin-left: 50%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--4 {
	margin-left: 66.66666667%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--5 {
	margin-left: 83.33333333%;
}

.aem-Grid--default--6>.aem-GridColumn--offset--default--6 {
	margin-left: 100%;
}

.aem-Grid--7>.aem-GridColumn--default--1 {
	width: 14.28571429%;
}

.aem-Grid--7>.aem-GridColumn--default--2 {
	width: 28.57142857%;
}

.aem-Grid--7>.aem-GridColumn--default--3 {
	width: 42.85714286%;
}

.aem-Grid--7>.aem-GridColumn--default--4 {
	width: 57.14285714%;
}

.aem-Grid--7>.aem-GridColumn--default--5 {
	width: 71.42857143%;
}

.aem-Grid--7>.aem-GridColumn--default--6 {
	width: 85.71428571%;
}

.aem-Grid--7>.aem-GridColumn--default--7 {
	width: 100%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--1 {
	margin-left: 14.28571429%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--2 {
	margin-left: 28.57142857%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--3 {
	margin-left: 42.85714286%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--4 {
	margin-left: 57.14285714%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--5 {
	margin-left: 71.42857143%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--6 {
	margin-left: 85.71428571%;
}

.aem-Grid--7>.aem-GridColumn--offset--default--7 {
	margin-left: 100%;
}

.aem-Grid--default--7>.aem-GridColumn--default--1 {
	width: 14.28571429%;
}

.aem-Grid--default--7>.aem-GridColumn--default--2 {
	width: 28.57142857%;
}

.aem-Grid--default--7>.aem-GridColumn--default--3 {
	width: 42.85714286%;
}

.aem-Grid--default--7>.aem-GridColumn--default--4 {
	width: 57.14285714%;
}

.aem-Grid--default--7>.aem-GridColumn--default--5 {
	width: 71.42857143%;
}

.aem-Grid--default--7>.aem-GridColumn--default--6 {
	width: 85.71428571%;
}

.aem-Grid--default--7>.aem-GridColumn--default--7 {
	width: 100%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--1 {
	margin-left: 14.28571429%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--2 {
	margin-left: 28.57142857%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--3 {
	margin-left: 42.85714286%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--4 {
	margin-left: 57.14285714%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--5 {
	margin-left: 71.42857143%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--6 {
	margin-left: 85.71428571%;
}

.aem-Grid--default--7>.aem-GridColumn--offset--default--7 {
	margin-left: 100%;
}

.aem-Grid--8>.aem-GridColumn--default--1 {
	width: 12.5%;
}

.aem-Grid--8>.aem-GridColumn--default--2 {
	width: 25%;
}

.aem-Grid--8>.aem-GridColumn--default--3 {
	width: 37.5%;
}

.aem-Grid--8>.aem-GridColumn--default--4 {
	width: 50%;
}

.aem-Grid--8>.aem-GridColumn--default--5 {
	width: 62.5%;
}

.aem-Grid--8>.aem-GridColumn--default--6 {
	width: 75%;
}

.aem-Grid--8>.aem-GridColumn--default--7 {
	width: 87.5%;
}

.aem-Grid--8>.aem-GridColumn--default--8 {
	width: 100%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--1 {
	margin-left: 12.5%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--2 {
	margin-left: 25%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--3 {
	margin-left: 37.5%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--4 {
	margin-left: 50%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--5 {
	margin-left: 62.5%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--6 {
	margin-left: 75%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--7 {
	margin-left: 87.5%;
}

.aem-Grid--8>.aem-GridColumn--offset--default--8 {
	margin-left: 100%;
}

.aem-Grid--default--8>.aem-GridColumn--default--1 {
	width: 12.5%;
}

.aem-Grid--default--8>.aem-GridColumn--default--2 {
	width: 25%;
}

.aem-Grid--default--8>.aem-GridColumn--default--3 {
	width: 37.5%;
}

.aem-Grid--default--8>.aem-GridColumn--default--4 {
	width: 50%;
}

.aem-Grid--default--8>.aem-GridColumn--default--5 {
	width: 62.5%;
}

.aem-Grid--default--8>.aem-GridColumn--default--6 {
	width: 75%;
}

.aem-Grid--default--8>.aem-GridColumn--default--7 {
	width: 87.5%;
}

.aem-Grid--default--8>.aem-GridColumn--default--8 {
	width: 100%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--1 {
	margin-left: 12.5%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--2 {
	margin-left: 25%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--3 {
	margin-left: 37.5%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--4 {
	margin-left: 50%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--5 {
	margin-left: 62.5%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--6 {
	margin-left: 75%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--7 {
	margin-left: 87.5%;
}

.aem-Grid--default--8>.aem-GridColumn--offset--default--8 {
	margin-left: 100%;
}

.aem-Grid--9>.aem-GridColumn--default--1 {
	width: 11.11111111%;
}

.aem-Grid--9>.aem-GridColumn--default--2 {
	width: 22.22222222%;
}

.aem-Grid--9>.aem-GridColumn--default--3 {
	width: 33.33333333%;
}

.aem-Grid--9>.aem-GridColumn--default--4 {
	width: 44.44444444%;
}

.aem-Grid--9>.aem-GridColumn--default--5 {
	width: 55.55555556%;
}

.aem-Grid--9>.aem-GridColumn--default--6 {
	width: 66.66666667%;
}

.aem-Grid--9>.aem-GridColumn--default--7 {
	width: 77.77777778%;
}

.aem-Grid--9>.aem-GridColumn--default--8 {
	width: 88.88888889%;
}

.aem-Grid--9>.aem-GridColumn--default--9 {
	width: 100%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--1 {
	margin-left: 11.11111111%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--2 {
	margin-left: 22.22222222%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--3 {
	margin-left: 33.33333333%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--4 {
	margin-left: 44.44444444%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--5 {
	margin-left: 55.55555556%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--6 {
	margin-left: 66.66666667%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--7 {
	margin-left: 77.77777778%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--8 {
	margin-left: 88.88888889%;
}

.aem-Grid--9>.aem-GridColumn--offset--default--9 {
	margin-left: 100%;
}

.aem-Grid--default--9>.aem-GridColumn--default--1 {
	width: 11.11111111%;
}

.aem-Grid--default--9>.aem-GridColumn--default--2 {
	width: 22.22222222%;
}

.aem-Grid--default--9>.aem-GridColumn--default--3 {
	width: 33.33333333%;
}

.aem-Grid--default--9>.aem-GridColumn--default--4 {
	width: 44.44444444%;
}

.aem-Grid--default--9>.aem-GridColumn--default--5 {
	width: 55.55555556%;
}

.aem-Grid--default--9>.aem-GridColumn--default--6 {
	width: 66.66666667%;
}

.aem-Grid--default--9>.aem-GridColumn--default--7 {
	width: 77.77777778%;
}

.aem-Grid--default--9>.aem-GridColumn--default--8 {
	width: 88.88888889%;
}

.aem-Grid--default--9>.aem-GridColumn--default--9 {
	width: 100%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--1 {
	margin-left: 11.11111111%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--2 {
	margin-left: 22.22222222%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--3 {
	margin-left: 33.33333333%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--4 {
	margin-left: 44.44444444%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--5 {
	margin-left: 55.55555556%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--6 {
	margin-left: 66.66666667%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--7 {
	margin-left: 77.77777778%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--8 {
	margin-left: 88.88888889%;
}

.aem-Grid--default--9>.aem-GridColumn--offset--default--9 {
	margin-left: 100%;
}

.aem-Grid--10>.aem-GridColumn--default--1 {
	width: 10%;
}

.aem-Grid--10>.aem-GridColumn--default--2 {
	width: 20%;
}

.aem-Grid--10>.aem-GridColumn--default--3 {
	width: 30%;
}

.aem-Grid--10>.aem-GridColumn--default--4 {
	width: 40%;
}

.aem-Grid--10>.aem-GridColumn--default--5 {
	width: 50%;
}

.aem-Grid--10>.aem-GridColumn--default--6 {
	width: 60%;
}

.aem-Grid--10>.aem-GridColumn--default--7 {
	width: 70%;
}

.aem-Grid--10>.aem-GridColumn--default--8 {
	width: 80%;
}

.aem-Grid--10>.aem-GridColumn--default--9 {
	width: 90%;
}

.aem-Grid--10>.aem-GridColumn--default--10 {
	width: 100%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--1 {
	margin-left: 10%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--2 {
	margin-left: 20%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--3 {
	margin-left: 30%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--4 {
	margin-left: 40%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--5 {
	margin-left: 50%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--6 {
	margin-left: 60%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--7 {
	margin-left: 70%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--8 {
	margin-left: 80%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--9 {
	margin-left: 90%;
}

.aem-Grid--10>.aem-GridColumn--offset--default--10 {
	margin-left: 100%;
}

.aem-Grid--default--10>.aem-GridColumn--default--1 {
	width: 10%;
}

.aem-Grid--default--10>.aem-GridColumn--default--2 {
	width: 20%;
}

.aem-Grid--default--10>.aem-GridColumn--default--3 {
	width: 30%;
}

.aem-Grid--default--10>.aem-GridColumn--default--4 {
	width: 40%;
}

.aem-Grid--default--10>.aem-GridColumn--default--5 {
	width: 50%;
}

.aem-Grid--default--10>.aem-GridColumn--default--6 {
	width: 60%;
}

.aem-Grid--default--10>.aem-GridColumn--default--7 {
	width: 70%;
}

.aem-Grid--default--10>.aem-GridColumn--default--8 {
	width: 80%;
}

.aem-Grid--default--10>.aem-GridColumn--default--9 {
	width: 90%;
}

.aem-Grid--default--10>.aem-GridColumn--default--10 {
	width: 100%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--1 {
	margin-left: 10%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--2 {
	margin-left: 20%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--3 {
	margin-left: 30%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--4 {
	margin-left: 40%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--5 {
	margin-left: 50%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--6 {
	margin-left: 60%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--7 {
	margin-left: 70%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--8 {
	margin-left: 80%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--9 {
	margin-left: 90%;
}

.aem-Grid--default--10>.aem-GridColumn--offset--default--10 {
	margin-left: 100%;
}

.aem-Grid--11>.aem-GridColumn--default--1 {
	width: 9.09090909%;
}

.aem-Grid--11>.aem-GridColumn--default--2 {
	width: 18.18181818%;
}

.aem-Grid--11>.aem-GridColumn--default--3 {
	width: 27.27272727%;
}

.aem-Grid--11>.aem-GridColumn--default--4 {
	width: 36.36363636%;
}

.aem-Grid--11>.aem-GridColumn--default--5 {
	width: 45.45454545%;
}

.aem-Grid--11>.aem-GridColumn--default--6 {
	width: 54.54545455%;
}

.aem-Grid--11>.aem-GridColumn--default--7 {
	width: 63.63636364%;
}

.aem-Grid--11>.aem-GridColumn--default--8 {
	width: 72.72727273%;
}

.aem-Grid--11>.aem-GridColumn--default--9 {
	width: 81.81818182%;
}

.aem-Grid--11>.aem-GridColumn--default--10 {
	width: 90.90909091%;
}

.aem-Grid--11>.aem-GridColumn--default--11 {
	width: 100%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--1 {
	margin-left: 9.09090909%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--2 {
	margin-left: 18.18181818%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--3 {
	margin-left: 27.27272727%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--4 {
	margin-left: 36.36363636%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--5 {
	margin-left: 45.45454545%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--6 {
	margin-left: 54.54545455%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--7 {
	margin-left: 63.63636364%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--8 {
	margin-left: 72.72727273%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--9 {
	margin-left: 81.81818182%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--10 {
	margin-left: 90.90909091%;
}

.aem-Grid--11>.aem-GridColumn--offset--default--11 {
	margin-left: 100%;
}

.aem-Grid--default--11>.aem-GridColumn--default--1 {
	width: 9.09090909%;
}

.aem-Grid--default--11>.aem-GridColumn--default--2 {
	width: 18.18181818%;
}

.aem-Grid--default--11>.aem-GridColumn--default--3 {
	width: 27.27272727%;
}

.aem-Grid--default--11>.aem-GridColumn--default--4 {
	width: 36.36363636%;
}

.aem-Grid--default--11>.aem-GridColumn--default--5 {
	width: 45.45454545%;
}

.aem-Grid--default--11>.aem-GridColumn--default--6 {
	width: 54.54545455%;
}

.aem-Grid--default--11>.aem-GridColumn--default--7 {
	width: 63.63636364%;
}

.aem-Grid--default--11>.aem-GridColumn--default--8 {
	width: 72.72727273%;
}

.aem-Grid--default--11>.aem-GridColumn--default--9 {
	width: 81.81818182%;
}

.aem-Grid--default--11>.aem-GridColumn--default--10 {
	width: 90.90909091%;
}

.aem-Grid--default--11>.aem-GridColumn--default--11 {
	width: 100%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--1 {
	margin-left: 9.09090909%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--2 {
	margin-left: 18.18181818%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--3 {
	margin-left: 27.27272727%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--4 {
	margin-left: 36.36363636%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--5 {
	margin-left: 45.45454545%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--6 {
	margin-left: 54.54545455%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--7 {
	margin-left: 63.63636364%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--8 {
	margin-left: 72.72727273%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--9 {
	margin-left: 81.81818182%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--10 {
	margin-left: 90.90909091%;
}

.aem-Grid--default--11>.aem-GridColumn--offset--default--11 {
	margin-left: 100%;
}

.aem-Grid--12>.aem-GridColumn--default--1 {
	width: 8.33333333%;
}

.aem-Grid--12>.aem-GridColumn--default--2 {
	width: 16.66666667%;
}

.aem-Grid--12>.aem-GridColumn--default--3 {
	width: 25%;
}

.aem-Grid--12>.aem-GridColumn--default--4 {
	width: 33.33333333%;
}

.aem-Grid--12>.aem-GridColumn--default--5 {
	width: 41.66666667%;
}

.aem-Grid--12>.aem-GridColumn--default--6 {
	width: 50%;
}

.aem-Grid--12>.aem-GridColumn--default--7 {
	width: 58.33333333%;
}

.aem-Grid--12>.aem-GridColumn--default--8 {
	width: 66.66666667%;
}

.aem-Grid--12>.aem-GridColumn--default--9 {
	width: 75%;
}

.aem-Grid--12>.aem-GridColumn--default--10 {
	width: 83.33333333%;
}

.aem-Grid--12>.aem-GridColumn--default--11 {
	width: 91.66666667%;
}

.aem-Grid--12>.aem-GridColumn--default--12 {
	width: 100%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--1 {
	margin-left: 8.33333333%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--2 {
	margin-left: 16.66666667%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--3 {
	margin-left: 25%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--4 {
	margin-left: 33.33333333%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--5 {
	margin-left: 41.66666667%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--6 {
	margin-left: 50%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--7 {
	margin-left: 58.33333333%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--8 {
	margin-left: 66.66666667%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--9 {
	margin-left: 75%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--10 {
	margin-left: 83.33333333%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--11 {
	margin-left: 91.66666667%;
}

.aem-Grid--12>.aem-GridColumn--offset--default--12 {
	margin-left: 100%;
}

.aem-Grid--default--12>.aem-GridColumn--default--1 {
	width: 8.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--default--2 {
	width: 16.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--default--3 {
	width: 25%;
}

.aem-Grid--default--12>.aem-GridColumn--default--4 {
	width: 33.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--default--5 {
	width: 41.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--default--6 {
	width: 50%;
}

.aem-Grid--default--12>.aem-GridColumn--default--7 {
	width: 58.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--default--8 {
	width: 66.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--default--9 {
	width: 75%;
}

.aem-Grid--default--12>.aem-GridColumn--default--10 {
	width: 83.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--default--11 {
	width: 91.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--default--12 {
	width: 100%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--0 {
	margin-left: 0%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--1 {
	margin-left: 8.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--2 {
	margin-left: 16.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--3 {
	margin-left: 25%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--4 {
	margin-left: 33.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--5 {
	margin-left: 41.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--6 {
	margin-left: 50%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--7 {
	margin-left: 58.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--8 {
	margin-left: 66.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--9 {
	margin-left: 75%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--10 {
	margin-left: 83.33333333%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--11 {
	margin-left: 91.66666667%;
}

.aem-Grid--default--12>.aem-GridColumn--offset--default--12 {
	margin-left: 100%;
}

.aem-Grid>.aem-GridColumn--default--newline {
	display: block;
	clear: both !important;
}

.aem-Grid>.aem-GridColumn--default--none {
	display: block;
	clear: none !important;
	float: left;
}

.aem-Grid>.aem-GridColumn--default--hide {
	display: none;
}

.aem-GridColumn {
	padding: 0 1.2rem;
}

/* phone breakpoint */

@media (max-width: 47.99em) {
	.aem-Grid--1>.aem-GridColumn--sm--1 {
		width: 100%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--sm--1 {
		margin-left: 100%;
	}
	.aem-Grid--sm--1>.aem-GridColumn--sm--1 {
		width: 100%;
	}
	.aem-Grid--sm--1>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--1>.aem-GridColumn--offset--sm--1 {
		margin-left: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--sm--1 {
		width: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--sm--2 {
		width: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--sm--1 {
		margin-left: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--sm--2 {
		margin-left: 100%;
	}
	.aem-Grid--sm--2>.aem-GridColumn--sm--1 {
		width: 50%;
	}
	.aem-Grid--sm--2>.aem-GridColumn--sm--2 {
		width: 100%;
	}
	.aem-Grid--sm--2>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--2>.aem-GridColumn--offset--sm--1 {
		margin-left: 50%;
	}
	.aem-Grid--sm--2>.aem-GridColumn--offset--sm--2 {
		margin-left: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--sm--1 {
		width: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--sm--2 {
		width: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--sm--3 {
		width: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--sm--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--sm--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--sm--3 {
		margin-left: 100%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--sm--1 {
		width: 33.33333333%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--sm--2 {
		width: 66.66666667%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--sm--3 {
		width: 100%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--offset--sm--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--offset--sm--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--sm--3>.aem-GridColumn--offset--sm--3 {
		margin-left: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--sm--1 {
		width: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--sm--2 {
		width: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--sm--3 {
		width: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--sm--4 {
		width: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--sm--1 {
		margin-left: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--sm--2 {
		margin-left: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--sm--3 {
		margin-left: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--sm--4 {
		margin-left: 100%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--sm--1 {
		width: 25%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--sm--2 {
		width: 50%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--sm--3 {
		width: 75%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--sm--4 {
		width: 100%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--offset--sm--1 {
		margin-left: 25%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--offset--sm--2 {
		margin-left: 50%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--offset--sm--3 {
		margin-left: 75%;
	}
	.aem-Grid--sm--4>.aem-GridColumn--offset--sm--4 {
		margin-left: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--sm--1 {
		width: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--sm--2 {
		width: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--sm--3 {
		width: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--sm--4 {
		width: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--sm--5 {
		width: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--1 {
		margin-left: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--2 {
		margin-left: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--3 {
		margin-left: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--4 {
		margin-left: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--sm--5 {
		margin-left: 100%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--sm--1 {
		width: 20%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--sm--2 {
		width: 40%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--sm--3 {
		width: 60%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--sm--4 {
		width: 80%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--sm--5 {
		width: 100%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--1 {
		margin-left: 20%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--2 {
		margin-left: 40%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--3 {
		margin-left: 60%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--4 {
		margin-left: 80%;
	}
	.aem-Grid--sm--5>.aem-GridColumn--offset--sm--5 {
		margin-left: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--1 {
		width: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--2 {
		width: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--3 {
		width: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--4 {
		width: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--5 {
		width: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--sm--6 {
		width: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--3 {
		margin-left: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--sm--6 {
		margin-left: 100%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--1 {
		width: 16.66666667%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--2 {
		width: 33.33333333%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--3 {
		width: 50%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--4 {
		width: 66.66666667%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--5 {
		width: 83.33333333%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--sm--6 {
		width: 100%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--3 {
		margin-left: 50%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--sm--6>.aem-GridColumn--offset--sm--6 {
		margin-left: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--1 {
		width: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--2 {
		width: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--3 {
		width: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--4 {
		width: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--5 {
		width: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--6 {
		width: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--sm--7 {
		width: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--sm--7 {
		margin-left: 100%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--1 {
		width: 14.28571429%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--2 {
		width: 28.57142857%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--3 {
		width: 42.85714286%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--4 {
		width: 57.14285714%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--5 {
		width: 71.42857143%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--6 {
		width: 85.71428571%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--sm--7 {
		width: 100%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--sm--7>.aem-GridColumn--offset--sm--7 {
		margin-left: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--1 {
		width: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--2 {
		width: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--3 {
		width: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--4 {
		width: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--5 {
		width: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--6 {
		width: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--7 {
		width: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--sm--8 {
		width: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--2 {
		margin-left: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--4 {
		margin-left: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--6 {
		margin-left: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--sm--8 {
		margin-left: 100%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--1 {
		width: 12.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--2 {
		width: 25%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--3 {
		width: 37.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--4 {
		width: 50%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--5 {
		width: 62.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--6 {
		width: 75%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--7 {
		width: 87.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--sm--8 {
		width: 100%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--2 {
		margin-left: 25%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--4 {
		margin-left: 50%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--6 {
		margin-left: 75%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--sm--8>.aem-GridColumn--offset--sm--8 {
		margin-left: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--1 {
		width: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--2 {
		width: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--3 {
		width: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--4 {
		width: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--5 {
		width: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--6 {
		width: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--7 {
		width: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--8 {
		width: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--sm--9 {
		width: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--sm--9 {
		margin-left: 100%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--1 {
		width: 11.11111111%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--2 {
		width: 22.22222222%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--3 {
		width: 33.33333333%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--4 {
		width: 44.44444444%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--5 {
		width: 55.55555556%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--6 {
		width: 66.66666667%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--7 {
		width: 77.77777778%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--8 {
		width: 88.88888889%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--sm--9 {
		width: 100%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--sm--9>.aem-GridColumn--offset--sm--9 {
		margin-left: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--1 {
		width: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--2 {
		width: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--3 {
		width: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--4 {
		width: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--5 {
		width: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--6 {
		width: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--7 {
		width: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--8 {
		width: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--9 {
		width: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--sm--10 {
		width: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--1 {
		margin-left: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--2 {
		margin-left: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--3 {
		margin-left: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--4 {
		margin-left: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--5 {
		margin-left: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--6 {
		margin-left: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--7 {
		margin-left: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--8 {
		margin-left: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--9 {
		margin-left: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--sm--10 {
		margin-left: 100%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--1 {
		width: 10%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--2 {
		width: 20%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--3 {
		width: 30%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--4 {
		width: 40%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--5 {
		width: 50%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--6 {
		width: 60%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--7 {
		width: 70%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--8 {
		width: 80%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--9 {
		width: 90%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--sm--10 {
		width: 100%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--1 {
		margin-left: 10%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--2 {
		margin-left: 20%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--3 {
		margin-left: 30%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--4 {
		margin-left: 40%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--5 {
		margin-left: 50%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--6 {
		margin-left: 60%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--7 {
		margin-left: 70%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--8 {
		margin-left: 80%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--9 {
		margin-left: 90%;
	}
	.aem-Grid--sm--10>.aem-GridColumn--offset--sm--10 {
		margin-left: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--1 {
		width: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--2 {
		width: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--3 {
		width: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--4 {
		width: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--5 {
		width: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--6 {
		width: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--7 {
		width: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--8 {
		width: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--9 {
		width: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--10 {
		width: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--sm--11 {
		width: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--sm--11 {
		margin-left: 100%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--1 {
		width: 9.09090909%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--2 {
		width: 18.18181818%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--3 {
		width: 27.27272727%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--4 {
		width: 36.36363636%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--5 {
		width: 45.45454545%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--6 {
		width: 54.54545455%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--7 {
		width: 63.63636364%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--8 {
		width: 72.72727273%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--9 {
		width: 81.81818182%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--10 {
		width: 90.90909091%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--sm--11 {
		width: 100%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--sm--11>.aem-GridColumn--offset--sm--11 {
		margin-left: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--1 {
		width: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--2 {
		width: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--3 {
		width: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--4 {
		width: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--5 {
		width: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--6 {
		width: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--7 {
		width: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--8 {
		width: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--9 {
		width: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--10 {
		width: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--11 {
		width: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--sm--12 {
		width: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--3 {
		margin-left: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--6 {
		margin-left: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--9 {
		margin-left: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--sm--12 {
		margin-left: 100%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--1 {
		width: 8.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--2 {
		width: 16.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--3 {
		width: 25%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--4 {
		width: 33.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--5 {
		width: 41.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--6 {
		width: 50%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--7 {
		width: 58.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--8 {
		width: 66.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--9 {
		width: 75%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--10 {
		width: 83.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--11 {
		width: 91.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--sm--12 {
		width: 100%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--0 {
		margin-left: 0%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--3 {
		margin-left: 25%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--6 {
		margin-left: 50%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--9 {
		margin-left: 75%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--sm--12>.aem-GridColumn--offset--sm--12 {
		margin-left: 100%;
	}
	.aem-Grid>.aem-GridColumn--sm--newline {
		display: block;
		clear: both !important;
	}
	.aem-Grid>.aem-GridColumn--sm--none {
		display: block;
		clear: none !important;
		float: left;
	}
	.aem-Grid>.aem-GridColumn--sm--hide {
		display: none;
	}
	.aem-GridColumn {
		padding: 0 0.8rem;
	}
}

/* tablet portrait breakpoint */

@media (min-width: 48em) and (max-width: 61.99em) {
	.aem-Grid--1>.aem-GridColumn--md--1 {
		width: 100%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--md--1 {
		margin-left: 100%;
	}
	.aem-Grid--md--1>.aem-GridColumn--md--1 {
		width: 100%;
	}
	.aem-Grid--md--1>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--1>.aem-GridColumn--offset--md--1 {
		margin-left: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--md--1 {
		width: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--md--2 {
		width: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--md--1 {
		margin-left: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--md--2 {
		margin-left: 100%;
	}
	.aem-Grid--md--2>.aem-GridColumn--md--1 {
		width: 50%;
	}
	.aem-Grid--md--2>.aem-GridColumn--md--2 {
		width: 100%;
	}
	.aem-Grid--md--2>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--2>.aem-GridColumn--offset--md--1 {
		margin-left: 50%;
	}
	.aem-Grid--md--2>.aem-GridColumn--offset--md--2 {
		margin-left: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--md--1 {
		width: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--md--2 {
		width: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--md--3 {
		width: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--md--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--md--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--md--3 {
		margin-left: 100%;
	}
	.aem-Grid--md--3>.aem-GridColumn--md--1 {
		width: 33.33333333%;
	}
	.aem-Grid--md--3>.aem-GridColumn--md--2 {
		width: 66.66666667%;
	}
	.aem-Grid--md--3>.aem-GridColumn--md--3 {
		width: 100%;
	}
	.aem-Grid--md--3>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--3>.aem-GridColumn--offset--md--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--md--3>.aem-GridColumn--offset--md--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--md--3>.aem-GridColumn--offset--md--3 {
		margin-left: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--md--1 {
		width: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--md--2 {
		width: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--md--3 {
		width: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--md--4 {
		width: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--md--1 {
		margin-left: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--md--2 {
		margin-left: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--md--3 {
		margin-left: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--md--4 {
		margin-left: 100%;
	}
	.aem-Grid--md--4>.aem-GridColumn--md--1 {
		width: 25%;
	}
	.aem-Grid--md--4>.aem-GridColumn--md--2 {
		width: 50%;
	}
	.aem-Grid--md--4>.aem-GridColumn--md--3 {
		width: 75%;
	}
	.aem-Grid--md--4>.aem-GridColumn--md--4 {
		width: 100%;
	}
	.aem-Grid--md--4>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--4>.aem-GridColumn--offset--md--1 {
		margin-left: 25%;
	}
	.aem-Grid--md--4>.aem-GridColumn--offset--md--2 {
		margin-left: 50%;
	}
	.aem-Grid--md--4>.aem-GridColumn--offset--md--3 {
		margin-left: 75%;
	}
	.aem-Grid--md--4>.aem-GridColumn--offset--md--4 {
		margin-left: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--md--1 {
		width: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--md--2 {
		width: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--md--3 {
		width: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--md--4 {
		width: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--md--5 {
		width: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--1 {
		margin-left: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--2 {
		margin-left: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--3 {
		margin-left: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--4 {
		margin-left: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--md--5 {
		margin-left: 100%;
	}
	.aem-Grid--md--5>.aem-GridColumn--md--1 {
		width: 20%;
	}
	.aem-Grid--md--5>.aem-GridColumn--md--2 {
		width: 40%;
	}
	.aem-Grid--md--5>.aem-GridColumn--md--3 {
		width: 60%;
	}
	.aem-Grid--md--5>.aem-GridColumn--md--4 {
		width: 80%;
	}
	.aem-Grid--md--5>.aem-GridColumn--md--5 {
		width: 100%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--1 {
		margin-left: 20%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--2 {
		margin-left: 40%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--3 {
		margin-left: 60%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--4 {
		margin-left: 80%;
	}
	.aem-Grid--md--5>.aem-GridColumn--offset--md--5 {
		margin-left: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--md--1 {
		width: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--md--2 {
		width: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--md--3 {
		width: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--md--4 {
		width: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--md--5 {
		width: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--md--6 {
		width: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--3 {
		margin-left: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--md--6 {
		margin-left: 100%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--1 {
		width: 16.66666667%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--2 {
		width: 33.33333333%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--3 {
		width: 50%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--4 {
		width: 66.66666667%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--5 {
		width: 83.33333333%;
	}
	.aem-Grid--md--6>.aem-GridColumn--md--6 {
		width: 100%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--3 {
		margin-left: 50%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--md--6>.aem-GridColumn--offset--md--6 {
		margin-left: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--md--1 {
		width: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--md--2 {
		width: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--md--3 {
		width: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--md--4 {
		width: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--md--5 {
		width: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--md--6 {
		width: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--md--7 {
		width: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--md--7 {
		margin-left: 100%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--1 {
		width: 14.28571429%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--2 {
		width: 28.57142857%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--3 {
		width: 42.85714286%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--4 {
		width: 57.14285714%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--5 {
		width: 71.42857143%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--6 {
		width: 85.71428571%;
	}
	.aem-Grid--md--7>.aem-GridColumn--md--7 {
		width: 100%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--md--7>.aem-GridColumn--offset--md--7 {
		margin-left: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--md--1 {
		width: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--md--2 {
		width: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--md--3 {
		width: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--md--4 {
		width: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--md--5 {
		width: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--md--6 {
		width: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--md--7 {
		width: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--md--8 {
		width: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--2 {
		margin-left: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--4 {
		margin-left: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--6 {
		margin-left: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--md--8 {
		margin-left: 100%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--1 {
		width: 12.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--2 {
		width: 25%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--3 {
		width: 37.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--4 {
		width: 50%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--5 {
		width: 62.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--6 {
		width: 75%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--7 {
		width: 87.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--md--8 {
		width: 100%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--2 {
		margin-left: 25%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--4 {
		margin-left: 50%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--6 {
		margin-left: 75%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--md--8>.aem-GridColumn--offset--md--8 {
		margin-left: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--md--1 {
		width: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--md--2 {
		width: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--md--3 {
		width: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--md--4 {
		width: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--md--5 {
		width: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--md--6 {
		width: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--md--7 {
		width: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--md--8 {
		width: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--md--9 {
		width: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--md--9 {
		margin-left: 100%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--1 {
		width: 11.11111111%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--2 {
		width: 22.22222222%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--3 {
		width: 33.33333333%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--4 {
		width: 44.44444444%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--5 {
		width: 55.55555556%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--6 {
		width: 66.66666667%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--7 {
		width: 77.77777778%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--8 {
		width: 88.88888889%;
	}
	.aem-Grid--md--9>.aem-GridColumn--md--9 {
		width: 100%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--md--9>.aem-GridColumn--offset--md--9 {
		margin-left: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--md--1 {
		width: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--md--2 {
		width: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--md--3 {
		width: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--md--4 {
		width: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--md--5 {
		width: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--md--6 {
		width: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--md--7 {
		width: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--md--8 {
		width: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--md--9 {
		width: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--md--10 {
		width: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--1 {
		margin-left: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--2 {
		margin-left: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--3 {
		margin-left: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--4 {
		margin-left: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--5 {
		margin-left: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--6 {
		margin-left: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--7 {
		margin-left: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--8 {
		margin-left: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--9 {
		margin-left: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--md--10 {
		margin-left: 100%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--1 {
		width: 10%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--2 {
		width: 20%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--3 {
		width: 30%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--4 {
		width: 40%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--5 {
		width: 50%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--6 {
		width: 60%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--7 {
		width: 70%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--8 {
		width: 80%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--9 {
		width: 90%;
	}
	.aem-Grid--md--10>.aem-GridColumn--md--10 {
		width: 100%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--1 {
		margin-left: 10%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--2 {
		margin-left: 20%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--3 {
		margin-left: 30%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--4 {
		margin-left: 40%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--5 {
		margin-left: 50%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--6 {
		margin-left: 60%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--7 {
		margin-left: 70%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--8 {
		margin-left: 80%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--9 {
		margin-left: 90%;
	}
	.aem-Grid--md--10>.aem-GridColumn--offset--md--10 {
		margin-left: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--md--1 {
		width: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--md--2 {
		width: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--md--3 {
		width: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--md--4 {
		width: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--md--5 {
		width: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--md--6 {
		width: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--md--7 {
		width: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--md--8 {
		width: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--md--9 {
		width: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--md--10 {
		width: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--md--11 {
		width: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--md--11 {
		margin-left: 100%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--1 {
		width: 9.09090909%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--2 {
		width: 18.18181818%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--3 {
		width: 27.27272727%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--4 {
		width: 36.36363636%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--5 {
		width: 45.45454545%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--6 {
		width: 54.54545455%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--7 {
		width: 63.63636364%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--8 {
		width: 72.72727273%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--9 {
		width: 81.81818182%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--10 {
		width: 90.90909091%;
	}
	.aem-Grid--md--11>.aem-GridColumn--md--11 {
		width: 100%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--md--11>.aem-GridColumn--offset--md--11 {
		margin-left: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--md--1 {
		width: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--md--2 {
		width: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--md--3 {
		width: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--md--4 {
		width: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--md--5 {
		width: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--md--6 {
		width: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--md--7 {
		width: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--md--8 {
		width: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--md--9 {
		width: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--md--10 {
		width: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--md--11 {
		width: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--md--12 {
		width: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--3 {
		margin-left: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--6 {
		margin-left: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--9 {
		margin-left: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--md--12 {
		margin-left: 100%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--1 {
		width: 8.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--2 {
		width: 16.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--3 {
		width: 25%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--4 {
		width: 33.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--5 {
		width: 41.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--6 {
		width: 50%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--7 {
		width: 58.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--8 {
		width: 66.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--9 {
		width: 75%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--10 {
		width: 83.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--11 {
		width: 91.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--md--12 {
		width: 100%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--0 {
		margin-left: 0%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--3 {
		margin-left: 25%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--6 {
		margin-left: 50%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--9 {
		margin-left: 75%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--md--12>.aem-GridColumn--offset--md--12 {
		margin-left: 100%;
	}
	.aem-Grid>.aem-GridColumn--md--newline {
		display: block;
		clear: both !important;
	}
	.aem-Grid>.aem-GridColumn--md--none {
		display: block;
		clear: none !important;
		float: left;
	}
	.aem-Grid>.aem-GridColumn--md--hide {
		display: none;
	}
}

/* tablet landscape breakpoint */

@media (min-width: 62em) and (max-width: 73.115em) {
	.aem-Grid--1>.aem-GridColumn--lg--1 {
		width: 100%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--1>.aem-GridColumn--offset--lg--1 {
		margin-left: 100%;
	}
	.aem-Grid--lg--1>.aem-GridColumn--lg--1 {
		width: 100%;
	}
	.aem-Grid--lg--1>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--1>.aem-GridColumn--offset--lg--1 {
		margin-left: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--lg--1 {
		width: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--lg--2 {
		width: 100%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--lg--1 {
		margin-left: 50%;
	}
	.aem-Grid--2>.aem-GridColumn--offset--lg--2 {
		margin-left: 100%;
	}
	.aem-Grid--lg--2>.aem-GridColumn--lg--1 {
		width: 50%;
	}
	.aem-Grid--lg--2>.aem-GridColumn--lg--2 {
		width: 100%;
	}
	.aem-Grid--lg--2>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--2>.aem-GridColumn--offset--lg--1 {
		margin-left: 50%;
	}
	.aem-Grid--lg--2>.aem-GridColumn--offset--lg--2 {
		margin-left: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--lg--1 {
		width: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--lg--2 {
		width: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--lg--3 {
		width: 100%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--lg--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--lg--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--3>.aem-GridColumn--offset--lg--3 {
		margin-left: 100%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--lg--1 {
		width: 33.33333333%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--lg--2 {
		width: 66.66666667%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--lg--3 {
		width: 100%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--offset--lg--1 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--offset--lg--2 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--lg--3>.aem-GridColumn--offset--lg--3 {
		margin-left: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--lg--1 {
		width: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--lg--2 {
		width: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--lg--3 {
		width: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--lg--4 {
		width: 100%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--lg--1 {
		margin-left: 25%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--lg--2 {
		margin-left: 50%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--lg--3 {
		margin-left: 75%;
	}
	.aem-Grid--4>.aem-GridColumn--offset--lg--4 {
		margin-left: 100%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--lg--1 {
		width: 25%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--lg--2 {
		width: 50%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--lg--3 {
		width: 75%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--lg--4 {
		width: 100%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--offset--lg--1 {
		margin-left: 25%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--offset--lg--2 {
		margin-left: 50%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--offset--lg--3 {
		margin-left: 75%;
	}
	.aem-Grid--lg--4>.aem-GridColumn--offset--lg--4 {
		margin-left: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--lg--1 {
		width: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--lg--2 {
		width: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--lg--3 {
		width: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--lg--4 {
		width: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--lg--5 {
		width: 100%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--1 {
		margin-left: 20%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--2 {
		margin-left: 40%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--3 {
		margin-left: 60%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--4 {
		margin-left: 80%;
	}
	.aem-Grid--5>.aem-GridColumn--offset--lg--5 {
		margin-left: 100%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--lg--1 {
		width: 20%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--lg--2 {
		width: 40%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--lg--3 {
		width: 60%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--lg--4 {
		width: 80%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--lg--5 {
		width: 100%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--1 {
		margin-left: 20%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--2 {
		margin-left: 40%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--3 {
		margin-left: 60%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--4 {
		margin-left: 80%;
	}
	.aem-Grid--lg--5>.aem-GridColumn--offset--lg--5 {
		margin-left: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--1 {
		width: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--2 {
		width: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--3 {
		width: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--4 {
		width: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--5 {
		width: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--lg--6 {
		width: 100%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--3 {
		margin-left: 50%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--6>.aem-GridColumn--offset--lg--6 {
		margin-left: 100%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--1 {
		width: 16.66666667%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--2 {
		width: 33.33333333%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--3 {
		width: 50%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--4 {
		width: 66.66666667%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--5 {
		width: 83.33333333%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--lg--6 {
		width: 100%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--1 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--2 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--3 {
		margin-left: 50%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--4 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--5 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--lg--6>.aem-GridColumn--offset--lg--6 {
		margin-left: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--1 {
		width: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--2 {
		width: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--3 {
		width: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--4 {
		width: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--5 {
		width: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--6 {
		width: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--lg--7 {
		width: 100%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--7>.aem-GridColumn--offset--lg--7 {
		margin-left: 100%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--1 {
		width: 14.28571429%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--2 {
		width: 28.57142857%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--3 {
		width: 42.85714286%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--4 {
		width: 57.14285714%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--5 {
		width: 71.42857143%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--6 {
		width: 85.71428571%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--lg--7 {
		width: 100%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--1 {
		margin-left: 14.28571429%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--2 {
		margin-left: 28.57142857%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--3 {
		margin-left: 42.85714286%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--4 {
		margin-left: 57.14285714%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--5 {
		margin-left: 71.42857143%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--6 {
		margin-left: 85.71428571%;
	}
	.aem-Grid--lg--7>.aem-GridColumn--offset--lg--7 {
		margin-left: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--1 {
		width: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--2 {
		width: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--3 {
		width: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--4 {
		width: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--5 {
		width: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--6 {
		width: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--7 {
		width: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--lg--8 {
		width: 100%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--2 {
		margin-left: 25%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--4 {
		margin-left: 50%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--6 {
		margin-left: 75%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--8>.aem-GridColumn--offset--lg--8 {
		margin-left: 100%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--1 {
		width: 12.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--2 {
		width: 25%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--3 {
		width: 37.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--4 {
		width: 50%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--5 {
		width: 62.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--6 {
		width: 75%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--7 {
		width: 87.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--lg--8 {
		width: 100%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--1 {
		margin-left: 12.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--2 {
		margin-left: 25%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--3 {
		margin-left: 37.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--4 {
		margin-left: 50%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--5 {
		margin-left: 62.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--6 {
		margin-left: 75%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--7 {
		margin-left: 87.5%;
	}
	.aem-Grid--lg--8>.aem-GridColumn--offset--lg--8 {
		margin-left: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--1 {
		width: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--2 {
		width: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--3 {
		width: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--4 {
		width: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--5 {
		width: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--6 {
		width: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--7 {
		width: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--8 {
		width: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--lg--9 {
		width: 100%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--9>.aem-GridColumn--offset--lg--9 {
		margin-left: 100%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--1 {
		width: 11.11111111%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--2 {
		width: 22.22222222%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--3 {
		width: 33.33333333%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--4 {
		width: 44.44444444%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--5 {
		width: 55.55555556%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--6 {
		width: 66.66666667%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--7 {
		width: 77.77777778%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--8 {
		width: 88.88888889%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--lg--9 {
		width: 100%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--1 {
		margin-left: 11.11111111%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--2 {
		margin-left: 22.22222222%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--3 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--4 {
		margin-left: 44.44444444%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--5 {
		margin-left: 55.55555556%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--6 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--7 {
		margin-left: 77.77777778%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--8 {
		margin-left: 88.88888889%;
	}
	.aem-Grid--lg--9>.aem-GridColumn--offset--lg--9 {
		margin-left: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--1 {
		width: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--2 {
		width: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--3 {
		width: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--4 {
		width: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--5 {
		width: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--6 {
		width: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--7 {
		width: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--8 {
		width: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--9 {
		width: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--lg--10 {
		width: 100%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--1 {
		margin-left: 10%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--2 {
		margin-left: 20%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--3 {
		margin-left: 30%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--4 {
		margin-left: 40%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--5 {
		margin-left: 50%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--6 {
		margin-left: 60%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--7 {
		margin-left: 70%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--8 {
		margin-left: 80%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--9 {
		margin-left: 90%;
	}
	.aem-Grid--10>.aem-GridColumn--offset--lg--10 {
		margin-left: 100%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--1 {
		width: 10%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--2 {
		width: 20%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--3 {
		width: 30%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--4 {
		width: 40%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--5 {
		width: 50%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--6 {
		width: 60%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--7 {
		width: 70%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--8 {
		width: 80%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--9 {
		width: 90%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--lg--10 {
		width: 100%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--1 {
		margin-left: 10%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--2 {
		margin-left: 20%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--3 {
		margin-left: 30%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--4 {
		margin-left: 40%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--5 {
		margin-left: 50%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--6 {
		margin-left: 60%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--7 {
		margin-left: 70%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--8 {
		margin-left: 80%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--9 {
		margin-left: 90%;
	}
	.aem-Grid--lg--10>.aem-GridColumn--offset--lg--10 {
		margin-left: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--1 {
		width: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--2 {
		width: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--3 {
		width: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--4 {
		width: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--5 {
		width: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--6 {
		width: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--7 {
		width: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--8 {
		width: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--9 {
		width: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--10 {
		width: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--lg--11 {
		width: 100%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--11>.aem-GridColumn--offset--lg--11 {
		margin-left: 100%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--1 {
		width: 9.09090909%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--2 {
		width: 18.18181818%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--3 {
		width: 27.27272727%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--4 {
		width: 36.36363636%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--5 {
		width: 45.45454545%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--6 {
		width: 54.54545455%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--7 {
		width: 63.63636364%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--8 {
		width: 72.72727273%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--9 {
		width: 81.81818182%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--10 {
		width: 90.90909091%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--lg--11 {
		width: 100%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--1 {
		margin-left: 9.09090909%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--2 {
		margin-left: 18.18181818%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--3 {
		margin-left: 27.27272727%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--4 {
		margin-left: 36.36363636%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--5 {
		margin-left: 45.45454545%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--6 {
		margin-left: 54.54545455%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--7 {
		margin-left: 63.63636364%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--8 {
		margin-left: 72.72727273%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--9 {
		margin-left: 81.81818182%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--10 {
		margin-left: 90.90909091%;
	}
	.aem-Grid--lg--11>.aem-GridColumn--offset--lg--11 {
		margin-left: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--1 {
		width: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--2 {
		width: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--3 {
		width: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--4 {
		width: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--5 {
		width: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--6 {
		width: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--7 {
		width: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--8 {
		width: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--9 {
		width: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--10 {
		width: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--11 {
		width: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--lg--12 {
		width: 100%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--3 {
		margin-left: 25%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--6 {
		margin-left: 50%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--9 {
		margin-left: 75%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--12>.aem-GridColumn--offset--lg--12 {
		margin-left: 100%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--1 {
		width: 8.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--2 {
		width: 16.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--3 {
		width: 25%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--4 {
		width: 33.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--5 {
		width: 41.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--6 {
		width: 50%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--7 {
		width: 58.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--8 {
		width: 66.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--9 {
		width: 75%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--10 {
		width: 83.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--11 {
		width: 91.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--lg--12 {
		width: 100%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--0 {
		margin-left: 0%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--1 {
		margin-left: 8.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--2 {
		margin-left: 16.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--3 {
		margin-left: 25%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--4 {
		margin-left: 33.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--5 {
		margin-left: 41.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--6 {
		margin-left: 50%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--7 {
		margin-left: 58.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--8 {
		margin-left: 66.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--9 {
		margin-left: 75%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--10 {
		margin-left: 83.33333333%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--11 {
		margin-left: 91.66666667%;
	}
	.aem-Grid--lg--12>.aem-GridColumn--offset--lg--12 {
		margin-left: 100%;
	}
	.aem-Grid>.aem-GridColumn--lg--newline {
		display: block;
		clear: both !important;
	}
	.aem-Grid>.aem-GridColumn--lg--none {
		display: block;
		clear: none !important;
		float: left;
	}
	.aem-Grid>.aem-GridColumn--lg--hide {
		display: none;
	}
}

.responsivegrid.aem-GridColumn {
	padding-left: 0;
	padding-right: 0;
}

.aem-GridColumn--default--6+.aem-GridColumn--default--3 {
	margin-top: 2.4rem;
	margin-top: var(--spacing-24);
}

@media screen and (min-width: 73.125em) {
	.aem-GridColumn--default--6+.aem-GridColumn--default--3 {
		margin-top: 0;
	}
}

/* the "root" element that contains all html */

.root.responsivegrid {
	/* on small views, give a half gutter margin, so the total white space at the sides is equal to a whole gutter */
	margin: 0 0.8rem;
	margin: 0 var(--spacing-grid-half-gutter-sm);
	max-width: 90em;
	max-width: var(--width-max-content);
	background: hsl(0, 0%, 96%);
	background: var(--color-bg-content);
	min-height: 100vh;
}

@media screen and (min-width: 48em) {
	.root.responsivegrid {
		/* on small views, give a half gutter margin, so the total white space at the sides is equal to a whole gutter */
		margin: 0 1.2rem;
		margin: 0 var(--spacing-grid-half-gutter);
	}
}

@media screen and (min-width: 62em) {
	/* in large viewport, teaser in right column is flush with edge */
	.root.responsivegrid {
		margin-right: 0;
	}
}

@media screen and (min-width: 73.125em) {
	.root.responsivegrid {
		/* in x-large view, we have content in both side bars that need to be flush with the edges */
		margin-right: auto;
		margin-left: auto;
	}

	/* in layout where main column is at left, add extra padding to get correct left gutter size */
	.main-content.aem-GridColumn--default--9 {
		padding-left: 1.2rem;
		padding-left: var(--spacing-grid-half-gutter);
	}
}

/* --width-max-content: 90em; */

/*@media (min-width: 90.01em) {
	.root.responsivegrid > .aem-Grid  {
		border-left: 1px var(--color-manatee-lighter) solid;
	}
}*/

/*
* AEM's grid uses very outdated floats, resulting in the typical float-problem that an item on a new row will only float entirely to the left if all items in the row above it are each less high than their right-hand neighbour
* adding display:flex prevents that, and seems to have no negative side effects
*/

.aem-Grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.aem-AuthorLayer-Edit .aem-Grid,
.aem-AuthorLayer-structure .aem-Grid {
	display: block;
}

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */

/**
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 */

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

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */

/**
 * horizontal list
 */

.o-list-inline li {
	display: inline-block;
}

/* we use a policy to set the class o-balloon upon the outermost div of a component. AEM also puts the modifier classes on that same div, so you get structure like this:
	<div class="teaser o-balloon o-balloon--modifier">
		<div class="cmp-teaser">...</div>
	</div>

For flexibility, we define variables for everything that can change about the balloons. We try to define them as much as possible at the level of o-balloon, so they can be overridden easily

the actual styling, using those variables, needs to go on the cmp-element, because the element containing the o-balloon class has the job of defining the grid

IE does not support custom variables, so they're handled by a postcss plugin. Since this plugin sets the variables at compile-time (instead of at run-time), it has two limitations:
1. you can only use a variable *after* you have defined it
2. the plugin doesn't know anything about your dom structure, so .block { --x: 10px; } .block__elm { padding: var(--x); } won't work, since the plugin has no way of knowing .block__elm is a child of .block. Using .block .block__elm { padding: var(--x); } will work, since the plugin now knows the relation between the two
*/

:root {
	/* class o-balloon is added as default class in AEM's teaser component policy */
	/* default vars for the balloon */
	--color-balloon-bg: var(--color-white);
	--color-balloon-text: var(--color-body);

	
	/* --balloon-margin-bottom: 2em; */
	--balloon-padding-top: var(--spacing-32);
	--balloon-padding-bottom: var(--spacing-32);
	--balloon-padding-left: var(--spacing-24);
	--balloon-padding-right: var(--spacing-24);
	
	--balloon-border-radius-top-left: var(--border-radius-balloon);
	--balloon-border-radius-top-right: var(--border-radius-balloon);
	--balloon-border-radius-bottom-right: var(--border-radius-balloon);
	--balloon-border-radius-bottom-left: 0;

	--border-radius-balloon-arrow: var(--border-radius-balloon-arrow-default);
	/* --balloon-margin-bottom: calc( var(--border-radius-balloon-arrow) + var(--balloon-padding-bottom)); */
	--balloon-margin-bottom: calc( var(--border-radius-balloon-arrow) + var(--balloon-padding-bottom));

	/* --border-radius-balloon-arrow: var(--border-radius-balloon-arrow-default); */
	--balloon-arrow-url: var(--balloon-arrow-url-white);
}

/* put balloon styling (background, padding, rounded corners)
on first cmp-element in o-balloon
or on .cmp-list__item in o-balloon-list */

.o-balloon > [class^="cmp"] {
	position: relative;
	margin-bottom: calc( 2rem + 3.2rem);
	margin-bottom: var(--balloon-margin-bottom);
	padding: 3.2rem
			 2.4rem
			 3.2rem
			 2.4rem;
	padding: var(--balloon-padding-top)
			 var(--balloon-padding-right)
			 var(--balloon-padding-bottom)
			 var(--balloon-padding-left);
	border-radius: 2rem
	               2rem
	               2rem
	               0;
	border-radius: var(--balloon-border-radius-top-left)
	               var(--balloon-border-radius-top-right)
	               var(--balloon-border-radius-bottom-right)
	               var(--balloon-border-radius-bottom-left);
	background: hsl(0, 0%, 100%);
	background: var(--color-balloon-bg);
	color: hsl(220, 3%, 23%);
	color: var(--color-balloon-text);
}

.o-balloon-list .cmp-list__item {
	position: relative;
	margin-bottom: calc( 2rem + 3.2rem);
	margin-bottom: var(--balloon-margin-bottom);
	padding: 3.2rem
			 2.4rem
			 3.2rem
			 2.4rem;
	padding: var(--balloon-padding-top)
			 var(--balloon-padding-right)
			 var(--balloon-padding-bottom)
			 var(--balloon-padding-left);
	border-radius: 2rem
	               2rem
	               2rem
	               0;
	border-radius: var(--balloon-border-radius-top-left)
	               var(--balloon-border-radius-top-right)
	               var(--balloon-border-radius-bottom-right)
	               var(--balloon-border-radius-bottom-left);
	background: hsl(0, 0%, 100%);
	background: var(--color-balloon-bg);
	color: hsl(220, 3%, 23%);
	color: var(--color-balloon-text);
}

/* components with opaque background get background of balloon arrow in ::after */

.o-balloon > [class^="cmp"]::after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 2rem;
	width: var(--border-radius-balloon-arrow);
	height: 2rem;
	height: var(--border-radius-balloon-arrow);
	background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ffffff"/></svg>');
	background: var(--balloon-arrow-url);
}

.o-balloon-list .cmp-list__item::after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 2rem;
	width: var(--border-radius-balloon-arrow);
	height: 2rem;
	height: var(--border-radius-balloon-arrow);
	background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ffffff"/></svg>');
	background: var(--balloon-arrow-url);
}

.o-balloon a,
.o-balloon-list a {
	color: inherit;
}

.o-balloon a:hover {
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.o-balloon a:focus {
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.o-balloon-list a:hover {
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.o-balloon-list a:focus {
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.o-balloon a:active {
	color: hsl(160, 100%, 15%);
	color: var(--color-munsell-green-darkest);
}

.o-balloon-list a:active {
	color: hsl(160, 100%, 15%);
	color: var(--color-munsell-green-darkest);
}

/*-- Start balloon background variants --*/

/* since we're only overruling variables here, these styles work on both .o-balloon and .o-balloon-list */

.o-balloon--bg-green,
	.o-balloon.o-balloon--bg-green > [class*="cmp-"] {
		/* background: green !important; */
		--color-balloon-bg: var(--color-munsell-green);
		--balloon-arrow-url: var(--balloon-arrow-url-green);
		--color-balloon-text: var(--color-white);
		--arrow-right-url: var(--arrow-right-url-white);
	}

.o-balloon--bg-blue {
		--color-balloon-bg: var(--color-violet-blue);
		--balloon-arrow-url: var(--balloon-arrow-url-blue);
		--color-balloon-text: var(--color-white);
		--arrow-right-url: var(--arrow-right-url-white);
	}

.o-balloon--bg-green a:hover {
		color: hsl(160, 100%, 15%);
		color: var(--color-munsell-green-darkest);
	}

.o-balloon--bg-green a:focus {
		color: hsl(160, 100%, 15%);
		color: var(--color-munsell-green-darkest);
	}

.o-balloon--bg-blue a:hover {
		color: hsl(160, 100%, 15%);
		color: var(--color-munsell-green-darkest);
	}

.o-balloon--bg-blue a:focus {
		color: hsl(160, 100%, 15%);
		color: var(--color-munsell-green-darkest);
	}

.o-balloon--bg-green a:active {
		color: hsl(160, 100%, 24%);
		color: var(--color-munsell-green-darker);
	}

.o-balloon--bg-blue a:hover {
		color: rgb(202, 204, 230);
		color: var(--color-violet-blue-lightest);
	}

.o-balloon--bg-blue a:focus {
		color: rgb(202, 204, 230);
		color: var(--color-violet-blue-lightest);
	}

.o-balloon--bg-blue a:active {
		color: hsl(235, 37%, 65%);
		color: var(--color-violet-blue-lighter);
	}

/* only teaser-balloons can have bg-image, so those styles are defined in teaser.css */

/*-- End balloon background variants --*/

/*
The balloon styling partly relies on elements using css variables that are declared higher up in the dom tree. IE11 does not support css vars, and the postCSS plugin that transforms the variables doesn't know about the dom structure.

I (Jarón from Valtech) didn't want to refactor it all and add a lot of specifity to all the elements in all the modern browsers, so I've chosen to use specific hacks for IE11 :'(
*/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	/* this media query is only recognized by IE11 */

	.o-balloon.o-balloon--bg-green > [class^="cmp-"] {
		background: hsl(160, 100%, 33%);
		background: var(--color-munsell-green);
		color: hsl(0, 0%, 100%);
		color: var(--color-white);
	}

	.o-balloon-list.o-balloon--bg-green .cmp-list__item {
		background: hsl(160, 100%, 33%);
		background: var(--color-munsell-green);
		color: hsl(0, 0%, 100%);
		color: var(--color-white);
	}

	.o-balloon.o-balloon--bg-blue > [class^="cmp-"] {
		background: hsl(235, 44%, 46%);
		background: var(--color-violet-blue);
		color: hsl(0, 0%, 100%);
		color: var(--color-white);
	}

	.o-balloon-list.o-balloon--bg-blue .cmp-list__item {
		background: hsl(235, 44%, 46%);
		background: var(--color-violet-blue);
		color: hsl(0, 0%, 100%);
		color: var(--color-white);
	}

	.o-balloon .cmp-list__item-link::before {/* teaser in list */
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-green);
	}

	.cmp-teaser--cta-text-link .cmp-teaser__action-link::before {/* teaser in list */
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-green);
	}

	.o-balloon-list .cmp-teaser__action-link::before {/* teaser in list */
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-green);
	}

	.o-balloon--bg-green .cmp-list__item-link::before {
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%23ffffff'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-white);
	}

	.o-balloon--bg-blue .cmp-list__item-link::before {
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%23ffffff'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-white);
	}

	.cmp-teaser--cta-text-link.o-balloon--bg-green .cmp-teaser__action-link::before {
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%23ffffff'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-white);
	}

	.cmp-teaser--cta-text-link.o-balloon--bg-blue .cmp-teaser__action-link::before {
		background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%23ffffff'/%3e%3c/svg%3e");
		background: var(--arrow-right-url-white);
	}

}

:root {
  --p-validation-message-color: var(--color-coral-reef-darker);
}

textarea {
  border: 1px solid hsl(225, 3%, 76%);
  border: 1px solid var(--color-manatee-lighter);
  border-radius: 0.4rem;
  border-radius: var(--border-radius-xs);
  padding: 0.8rem 1.6rem;
  padding: var(--spacing-8) var(--spacing-16);
  line-height: --line-height-1-375;
  line-height: var(--line-height-input-and-buttons);
}

select {
  border: 1px solid hsl(225, 3%, 76%);
  border: 1px solid var(--color-manatee-lighter);
  border-radius: 0.4rem;
  border-radius: var(--border-radius-xs);
  padding: 0.8rem 1.6rem;
  padding: var(--spacing-8) var(--spacing-16);
  line-height: --line-height-1-375;
  line-height: var(--line-height-input-and-buttons);
}

input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="submit"]) {
  border: 1px solid hsl(225, 3%, 76%);
  border: 1px solid var(--color-manatee-lighter);
  border-radius: 0.4rem;
  border-radius: var(--border-radius-xs);
  padding: 0.8rem 1.6rem;
  padding: var(--spacing-8) var(--spacing-16);
  line-height: --line-height-1-375;
  line-height: var(--line-height-input-and-buttons);
}

textarea:focus {
  border-color: hsl(235, 44%, 46%);
  border-color: var(--color-violet-blue);
}

select:focus
  input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="submit"]):focus {
  border-color: hsl(235, 44%, 46%);
  border-color: var(--color-violet-blue);
}

input[type="checkbox"],
input[type="radio"] {
  border: none;
}

/* cx text color for search */

.cx-question-box__input input {
  color: hsl(220, 3%, 23%);
  color: var(--color-body);
  width: 100%;
}

/* Form container styling */

.form-container {
  border: 0;
  margin: 0;
  padding: 0;
}

.form-container fieldset {
  margin: 0;
  padding: 1.6rem 0;
  padding: var(--spacing-16) 0;
  border: 0;
}

.form-container fieldset > legend {
  display: none;
}

.form-container .form-field-row {
  padding: 1.6rem 0 0.8rem 0;
  padding: var(--spacing-16) 0 var(--spacing-8) 0;
}

form.p-json-form p-form-row {
  padding: 1.6rem 0 0.8rem 0;
  padding: var(--spacing-16) 0 var(--spacing-8) 0;
}

form.p-json-form .json-form-submit {
  margin-top: 3.2rem;
  margin-top: var(--spacing-32);
}

.form-container--full .form-field-row {
  padding: 0.8rem 0;
  padding: var(--spacing-8) 0;
}

/* Form Field error */

.form-field-item .input-validation-error {
  border-color: hsl(7, 44%, 47%);
  border-color: var(--color-coral-reef-darker);
}

form[data-is-submitted="true"] textarea[aria-invalid="true"] {
  border-color: hsl(7, 44%, 47%);
  border-color: var(--color-coral-reef-darker);
}

form[data-is-submitted="true"] select[aria-invalid="true"] {
  border-color: hsl(7, 44%, 47%);
  border-color: var(--color-coral-reef-darker);
}

form[data-is-submitted="true"]
  input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="submit"])[aria-invalid="true"] {
  border-color: hsl(7, 44%, 47%);
  border-color: var(--color-coral-reef-darker);
}

/* Form Field valid */

.form-field-input input.valid {
  border-color: hsl(160, 100%, 24%);
  border-color: var(--color-munsell-green-darker);
}

textarea[aria-invalid="false"] {
  border-color: hsl(160, 100%, 24%);
  border-color: var(--color-munsell-green-darker);
}

select[aria-invalid="false"] {
  border-color: hsl(160, 100%, 24%);
  border-color: var(--color-munsell-green-darker);
}

input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="submit"]):not([data-touched="false"])[aria-invalid="false"] {
  border-color: hsl(160, 100%, 24%);
  border-color: var(--color-munsell-green-darker);
}

/* Add to AEM style base **************************************************************************************************** */

/*
.main-content {
	min-height: calc(100vh - 212px);
	
}
*/

.cmp-formulier form {
  margin-left: calc(1.2rem * -1);
  margin-left: calc(var(--spacing-12) * -1);
  margin-right: calc(1.2rem * -1);
  margin-right: calc(var(--spacing-12) * -1);
  border-radius: 2rem;
  border-radius: var(--border-radius-default);
  padding: 0 3.2rem 4.8rem;
  padding: 0 var(--spacing-32) var(--spacing-48);
  background: hsl(0, 0%, 100%);
  background: var(--color-white);
  display: block;
}

.cmp-formulier [hidden] {
  display: none;
}

.form-field-validity {
  display: flex;
  align-items: center;
}

p-json-form textarea,
p-json-form select,
p-json-form
  input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="submit"]) {
  width: calc(100% - 3.8rem);
}

p-form-row .form-field-xs {
  width: 20% !important;
  min-width: 90px; /* to do */
}

p-form-row .form-field-s {
  width: 25% !important;
  min-width: 114px; /* to do */
}

p-json-form h3 {
  margin-top: 0.8rem;
  margin-top: var(--spacing-8);
  display: inline-flex;
  align-items: center;
}

p-json-form p-form-row:first-of-type h3::before {
  content: "";
  display: inline-block;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGQ9Ik0yMDEgMzQ1Yy01LjUyIDAtMTAgNC40OC0xMCAxMHM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTAtNC40OC0xMC0xMC0xMHptMSAxN2gtMnYtMmgydjJ6bTIuMDctNy43NWwtLjkuOTJjLS41LjUxLS44Ni45Ny0xLjA0IDEuNjktLjA4LjMyLS4xMy42OC0uMTMgMS4xNGgtMnYtLjVhMy45OTcgMy45OTcgMCAwIDEgMS4xNy0yLjgzbDEuMjQtMS4yNmMuNDYtLjQ0LjY4LTEuMS41NS0xLjhhMS45OSAxLjk5IDAgMCAwLTEuMzktMS41M2MtMS4xMS0uMzEtMi4xNC4zMi0yLjQ3IDEuMjctLjEyLjM3LS40My42NS0uODIuNjVoLS4zYy0uNTggMC0uOTgtLjU2LS44Mi0xLjEyYTQuMDA4IDQuMDA4IDAgMCAxIDMuMjMtMi44M2MxLjUyLS4yNCAyLjk3LjU1IDMuODcgMS44IDEuMTggMS42My44MyAzLjM4LS4xOSA0LjR6IiBpZD0iYSIvPjwvZGVmcz48dXNlIGZpbGw9IiMwMEFBNzIiIHhsaW5rOmhyZWY9IiNhIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkxIC0zNDUpIi8+PC9zdmc+")
    1.45rem 1.42rem no-repeat;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 100%;
  background-position: center;
  background-color: hsl(0, 0%, 96%);
  background-color: var(--color-manatee-lightest);
  margin-right: 0.8rem;
  margin-right: var(--spacing-8);
}

p-drop-file {
  --p-drop-file-feedback-color: var(--color-coral-reef-darker);
  --p-drop-file-focus-outline-style: solid;
  --p-drop-file-focus-outline-width: 2px;
}

@media screen and (min-width: 62em) {
  p-form-row {
    width: 33.33%;
  }
  p-json-form select {
    width: auto;
  }
  p-json-form h3 {
    margin-top: 1.6rem;
    margin-top: var(--spacing-16);
  }
  p-json-form p-form-row:first-of-type h3 {
    margin-top: 0.8rem;
    margin-top: var(--spacing-8);
  }
  p-json-form p-form-row:first-of-type h3::before {
    background-size: 2.1rem 2.1rem;
  }
}

.labels {
  margin-bottom: 0.8rem;
  margin-bottom: var(--spacing-8);
}

.radio-button-item {
  margin-bottom: 0.8rem;
  margin-bottom: var(--spacing-8);
}

.radio-button-item {
  display: flex;
  align-items: center;
}

.radio-button-item label {
  padding-left: 0.8rem;
  padding-left: var(--spacing-8);
}

svg[name="form-field-check-valid"] {
  display: none;
  fill: hsl(160, 100%, 33%);
  fill: var(--color-primary);
  width: 3rem;
  height: 3rem;
}

.form-field-will-validate + svg[name="form-field-check-valid"] {
  display: inline-block;
  margin-left: 0.8rem;
  margin-left: var(--spacing-8);
}

.form-field-validity {
  display: flex;
  align-items: center;
}

.json-form-textarea {
  vertical-align: top;
}

/* to do color warning */

p-notification {
  --p-notification-color-validation: var(--color-white);
  --p-notification-color-error-text: var(--color-manatee-darkest);
  --p-notification-color-validation-error: var(--color-manatee);
  --p-notification-color-validation-bg-error: var(--color-white);
  --p-notification-icon-error: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU3LjEgKDgzMDg4KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5pY29uL25hdmlnYXRpb24vY2FuY2VsXzI0cHg8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTIsMiBDNi40NywyIDIsNi40NyAyLDEyIEMyLDE3LjUzIDYuNDcsMjIgMTIsMjIgQzE3LjUzLDIyIDIyLDE3LjUzIDIyLDEyIEMyMiw2LjQ3IDE3LjUzLDIgMTIsMiBaIE0xNi4zLDE2LjMgQzE1LjkxLDE2LjY5IDE1LjI4LDE2LjY5IDE0Ljg5LDE2LjMgTDEyLDEzLjQxIEw5LjExLDE2LjMgQzguNzIsMTYuNjkgOC4wOSwxNi42OSA3LjcsMTYuMyBDNy41MTI3NDczMywxNi4xMTMxNjg1IDcuNDA3NTE0MzksMTUuODU5NTE3NiA3LjQwNzUxNDM5LDE1LjU5NSBDNy40MDc1MTQzOSwxNS4zMzA0ODI0IDcuNTEyNzQ3MzMsMTUuMDc2ODMxNSA3LjcsMTQuODkgTDEwLjU5LDEyIEw3LjcsOS4xMSBDNy41MTI3NDczMyw4LjkyMzE2ODQ3IDcuNDA3NTE0MzksOC42Njk1MTc2NCA3LjQwNzUxNDM5LDguNDA1IEM3LjQwNzUxNDM5LDguMTQwNDgyMzYgNy41MTI3NDczMyw3Ljg4NjgzMTUzIDcuNyw3LjcgQzguMDksNy4zMSA4LjcyLDcuMzEgOS4xMSw3LjcgTDEyLDEwLjU5IEwxNC44OSw3LjcgQzE1LjI4LDcuMzEgMTUuOTEsNy4zMSAxNi4zLDcuNyBDMTYuNjksOC4wOSAxNi42OSw4LjcyIDE2LjMsOS4xMSBMMTMuNDEsMTIgTDE2LjMsMTQuODkgQzE2LjY4LDE1LjI3IDE2LjY4LDE1LjkxIDE2LjMsMTYuMyBaIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iU3ltYm9scyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Imljb24vbmF2aWdhdGlvbi9jYW5jZWxfMjRweCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIuMDAwMDAwLCAtMi4wMDAwMDApIj4KICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPC9tYXNrPgogICAgICAgICAgICA8dXNlIGZpbGw9IiNFRDZENUMiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
  --p-notification-icon-display: block;
  /* --p-notification-icon-top: */
  --p-notification-color-validation-bg-info: var(--color-white);
  --p-notification-color-info-text: var(--color-manatee-darkest);
  --p-notification-color-validation-info: var(--color-manatee);
  --p-notification-icon-info: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAyQzYuNDggMiAyIDYuNDggMiAxMkMyIDE3LjUyIDYuNDggMjIgMTIgMjJDMTcuNTIgMjIgMjIgMTcuNTIgMjIgMTJDMjIgNi40OCAxNy41MiAyIDEyIDJaTTEyIDE3QzExLjQ1IDE3IDExIDE2LjU1IDExIDE2VjEyQzExIDExLjQ1IDExLjQ1IDExIDEyIDExQzEyLjU1IDExIDEzIDExLjQ1IDEzIDEyVjE2QzEzIDE2LjU1IDEyLjU1IDE3IDEyIDE3Wk0xMSA5SDEzVjdIMTFWOVoiIGZpbGw9IiM0MTQ5QTgiLz4KPG1hc2sgaWQ9Im1hc2swIiBtYXNrLXR5cGU9ImFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIyIiB5PSIyIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEyIDJDNi40OCAyIDIgNi40OCAyIDEyQzIgMTcuNTIgNi40OCAyMiAxMiAyMkMxNy41MiAyMiAyMiAxNy41MiAyMiAxMkMyMiA2LjQ4IDE3LjUyIDIgMTIgMlpNMTIgMTdDMTEuNDUgMTcgMTEgMTYuNTUgMTEgMTZWMTJDMTEgMTEuNDUgMTEuNDUgMTEgMTIgMTFDMTIuNTUgMTEgMTMgMTEuNDUgMTMgMTJWMTZDMTMgMTYuNTUgMTIuNTUgMTcgMTIgMTdaTTExIDlIMTNWN0gxMVY5WiIgZmlsbD0id2hpdGUiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swKSI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iIzQxNDlBOCIvPgo8L2c+Cjwvc3ZnPgo=");
   --p-notification-color-validation-bg-success: var(--color-white);
  --p-notification-color-success-text: var(--color-manatee-darkest);
  --p-notification-color-validation-success: var(--color-manatee);
  --p-notification-icon-success: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDEyQzIgNi40OCA2LjQ4IDIgMTIgMkMxNy41MiAyIDIyIDYuNDggMjIgMTJDMjIgMTcuNTIgMTcuNTIgMjIgMTIgMjJDNi40OCAyMiAyIDE3LjUyIDIgMTJaTTUuNjI5MzMgMTIuMzkzOEw5LjI2MjQ4IDE2LjEzOTNDOS42NTcxNyAxNi41NDYyIDEwLjMwNDkgMTYuNTQ2MiAxMC42ODk0IDE2LjEzOTNMMTguMzcwNyA4LjIyMDY2QzE4Ljc2NTMgNy44MTM3NyAxOC43NjUzIDcuMTU2NDkgMTguMzcwNyA2Ljc0OTYxQzE3Ljk3NiA2LjM0MjcyIDE3LjMzODQgNi4zNDI3MiAxNi45NDM3IDYuNzQ5NjFMOS45ODEwMiAxMy45Mjc1TDcuMDU2MjggMTAuOTIyOEM2LjY2MTU5IDEwLjUxNTkgNi4wMjQwMiAxMC41MTU5IDUuNjI5MzMgMTAuOTIyOEM1LjQzOTgzIDExLjExNzcgNS4zMzMzMyAxMS4zODIzIDUuMzMzMzMgMTEuNjU4M0M1LjMzMzMzIDExLjkzNDMgNS40Mzk4MyAxMi4xOTg5IDUuNjI5MzMgMTIuMzkzOFoiIGZpbGw9IiMwMEFBNzIiLz4KPG1hc2sgaWQ9Im1hc2swIiBtYXNrLXR5cGU9ImFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIyIiB5PSIyIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIgMTJDMiA2LjQ4IDYuNDggMiAxMiAyQzE3LjUyIDIgMjIgNi40OCAyMiAxMkMyMiAxNy41MiAxNy41MiAyMiAxMiAyMkM2LjQ4IDIyIDIgMTcuNTIgMiAxMlpNNS42MjkzMyAxMi4zOTM4TDkuMjYyNDggMTYuMTM5M0M5LjY1NzE3IDE2LjU0NjIgMTAuMzA0OSAxNi41NDYyIDEwLjY4OTQgMTYuMTM5M0wxOC4zNzA3IDguMjIwNjZDMTguNzY1MyA3LjgxMzc3IDE4Ljc2NTMgNy4xNTY0OSAxOC4zNzA3IDYuNzQ5NjFDMTcuOTc2IDYuMzQyNzIgMTcuMzM4NCA2LjM0MjcyIDE2Ljk0MzcgNi43NDk2MUw5Ljk4MTAyIDEzLjkyNzVMNy4wNTYyOCAxMC45MjI4QzYuNjYxNTkgMTAuNTE1OSA2LjAyNDAyIDEwLjUxNTkgNS42MjkzMyAxMC45MjI4QzUuNDM5ODMgMTEuMTE3NyA1LjMzMzMzIDExLjM4MjMgNS4zMzMzMyAxMS42NTgzQzUuMzMzMzMgMTEuOTM0MyA1LjQzOTgzIDEyLjE5ODkgNS42MjkzMyAxMi4zOTM4WiIgZmlsbD0id2hpdGUiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swKSI+CjwvZz4KPC9zdmc+Cg==");
  --p-notification-color-validation-bg-warning: var(--color-white);
  --p-notification-color-warning-text: var(--color-manatee-darkest);
  --p-notification-color-validation-warning: var(--color-manatee);
  --p-notification-icon-warning: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU3LjEgKDgzMDg4KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5pY29uL2FsZXJ0L2Vycm9yXzI0cHg8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTIsMiBDNi40OCwyIDIsNi40OCAyLDEyIEMyLDE3LjUyIDYuNDgsMjIgMTIsMjIgQzE3LjUyLDIyIDIyLDE3LjUyIDIyLDEyIEMyMiw2LjQ4IDE3LjUyLDIgMTIsMiBaIE0xMiwxMyBDMTEuNDUsMTMgMTEsMTIuNTUgMTEsMTIgTDExLDggQzExLDcuNDUgMTEuNDUsNyAxMiw3IEMxMi41NSw3IDEzLDcuNDUgMTMsOCBMMTMsMTIgQzEzLDEyLjU1IDEyLjU1LDEzIDEyLDEzIFogTTEzLDE3IEwxMSwxNyBMMTEsMTUgTDEzLDE1IEwxMywxNyBaIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iU3ltYm9scyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Imljb24vYWxlcnQvZXJyb3JfMjRweCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIuMDAwMDAwLCAtMi4wMDAwMDApIj4KICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPC9tYXNrPgogICAgICAgICAgICA8dXNlIGZpbGw9IiNGOEI4MDAiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
  --p-notification-width: 100%;
  --p-notification-border-radius: var(--border-radius-xs);
  --p-notification-padding: var(--spacing-32);
  --p-notification-border-width: 1px 1px 1px 1px;
  --p-notification-box-shadow: 1px 10px 18px var(--color-manatee-lighter);
  --p-notification-icon-width: 40px;
  --p-notification-icon-min-width: 40px;
  --p-notification-icon-height: 40px;
  --p-notification-icon-min-height: 40px;
  --p-notification-icon-left: 10px;
  --p-notification-icon-top: 50%;
  --p-notification-icon-position: static;
  --p-notification-icon-margin-top: 0;
}

p-notification p {
  padding-left: 3.2rem;
  padding-left: var(--spacing-32);
  margin-bottom: 0;
}

.json-form-feedback-ok {
  margin-left: calc(1.2rem * -1);
  margin-left: calc(var(--spacing-12) * -1);
  margin-right: calc(1.2rem * -1);
  margin-right: calc(var(--spacing-12) * -1);
  border-radius: 2rem;
  border-radius: var(--border-radius-default);
  border-bottom-left-radius: 0;
  padding: 1.6rem 3.2rem 4.8rem;
  padding: var(--spacing-16) var(--spacing-32) var(--spacing-48);
  background: hsl(0, 0%, 100%);
  background: var(--color-white);
  position: relative;
}

.json-form-feedback-ok:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 2rem;
  width: var(--border-radius-balloon-arrow);
  height: 2rem;
  height: var(--border-radius-balloon-arrow);
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ffffff"/></svg>');
  background: var(--balloon-arrow-url);
}

.json-form-feedback h3 {
  margin-top: 0.8rem;
  margin-top: var(--spacing-8);
  margin-bottom: 3.2rem;
  margin-bottom: var(--spacing-32);
  display: inline-flex;
  align-items: center;
}

.json-form-feedback h3::before {
  content: "";
  display: inline-block;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxwYXRoIGQ9Ik0xOTEuNCAzNjMuODg1bDE3LjQ1LTcuNDhhMSAxIDAgMCAwIDAtMS44NGwtMTcuNDUtNy40OGEuOTkzLjk5MyAwIDAgMC0xLjM5LjkxbC0uMDEgNC42MWMwIC41LjM3LjkzLjg3Ljk5bDE0LjEzIDEuODktMTQuMTMgMS44OGMtLjUuMDctLjg3LjUtLjg3IDFsLjAxIDQuNjFjMCAuNzEuNzMgMS4yIDEuMzkuOTF6IiBpZD0iYSIvPjwvZGVmcz48dXNlIGZpbGw9IiMwMEFBNzIiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI2EiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xOTAgLTM0NykiLz48L3N2Zz4=")
    no-repeat;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
  background-color: hsl(0, 0%, 96%);
  background-color: var(--color-manatee-lightest);
  margin-right: 0.8rem;
  margin-right: var(--spacing-8);
}

@media screen and (min-width: 62em) {
  .json-form-feedback-ok {
    width: 50%;
  }
  p-notification {
    --p-notification-width: 50%;
  }
}

/*-- 6-components - specific components --*/

/*
* buttons
*
* Buttons have different types of contexts and markup:
* - in AEM core components (.cmp-teaser__action-link)
* - in custom components where we have full control over the button (.btn)
* - we might at some time make a separate AEM Button component.
*
* For modifiers:
* in the AEM core components, we'll stick to the convention that modifiers go on the component-root-element
* in custom components, put the modifiers on the button itself, unless it has to be changed from the editor 
*/

/* There is no specific button component yet. If we do make one, the expected html is this:
<div class="button cmp-button--modifier">
	<button class="cmp-button">
		Button text
	</button>
</div>
*/

/* shared button styling, also for links in teasers that look similar */

/* teaser-buttons' selectors should start with .teaser:not(.cmp-teaser--cta-text-link) to prevent collision with text-style teaser ctas */

/* also added classes for json - form buttons */

/* :root {
	--mixin-button :{
		color: red;
		background-color: green;
	}
} */

.c-btn {
	cursor: pointer;
	display: inline-block;
	margin-right: 0.8rem;
	margin-right: var(--spacing-8);
	line-height: --line-height-1-375;
	line-height: var(--line-height-input-and-buttons);
}

.cmp-teaser__action-link {
	cursor: pointer;
	display: inline-block;
	margin-right: 0.8rem;
	margin-right: var(--spacing-8);
	line-height: --line-height-1-375;
	line-height: var(--line-height-input-and-buttons);
}

.json-form-submit {
	cursor: pointer;
	display: inline-block;
	margin-right: 0.8rem;
	margin-right: var(--spacing-8);
	line-height: --line-height-1-375;
	line-height: var(--line-height-input-and-buttons);
}

.c-btn {
	display: inline-block;
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	padding: .5rem 3.2rem;
	padding: .5rem var(--spacing-32);
	border: 1px solid transparent;/* so ghost buttons have same size */
	border-radius: 0.4rem;
	border-radius: var(--border-radius-button);
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
	text-decoration: none;
	font-weight: 600;
	font-weight: var(--fw-semibold);
	transition: color 0.2s ease-in-out,
		border 0.2s ease-in-out,
		background 0.2s ease-in-out;
	transition: color var(--anim),
		border var(--anim),
		background var(--anim);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link {
	display: inline-block;
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	padding: .5rem 3.2rem;
	padding: .5rem var(--spacing-32);
	border: 1px solid transparent;/* so ghost buttons have same size */
	border-radius: 0.4rem;
	border-radius: var(--border-radius-button);
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
	text-decoration: none;
	font-weight: 600;
	font-weight: var(--fw-semibold);
	transition: color 0.2s ease-in-out,
		border 0.2s ease-in-out,
		background 0.2s ease-in-out;
	transition: color var(--anim),
		border var(--anim),
		background var(--anim);
}

.json-form-submit {
	display: inline-block;
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	padding: .5rem 3.2rem;
	padding: .5rem var(--spacing-32);
	border: 1px solid transparent;/* so ghost buttons have same size */
	border-radius: 0.4rem;
	border-radius: var(--border-radius-button);
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
	text-decoration: none;
	font-weight: 600;
	font-weight: var(--fw-semibold);
	transition: color 0.2s ease-in-out,
		border 0.2s ease-in-out,
		background 0.2s ease-in-out;
	transition: color var(--anim),
		border var(--anim),
		background var(--anim);
}

.c-btn:last-child {
	margin: 0;
}

.c-btn:hover {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.c-btn:focus {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:hover {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:focus {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.json-form-submit:hover {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.json-form-submit:focus {
	background-color: hsl(160, 100%, 24%);
	background-color: var(--color-munsell-green-darker);
}

.c-btn:active {
	background-color: hsl(160, 100%, 15%);
	background-color: var(--color-munsell-green-darkest);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:active {
	background-color: hsl(160, 100%, 15%);
	background-color: var(--color-munsell-green-darkest);
}

.json-form-submit:active {
	background-color: hsl(160, 100%, 15%);
	background-color: var(--color-munsell-green-darkest);
}

/* white buttons */

/* buttons on teasers with a bg-class are white as well */

.c-btn--white {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.cmp-button--white .c-btn {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-"] .cmp-teaser__action-link {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

/* states for white buttons and buttons on bg-img; */

/* hover and focus */

.c-btn--white:hover {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.c-btn--white:focus {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.cmp-button--white .c-btn:hover {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.cmp-button--white .c-btn:focus {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:hover {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:focus {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

/* active */

.c-btn--white:active {
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
}

.cmp-button--white .c-btn:active {
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:active {
	background-color: hsl(160, 100%, 33%);
	background-color: var(--color-munsell-green);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
}

/* cta button */

.cmp-button--cta .c-btn {
	background-color: hsl(7, 80%, 65%);
	background-color: var(--color-coral-reef);
	color: hsl(0, 0%, 100%);
	color: var(--color-white);
}

.cmp-button--cta .c-btn::before {
	content: '';
	font-family: 'PFZWIcons2';
	display: inline-block;
	vertical-align: text-bottom;
	font-size: 1.4em;
	margin: -.4em 0;
	padding: 0 0.8rem 0 0;
	padding: 0 var(--spacing-8) 0 0;
}

.cmp-button--icon .c-btn::before {
	content: '';
	font-family: 'PFZWIcons2';
	display: inline-block;
	vertical-align: text-bottom;
	font-size: 1.4em;
	margin: -.4em 0;
	padding: 0 0.8rem 0 0;
	padding: 0 var(--spacing-8) 0 0;
}

/* cta button hover */

.cmp-button--cta .c-btn:hover {
	background-color: hsl(7, 44%, 47%);
	background-color: var(--color-coral-reef-darker);
}

.cmp-button--cta .c-btn:focus {
	background-color: hsl(7, 44%, 47%);
	background-color: var(--color-coral-reef-darker);
}

/* cta button active */

.cmp-button--cta .c-btn:active {
	background-color: hsl(7, 44%, 29%);
	background-color: var(--color-coral-reef-darkest);
}

.cmp-button--cta .c-btn:active {
	background-color: hsl(7, 44%, 29%);
	background-color: var(--color-coral-reef-darkest);
}

/* states for buttons on bg-green */

/* hover and focus */

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:hover {
	background-color: hsl(161, 49%, 88%);
	background-color: var(--color-munsell-green-lightest);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:focus {
	background-color: hsl(161, 49%, 88%);
	background-color: var(--color-munsell-green-lightest);
	color: hsl(160, 100%, 24%);
	color: var(--color-munsell-green-darker);
}

/* active */

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:active {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
}

/* states for buttons on bg-blue */

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link {
	color: hsl(235, 44%, 46%);
	color: var(--color-violet-blue);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:hover {
	background: rgb(202, 204, 230);
	background: var(--color-violet-blue-lightest);
	color: hsl(235, 44%, 29%);
	color: var(--color-violet-blue-darker);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:focus {
	background: rgb(202, 204, 230);
	background: var(--color-violet-blue-lightest);
	color: hsl(235, 44%, 29%);
	color: var(--color-violet-blue-darker);
}

.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:active {
	background-color: hsl(0, 0%, 100%);
	background-color: var(--color-white);
}

/* icon button variants */

.c-btn--icon .c-btn {
	padding-right: 0.8rem;
	padding-right: var(--spacing-8);
}

*:not(.cmp-button) > .c-btn--icon::before {
	content: '';
	display: inline-block;
	width: 3.2rem;
	width: var(--spacing-32);
	height: 3.2rem;
	height: var(--spacing-32);
	vertical-align: middle;
	/* this is not the final icon! */
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cpath%20fill%3D%22%239c9fa3%22%20d%3D%22M9.3%2015.9l3.9-3.9-3.9-3.9c-.4-.4-.4-1%200-1.4s1-.4%201.4%200l4.6%204.6c.4.4.4%201%200%201.4l-4.6%204.6c-.4.4-1%20.4-1.4%200-.4-.4-.4-1%200-1.4z%22%2F%3E%0A%3C%2Fsvg%3E%0A");/* arrow right */
}

.cmp-button--icon-pdf .c-btn::before {
	content: "\ECE4";
}

.cmp-button--cta .c-btn::before,
.cmp-button--cta.cmp-button--icon .c-btn::before {
	content: "\EDB9";
}

.c-btn--icon-only {
	overflow: hidden;
	position: relative;
	padding: 0.8rem;
	padding: var(--spacing-8);
	height: 4.6rem;
	width: 4.6rem;
	line-height: 1;
}

.c-btn--icon-only .c-btn__text {
	position: absolute;
	left: -9999px;
}

.c-btn--ghost {
	border-color: hsl(214, 4%, 63%);
	border-color: var(--color-manatee);
	background: transparent;
	color: hsl(220, 3%, 23%);
	color: var(--color-manatee-darkest);
}

.c-btn--ghost:hover {
	border-color: transparent;
	background: hsl(0, 0%, 100%);
	background: var(--color-white);
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.c-btn--ghost:active {
	border-color: transparent;
	background: hsl(0, 0%, 100%);
	background: var(--color-white);
	color: hsl(160, 100%, 15%);
	color: var(--color-munsell-green-darkest);
}

/*-- Start cta (cmp-teaser__action-link) styling --*/

/* teaser__action-link has two forms: as a button (default) or as a text link.   * Text-links styling depends on .cmp-teaser--cta-text-link class on the .teaser element; those are styled here.
	* the button-styles have the same styling as regular buttons. So we define their styling there: ../../../../../common/css/6-components/components.buttons.css
	* their selector always starts with .teaser:not(.cmp-teaser--cta-text-link)
	* so the two cta styles remain completely segregated
	*/

.cmp-teaser__action-link {
	margin-right: auto;
	line-height: 1.375;
	line-height: var(--line-height-1-375);
}

.cmp-button--arrow-link .c-btn {
	margin-right: auto;
	line-height: 1.375;
	line-height: var(--line-height-1-375);
}

/* class cmp-teaser--cta-text-link is also added together with o-balloon-list in list component policy */

.cmp-teaser--cta-text-link .cmp-teaser__action-link {
	background: transparent;
	--icon-width: 1.2em;
	margin-top: 0.8rem;
	margin-top: var(--spacing-8);
	padding-left: 1.2em;
	padding-left: var(--icon-width);
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
	text-decoration: none;
	transition: color 0.2s ease-in-out;
	transition: color var(--anim);
}

.cmp-button--arrow-link .c-btn {
	background: transparent;
	--icon-width: 1.2em;
	margin-top: 0.8rem;
	margin-top: var(--spacing-8);
	padding-left: 1.2em;
	padding-left: var(--icon-width);
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	font-weight: 600;
	font-weight: var(--fw-semibold);
	text-decoration: none;
	transition: color 0.2s ease-in-out;
	transition: color var(--anim);
}

.cmp-teaser--cta-text-link .cmp-teaser__action-link::before {
	content: '';
	display: inline-block;
	font-size: 1em;
	width: 1.2em;
	width: var(--icon-width);
	height: 1.2em;
	height: var(--icon-width);
	background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
	background: var(--arrow-right-url);
	margin: 0 0 0 calc(-1 * 1.2em);
	margin: 0 0 0 calc(-1 * var(--icon-width));
	vertical-align: text-bottom;
	padding: 0;
}

.cmp-button--arrow-link.cmp-button--icon .c-btn::before {
	content: '';
	display: inline-block;
	font-size: 1em;
	width: undefined;
	width: var(--icon-width);
	height: undefined;
	height: var(--icon-width);
	background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
	background: var(--arrow-right-url);
	margin: undefined;
	margin: 0 0 0 calc(-1 * var(--icon-width));
	vertical-align: text-bottom;
	padding: 0;
}

.cmp-button--arrow-link .c-btn::before {
	content: '';
	display: inline-block;
	font-size: 1em;
	width: 1.2em;
	width: var(--icon-width);
	height: 1.2em;
	height: var(--icon-width);
	background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
	background: var(--arrow-right-url);
	margin: 0 0 0 calc(-1 * 1.2em);
	margin: 0 0 0 calc(-1 * var(--icon-width));
	vertical-align: text-bottom;
	padding: 0;
}

.cmp-button--arrow-link .c-btn {
	color: inherit;
	background: transparent;
	margin-top: 0;
	padding: 0 0 0 1.2em;
	padding: 0 0 0 var(--icon-width);
}

.cmp-button--arrow-link .c-btn:hover {
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
}

.cmp-button:not(.cmp-button--no-margin) {
	margin-bottom: 3.2rem;
	margin-bottom: var(--spacing-32);
}

.c-btn[disabled] {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-disabled);
	color: hsl(214, 4%, 63%);
	color: var(--color-manatee);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link[disabled] {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-disabled);
	color: hsl(214, 4%, 63%);
	color: var(--color-manatee);
}

.json-form-submit[disabled] {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-disabled);
	color: hsl(214, 4%, 63%);
	color: var(--color-manatee);
}

.c-btn[disabled]:hover {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-manatee-lighter);
}

.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link[disabled]:hover {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-manatee-lighter);
}

.json-form-submit[disabled]:hover {
	background-color: hsl(225, 3%, 76%);
	background-color: var(--color-manatee-lighter);
}

@media screen and (min-width: 48em) {
	.cmp-button:not(.cmp-button--no-margin) {
		margin-bottom: 4.8rem;
		margin-bottom: var(--spacing-48);
	}
}

p-icon.small {
    width: 24px;
    width: var(--icon-small);
    height: 24px;
    height: var(--icon-small);
}

p-icon.medium {
    width: 48px;
    width: var(--icon-medium);
    height: 48px;
    height: var(--icon-medium);
}

p-icon.large {
    width: 96px;
    width: var(--icon-large);
    height: 96px;
    height: var(--icon-large);
}

.cmp-image__image {
	width: 100%;
}

.cmp-accordion__header {
    margin: 0;
    padding: 1.2rem 0;
    padding: var(--spacing-12) 0;
    font-size: unset;
}

.cmp-accordion__title {
    font-weight: bold;
    margin-right: 3.2rem;
    margin-right: var(--spacing-32);
    display: flex;
    justify-content: left;
    width: inherit;
}

.cmp-accordion__item+.cmp-accordion__item {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-manatee-lighter);
}

.cmp-accordion__button {
    width: 100%;
    text-align: left;
    background-color: unset;
    flex-direction: row;
    display: flex;
    align-items: center;
    line-height: normal;
}

.cmp-accordion__panel--hidden {
    display: none;
}

/* do not hide in author mode */

.aem-AuthorLayer-Edit .cmp-accordion__panel--hidden {
    display: block;
}

.cmp-accordion__panel--expanded {
    display: block;
}

.cmp-accordion__item {
    padding-top: 0.8rem;
    padding-top: var(--spacing-8);
}

.cmp-accordion__icon {
    display: flex;
    justify-content: right;
}

.accordion-icon-pointer {
    width: 1.2rem;
    width: var(--spacing-12);
    min-width: 1.2rem;
    min-width: var(--spacing-12);
    max-height: 1.2rem;
    max-height: var(--spacing-12);
    transition: transform ease-out 200ms;
    transform: rotate(180deg);
    will-change: auto;
}

.accordion-icon-pointer path {
    fill: hsl(160, 100%, 33%);
    fill: var(--color-munsell-green);
}

.cmp-accordion__button--expanded .accordion-icon-pointer {
    transform: rotate(0);
}

/* when used inside sidebar, undo the sidebar's padding. The padding is set on the .navigation element, not on the .cmp-navigation element */

.main-left.navigation {
  padding-left: 0;
}

.main-left .cmp-navigation {
  /* also, balloons in right column always have arrow at right side; overrule those balloon settings here.
		Just redefining border-radius vars here won't work for postcss: it won't know that those variables have to be applied to border-radius property */
  border-top-left-radius: 0;
}

@media screen and (min-width: 48em) {
  .main-left .cmp-navigation {
    margin-right: calc(1.2rem + 8.333333%);
    margin-right: calc(var(--spacing-grid-half-gutter) + 8.333333%);
  }
}

/* the .cmp-navigation element gets the class o-balloon by default, set by policy in AEM, so you get structure like this:
  <div class="navigation o-balloon">
	<div class="cmp-navigation">...</div>
  </div>
  */

.cmp-navigation__group {
  list-style-type: none;
}

.cmp-navigation__item--level-0 > .cmp-navigation__item-link {
  font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font: var(--font-16);
  font-weight: 700;
  font-weight: var(--fw-bold);
}

.cmp-navigation__item-link {
  color: hsl(220, 3%, 23%);
  color: var(--color-body);
  text-decoration: none;
  display: block;
  padding-top: 1.2rem;
  padding-top: var(--spacing-12);
  padding-bottom: 1.2rem;
  padding-bottom: var(--spacing-12);
}

.cmp-navigation__item--level-1.cmp-navigation__item--active
  > .cmp-navigation__item-link {
  font-weight: 700;
  font-weight: var(--fw-bold);
  color: hsl(160, 100%, 33%);
  color: var(--color-primary);
}

.cmp-navigation__item > .cmp-navigation__item-link:hover {
  color: hsl(235, 44%, 46%);
  color: var(--color-menu-link-hover);
}

.cmp-navigation__item--level-0 > .cmp-navigation__item-link {
  color: hsl(160, 100%, 33%);
  color: var(--color-primary);
}

.cmp-navigation__item--level-0 > .cmp-navigation__item-link:hover {
  color: hsl(160, 100%, 33%);
  color: var(--color-primary);
}

/* style home different */

.cmp-pfzw-navigation
  .cmp-navigation__group
  > li:first-child.cmp-navigation__item--level-0
  > .cmp-navigation__item-link {
  color: hsl(220, 3%, 23%);
  color: var(--color-body);
}

.cmp-pfzw-navigation
  .cmp-navigation__group
  > li:first-child.cmp-navigation__item--level-0
  > .cmp-navigation__item-link:hover {
  color: hsl(220, 3%, 23%);
  color: var(--color-body);
}

@media screen and (min-width: 90em) {
  .cmp-navigation__item--level-0 > .cmp-navigation__item-link {
    color: hsl(220, 3%, 23%);
    color: var(--color-body);
  }
  .cmp-navigation__item--level-0 > .cmp-navigation__item-link:hover {
    color: hsl(220, 3%, 23%);
    color: var(--color-body);
  }

  .pfzw-page--white-header-text
    .cmp-pfzw-navigation
    .cmp-navigation__group
    > li:first-child.cmp-navigation__item--level-0
    > .cmp-navigation__item-link {
    color: hsl(0, 0%, 100%);
    color: var(--color-white);
  }

  .cmp-pfzw-navigation
    .cmp-navigation__group
    > li:first-child.cmp-navigation__item--level-0
    > .cmp-navigation__item-link:hover {
    color: hsl(160, 100%, 33%);
    color: var(--color-primary);
  }
}

/*
* teaser styling
*
* .teaser element gets the class o-balloon by default, set by policy in AEM. AEM also puts the modifier classes on that same div, so you get structure like this:
<div class="teaser o-balloon o-balloon--modifier o-teaser--modifier">
	<div class="cmp-teaser">...</div>
</div>
*/

.teaser {
	/* .teaser element gets the class o-balloon by default, set by policy in AEM */
	/* this is also the level where any modifier-classes get added */
}

.cmp-teaser__image {
	overflow: hidden;
	margin-left: calc(-1 * 2.4rem);
	margin-left: calc(-1 * var(--balloon-padding-left));
	margin-right: calc(-1 * 2.4rem);
	margin-right: calc(-1 * var(--balloon-padding-right));
	margin-top: calc(-1 * 3.2rem);
	margin-top: calc(-1 * var(--balloon-padding-top));
	border-top-right-radius: 2rem;
	border-top-right-radius: var(--balloon-border-radius-top-right);
	border-top-left-radius: 2rem;
	border-top-left-radius: var(--balloon-border-radius-top-left);
}

/* when teaser img isn't background img, pull up the content to create balloon-arrow */

.cmp-teaser__image+.cmp-teaser__content {
	position: relative;
	z-index: 1;
}

.cmp-teaser__image+.cmp-teaser__content::before {
	position: relative;
	content: '';
	display: block;
	margin-right: calc(-1 * 2.4rem);
	margin-right: calc(-1 * var(--balloon-padding-right));
	/* undo balloon-padding for ::before */
	margin-left: calc(-1 * 2.4rem);
	margin-left: calc(-1 * var(--balloon-padding-left));
	/* undo balloon-padding for ::before */
	margin-top: calc(-1 * 2rem);
	margin-top: calc(-1 * var(--border-radius-balloon));
	/* pull up, over img */
	border-top-right-radius: 2rem;
	border-top-right-radius: var(--border-radius-balloon-arrow);
	width: calc(100% + 2.4rem + 2.4rem);
	width: calc(100% + var(--balloon-padding-right) + var(--balloon-padding-left));
	height: 3.2rem;
	height: var(--spacing-32);
	background: hsl(0, 0%, 100%);
	background: var(--color-balloon-bg);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	/* this media query is only recognized by IE11 */
	/* IE11 / postcss variables plugin can't get right bg-var */
	.o-balloon--bg-green .cmp-teaser__image + .cmp-teaser__content::before {
		background: hsl(160, 100%, 33%);
		background: var(--color-munsell-green);
	}
	.o-balloon--bg-blue .cmp-teaser__image + .cmp-teaser__content::before {
		background: hsl(235, 44%, 46%);
		background: var(--color-violet-blue);
	}
	.cmp-teaser--bg-img  > [class^="cmp"] {
		color: hsl(0, 0%, 100%);
		color: var(--color-white);
	}
}

.cmp-teaser__title {
	margin-bottom: 1.6rem;
	margin-bottom: var(--spacing-16);
}

.cmp-teaser__title-link {
	text-decoration: none;
}

.cmp-teaser__title--icon {
	padding-left: 4.8rem;
	padding-left: var(--spacing-48);
}

.cmp-teaser__icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 1.6rem;
	margin-right: var(--spacing-16);
	margin-left: calc(-1 * 4.8rem);
	margin-left: calc(-1 * var(--spacing-48));
	width: 3.2rem;
	width: var(--spacing-32);
	height: 3.2rem;
	height: var(--spacing-32);
	border-radius: 50%;
	background: hsl(0, 0%, 96%);
	background: var(--color-manatee-lightest);
	color: hsl(160, 100%, 33%);
	color: var(--color-munsell-green);
	vertical-align: bottom;
}

.cmp-teaser__action-container {
	margin-top: 1.6rem;
	margin-top: var(--spacing-16);
}

.cmp-teaser--cta-text-link .cmp-teaser__action-container {
	display: flex;
	flex-direction: column;
}

/*-- start bg-img variant --*/

.cmp-teaser--bg-img {
	--border-radius-balloon-arrow: var(--border-radius-balloon-arrow--lg);
	--balloon-margin-bottom: var(--spacing-32);
	--color-balloon-text: var(--color-white);
	--teaser-text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
	--arrow-right-url: var(--arrow-right-url-white);
}

.cmp-teaser--bg-img h2 {
	font: 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-36);
	font-family: "Nantes Web", georgia, serif;
	font-family: var(--ff-secondary);
}

.cmp-teaser--bg-img h3 {
	font: 3.6rem/1.1666666667 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-36);
	font-family: "Nantes Web", georgia, serif;
	font-family: var(--ff-secondary);
}

.cmp-teaser--bg-img .cmp-teaser {
	overflow: hidden;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	padding-bottom: calc( 6.8rem + 3.2rem);
	padding-bottom: calc( var(--border-radius-balloon-arrow--lg) + var(--spacing-32));
	height: 60rem;
	background: transparent;
}

/* balloons with image background get bottom-left radius in ::before and covering element in ::after */

.cmp-teaser--bg-img>.cmp-teaser::before {
	/* covering piece at bottom-left corner */
	content: '';
	display: block;
	position: absolute;
	z-index: 1;
	left: auto;
	right: 0;
	bottom: 6.8rem;
	bottom: var(--border-radius-balloon-arrow);
	width: 2rem;
	width: var(--border-radius-balloon);
	height: 2rem;
	height: var(--border-radius-balloon);
	background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23f5f5f5"/></svg>');
	background-image: var(--balloon-arrow-url-x-light);
	transform: rotate(180deg);
}

.cmp-teaser--bg-img>.cmp-teaser::after {
	top: auto;
	bottom: 0;
	width: calc(100% + 1px);
	/* otherwise 1px of img might show */
	border-top-left-radius: 6.8rem;
	border-top-left-radius: var(--border-radius-balloon-arrow);
	background: hsl(0, 0%, 96%);
	background: var(--color-bg-content);
}

.cmp-teaser--bg-img .cmp-teaser__image {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.cmp-teaser--bg-img .cmp-image, .cmp-teaser--bg-img .cmp-image__link {
	display: flex;
	height: 99%;
}

.cmp-teaser--bg-img img {
	display: block;
	height: 100%;
	width: auto;
}

.cmp-teaser--bg-img {
	position: relative;
	overflow: hidden;
}

.cmp-teaser--bg-img img {
	position: absolute;
	top: -9999px;
	right: -9999px;
	bottom: -9999px;
	left: -9999px;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
	.cmp-teaser--bg-img img {
		position: static;
		margin: initial;
		height: auto;
		width: auto;
		min-width: 100%;
		min-height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}

.cmp-teaser--bg-img .cmp-teaser__content {
	position: relative;
	z-index: 1;
}

.cmp-teaser--bg-img .cmp-teaser__content::before {
	display: none;
	/* no opaque area with border-radius at top of content here *? */
}

.cmp-teaser--bg-img .cmp-teaser__title {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
	text-shadow: var(--teaser-text-shadow);
}

/* description not allowed in bg-image teasers */

.cmp-teaser--bg-img .cmp-teaser__description {
	display: none;
}

.cmp-teaser--bg-img-text-bottom .cmp-teaser {
	display: flex;
}

.cmp-teaser--bg-img-text-bottom .cmp-teaser__content {
	align-self: flex-end;
}

.cmp-teaser--text-dark {
	--color-balloon-text: hsl(220, 3%, 23%);
	--color-balloon-text: var(--color-body);
	--teaser-text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	color: hsl(220, 3%, 23%);
	color: var(--color-balloon-text);
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	text-shadow: var(--teaser-text-shadow);
}

.cmp-teaser--text-dark .cmp-teaser {
	--color-balloon-text: hsl(220, 3%, 23%);
	--color-balloon-text: var(--color-body);
	--teaser-text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	color: hsl(220, 3%, 23%);
	color: var(--color-balloon-text);
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	text-shadow: var(--teaser-text-shadow);
}

.cmp-teaser #ot-sdk-btn.ot-sdk-show-settings:not(.cmp-experiencefragment--footer #ot-sdk-btn.ot-sdk-show-settings) {
	padding: 0;
}

/* do not allow dark text on bg-green and bg-blue */

/* somehow, selector :not(.o-balloon--bg-green).cmp-teaser--text-dark doesn't work, so we must redefine regular style */

.o-balloon--bg-green.cmp-teaser--text-dark,
.o-balloon--bg-blue.cmp-teaser--text-dark {
	--color-balloon-text: var(--color-white);
	--teaser-text-shadow: none;
}

/*-- Start main-right teasers - those have balloon arrow at the right --*/

.main-right .teaser.o-balloon {
	/* when teaser is used in right column, undo its grid-padding. The padding is set on the .teaser element, not on the .cmp-teaser element */
	padding-right: 0;
	/* also, balloons in right column always have arrow at right side; overrule those balloon settings here */
	--balloon-border-radius-top-right: 0;
	--balloon-border-radius-bottom-right: 0;
	--balloon-border-radius-bottom-left: var(--border-radius-balloon);
}

/* margin-top for first teaser in right column */

.main-right .teaser:first-child .cmp-teaser {
	margin-top: 4.8rem;
	margin-top: var(--spacing-48);
}

@media screen and (min-width: 48em) {
	.main-right .teaser:first-child .cmp-teaser {
		margin-top: 12.8rem;
		margin-top: var(--spacing-128);
	}
}

.main-right .cmp-teaser {
	/* also, balloons in right column always have arrow at right side; overrule those balloon settings here.
		Just redefining border-radius vars here won't work for postcss: it won't know that those variables have to be applied to border-radius property */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 2rem;
	border-bottom-left-radius: var(--border-radius-balloon);
}

.main-right .cmp-teaser--bg-img .cmp-teaser {
	border-bottom-left-radius: 0;
}

/* when teaser is in right column, put arrow at right-hand side */

.main-right .cmp-teaser::after {
	/* balloons in right column always have arrow at right side; overrule those balloon settings here */
	left: auto;
	right: 0;
	transform: scaleX(-1);
}

.main-right .cmp-teaser--bg-img .cmp-teaser::before {
	left: 0;
	right: auto;
	transform: rotate(-90deg);
}

.main-right .cmp-teaser__image {
	border-top-right-radius: 0;
}

.cmp-teaser--hero .cmp-teaser {
	--hero-teaser-height-small: 22.5rem;
	--teaser-height: 22.5rem;
	--teaser-height: var(--hero-teaser-height-small);

	position: relative;/* for ::after positioning */
	overflow: hidden;

	margin-top: -138px;/* for IE11, since it doesn't understand nested calcs) that we get from postCSS plugin */
	margin-top: calc(-1 * calc( 4.0rem + 2 * 4.8rem));
	margin-top: calc(-1 * var(--header-height));
	margin-left: calc(-1 * 1.6rem);
	margin-left: calc(-1 * var(--spacing-grid-gutter-sm));
	margin-right: calc(-1 * 1.6rem);
	margin-right: calc(-1 * var(--spacing-grid-gutter-sm));
	height: 22.5rem;
	height: var(--teaser-height);
}

@media screen and (min-width: 48em) {
	.cmp-teaser--hero .cmp-teaser {
		margin-left: calc(-1 * 2.4rem);
		margin-left: calc(-1 * var(--spacing-grid-gutter));
		margin-right: calc(-1 * 2.4rem);
		margin-right: calc(-1 * var(--spacing-grid-gutter));
	}
}

@media screen and (min-width: 62em) {
	.cmp-teaser--hero .cmp-teaser {
		margin-right: calc(-1 * 1.2rem);
		margin-right: calc(-1 * var(--spacing-grid-half-gutter));
	}
}

@media screen and (min-width: 73.125em) {
	.cmp-teaser--hero .cmp-teaser {
		margin-left: calc(-1 * 1.2rem);
		margin-left: calc(-1 * var(--spacing-grid-half-gutter));
	}

	.cmp-teaser--hero-main-content .cmp-teaser {
		border-right: none;
	}
}

.cmp-teaser--hero .cmp-teaser::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	z-index: var(--z-index-hero-teaser-before);
	height: 1px;
	height: 100%;
	width: 100%;
	/* linear gradient to slightly darken top of image, for better menu legibility */
	/* somehow, IE11 leaves 1px high row of the image visable when we use border-radius on ::after. the second linear-gradient covers that */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40px, rgba(255, 255, 255, 0.2) 88px, transparent 22.5rem),
		linear-gradient(to top, hsl(0, 0%, 96%) 1px, transparent 0);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.2) 40px, rgba(255, 255, 255, 0.2) 88px, transparent var(--hero-teaser-height-small)),
		linear-gradient(to top, var(--color-bg-content) 1px, transparent 0);
}

.pfzw-page--white-header-text .cmp-teaser--hero .cmp-teaser::before {
	/* linear gradient to slightly darken top of image, for better menu legibility  when menu text is white */
	/* second linear-gradient for IE11 pixel */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40px, rgba(0, 0, 0, 0.2) 88px, transparent 22.5rem),
		linear-gradient(to top, hsl(0, 0%, 96%) 1px, transparent 0);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.2) 40px, rgba(0, 0, 0, 0.2) 88px, transparent var(--hero-teaser-height-small)),
		linear-gradient(to top, var(--color-bg-content) 1px, transparent 0);
}

.cmp-teaser--hero .cmp-teaser::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 2rem;
	height: var(--border-radius-balloon-arrow-default);
	border-top-right-radius: 2rem;
	border-top-right-radius: var(--border-radius-balloon-arrow-default);
	background: hsl(0, 0%, 96%);
	background: var(--color-bg-content);
}

@media screen and (min-width: 62em) {
	.cmp-teaser--hero .cmp-teaser {
		height: 40.8rem;
	}

	.cmp-teaser--hero .cmp-teaser::after {
		height: 6.8rem;
		height: var(--border-radius-balloon-arrow--lg);
		border-top-right-radius: 6.8rem;
		border-top-right-radius: var(--border-radius-balloon-arrow--lg);
	}
}

@media screen and (min-width: 73.125em) {
	.cmp-teaser--hero .cmp-teaser {
		height: 56.8rem;
	}
}

/*-- Variants for image alignment --*/

.cmp-teaser--hero .cmp-teaser .cmp-teaser__image {
		/* selector .cmp-teaser is only necessary for IE11: otherwise, the postcss-css-variables plugin wouldn't know that .cmp-teaser__image is a child of .cmp-teaser */
		/* default: vertically centered */
		position: absolute;
		width: 100%;
		height: auto;
		left: 2.4rem;
		left: var(--spacing-grid-gutter);
		top: 50%;
		transform: translateY(-50%);
	}

.cmp-teaser--hero-align-top .cmp-teaser .cmp-teaser__image {
		top: 0;
		transform: none;
	}

.cmp-teaser--hero-align-10-from-top .cmp-teaser .cmp-teaser__image {
		top: 10%;
		transform: translateY(-10%);
	}

.cmp-teaser--hero-align-20-from-top .cmp-teaser .cmp-teaser__image {
		top: 20%;
		transform: translateY(-20%);
	}

.cmp-teaser--hero-align-25-from-top .cmp-teaser .cmp-teaser__image {
		top: 25%;
		transform: translateY(-25%);
	}

.cmp-teaser--hero-align-30-from-top .cmp-teaser .cmp-teaser__image {
		top: 30%;
		transform: translateY(-30%);
	}

.cmp-teaser--hero-align-40-from-top .cmp-teaser .cmp-teaser__image {
		top: 40%;
		transform: translateY(-40%);
	}

.cmp-teaser--hero-align-25-from-bottom .cmp-teaser .cmp-teaser__image {
		top: auto;
		bottom: 25%;
		transform: translateY(25%);
	}

.cmp-teaser--hero-align-bottom .cmp-teaser .cmp-teaser__image {
		top: auto;
		bottom: 0;
		transform: none;
	}

.cmp-teaser--hero .cmp-teaser__content {
		display: none;/* content is not allowed, and empty element screws up positioning of balloon-arrow */
	}

/* hero teaser in main content - we only use this hero teaser as a workaround to be able to show images in listviews */

/* .cmp-teaser--hero-main-content always also has class .cmp-teaser--hero */

.cmp-teaser--hero-main-content .cmp-teaser {
		margin: 0 0 1.6rem;
		margin: 0 0 var(--spacing-16);
		border-top-left-radius: 2rem;
		border-top-left-radius: var(--border-radius-balloon-arrow-default);
		border-top-right-radius: 2rem;
		border-top-right-radius: var(--border-radius-balloon-arrow-default);
		height: auto;
	}

.aem-AuthorLayer-Edit .cmp-teaser--hero-main-content .cmp-teaser {
		/* make sure that the component's drop-target is always visible in the editor */
		min-height: 32px;
	}

.cmp-teaser--hero-main-content .cmp-teaser::after {
		height: 2rem;
		height: var(--border-radius-balloon-arrow-default);
		border-top-right-radius: 0;
		border-top-left-radius: 2rem;
		border-top-left-radius: var(--border-radius-balloon-arrow-default);
	}

.cmp-teaser--hero-main-content.cmp-teaser--hero-main-content .cmp-teaser::before {/* use same selector twice to get same specificity as normal hero-teaser within .pfzw-page--white-header-text */
		content: '';
		position: absolute;
		top: auto;
		bottom: 2rem;
		bottom: var(--border-radius-balloon-arrow-default);
		left: auto;
		right: 0;
		z-index: 1;
		width: 2rem;
		width: var(--border-radius-balloon-arrow-default);
		height: 2rem;
		height: var(--border-radius-balloon-arrow-default);
		background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23f5f5f5"/></svg>');
		background: var(--balloon-arrow-url-x-light);
		transform: rotate(180deg);
	}

/* in IE11, ::after leaves a 1px wide edge of the image visible. Since ::before's svg isn't rendered in IE, we can use ::before to cover the 1px edge */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
		/* this media query is only recognized by IE11 */
		.cmp-teaser--hero-main-content.cmp-teaser--hero-main-content .cmp-teaser::before {
			/* use same selector twice to get same specificity as normal hero-teaser within .pfzw-page--white-header-text */
			bottom: 0;
			background: hsl(0, 0%, 96%);
			background: var(--color-bg-content);
			width: 100%;
			border-bottom-right-radius: 2rem;
			border-bottom-right-radius: var(--border-radius-balloon-arrow-default);
		}
	}

.cmp-teaser--hero-main-content .cmp-teaser .cmp-teaser__image {
		position: relative;/* overrule position: absolute from normal hero-teaser */
		transform: none;/* overrule default transform from normal hero-teaser */
	}

.cmp-text {
	margin-bottom: 0;
}

.cmp-text p:last-child {
	margin-bottom: 1.6rem;
	margin-bottom: var(--mb-p);
}

@media screen and (min-width: 48em) {

  .cmp-text p:last-child {
	margin-bottom: 3.2rem;
	margin-bottom: var(--mb-p);
  }
}

/*-- Start text component variants --*/

.cmp-text--intro {
		margin-bottom: 0;
		font-weight: 600;
		font-weight: var(--fw-semibold);
	}

.cmp-text--intro .cmp-text {
		margin-bottom: 0;
	}

.cmp-text--intro .cmp-text p {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-16);
	}

.cmp-text--intro .cmp-text p:last-of-type {
		margin-bottom: 3.2rem;
		margin-bottom: var(--spacing-32);
	}

@media screen and (min-width: 48em) {
		.cmp-text--intro .cmp-text p {
			margin-bottom: 3.2rem;
			margin-bottom: var(--spacing-32);
		}

		.cmp-text--intro .cmp-text p:last-of-type {
			margin-bottom: 4.8rem;
			margin-bottom: var(--spacing-48);
		}
	}

/*-- End text component variants --*/

/*-- Start html elements inside text component --*/

/* links */

.cmp-text a {
		display: inline-block;
		margin: 0 -0.1em;/* use margin and padding to position border (for focus) a bit outside */
		padding: 0 0.1em;
		border: 1px solid transparent;
		color: hsl(235, 44%, 46%);
		color: var(--color-body-link);
		text-decoration: underline;
		-webkit-text-decoration-skip-ink: none;
		        text-decoration-skip-ink: none;
		transition: color 0.2s ease-in-out;
		transition: color var(--anim);
	}

pfzw-collapsible a {
		display: inline-block;
		margin: 0 -0.1em;/* use margin and padding to position border (for focus) a bit outside */
		padding: 0 0.1em;
		border: 1px solid transparent;
		color: hsl(235, 44%, 46%);
		color: var(--color-body-link);
		text-decoration: underline;
		-webkit-text-decoration-skip-ink: none;
		        text-decoration-skip-ink: none;
		transition: color 0.2s ease-in-out;
		transition: color var(--anim);
	}

.cmp-text #ot-sdk-btn.ot-sdk-show-settings {
		font-size: inherit;
		text-decoration: underline;
		color: undefined;
		color: var(--pggm-link-color);
		background-color: inherit;
	}

.cmp-text #ot-sdk-btn.ot-sdk-show-settings:hover {
		font-size: inherit;
		text-decoration: underline;
		color: undefined;
		color: var(--pggm-link-color);
		background-color: inherit;
	}

.cmp-text #ot-sdk-btn.ot-sdk-show-settings:focus {
		font-size: inherit;
		text-decoration: underline;
		color: undefined;
		color: var(--pggm-link-color);
		background-color: inherit;
	}

.cmp-text #ot-sdk-btn.ot-sdk-show-settings:active {
		font-size: inherit;
		text-decoration: underline;
		color: undefined;
		color: var(--pggm-link-color);
		background-color: inherit;
	}

.cmp-text #ot-sdk-btn.ot-sdk-show-settings:not(.cmp-experiencefragment--footer #ot-sdk-btn.ot-sdk-show-settings) {
		padding: 0;
	}

.cmp-text a:visited {
		color: hsl(160, 100%, 33%);
		color: var(--color-body-link-visited);
	}

pfzw-collapsible a:visited {
		color: hsl(160, 100%, 33%);
		color: var(--color-body-link-visited);
	}

.cmp-text a:hover {
		color: hsl(235, 44%, 21%);
		color: var(--color-body-link-hover);
	}

pfzw-collapsible a:hover {
		color: hsl(235, 44%, 21%);
		color: var(--color-body-link-hover);
	}

.cmp-text a:active {
		color: hsl(235, 44%, 29%);
		color: var(--color-body-link-active);
	}

pfzw-collapsible a:active {
		color: hsl(235, 44%, 29%);
		color: var(--color-body-link-active);
	}

.cmp-text a:focus {
		outline: none;
		border: 1px solid rgb(202, 204, 230);
		border: 1px solid var(--color-violet-blue-lightest);
		border-radius: 0.4rem;
		border-radius: var(--border-radius-xs);
		background: hsl(0, 0%, 100%);
		background: var(--color-white);
		text-decoration: none;
	}

pfzw-collapsible a:focus {
		outline: none;
		border: 1px solid rgb(202, 204, 230);
		border: 1px solid var(--color-violet-blue-lightest);
		border-radius: 0.4rem;
		border-radius: var(--border-radius-xs);
		background: hsl(0, 0%, 100%);
		background: var(--color-white);
		text-decoration: none;
	}

/* lists */

.cmp-text ul {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-16);
	}

.cmp-text ol {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-16);
	}

.cmp-text ul ul,
	.cmp-text ul ol,
	.cmp-text ol ul,
	.cmp-text ol ol { 
		margin-bottom: 0;
	}

.cmp-text ol {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-body-text);
		list-style: none;
	}

.cmp-text ul {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-body-text);
		list-style: none;
	}

pfzw-collapsible ol {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-body-text);
		list-style: none;
	}

pfzw-collapsible ul {
		margin-bottom: 1.6rem;
		margin-bottom: var(--spacing-body-text);
		list-style: none;
	}

.cmp-text ul li {
		padding-left: 3.2rem;
		padding-left: var(--spacing-list-elements);
		position: relative;
	}

pfzw-collapsible ul li {
		padding-left: 3.2rem;
		padding-left: var(--spacing-list-elements);
		position: relative;
	}

.cmp-text ul li::before {
		content: "";
		display: inline-block;
		width: .5rem;
		height: .5rem;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 1.2rem;
		top: var(--spacing-grid-half-gutter);
		background-color: hsl(160, 100%, 33%);
		background-color: var(--color-munsell-green);
	}

pfzw-collapsible ul li::before {
		content: "";
		display: inline-block;
		width: .5rem;
		height: .5rem;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 1.2rem;
		top: var(--spacing-grid-half-gutter);
		background-color: hsl(160, 100%, 33%);
		background-color: var(--color-munsell-green);
	}

.cmp-text ol,
	pfzw-collapsible ol {
		list-style-type: none;
		counter-reset: pfzw;
	}

.cmp-text ol > li,
	pfzw-collapsible ol > li  {
		display: table;
		counter-increment: pfzw;
		margin-top: 0.6em;
		word-break: initial;
	}

.cmp-text ol li::before,
	pfzw-collapsible ol li::before {
		content: counters(pfzw, '.');
		display: table-cell;
		padding-right: 1.4em;
		content: counters(pfzw, ".");
	}

pfzw-collapsible ol:last-child, pfzw-collapsible ul:last-child {
		margin-bottom: 0;
	}

.cmp-text--table {
		overflow-x: auto;
	}

@media screen and (min-width: 48em) {
		.cmp-text--intro .cmp-text p {
			margin-bottom: 3.2rem;
			margin-bottom: var(--spacing-32);
		}

		.cmp-text--intro .cmp-text p:last-of-type {
			margin-bottom: 4.8rem;
			margin-bottom: var(--spacing-48);
		}
		
		.cmp-text ul {
			margin-bottom: 3.2rem;
			margin-bottom: var(--spacing-32);
		}
		
		.cmp-text ol {
			margin-bottom: 3.2rem;
			margin-bottom: var(--spacing-32);
		}
	}

/*-- End html elements inside text component --*/

.cmp-breadcrumb {
    font-size: undefined;
    font-size: var(--fs-sm);
    margin: 0 0 1.6rem;
    margin: 0 0 var(--spacing-16);
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.cmp-breadcrumb__list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: content-box;
    scrollbar-width: none;
    flex-wrap: wrap;
}

/* added display none for hiding scrollbar in webkit browsers in the div while there's overflow, unfortunately it has some faults on chrome */

.cmp-breadcrumb__list::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.cmp-breadcrumb__item:not(.cmp-breadcrumb__item--active):after {
    content: '';
    display: inline-flex;
    margin-left: 1.6rem;
    margin-left: var(--spacing-16);
    margin-right: 1.6rem;
    margin-right: var(--spacing-16);
    height: 100%;
    width: .8rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cpath%20fill%3D%22%239c9fa3%22%20d%3D%22M9.3%2015.9l3.9-3.9-3.9-3.9c-.4-.4-.4-1%200-1.4s1-.4%201.4%200l4.6%204.6c.4.4.4%201%200%201.4l-4.6%204.6c-.4.4-1%20.4-1.4%200-.4-.4-.4-1%200-1.4z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 2.4rem 2.4rem;
}

.cmp-breadcrumb__item {
   display: none;
   color: hsl(225, 3%, 76%);
   color: var(--color-manatee-lighter);
}

.cmp-breadcrumb__item:last-child,
.cmp-breadcrumb__item:nth-last-child(2),
.cmp-breadcrumb__item:nth-last-child(3) {
	display: flex;
}

.cmp-breadcrumb__item-link {
    color: hsl(210, 2%, 40%);
    color: var(--color-manatee-darker);
    text-decoration: none;
}

.cmp-breadcrumb__item-link:hover {
    color: hsl(210, 2%, 40%);
    color: var(--color-manatee-darker);
}

.cmp-breadcrumb__item-link:active {
    color: hsl(210, 2%, 40%);
    color: var(--color-manatee-darker);
}

.cmp-breadcrumb__item-link:visited {
    color: hsl(210, 2%, 40%);
    color: var(--color-manatee-darker);
}

@media screen and (min-width: 48em) {
    .cmp-breadcrumb {
        margin: 0 0 3.2rem;
        margin: 0 0 var(--spacing-32);
    }
}

/* style image component when it's positioned immediately after text component */

.cmp-image {
  line-height: 0;/* prevent unwanted margin underneath img */
  margin-bottom: 1.6rem;
  margin-bottom: var(--spacing-16);
}

@media screen and (min-width: 48em) {
  .cmp-image {
    margin-bottom: 2.4rem;
    margin-bottom: var(--spacing-24);
  }
}

.cmp-tabs {
    display: block;
}

.cmp-tabs__tablist {
    display: flex;
    list-style-type: none;
    flex-direction: row;
    border-bottom: 1px solid hsl(225, 3%, 76%);
    border-bottom: 1px solid var(--color-manatee-lighter);
    margin-bottom: 3.2rem;
}

.cmp-tabs__tab {
    margin: 0 4rem -2px 0;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    outline: none;
}

.cmp-tabs__tab:not(.cmp-tabs__tab--active):hover {
    border-color: hsl(220, 3%, 23%);
    border-color: var(--color-manatee-darkest);
}

.cmp-tabs__tab--active {
    border-color: hsl(160, 100%, 33%);
    border-color: var(--color-munsell-green);
    color: hsl(160, 100%, 33%);
    color: var(--color-munsell-green);
}

.cmp-tabs__tabpanel {
    display: none;
}

.cmp-tabs__tabpanel--active {
    display: block;
}

.cmp-list {
  list-style: none;
  margin-bottom: 1.6rem;
  margin-bottom: var(--spacing-16);
}

.o-balloon-list .cmp-list {
  margin-bottom: 0;
}

.cmp-list__item-link {
  --icon-width: 1.2em;
  margin-top: 1.6rem;
  margin-top: var(--spacing-16);
  padding-left: 1.2em;
  padding-left: var(--icon-width);
  color: inherit;
  font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font: var(--font-16);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  transition: color var(--anim);
  display: block;
}

.cmp-list__item-link::before {
  content: '';
  display: inline-block;
  margin-left: calc(-1 * 1.2em);
  margin-left: calc(-1 * var(--icon-width));
  width: 1.2em;
  width: var(--icon-width);
  height: 1.2em;
  height: var(--icon-width);
  background: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z' fill='%2300aa72'/%3e%3c/svg%3e");
  background: var(--arrow-right-url);
  vertical-align: sub;
}

.list:not(.cmp-list--footer) .cmp-list__item:first-child .cmp-list__item-link {
  margin-top: 0;
}

.cmp-list__item-description {
  padding-left: 2.4rem;
  padding-left: var(--spacing-24);
  display: block;
}

.row .cmp-list {
  display: flex;
  flex: 1 1 0;
  flex-wrap: wrap;
  justify-content: flex-start;

  width: 100%;
}

.row .cmp-list__item {
  width: 100%;
}

@media screen and (min-width: 48em) {

  .cmp-list {
    margin-bottom: 3.2rem;
    margin-bottom: var(--spacing-32);
  }

  .row--2-items .cmp-list__item {
    margin-left: calc(2.4rem);
    margin-left: calc(var(--spacing-grid-gutter));
  }

  .row--3-items .cmp-list__item {
    margin-left: calc(2.4rem);
    margin-left: calc(var(--spacing-grid-gutter));
  }

  .row--4-items .cmp-list__item {
    margin-left: calc(2.4rem);
    margin-left: calc(var(--spacing-grid-gutter));
  }

  .row--2-items .cmp-list__item {
    width: calc((100% - 2.4rem) / 2 - 0.1rem);
    width: calc((100% - var(--spacing-grid-gutter)) / 2 - 0.1rem);/* in Edge, non-whole-pixel widths are sometimes rounded up. That makes more than 100%, causing items to be placed underneath eachother instead of side by side. 0.1rem makes sure we always extra pixel */
  }
  .row--2-items .cmp-list__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .row--3-items .cmp-list__item {
    width: calc((100% - 2 * 2.4rem) / 3 - 0.1rem);
    width: calc((100% - 2 * var(--spacing-grid-gutter)) / 3 - 0.1rem);
  }
  .row--3-items .cmp-list__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .row--4-items .cmp-list__item {
    width: calc((100% - 3 * 2.4rem) / 4 - 0.1rem);
    width: calc((100% - 3 * var(--spacing-grid-gutter)) / 4 - 0.1rem);
  }
  .row--4-items .cmp-list__item:nth-child(4n+1) {
    margin-left: 0;
  }
}

/* style footer component */

.cmp-list--footer .cmp-list {
  margin-top: 1.4rem;
}

.cmp-list--footer .cmp-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid hsl(225, 3%, 76%);
  border-top: 1px solid var(--color-manatee-lighter);
  position: relative;
  padding: 1.6rem 0 1.6rem 0;
  padding: var(--spacing-16) 0 var(--spacing-16) 0;
}

.cmp-list--footer .cmp-list::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(-2rem - 1px);
  height: 2rem;
  width: 2rem;
  border-bottom: 1px solid hsl(225, 3%, 76%);
  border-bottom: 1px solid var(--color-manatee-lighter);
  
}

.cmp-list--footer .cmp-list__item {
  width: 50%;
}

.cmp-list--footer .cmp-list__item-link {
  font: 1.4rem/1.4285714288 "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font: var(--font-14);
  text-align: center;
  padding: 0;
}

.cmp-list--footer .cmp-list__item-link::before {
  display: none;
}

.cmp-list--footer .cmp-list__item-link:hover {
	color: hsl(160, 100%, 33%);
	color: var(--color-primary);
}

@media screen and (min-width: 48em) {
  .cmp-list--footer .cmp-list__item {
    width: 33.33%;
  }

  .cmp-list--footer .cmp-list {
    padding: 0 0 1.6rem 0;
    padding: 0 0 var(--spacing-16) 0;
  }
}

@media screen and (min-width: 73.125em) {
  .cmp-list--footer {
    padding-left: 0;
  }

  .cmp-list--footer .cmp-list__item {
    width: 16.66%;
    padding: 0;
  }

  .cmp-list--footer .cmp-list::before {
    right: calc(-1.2rem + 0px);
  }

  .cmp-list--footer .cmp-list {
    padding: 0 3.2rem 3.2rem 3.2rem;
    padding: 0 var(--spacing-32) var(--spacing-32) var(--spacing-32);
    margin-bottom: 0;
    margin-top: 1.6rem;
    margin-top: var(--spacing-16);
  }
}

.cmp-searchbar__input[type="text"] {
  margin-right: -4.9rem;
  padding-right: 4.2rem;
  vertical-align: middle;
  width: 100%;
}

.cmp-searchbar__button {
  background: transparent;
  border: 0;
  height: 4.4rem;
  vertical-align: middle;
  width: 4.4rem;
}

.cmp-searchbar__button::before {
  color: hsl(220, 3%, 23%);
  color: var(--color-manatee-darkest);
  font-size: 2.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.cmp-searchbar__button:hover::before {
  color: hsl(160, 100%, 33%);
  color: var(--color-munsell-green);
}

.cmp-searchbar__button:focus::before {
  color: hsl(160, 100%, 33%);
  color: var(--color-munsell-green);
}

.cmp-searchresult {
	padding-top: 1.6rem;
}

.cmp-searchresult__item {
	border-top: 1px solid hsl(225, 3%, 76%);
	border-top: 1px solid var(--color-manatee-lighter);
	padding: 3.2rem 0 3.2rem 4.8rem;
	padding: var(--spacing-32) 0 var(--spacing-32) var(--spacing-48);
	position: relative;
}

.cmp-searchresult__item:first-child {
	border-top: none;
}

.cmp-searchresult__item .cmp-teaser__icon {
	background: #fff;
	margin-left: 0;
	position: absolute;
	left: 0;
	top: 3.2rem;
	top: var(--spacing-32);
}

.cmp-searchresult__item__search-term {
	font-weight: bold;
}

.cmp-searchresult__no-result > * {
	display: inline-block;
}

.investment-map-top {
    background: white;
    min-height: 100px;
    padding: 1.6rem;
    padding: var(--spacing-16);
    display: flex;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.investment-map-top .header {
    font-weight: bold;
    margin: 0;
}

.investment-map-top .amount {
    font-size: 28px;
    font-weight: 800;
    margin-top: 5px;
}

.investment-map-top .total-left .amount {
    color: hsl(235, 44%, 46%);
    color: var(--color-violet-blue);
}

.investment-map-top .total-right .amount {
    color: hsl(160, 100%, 33%);
    color: var(--color-munsell-green);
}

.investment-map-top .total-left {
    width: 60%;
}

.investment-map-top .total-right {
    text-align: right;
    width: 40%;
}

.investment-map-component {
    height: 353px;
}

.investment-map-bottom {
    background: white;
    min-height: 100px;
    padding: 1.6rem;
    padding: var(--spacing-16);
    border-bottom-right-radius: 16px;
}

/* Google Maps Component */

.investmentmap .gm-style-iw-d {
    overflow: hidden!important;
    max-height: 240px!important;
}

.investmentmap .gm-control-active {
    z-index: 100;
}

.investmentmap .gm-style-iw .gm-ui-hover-effect  {
    border: 1px solid #000!important;
    border-radius: 3px!important;
    right: 7%!important;
    top: 11%!important;
    width: 40px!important;
    height: 40px!important;
    position: absolute !important;
}

.gm-ui-hover-effect span {
    width: 25px!important;
    height: 25px!important;
    margin: 6px!important;
}

.gm-style-iw {
    max-height:275px!important;
    height:275px!important;
}

.gm-style-iw-c {
    border-radius: 20px!important;
    box-shadow: none!important;
    -webkit-box-shadow: none!important;
}

.gm-style-iw-tc {
    display: none!important;
}

.gm-style .gm-style-iw-c {
    transform: translate3d(-25%,-95%,0)!important;
}

/* Grey Backdrop Popup Google Maps Component */

.grey-overlay {
    background: rgba(0, 0, 0, 0.135);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

/**/

.investmentmap #content {
    width: 358px;
    height: 275px;
    padding: 20px 12px;
}

/* - End Google Maps Component - */

/* Below here is only table styling */

#headers-content {
    width: 100%;
}

.arrow_button {
    color: hsl(160, 100%, 33%);
    color: var(--color-munsell-green);
    background: #F5F5F5 !important;
    border: none;
    font-weight: 900;
    font-size: 20px;
}

#table-headers {
    width: 100%;
    padding: 0 0;
    height: auto;
}

#table-headers tr.show:not(:empty) {
    padding-bottom: 5px;
    height: 30px;
}

#table-headers th{
    border-bottom: 0px solid  white;
    font-weight: bolder;
}

.sortable-table {
    width: 100%;
}

.sortable-table th {
    position: relative;
}

.sortable-table th:nth-child(1) .sorting-button {
    position: absolute;
    top: 16px;
    left: 97px;
    background-repeat: no-repeat;
}

.sortable-table th:nth-child(1) .sorting-button-onderneming {
    left: 123px;
}

.sortable-table th:nth-child(2) {
    float: right;
    width: 125px;
}

.sortable-table th:nth-child(2) .sorting-button {
    position: absolute;
    top: 15px;
    right: 0;
    background-repeat: no-repeat;
}

.sorting-button {
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='14' viewBox='0 0 6 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.75226 2.82444L3.58807 0.286609C3.26218 -0.095536 2.73576 -0.0955359 2.40987 0.286609L0.245675 2.82444C-0.280751 3.44175 0.0952682 4.5 0.83895 4.5L5.16735 4.5C5.91103 4.5 6.27869 3.44175 5.75226 2.82444Z' fill='%239C9FA3'/%3E%3Cpath d='M0.247736 11.1756L2.41193 13.7134C2.73782 14.0955 3.26424 14.0955 3.59013 13.7134L5.75432 11.1756C6.28075 10.5582 5.90473 9.5 5.16105 9.5H0.832654C0.0889721 9.5 -0.278691 10.5582 0.247736 11.1756Z' fill='%239C9FA3'/%3E%3C/svg%3E%0A");
    width:20px;
    height:20px;    
}

.investmentmap .firstHeading {
    width: 200px;
    height: 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 32px;
}

.investment-label {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
}

.investmentmap p {
    margin-bottom: 16px;
}

.investment-arrow {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.35293 5.38017C8.12688 5.61695 8 5.93724 8 6.2711C8 6.60496 8.12688 6.92526 8.35293 7.16204L13.062 12.0653L8.35293 17.0191C8.18977 17.2657 8.11596 17.5645 8.14465 17.8624C8.17334 18.1603 8.30266 18.4379 8.50958 18.6457C8.7165 18.8536 8.98757 18.9782 9.27451 18.9974C9.56144 19.0166 9.84559 18.9291 10.0763 18.7505L15.6471 12.9499C15.8731 12.7132 16 12.3929 16 12.059C16 11.7251 15.8731 11.4048 15.6471 11.1681L10.0763 5.36754C9.96271 5.24991 9.82784 5.15688 9.67951 5.0938C9.53118 5.03073 9.37232 4.99886 9.2121 5.00003C9.05188 5.00121 8.89347 5.0354 8.74601 5.10065C8.59855 5.16589 8.46495 5.26089 8.35293 5.38017Z' fill='%2300AA72'/%3E%3C/svg%3E%0A");
    width:20px;
    height:20px;
    margin-left: 7px;

    position:absolute;
    background-repeat: no-repeat;
}

.investment-button {
    background: white;
}

.extra-negative-margin-left{
    margin-left: -5px;
}

.investment-specifics {
    font-weight: 600px;
    font-size: 16px;
    line-height: 24px;
    padding-left: 27px;
}

.investment-specifics:hover {
    color: hsl(160, 100%, 33%);
    color: var(--color-munsell-green);
}

.investment-specifics-selected {
    color: hsl(160, 100%, 33%);
    color: var(--color-munsell-green);
}

#investment-map-table-part {
    background-color: white;
    overflow-y: scroll;
    padding: 15px 15px 22px;    
    margin-bottom: 20px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

#investment-map-table-part table {
    margin-bottom: 0;
}

#investment-map-table-part::-webkit-scrollbar-track {
    background-color:transparent;
    margin-top: 10px;
    margin-bottom: 10px;
}

#investment-map-table-part::-webkit-scrollbar-thumb {
    background: #F5F5F5;
    border-radius: 10px;
}

#investment-map-table-part::-webkit-scrollbar {
    width: 7px;
}

#engadgements_tbl_id tbody:first-child {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-border-table);
}

#SDG_tbl_id tbody:first-child {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-border-table);
}

#SDG_tbl_expanded_id tbody:first-child {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-border-table);
}

#totaal_tbl_id tbody:first-child {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-border-table);
}

#totaal_tbl_expanded_id tbody:first-child {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-border-table);
}

.clickable-row {
    cursor:pointer;
}

.tooltip {
    position: relative;
}

.tooltip .tooltip-text {
    width: 100px;
    position: absolute;
    top: 28px;
    right: 0px;    
    text-align: center;
    background: #fff;
    color: hsl(210, 2%, 40%);
    color: var(--color-manatee-darker);
    z-index: 5;
    border-radius: 16px;
    border: 1px solid hsl(225, 3%, 76%);
    border: 1px solid var(--color-manatee-lighter);
    visibility: hidden;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
}

.hide {
    display: none;
}

.show {
    display: table;
}

table {
    display: table;
    width: calc(100% - 20px);
}

.sdg {
    height: 20px;
    margin-right: 17px;
    padding-top: 19px;   
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.sdg-budget {
    position:relative;
}

.sdg-budget img {
    position:absolute;
    top:50%;
    transform: translateY(-50%);
}

.tbl-title {
    text-align: right;
}

.investment-row {
    width: 30%;
}

.investment-column {
    width: 21%;
}

.tbl-button{
    background-color: transparent;
    position: relative;
    padding-right:26px;
}

/* Expanded total tabel */

#totaal_tbl_expanded_id td:nth-child(1), #totaal_tbl_expanded_header th:nth-child(1) {
    width: 440px;
}

#totaal_tbl_expanded_id td:nth-child(2), #totaal_tbl_expanded_header th:nth-child(2) {
    width: 135px;
    text-align: right;
}

#totaal_tbl_expanded_header th:nth-child(2) {
    margin-right: 16px;
}

#totaal_tbl_expanded_id td:nth-child(3), #totaal_tbl_expanded_header th:nth-child(3) {
    width: 53px;
}

.type-Obligatie {
    display: block;
    width: 60px;
    height: 24px;
    background-size: 125px 30px;
    text-indent: -9999px;
    float: right;
    background-image: url("data:image/svg+xml,%3Csvg width='133' height='33' viewBox='83 0 110 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 32.5H133M121 13C121 19.6274 115.627 25 109 25C102.373 25 97 19.6274 97 13C97 6.37258 102.373 1 109 1C115.627 1 121 6.37258 121 13ZM113.767 12.6313C113.767 14.3452 113.332 15.6929 112.463 16.6743C111.599 17.6558 110.395 18.1465 108.852 18.1465C107.275 18.1465 106.057 17.6655 105.197 16.7036C104.343 15.7368 103.916 14.3745 103.916 12.6167C103.916 10.8735 104.345 9.52344 105.205 8.56641C106.064 7.60449 107.285 7.12354 108.867 7.12354C110.405 7.12354 111.606 7.61182 112.47 8.58838C113.334 9.56494 113.767 10.9126 113.767 12.6313ZM105.234 12.6313C105.234 14.0815 105.542 15.1826 106.157 15.9346C106.777 16.6816 107.675 17.0552 108.852 17.0552C110.039 17.0552 110.935 16.6816 111.54 15.9346C112.146 15.1875 112.448 14.0864 112.448 12.6313C112.448 11.1909 112.146 10.0996 111.54 9.35742C110.939 8.61035 110.048 8.23682 108.867 8.23682C107.68 8.23682 106.777 8.61279 106.157 9.36475C105.542 10.1118 105.234 11.2007 105.234 12.6313Z' stroke='%23C0C1C4'/%3E%3C/svg%3E%0A");
}

.type-Aandeel {
    display: block;
    width: 60px;
    height: 24px;
    background-size: 125px 30px;
    text-indent: -9999px;
    background-image: url("data:image/svg+xml,%3Csvg width='133' height='33' viewBox='70 0 133 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 32.5H133M121 13C121 19.6274 115.627 25 109 25C102.373 25 97 19.6274 97 13C97 6.37258 102.373 1 109 1C115.627 1 121 6.37258 121 13ZM112.203 18L110.87 14.5942H106.578L105.26 18H104L108.233 7.24805H109.281L113.492 18H112.203ZM110.482 13.4736L109.237 10.1558C109.076 9.73584 108.91 9.2207 108.739 8.61035C108.631 9.0791 108.478 9.59424 108.277 10.1558L107.018 13.4736H110.482Z' stroke='%23C0C1C4'/%3E%3C/svg%3E%0A");
}

.belang-row {
    text-align: right;
    width: 130px;
}

/* Color-mapping SDG colors */

.sdg1 {
    background-color: #B81C31;
}

.sdg2 {
    background-color: #DDA73A;
}

.sdg3 {
    background-color: #4CA146;
}

.sdg4 {
    background-color: #A11A26;
}

.sdg5 {
    background-color: #BE3323;
}

.sdg6 {
    background-color: #27BFE6;
}

.sdg7 {
    background-color: #FBC412;
}

.sdg8 {
    background-color: #A41C45;
}

.sdg9 {
    background-color: #F16A2F;
}

.sdg10 {
    background-color: #E01682;
}

.sdg11 {
    background-color: #F89D2A;
}

.sdg12 {
    background-color: #BE8D2C;
}

.sdg13 {
    background-color: #407F46;
}

.sdg14 {
    background-color: #2296D4;
}

.sdg15 {
    background-color: #5BBA48;
}

.sdg16 {
    background-color: #116B9F;
}

.sdg17 {
    background-color: #18496D;
}

/* End of Color-mapping SDG colors */

/*-- 6-webcomponents - specific components --*/

.pfzw-v2 p-accordeon h3,
p-accordeon h3 {
    margin: 0;
    line-height: 1.5;
}

.pfzw-v2 #guideContainerForm p-accordeon h3 {
    font-style: normal;
    line-height: 1.5;
    margin-right: 3.2rem;
    margin-right: var(--spacing-32);
    display: flex;
    justify-content: left;
    width: inherit;
    color: hsl(0, 0%, 0%);
    color: var(--color-black);
}

p-accordeon,
p-accordeon pfzw-collapsible {
    display: block;
}

p-accordeon {
    margin-bottom: 2.4rem;
    margin-bottom: var(--spacing-24, 1.5rem);
}

p-accordeon pfzw-collapsible {
    --pfzw-collapsible-padding-block-start: var(--spacing-12, 0.75rem);
    --pfzw-collapsible-padding-block-end: var(--spacing-12, 0.75rem);
    --pfzw-collapsible-padding-inline-start: var(--spacing-16, 1rem);
    --pfzw-collapsible-padding-inline-end: var(--spacing-16, 1rem);
    --pfzw-collapsible-icon-margin-inline-end: 0;
}

p-accordeon pfzw-collapsible[open] {
    --pfzw-collapsible-padding-block-end: 0;
}

p-accordeon pfzw-collapsible + pfzw-collapsible {
    border-top: 1px solid hsl(225, 3%, 76%);
    border-top: 1px solid var(--color-manatee-lighter, hsl(225, 3%, 76%));
}

p-accordeon pfzw-collapsible .aem-GridColumn {
    padding: 0;
}

p-accordeon [slot="pfzw-collapsible--head"] {
    flex: 1;
}

p-accordeon [slot="pfzw-collapsible--content"] {
    padding: 0 0 1.6rem;
    padding: 0 0 var(--spacing-16, 1rem); 
}

p-accordeon [slot="pfzw-collapsible--content"] .cmp-text p {
    margin-bottom: 2.4rem;
    margin-bottom: var(--spacing-24, 1.5rem);
}

p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:first-child > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:first-child > *:first-child > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:first-child > *:first-child > *:first-child > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:first-child > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:first-child > *:first-child > *:first-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:first-child > *:first-child > *:first-child > *:first-child {
    margin-top: 0;
}

p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:last-child > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:last-child > *:last-child > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] .aem-Grid > *:last-child > *:last-child > *:last-child > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:last-child > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:last-child > *:last-child > *:last-child,
p-accordeon [slot="pfzw-collapsible--content"] > *:last-child > *:last-child > *:last-child > *:last-child {
    margin-bottom: 0;
}

:not(.custom-style-defined) body {
  opacity: 0;
}

.custom-style-defined body {
  opacity: 1;
  transition: opacity 0.25s;
}

pfzw-collapsible:not(:defined) {
  visibility: hidden;
}

/* give padding to text next to image in slot element */

pfzw-collapsible [slot="pfzw-collapsible--head"] {
  padding-right: 3.2rem;
  padding-right: var(--spacing-32);
  font-weight: bold;
  /* ie fix, style text because there's no real shadow dom */
  text-align: left;
}

.accordion+*:not(.accordion) {
  padding-top: 3.2rem;
  padding-top: var(--spacing-32);
}

.accordion+.accordion pfzw-collapsible {
  border-top: 1px solid hsl(225, 3%, 76%);
  border-top: 1px solid var(--color-manatee-lighter);
}

@media screen and (min-width: 48em) {

  .accordion+*:not(.accordion) {
    padding-top: 3.2rem;
    padding-top: var(--spacing-32);
  }

}

.accordion .container > .cmp-container > .aem-Grid > .button.arrow.aem-GridColumn:not(.width-75):not(.width-25):not(.width-33):not(.width-50):not(.width-66) {
  width: 100%;
}

pfzw-timeline:not(:defined) {
  visibility: hidden;
}

p-pagination {
  --p-pagination-text-color: var(--color-munsell-green);
  --p-pagination-bg-color: transparent;
  --p-pagination-border-color: transparent;
  --p-pagination-border-radius: 50%;
  --p-pagination-item-width: 3em;
  --p-pagination-item-height: 3em;
  --p-pagination-margin: .4rem;
  --p-pagination-mobile-font-size: 11px;
  --p-pagination-font-size: 16px;
  --p-pagination-font-weight: bold;

  --p-pagination-hover-bg-color: var(--color-manatee-lighter);

  --p-pagination-focus-bg-color: var(--color-munsell-green);
  --p-pagination-focus-color: var(--color-manatee-lightest);

  --p-pagination-switch-left-border: 1px solid var(--color-munsell-green);
  --p-pagination-switch-left-border-radius: 50%;
  --p-pagination-switch-right-border: 1px solid var(--color-munsell-green);
  --p-pagination-switch-right-border-left: 1px solid var(--color-munsell-green);
  --p-pagination-switch-right-border-radius: 50%;
  --p-pagination-switch-hover-border-color: var(--color-manatee-lighter);
  --p-pagination-switch-hover-bg-color: var(--color-manatee-lighter);
  --p-pagination-arrow-color: var(--color-munsell-green);
  --p-pagination-arrow-hover-color: var(--color-munsell-green);
  --p-pagination-switch-bg-color: transparent;
}

p-data-table p-pagination {
  margin-top:1.2rem;
  margin-top:var(--data-table-paging-slot-margin-bottom,1.2rem);
  margin-bottom:1.2rem;
  margin-bottom:var(--data-table-paging-slot-margin-bottom,1.2rem);
}

p-loading-indicator {
    width: 5rem;
    height: 5rem;
}

p-data-table {
    --data-table-color: var(--color-table-text);
    --data-table-background-color: var(--color-bg-table);
    --data-table-border-color: var(--color-border-table);
    --data-table-cell-padding: var(--td-th-padding);
    --data-table-th-border-width: 1px;
    --data-table-th-font-weight: var(--fw-th);
    --data-table-selected-background-color: var(--color-munsell-green);
}

/*
 * this file only contains styling of elements that aren't in the shadow root
 * all component styling with custom vars is in frontend/src/style-webcomponents/cookiebar.css
*/

:not(.custom-style-defined) body {
	opacity: 0;
}

.custom-style-defined body {
	opacity: 1;
	transition: opacity 0.25s;
}

[slot="cookiebar__body"] {
	flex: 1 1 auto;
}

[slot="cookiebar__body"] h3 {
	margin: 0 0 1.6rem;
	margin: 0 0 var(--spacing-16);
}

[slot="cookiebar__body"] a {
	color: hsl(235, 44%, 46%);
	color: var(--color-body-link);
}

[slot="cookiebar__body"] a:visited {
	color: hsl(160, 100%, 33%);
	color: var(--color-body-link-visited);
}

[slot="cookiebar__body"] a:hover {
	color: hsl(235, 44%, 21%);
	color: var(--color-body-link-hover);
}

[slot="cookiebar__body"] a:focus {
	color: hsl(235, 44%, 21%);
	color: var(--color-body-link-hover);
}

[slot="cookiebar__body"] a:active {
	color: hsl(235, 44%, 29%);
	color: var(--color-body-link-active);
}

.nonmodal--cookie {
  position: fixed;
  top: auto;
  bottom: 0;
  z-index: 990;
  z-index: var(--z-index-cookiebar);
  margin: 0 auto;
  width: calc(100% - 3.2rem);
  width: calc(100% - var(--spacing-32));
  max-width: 90em;
  max-width: var(--width-max-content);
}

@media screen and (min-width: 48em) {
	.nonmodal--cookie {    
    bottom: 3rem;
		width: calc(100% - 6.4rem);
		width: calc(100% - var(--spacing-64));
	}
}

/* TO DO component styling inside customer dialog webcomponent must be removed and added here with variables */

.youtube-video-container {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 32px;
    height: 0;
    overflow: hidden;
  }

.embed-responsive-1by1 {
    padding-bottom: 100%;
  }

.embed-responsive-4by3 {
    padding-bottom: 75%;
  }

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
  }

/*Modifier class for 21:9 aspect ratio */

.embed-responsive-21by9 {
    padding-bottom: 42.85%;
  }

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

:root {
  --pfzw-viewport-size: var(--bp-md-min);
  --pfzw-login-list-balloon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ed6f5e"/></svg>');
  --pfzw-login-list-button-balloon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%23ed6f5e"/></svg>');
  --pfzw-login-list-balloon-open: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0H0v20C0 9 9 0 20 0z" fill="%236a3129"/></svg>');
  --pfzw-login-list-item-link-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6.71a1 1 0 000 1.41L12.88 12 9 15.88a1 1 0 101.41 1.41L15 12.7a1 1 0 000-1.41L10.41 6.7A1 1 0 009 6.71z" fill="%23ffffff"/></svg>');
  --pfzw-login-list-item-link-iconHover: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6.71a1 1 0 000 1.41L12.88 12 9 15.88a1 1 0 101.41 1.41L15 12.7a1 1 0 000-1.41L10.41 6.7A1 1 0 009 6.71z" fill="%231e224d"/></svg>');
}

pfzw-login-status {
  --pfzw-login-button-paddingLeft: var(--spacing-16);
  --pfzw-login-button-paddingRight: var(--spacing-16);
  --pfzw-login-statusposition: static;
  --pfzw-login-list-open-borderRadius: .4rem 0 .4rem .4rem;
  --pfzw-login-status-list-padding: 0 0 var(--spacing-16) 0;
  --pfzw-login-list-item-link-colorHover: var(--color-body-link-hover);
  --pfzw-login-list-item-link-colorActive: var(--color-body-link-active);
}

@media screen and (max-width: 47.99em) {
  pfzw-login-status {
    --pfzw-login-display: block;
    --pfzw-login-button-borderRadius: 0 .4rem .4rem .4rem;
    --pfzw-login-list-item-first-display: none;
    --pfzw-login-list-position: relative;
    --pfzw-login-button-paddingTop: 1.6rem;
    --pfzw-login-button-paddingTop: var(--spacing-16);    
    --pfzw-login-button-paddingBottom: 1.6rem;    
    --pfzw-login-button-paddingBottom: var(--spacing-16); 
    --pfzw-login-list-item-padding: 0.8rem 1.6rem 0.8rem 0.8rem; 
    --pfzw-login-list-item-padding: var(--spacing-8) var(--spacing-16) var(--spacing-8) var(--spacing-8);
    --pfzw-login-list-open-borderRadius: 0 0 1.6rem 0;
    margin-left: calc(1.6rem * -1);
    margin-left: calc(var(--spacing-16) * -1);
    margin-right: calc(1.6rem * -1);
    margin-right: calc(var(--spacing-16) * -1);    
  }
  .pfzw-login-status-mob {
    margin: 0 1.6rem !important;
    margin: 0 var(--spacing-16) !important;
    width: calc(100vw - (2 * 1.4rem)) !important;
    width: calc(100vw - (2 * var(--spacing-14))) !important;
  }

  .pfzw-inlog-status-icon {
    min-width: 2.4rem;
    min-height: 2.4rem;
    max-width: 4.2rem;
    max-height: 4.2rem;
    position: relative;
    left: calc(1.6rem * -1);
    left: calc(var(--spacing-16) * -1);
    border-radius: 50%;
    padding: .8rem;
    background: hsl(0, 0%, 96%);
    background: var(--color-manatee-lightest);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .pfzw-inlog-status-icon path {
    fill: hsl(7, 79%, 77%);
    fill: var(--color-coral-reef-lighter);
  }
  .pfzw-inlog-status-icon circle {
    fill: hsl(7, 79%, 77%);
    fill: var(--color-coral-reef-lighter);
  }
  
}

@media screen and (min-width: 48em) {
  pfzw-login-status {
    --pfzw-login-status-username: none;
    --pfzw-login-button-width: auto;
    --pfzw-login-list-before-display: none;
    --pfzw-login-list-before-display: none;
    --pfzw-login-button-open-borderRadius: .4rem .4rem 0 0;
    --pfzw-login-list-item-first-borderRadius: .4rem 0 0 0;
    --pfzw-login-list-item-padding: var(--spacing-8) var(--spacing-16) var(--spacing-8) var(--spacing-8);
    --pfzw-login-button-paddingBottom: 0;
    --pfzw-login-list-item-first-padding: var(--spacing-16);
  }
  .pfzw-inlog-status-icon {
    width: 2.4rem;
    height: 2.4rem;  
  }
  .pfzw-inlog-status-icon path {
    fill: hsl(0, 0%, 100%);
    fill: var(--color-white);
  }
  .pfzw-inlog-status-icon circle {
    fill: hsl(0, 0%, 100%);
    fill: var(--color-white);
  }
}

/* spinner styling inside form */

p-json-form .inline-spinner {
  position: absolute;
  display: inline-block;
  width: 8rem;
  margin-top: 3.2rem;
  margin-top: var(--spacing-32);
}

p-data-table-wrapper pfzw-spinner {
  width: 8rem;
  height: 8rem;
  display: block;
  margin: 1rem auto;
}

pggm-tab-panel .aem-Grid .aem-GridColumn {
    padding: 0;
}

pggm-tab-panel .aem-Grid > *:first-child,
pggm-tab-panel .aem-Grid > *:first-child > *:first-child,
pggm-tab-panel .aem-Grid > *:first-child > *:first-child > *:first-child,
pggm-tab-panel .aem-Grid > *:first-child > *:first-child > *:first-child > *:first-child,
pggm-tab-panel > *:first-child,
pggm-tab-panel > *:first-child > *:first-child,
pggm-tab-panel > *:first-child > *:first-child > *:first-child,
pggm-tab-panel > *:first-child > *:first-child > *:first-child > *:first-child {
    margin-top: 0;
}

pggm-tab-panel .aem-Grid > *:last-child,
pggm-tab-panel .aem-Grid > *:last-child > *:last-child,
pggm-tab-panel .aem-Grid > *:last-child > *:last-child > *:last-child,
pggm-tab-panel .aem-Grid > *:last-child > *:last-child > *:last-child > *:last-child,
pggm-tab-panel > *:last-child,
pggm-tab-panel > *:last-child > *:last-child,
pggm-tab-panel > *:last-child > *:last-child > *:last-child,
pggm-tab-panel > *:last-child > *:last-child > *:last-child > *:last-child {
    margin-bottom: 0;
}

pggm-tab-panel > .container > .cmp-container > .aem-Grid,
pggm-tab-panel > .container > .cmp-container > .aem-Grid > .youtube.aem-GridColumn {
    width: 100%;
}

pggm-npr-compare-panel .aem-Grid .aem-GridColumn {
    padding: 0;
}

pggm-npr-compare-panel .aem-Grid > *:first-child,
pggm-npr-compare-panel .aem-Grid > *:first-child > *:first-child,
pggm-npr-compare-panel .aem-Grid > *:first-child > *:first-child > *:first-child,
pggm-npr-compare-panel .aem-Grid > *:first-child > *:first-child > *:first-child > *:first-child,
pggm-npr-compare-panel > *:first-child,
pggm-npr-compare-panel > *:first-child > *:first-child,
pggm-npr-compare-panel > *:first-child > *:first-child > *:first-child,
pggm-npr-compare-panel > *:first-child > *:first-child > *:first-child > *:first-child {
    margin-top: 0;
}

pggm-npr-compare-panel .aem-Grid > *:last-child,
pggm-npr-compare-panel .aem-Grid > *:last-child > *:last-child,
pggm-npr-compare-panel .aem-Grid > *:last-child > *:last-child > *:last-child,
pggm-npr-compare-panel .aem-Grid > *:last-child > *:last-child > *:last-child > *:last-child,
pggm-npr-compare-panel > *:last-child,
pggm-npr-compare-panel > *:last-child > *:last-child,
pggm-npr-compare-panel > *:last-child > *:last-child > *:last-child,
pggm-npr-compare-panel > *:last-child > *:last-child > *:last-child > *:last-child {
    margin-bottom: 0;
}

/*-- 7-trumps - specific overrides --*/

/*-- 8-debug - debugging helpers --*/

/*
* add breakpoint indicator in dev environments
* class is set on html by add-dev-env-class.js
*/

.env-localhost-or-test body::after {
  display: block;
  content: "sm";
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 0 0.5em;
  background: green;
  font-size: 1.2rem;
  color: white;
}

@media screen and (min-width: 48em) {
  .env-localhost-or-test body::after {
    content: "md";
    background: yellow;
    color: black;
  }
}

@media screen and (min-width: 62em) {
  .env-localhost-or-test body::after {
    content: "lg";
    background: orange;
  }
}

@media screen and (min-width: 73.125em) {
  .env-localhost-or-test body::after {
    content: "xl";
    background: red;
    color: white;
  }
}

@media screen and (min-width: 90em) {
  .env-localhost-or-test body::after {
    content: "2xl";
    background: purple;
    color: white;
  }
}

.debug-grid {
	background-image:
    linear-gradient(
      to right, 
      	#fffdc2,
		  #fffdc2 8.333333%,
		  #d7f0a2 8.333333%,
	  	#d7f0a2 16.66666%,
		#fffdc2 16.66666%,
		#fffdc2 24.999999%,
		#d7f0a2 24.999999%,
		  #d7f0a2 33.333333%,
		  #fffdc2 33.333333%,		 
		  #fffdc2 41.6666666%,
		  #d7f0a2 41.6666666%,
		  #d7f0a2 50%,
		  #fffdc2 50%,
		  #fffdc2 58.3333333%,
		  #d7f0a2 58.3333333%,
		  #d7f0a2 66.6666666%,
		  #fffdc2 66.6666666%,
		  #fffdc2 74.9999999%,
		  #d7f0a2 74.9999999%,
		  #d7f0a2 83.3333333%,
		  #fffdc2 83.3333333%,
		  #fffdc2 91.66666666%,
      	#d7f0a2 91.66666666% 
    ) !important;
}

/*-- 9-editor styles for in the editor --*/

/*
* warnings for in the editor-mode
*/

/* warning styling - put all cases where you want a warning here */

.aem-AuthorLayer-Edit .o-balloon--bg-green.cmp-teaser--text-dark::before {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .o-balloon--bg-blue.cmp-teaser--text-dark::before {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .main-right .o-balloon:not(.cmp-teaser--bg-img) .cmp-teaser__image::after {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .cmp-teaser__action-link + .cmp-teaser__action-link::after {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .cmp-teaser__action-link + .cmp-teaser__action-link::after {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description::before {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .cmp-teaser--hero::after {
	display: block;
	content: '⚠';
	background: hsl(40, 91%, 90%);
	border: 2px solid hsl(40, 91%, 60%);
	border-radius: 4px;
	padding: 0.8rem;
	padding: var(--spacing-8);
	margin-bottom: 0.8rem;
	margin-bottom: var(--spacing-8);
	color: hsl(220, 3%, 23%);
	color: var(--color-body);
}

.aem-AuthorLayer-Edit .pfzw-page--white-header-text .cmp-teaser--hero::after {
	display: none;
}

/* sometimes selectors are too broad, because I can't get :not to work as I want
undo those cases here */

.aem-AuthorLayer-Edit .cmp-teaser--cta-text-link .cmp-teaser__action-link + .cmp-teaser__action-link::after {
	display: none;
}

/* specific messages per warning */

.aem-AuthorLayer-Edit .o-balloon--bg-green.cmp-teaser--text-dark::before,
.aem-AuthorLayer-Edit .o-balloon--bg-blue.cmp-teaser--text-dark::before {
	content: '⚠ Style "Dark Text" is niet toegestaan op groene of blauwe achtergrond. Tekst wordt wit getoond.';
}

.aem-AuthorLayer-Edit .main-right .o-balloon:not(.cmp-teaser--bg-img) .cmp-teaser__image::after {
	content: '⚠ Image in zijkolom mag alleen als achtergrond. ';
}

.aem-AuthorLayer-Edit :not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link + .cmp-teaser__action-link::after {
	content: '⚠ Meerdere CTA\'s alleen toegestaan met style "CTA Text Link"';
}

.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description {
	/* description has display: none in publish environment; overrule so ::after will be shown */
	display: block;
	font-size: 0;
}

.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description::before {
	font: 1.6rem/1.75 "Open Sans", "Segoe UI", Tahoma, sans-serif;
	font: var(--font-16);
	content: '⚠ Description is niet toegestaan bij bg-image. Tekst wordt niet getoond.'
}

.aem-AuthorLayer-Edit .cmp-teaser--hero::after {
	position: absolute;
	top: 120px;
	content: '⚠ Gebruik bij voorkeur "Header text white" op Hero teaser.'
}

/*
 * web components set body opacity to 1 when component is present
 * overrule that for editor environment
 */

body.xf-web-container {
	opacity: 1;
}

/* adobe overrides */


@font-face{font-display:swap;font-family:Asar;font-style:normal;font-weight:400;src:local("Asar Regular"),local("Asar-Regular"),url(//fonts.gstatic.com/s/asar/v7/sZlLdRyI6TBIbkAaDZtQS6AvcA.woff2) format("woff2");unicode-range:U+0900-097f,U+1cd0-1cf6,U+1cf8-1cf9,U+200c-200d,U+20a8,U+20b9,U+25cc,U+a830-a839,U+a8e0-a8fb}@font-face{font-display:swap;font-family:Asar;font-style:normal;font-weight:400;src:local("Asar Regular"),local("Asar-Regular"),url(//fonts.gstatic.com/s/asar/v7/sZlLdRyI6TBIbk8aDZtQS6AvcA.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Asar;font-style:normal;font-weight:400;src:local("Asar Regular"),local("Asar-Regular"),url(//fonts.gstatic.com/s/asar/v7/sZlLdRyI6TBIbkEaDZtQS6A.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lujVj9_mf.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lujVj9_mf.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lujVj9_mf.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lujVj9_mf.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lujVj9_mf.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lujVj9_mf.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhdu3cOWxy40.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxdu3cOWxy40.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxdu3cOWxy40.woff2) format("woff2");unicode-range:U+1f??}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBdu3cOWxy40.woff2) format("woff2");unicode-range:U+0370-03ff}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBdu3cOWxy40.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01a0-01a1,U+01af-01b0,U+1ea0-1ef9,U+20ab}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRdu3cOWxy40.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Source Sans Pro;font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(//fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu3cOWxw.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format("woff2");unicode-range:U+0100-02ba,U+02bd-02c5,U+02c7-02cc,U+02ce-02d7,U+02dd-02ff,U+0304,U+0308,U+0329,U+1d00-1dbf,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:600;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format("woff2");unicode-range:U+0100-02ba,U+02bd-02c5,U+02c7-02cc,U+02ce-02d7,U+02dd-02ff,U+0304,U+0308,U+0329,U+1d00-1dbf,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:600;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format("woff2");unicode-range:U+0100-02ba,U+02bd-02c5,U+02c7-02cc,U+02ce-02d7,U+02dd-02ff,U+0304,U+0308,U+0329,U+1d00-1dbf,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-display:swap;font-family:Poppins;font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}.cmp-accordion__button{display:block}:root{--spacing-36:3.6rem;--ff-default:"Open Sans","Segoe UI",Tahoma,sans-serif;--ff-secondary:"Nantes Web",georgia,serif;--ff-body:var(--ff-default);--ff-headings:var(--ff-default);--default-fontsize:1.6rem;--default-lineheight:1.75;--font-10:1rem/1.75 var(--ff-default);--font-12:1.2rem/1.3333333 var(--ff-default);--font-14:1.4rem/1.4285714288 var(--ff-default);--font-16:1.6rem/1.75 var(--ff-default);--font-20:2rem/1.4 var(--ff-default);--font-24:2.4rem/1.1666666667 var(--ff-default);--font-36:3.6rem/1.1666666667 var(--ff-default);--fw-normal:normal;--fw-semibold:600;--fw-bold:700;--fw-extrabold:900;--line-height-1-375:1.375;--line-height-input-and-buttons:--line-height-1-375;--fw-th:var(--fw-semibold)}.pfzw-i:before{display:inline-block;font-family:PFZWIcons2;font-size:96px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;word-wrap:normal;direction:ltr;white-space:nowrap;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-font-feature-settings:"liga";font-feature-settings:"liga";font-size:1em}html{font-family:sans-serif;-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}[hidden],template{display:none}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}h1{font-size:2em;margin:.67em 0}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border-style:none}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}details{display:block}summary{display:list-item}*{border:none;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;word-break:break-word}html{font-size:62.5%}body{overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:auto;background-color:#f4f4f4;background-color:var(--color-bg-content);color:#383a3c;color:var(--color-body);font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16)}body.pfzw-page--grey-balls{background:radial-gradient(#f1f1f1 150px,#f5f5f5 0);background-color:#f4f4f4;background-color:var(--color-bg-content);background-position-x:-150px;background-size:300px 300px}body.pfzw-page--grey-balls .root.responsivegrid{background:0 0}:root{--font-h1:var(--font-24);--fw-h1:var(--fw-bold);--mb-h1:var(--spacing-32);--font-h2:var(--font-20);--mb-h2:var(--spacing-16);--font-h3:var(--font-16);--mb-h3:var(--spacing-8);--mb-p:var(--spacing-16);--table-margin:0 0 var(--spacing-32) 0;--td-th-padding:var(--spacing-8)}@media screen and (min-width:48em){:root{--font-h1:var(--font-36);--fw-h1:var(--fw-extrabold);--mb-h1:var(--spacing-48);--font-h2:var(--font-24);--mb-h2:var(--spacing-32);--font-h3:var(--font-20);--mb-h3:var(--spacing-24);--mb-p:var(--spacing-32);--table-margin:0 0 var(--spacing-48) 0}}h1{font:700 2.4rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-h1) var(--font-h1);margin-bottom:3.2rem;margin-bottom:var(--mb-h1);margin-top:0}@media screen and (min-width:48em){h1{font:900 3.6rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-h1) var(--font-h1);margin-bottom:4.8rem;margin-bottom:var(--mb-h1)}}.h1{font:700 2.4rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-h1) var(--font-h1);margin-bottom:3.2rem;margin-bottom:var(--mb-h1);margin-top:0}@media screen and (min-width:48em){.h1{font:900 3.6rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-h1) var(--font-h1);margin-bottom:4.8rem;margin-bottom:var(--mb-h1)}}h2{font:700 2rem/1.4 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h2);margin-bottom:1.6rem;margin-bottom:var(--mb-h2)}@media screen and (min-width:48em){h2{font:700 2.4rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h2);margin-bottom:3.2rem;margin-bottom:var(--mb-h2)}}.h2{font:700 2rem/1.4 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h2);margin-bottom:1.6rem;margin-bottom:var(--mb-h2)}@media screen and (min-width:48em){.h2{font:700 2.4rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h2);margin-bottom:3.2rem;margin-bottom:var(--mb-h2)}}h3{font:700 1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h3);margin-bottom:.8rem;margin-bottom:var(--mb-h3)}@media screen and (min-width:48em){h3{font:700 2rem/1.4 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h3);margin-bottom:2.4rem;margin-bottom:var(--mb-h3)}}.h3{font:700 1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h3);margin-bottom:.8rem;margin-bottom:var(--mb-h3)}@media screen and (min-width:48em){.h3{font:700 2rem/1.4 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--fw-bold) var(--font-h3);margin-bottom:2.4rem;margin-bottom:var(--mb-h3)}}.h4,.h5,h4,h5{font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16);font-weight:600;font-weight:var(--fw-semibold);margin-bottom:0}p{margin-bottom:1.6rem;margin-bottom:var(--mb-p)}@media screen and (min-width:48em){p{margin-bottom:3.2rem;margin-bottom:var(--mb-p)}}p:last-child{margin-bottom:0}a img{border:none}button{cursor:pointer}table{background:0 0;background:var(--color-bg-table);border-collapse:collapse;color:inherit;color:var(--color-table-text);margin:0 0 3.2rem;margin:var(--table-margin)}@media screen and (min-width:48em){table{margin:0 0 4.8rem;margin:var(--table-margin)}}table:not([width]){width:100%}caption{color:inherit;font-weight:700;padding:0 0 1.6rem;padding:0 0 var(--spacing-16);text-align:left}td,th{border-bottom:1px solid #bfc0c3;border-bottom:1px solid var(--color-border-table);color:inherit;padding:.8rem;padding:var(--td-th-padding);padding-left:0;text-align:left}th{font-weight:600;font-weight:var(--fw-th)}.aem-Grid{display:block;width:100%}.aem-Grid:after,.aem-Grid:before{content:" ";display:table}.aem-Grid:after{clear:both}.aem-Grid-newComponent{clear:both;margin:0}.aem-GridColumn{-webkit-box-sizing:border-box;box-sizing:border-box;clear:both}[class*=aem-Gridcolumn--]{clear:none;float:left}.aem-GridShowHidden>.aem-Grid>.aem-GridColumn{display:block!important}.aem-Grid{width:auto}.aem-Grid--1>.aem-GridColumn--default--1{width:100%}.aem-Grid--1>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--1>.aem-GridColumn--offset--default--1{margin-left:100%}.aem-Grid--default--1>.aem-GridColumn--default--1{width:100%}.aem-Grid--default--1>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--1>.aem-GridColumn--offset--default--1{margin-left:100%}.aem-Grid--2>.aem-GridColumn--default--1{width:50%}.aem-Grid--2>.aem-GridColumn--default--2{width:100%}.aem-Grid--2>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--2>.aem-GridColumn--offset--default--1{margin-left:50%}.aem-Grid--2>.aem-GridColumn--offset--default--2{margin-left:100%}.aem-Grid--default--2>.aem-GridColumn--default--1{width:50%}.aem-Grid--default--2>.aem-GridColumn--default--2{width:100%}.aem-Grid--default--2>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--2>.aem-GridColumn--offset--default--1{margin-left:50%}.aem-Grid--default--2>.aem-GridColumn--offset--default--2{margin-left:100%}.aem-Grid--3>.aem-GridColumn--default--1{width:33.33333333%}.aem-Grid--3>.aem-GridColumn--default--2{width:66.66666667%}.aem-Grid--3>.aem-GridColumn--default--3{width:100%}.aem-Grid--3>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--3>.aem-GridColumn--offset--default--1{margin-left:33.33333333%}.aem-Grid--3>.aem-GridColumn--offset--default--2{margin-left:66.66666667%}.aem-Grid--3>.aem-GridColumn--offset--default--3{margin-left:100%}.aem-Grid--default--3>.aem-GridColumn--default--1{width:33.33333333%}.aem-Grid--default--3>.aem-GridColumn--default--2{width:66.66666667%}.aem-Grid--default--3>.aem-GridColumn--default--3{width:100%}.aem-Grid--default--3>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--3>.aem-GridColumn--offset--default--1{margin-left:33.33333333%}.aem-Grid--default--3>.aem-GridColumn--offset--default--2{margin-left:66.66666667%}.aem-Grid--default--3>.aem-GridColumn--offset--default--3{margin-left:100%}.aem-Grid--4>.aem-GridColumn--default--1{width:25%}.aem-Grid--4>.aem-GridColumn--default--2{width:50%}.aem-Grid--4>.aem-GridColumn--default--3{width:75%}.aem-Grid--4>.aem-GridColumn--default--4{width:100%}.aem-Grid--4>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--4>.aem-GridColumn--offset--default--1{margin-left:25%}.aem-Grid--4>.aem-GridColumn--offset--default--2{margin-left:50%}.aem-Grid--4>.aem-GridColumn--offset--default--3{margin-left:75%}.aem-Grid--4>.aem-GridColumn--offset--default--4{margin-left:100%}.aem-Grid--default--4>.aem-GridColumn--default--1{width:25%}.aem-Grid--default--4>.aem-GridColumn--default--2{width:50%}.aem-Grid--default--4>.aem-GridColumn--default--3{width:75%}.aem-Grid--default--4>.aem-GridColumn--default--4{width:100%}.aem-Grid--default--4>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--4>.aem-GridColumn--offset--default--1{margin-left:25%}.aem-Grid--default--4>.aem-GridColumn--offset--default--2{margin-left:50%}.aem-Grid--default--4>.aem-GridColumn--offset--default--3{margin-left:75%}.aem-Grid--default--4>.aem-GridColumn--offset--default--4{margin-left:100%}.aem-Grid--5>.aem-GridColumn--default--1{width:20%}.aem-Grid--5>.aem-GridColumn--default--2{width:40%}.aem-Grid--5>.aem-GridColumn--default--3{width:60%}.aem-Grid--5>.aem-GridColumn--default--4{width:80%}.aem-Grid--5>.aem-GridColumn--default--5{width:100%}.aem-Grid--5>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--5>.aem-GridColumn--offset--default--1{margin-left:20%}.aem-Grid--5>.aem-GridColumn--offset--default--2{margin-left:40%}.aem-Grid--5>.aem-GridColumn--offset--default--3{margin-left:60%}.aem-Grid--5>.aem-GridColumn--offset--default--4{margin-left:80%}.aem-Grid--5>.aem-GridColumn--offset--default--5{margin-left:100%}.aem-Grid--default--5>.aem-GridColumn--default--1{width:20%}.aem-Grid--default--5>.aem-GridColumn--default--2{width:40%}.aem-Grid--default--5>.aem-GridColumn--default--3{width:60%}.aem-Grid--default--5>.aem-GridColumn--default--4{width:80%}.aem-Grid--default--5>.aem-GridColumn--default--5{width:100%}.aem-Grid--default--5>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--5>.aem-GridColumn--offset--default--1{margin-left:20%}.aem-Grid--default--5>.aem-GridColumn--offset--default--2{margin-left:40%}.aem-Grid--default--5>.aem-GridColumn--offset--default--3{margin-left:60%}.aem-Grid--default--5>.aem-GridColumn--offset--default--4{margin-left:80%}.aem-Grid--default--5>.aem-GridColumn--offset--default--5{margin-left:100%}.aem-Grid--6>.aem-GridColumn--default--1{width:16.66666667%}.aem-Grid--6>.aem-GridColumn--default--2{width:33.33333333%}.aem-Grid--6>.aem-GridColumn--default--3{width:50%}.aem-Grid--6>.aem-GridColumn--default--4{width:66.66666667%}.aem-Grid--6>.aem-GridColumn--default--5{width:83.33333333%}.aem-Grid--6>.aem-GridColumn--default--6{width:100%}.aem-Grid--6>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--6>.aem-GridColumn--offset--default--1{margin-left:16.66666667%}.aem-Grid--6>.aem-GridColumn--offset--default--2{margin-left:33.33333333%}.aem-Grid--6>.aem-GridColumn--offset--default--3{margin-left:50%}.aem-Grid--6>.aem-GridColumn--offset--default--4{margin-left:66.66666667%}.aem-Grid--6>.aem-GridColumn--offset--default--5{margin-left:83.33333333%}.aem-Grid--6>.aem-GridColumn--offset--default--6{margin-left:100%}.aem-Grid--default--6>.aem-GridColumn--default--1{width:16.66666667%}.aem-Grid--default--6>.aem-GridColumn--default--2{width:33.33333333%}.aem-Grid--default--6>.aem-GridColumn--default--3{width:50%}.aem-Grid--default--6>.aem-GridColumn--default--4{width:66.66666667%}.aem-Grid--default--6>.aem-GridColumn--default--5{width:83.33333333%}.aem-Grid--default--6>.aem-GridColumn--default--6{width:100%}.aem-Grid--default--6>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--6>.aem-GridColumn--offset--default--1{margin-left:16.66666667%}.aem-Grid--default--6>.aem-GridColumn--offset--default--2{margin-left:33.33333333%}.aem-Grid--default--6>.aem-GridColumn--offset--default--3{margin-left:50%}.aem-Grid--default--6>.aem-GridColumn--offset--default--4{margin-left:66.66666667%}.aem-Grid--default--6>.aem-GridColumn--offset--default--5{margin-left:83.33333333%}.aem-Grid--default--6>.aem-GridColumn--offset--default--6{margin-left:100%}.aem-Grid--7>.aem-GridColumn--default--1{width:14.28571429%}.aem-Grid--7>.aem-GridColumn--default--2{width:28.57142857%}.aem-Grid--7>.aem-GridColumn--default--3{width:42.85714286%}.aem-Grid--7>.aem-GridColumn--default--4{width:57.14285714%}.aem-Grid--7>.aem-GridColumn--default--5{width:71.42857143%}.aem-Grid--7>.aem-GridColumn--default--6{width:85.71428571%}.aem-Grid--7>.aem-GridColumn--default--7{width:100%}.aem-Grid--7>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--7>.aem-GridColumn--offset--default--1{margin-left:14.28571429%}.aem-Grid--7>.aem-GridColumn--offset--default--2{margin-left:28.57142857%}.aem-Grid--7>.aem-GridColumn--offset--default--3{margin-left:42.85714286%}.aem-Grid--7>.aem-GridColumn--offset--default--4{margin-left:57.14285714%}.aem-Grid--7>.aem-GridColumn--offset--default--5{margin-left:71.42857143%}.aem-Grid--7>.aem-GridColumn--offset--default--6{margin-left:85.71428571%}.aem-Grid--7>.aem-GridColumn--offset--default--7{margin-left:100%}.aem-Grid--default--7>.aem-GridColumn--default--1{width:14.28571429%}.aem-Grid--default--7>.aem-GridColumn--default--2{width:28.57142857%}.aem-Grid--default--7>.aem-GridColumn--default--3{width:42.85714286%}.aem-Grid--default--7>.aem-GridColumn--default--4{width:57.14285714%}.aem-Grid--default--7>.aem-GridColumn--default--5{width:71.42857143%}.aem-Grid--default--7>.aem-GridColumn--default--6{width:85.71428571%}.aem-Grid--default--7>.aem-GridColumn--default--7{width:100%}.aem-Grid--default--7>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--7>.aem-GridColumn--offset--default--1{margin-left:14.28571429%}.aem-Grid--default--7>.aem-GridColumn--offset--default--2{margin-left:28.57142857%}.aem-Grid--default--7>.aem-GridColumn--offset--default--3{margin-left:42.85714286%}.aem-Grid--default--7>.aem-GridColumn--offset--default--4{margin-left:57.14285714%}.aem-Grid--default--7>.aem-GridColumn--offset--default--5{margin-left:71.42857143%}.aem-Grid--default--7>.aem-GridColumn--offset--default--6{margin-left:85.71428571%}.aem-Grid--default--7>.aem-GridColumn--offset--default--7{margin-left:100%}.aem-Grid--8>.aem-GridColumn--default--1{width:12.5%}.aem-Grid--8>.aem-GridColumn--default--2{width:25%}.aem-Grid--8>.aem-GridColumn--default--3{width:37.5%}.aem-Grid--8>.aem-GridColumn--default--4{width:50%}.aem-Grid--8>.aem-GridColumn--default--5{width:62.5%}.aem-Grid--8>.aem-GridColumn--default--6{width:75%}.aem-Grid--8>.aem-GridColumn--default--7{width:87.5%}.aem-Grid--8>.aem-GridColumn--default--8{width:100%}.aem-Grid--8>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--8>.aem-GridColumn--offset--default--1{margin-left:12.5%}.aem-Grid--8>.aem-GridColumn--offset--default--2{margin-left:25%}.aem-Grid--8>.aem-GridColumn--offset--default--3{margin-left:37.5%}.aem-Grid--8>.aem-GridColumn--offset--default--4{margin-left:50%}.aem-Grid--8>.aem-GridColumn--offset--default--5{margin-left:62.5%}.aem-Grid--8>.aem-GridColumn--offset--default--6{margin-left:75%}.aem-Grid--8>.aem-GridColumn--offset--default--7{margin-left:87.5%}.aem-Grid--8>.aem-GridColumn--offset--default--8{margin-left:100%}.aem-Grid--default--8>.aem-GridColumn--default--1{width:12.5%}.aem-Grid--default--8>.aem-GridColumn--default--2{width:25%}.aem-Grid--default--8>.aem-GridColumn--default--3{width:37.5%}.aem-Grid--default--8>.aem-GridColumn--default--4{width:50%}.aem-Grid--default--8>.aem-GridColumn--default--5{width:62.5%}.aem-Grid--default--8>.aem-GridColumn--default--6{width:75%}.aem-Grid--default--8>.aem-GridColumn--default--7{width:87.5%}.aem-Grid--default--8>.aem-GridColumn--default--8{width:100%}.aem-Grid--default--8>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--8>.aem-GridColumn--offset--default--1{margin-left:12.5%}.aem-Grid--default--8>.aem-GridColumn--offset--default--2{margin-left:25%}.aem-Grid--default--8>.aem-GridColumn--offset--default--3{margin-left:37.5%}.aem-Grid--default--8>.aem-GridColumn--offset--default--4{margin-left:50%}.aem-Grid--default--8>.aem-GridColumn--offset--default--5{margin-left:62.5%}.aem-Grid--default--8>.aem-GridColumn--offset--default--6{margin-left:75%}.aem-Grid--default--8>.aem-GridColumn--offset--default--7{margin-left:87.5%}.aem-Grid--default--8>.aem-GridColumn--offset--default--8{margin-left:100%}.aem-Grid--9>.aem-GridColumn--default--1{width:11.11111111%}.aem-Grid--9>.aem-GridColumn--default--2{width:22.22222222%}.aem-Grid--9>.aem-GridColumn--default--3{width:33.33333333%}.aem-Grid--9>.aem-GridColumn--default--4{width:44.44444444%}.aem-Grid--9>.aem-GridColumn--default--5{width:55.55555556%}.aem-Grid--9>.aem-GridColumn--default--6{width:66.66666667%}.aem-Grid--9>.aem-GridColumn--default--7{width:77.77777778%}.aem-Grid--9>.aem-GridColumn--default--8{width:88.88888889%}.aem-Grid--9>.aem-GridColumn--default--9{width:100%}.aem-Grid--9>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--9>.aem-GridColumn--offset--default--1{margin-left:11.11111111%}.aem-Grid--9>.aem-GridColumn--offset--default--2{margin-left:22.22222222%}.aem-Grid--9>.aem-GridColumn--offset--default--3{margin-left:33.33333333%}.aem-Grid--9>.aem-GridColumn--offset--default--4{margin-left:44.44444444%}.aem-Grid--9>.aem-GridColumn--offset--default--5{margin-left:55.55555556%}.aem-Grid--9>.aem-GridColumn--offset--default--6{margin-left:66.66666667%}.aem-Grid--9>.aem-GridColumn--offset--default--7{margin-left:77.77777778%}.aem-Grid--9>.aem-GridColumn--offset--default--8{margin-left:88.88888889%}.aem-Grid--9>.aem-GridColumn--offset--default--9{margin-left:100%}.aem-Grid--default--9>.aem-GridColumn--default--1{width:11.11111111%}.aem-Grid--default--9>.aem-GridColumn--default--2{width:22.22222222%}.aem-Grid--default--9>.aem-GridColumn--default--3{width:33.33333333%}.aem-Grid--default--9>.aem-GridColumn--default--4{width:44.44444444%}.aem-Grid--default--9>.aem-GridColumn--default--5{width:55.55555556%}.aem-Grid--default--9>.aem-GridColumn--default--6{width:66.66666667%}.aem-Grid--default--9>.aem-GridColumn--default--7{width:77.77777778%}.aem-Grid--default--9>.aem-GridColumn--default--8{width:88.88888889%}.aem-Grid--default--9>.aem-GridColumn--default--9{width:100%}.aem-Grid--default--9>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--9>.aem-GridColumn--offset--default--1{margin-left:11.11111111%}.aem-Grid--default--9>.aem-GridColumn--offset--default--2{margin-left:22.22222222%}.aem-Grid--default--9>.aem-GridColumn--offset--default--3{margin-left:33.33333333%}.aem-Grid--default--9>.aem-GridColumn--offset--default--4{margin-left:44.44444444%}.aem-Grid--default--9>.aem-GridColumn--offset--default--5{margin-left:55.55555556%}.aem-Grid--default--9>.aem-GridColumn--offset--default--6{margin-left:66.66666667%}.aem-Grid--default--9>.aem-GridColumn--offset--default--7{margin-left:77.77777778%}.aem-Grid--default--9>.aem-GridColumn--offset--default--8{margin-left:88.88888889%}.aem-Grid--default--9>.aem-GridColumn--offset--default--9{margin-left:100%}.aem-Grid--10>.aem-GridColumn--default--1{width:10%}.aem-Grid--10>.aem-GridColumn--default--2{width:20%}.aem-Grid--10>.aem-GridColumn--default--3{width:30%}.aem-Grid--10>.aem-GridColumn--default--4{width:40%}.aem-Grid--10>.aem-GridColumn--default--5{width:50%}.aem-Grid--10>.aem-GridColumn--default--6{width:60%}.aem-Grid--10>.aem-GridColumn--default--7{width:70%}.aem-Grid--10>.aem-GridColumn--default--8{width:80%}.aem-Grid--10>.aem-GridColumn--default--9{width:90%}.aem-Grid--10>.aem-GridColumn--default--10{width:100%}.aem-Grid--10>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--10>.aem-GridColumn--offset--default--1{margin-left:10%}.aem-Grid--10>.aem-GridColumn--offset--default--2{margin-left:20%}.aem-Grid--10>.aem-GridColumn--offset--default--3{margin-left:30%}.aem-Grid--10>.aem-GridColumn--offset--default--4{margin-left:40%}.aem-Grid--10>.aem-GridColumn--offset--default--5{margin-left:50%}.aem-Grid--10>.aem-GridColumn--offset--default--6{margin-left:60%}.aem-Grid--10>.aem-GridColumn--offset--default--7{margin-left:70%}.aem-Grid--10>.aem-GridColumn--offset--default--8{margin-left:80%}.aem-Grid--10>.aem-GridColumn--offset--default--9{margin-left:90%}.aem-Grid--10>.aem-GridColumn--offset--default--10{margin-left:100%}.aem-Grid--default--10>.aem-GridColumn--default--1{width:10%}.aem-Grid--default--10>.aem-GridColumn--default--2{width:20%}.aem-Grid--default--10>.aem-GridColumn--default--3{width:30%}.aem-Grid--default--10>.aem-GridColumn--default--4{width:40%}.aem-Grid--default--10>.aem-GridColumn--default--5{width:50%}.aem-Grid--default--10>.aem-GridColumn--default--6{width:60%}.aem-Grid--default--10>.aem-GridColumn--default--7{width:70%}.aem-Grid--default--10>.aem-GridColumn--default--8{width:80%}.aem-Grid--default--10>.aem-GridColumn--default--9{width:90%}.aem-Grid--default--10>.aem-GridColumn--default--10{width:100%}.aem-Grid--default--10>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--10>.aem-GridColumn--offset--default--1{margin-left:10%}.aem-Grid--default--10>.aem-GridColumn--offset--default--2{margin-left:20%}.aem-Grid--default--10>.aem-GridColumn--offset--default--3{margin-left:30%}.aem-Grid--default--10>.aem-GridColumn--offset--default--4{margin-left:40%}.aem-Grid--default--10>.aem-GridColumn--offset--default--5{margin-left:50%}.aem-Grid--default--10>.aem-GridColumn--offset--default--6{margin-left:60%}.aem-Grid--default--10>.aem-GridColumn--offset--default--7{margin-left:70%}.aem-Grid--default--10>.aem-GridColumn--offset--default--8{margin-left:80%}.aem-Grid--default--10>.aem-GridColumn--offset--default--9{margin-left:90%}.aem-Grid--default--10>.aem-GridColumn--offset--default--10{margin-left:100%}.aem-Grid--11>.aem-GridColumn--default--1{width:9.09090909%}.aem-Grid--11>.aem-GridColumn--default--2{width:18.18181818%}.aem-Grid--11>.aem-GridColumn--default--3{width:27.27272727%}.aem-Grid--11>.aem-GridColumn--default--4{width:36.36363636%}.aem-Grid--11>.aem-GridColumn--default--5{width:45.45454545%}.aem-Grid--11>.aem-GridColumn--default--6{width:54.54545455%}.aem-Grid--11>.aem-GridColumn--default--7{width:63.63636364%}.aem-Grid--11>.aem-GridColumn--default--8{width:72.72727273%}.aem-Grid--11>.aem-GridColumn--default--9{width:81.81818182%}.aem-Grid--11>.aem-GridColumn--default--10{width:90.90909091%}.aem-Grid--11>.aem-GridColumn--default--11{width:100%}.aem-Grid--11>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--11>.aem-GridColumn--offset--default--1{margin-left:9.09090909%}.aem-Grid--11>.aem-GridColumn--offset--default--2{margin-left:18.18181818%}.aem-Grid--11>.aem-GridColumn--offset--default--3{margin-left:27.27272727%}.aem-Grid--11>.aem-GridColumn--offset--default--4{margin-left:36.36363636%}.aem-Grid--11>.aem-GridColumn--offset--default--5{margin-left:45.45454545%}.aem-Grid--11>.aem-GridColumn--offset--default--6{margin-left:54.54545455%}.aem-Grid--11>.aem-GridColumn--offset--default--7{margin-left:63.63636364%}.aem-Grid--11>.aem-GridColumn--offset--default--8{margin-left:72.72727273%}.aem-Grid--11>.aem-GridColumn--offset--default--9{margin-left:81.81818182%}.aem-Grid--11>.aem-GridColumn--offset--default--10{margin-left:90.90909091%}.aem-Grid--11>.aem-GridColumn--offset--default--11{margin-left:100%}.aem-Grid--default--11>.aem-GridColumn--default--1{width:9.09090909%}.aem-Grid--default--11>.aem-GridColumn--default--2{width:18.18181818%}.aem-Grid--default--11>.aem-GridColumn--default--3{width:27.27272727%}.aem-Grid--default--11>.aem-GridColumn--default--4{width:36.36363636%}.aem-Grid--default--11>.aem-GridColumn--default--5{width:45.45454545%}.aem-Grid--default--11>.aem-GridColumn--default--6{width:54.54545455%}.aem-Grid--default--11>.aem-GridColumn--default--7{width:63.63636364%}.aem-Grid--default--11>.aem-GridColumn--default--8{width:72.72727273%}.aem-Grid--default--11>.aem-GridColumn--default--9{width:81.81818182%}.aem-Grid--default--11>.aem-GridColumn--default--10{width:90.90909091%}.aem-Grid--default--11>.aem-GridColumn--default--11{width:100%}.aem-Grid--default--11>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--11>.aem-GridColumn--offset--default--1{margin-left:9.09090909%}.aem-Grid--default--11>.aem-GridColumn--offset--default--2{margin-left:18.18181818%}.aem-Grid--default--11>.aem-GridColumn--offset--default--3{margin-left:27.27272727%}.aem-Grid--default--11>.aem-GridColumn--offset--default--4{margin-left:36.36363636%}.aem-Grid--default--11>.aem-GridColumn--offset--default--5{margin-left:45.45454545%}.aem-Grid--default--11>.aem-GridColumn--offset--default--6{margin-left:54.54545455%}.aem-Grid--default--11>.aem-GridColumn--offset--default--7{margin-left:63.63636364%}.aem-Grid--default--11>.aem-GridColumn--offset--default--8{margin-left:72.72727273%}.aem-Grid--default--11>.aem-GridColumn--offset--default--9{margin-left:81.81818182%}.aem-Grid--default--11>.aem-GridColumn--offset--default--10{margin-left:90.90909091%}.aem-Grid--default--11>.aem-GridColumn--offset--default--11{margin-left:100%}.aem-Grid--12>.aem-GridColumn--default--1{width:8.33333333%}.aem-Grid--12>.aem-GridColumn--default--2{width:16.66666667%}.aem-Grid--12>.aem-GridColumn--default--3{width:25%}.aem-Grid--12>.aem-GridColumn--default--4{width:33.33333333%}.aem-Grid--12>.aem-GridColumn--default--5{width:41.66666667%}.aem-Grid--12>.aem-GridColumn--default--6{width:50%}.aem-Grid--12>.aem-GridColumn--default--7{width:58.33333333%}.aem-Grid--12>.aem-GridColumn--default--8{width:66.66666667%}.aem-Grid--12>.aem-GridColumn--default--9{width:75%}.aem-Grid--12>.aem-GridColumn--default--10{width:83.33333333%}.aem-Grid--12>.aem-GridColumn--default--11{width:91.66666667%}.aem-Grid--12>.aem-GridColumn--default--12{width:100%}.aem-Grid--12>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--12>.aem-GridColumn--offset--default--1{margin-left:8.33333333%}.aem-Grid--12>.aem-GridColumn--offset--default--2{margin-left:16.66666667%}.aem-Grid--12>.aem-GridColumn--offset--default--3{margin-left:25%}.aem-Grid--12>.aem-GridColumn--offset--default--4{margin-left:33.33333333%}.aem-Grid--12>.aem-GridColumn--offset--default--5{margin-left:41.66666667%}.aem-Grid--12>.aem-GridColumn--offset--default--6{margin-left:50%}.aem-Grid--12>.aem-GridColumn--offset--default--7{margin-left:58.33333333%}.aem-Grid--12>.aem-GridColumn--offset--default--8{margin-left:66.66666667%}.aem-Grid--12>.aem-GridColumn--offset--default--9{margin-left:75%}.aem-Grid--12>.aem-GridColumn--offset--default--10{margin-left:83.33333333%}.aem-Grid--12>.aem-GridColumn--offset--default--11{margin-left:91.66666667%}.aem-Grid--12>.aem-GridColumn--offset--default--12{margin-left:100%}.aem-Grid--default--12>.aem-GridColumn--default--1{width:8.33333333%}.aem-Grid--default--12>.aem-GridColumn--default--2{width:16.66666667%}.aem-Grid--default--12>.aem-GridColumn--default--3{width:25%}.aem-Grid--default--12>.aem-GridColumn--default--4{width:33.33333333%}.aem-Grid--default--12>.aem-GridColumn--default--5{width:41.66666667%}.aem-Grid--default--12>.aem-GridColumn--default--6{width:50%}.aem-Grid--default--12>.aem-GridColumn--default--7{width:58.33333333%}.aem-Grid--default--12>.aem-GridColumn--default--8{width:66.66666667%}.aem-Grid--default--12>.aem-GridColumn--default--9{width:75%}.aem-Grid--default--12>.aem-GridColumn--default--10{width:83.33333333%}.aem-Grid--default--12>.aem-GridColumn--default--11{width:91.66666667%}.aem-Grid--default--12>.aem-GridColumn--default--12{width:100%}.aem-Grid--default--12>.aem-GridColumn--offset--default--0{margin-left:0}.aem-Grid--default--12>.aem-GridColumn--offset--default--1{margin-left:8.33333333%}.aem-Grid--default--12>.aem-GridColumn--offset--default--2{margin-left:16.66666667%}.aem-Grid--default--12>.aem-GridColumn--offset--default--3{margin-left:25%}.aem-Grid--default--12>.aem-GridColumn--offset--default--4{margin-left:33.33333333%}.aem-Grid--default--12>.aem-GridColumn--offset--default--5{margin-left:41.66666667%}.aem-Grid--default--12>.aem-GridColumn--offset--default--6{margin-left:50%}.aem-Grid--default--12>.aem-GridColumn--offset--default--7{margin-left:58.33333333%}.aem-Grid--default--12>.aem-GridColumn--offset--default--8{margin-left:66.66666667%}.aem-Grid--default--12>.aem-GridColumn--offset--default--9{margin-left:75%}.aem-Grid--default--12>.aem-GridColumn--offset--default--10{margin-left:83.33333333%}.aem-Grid--default--12>.aem-GridColumn--offset--default--11{margin-left:91.66666667%}.aem-Grid--default--12>.aem-GridColumn--offset--default--12{margin-left:100%}.aem-Grid>.aem-GridColumn--default--newline{clear:both!important;display:block}.aem-Grid>.aem-GridColumn--default--none{clear:none!important;display:block;float:left}.aem-Grid>.aem-GridColumn--default--hide{display:none}.aem-GridColumn{padding:0 1.2rem}@media(max-width:47.99em){.aem-Grid--1>.aem-GridColumn--sm--1{width:100%}.aem-Grid--1>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--1>.aem-GridColumn--offset--sm--1{margin-left:100%}.aem-Grid--sm--1>.aem-GridColumn--sm--1{width:100%}.aem-Grid--sm--1>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--1>.aem-GridColumn--offset--sm--1{margin-left:100%}.aem-Grid--2>.aem-GridColumn--sm--1{width:50%}.aem-Grid--2>.aem-GridColumn--sm--2{width:100%}.aem-Grid--2>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--2>.aem-GridColumn--offset--sm--1{margin-left:50%}.aem-Grid--2>.aem-GridColumn--offset--sm--2{margin-left:100%}.aem-Grid--sm--2>.aem-GridColumn--sm--1{width:50%}.aem-Grid--sm--2>.aem-GridColumn--sm--2{width:100%}.aem-Grid--sm--2>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--2>.aem-GridColumn--offset--sm--1{margin-left:50%}.aem-Grid--sm--2>.aem-GridColumn--offset--sm--2{margin-left:100%}.aem-Grid--3>.aem-GridColumn--sm--1{width:33.33333333%}.aem-Grid--3>.aem-GridColumn--sm--2{width:66.66666667%}.aem-Grid--3>.aem-GridColumn--sm--3{width:100%}.aem-Grid--3>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--3>.aem-GridColumn--offset--sm--1{margin-left:33.33333333%}.aem-Grid--3>.aem-GridColumn--offset--sm--2{margin-left:66.66666667%}.aem-Grid--3>.aem-GridColumn--offset--sm--3{margin-left:100%}.aem-Grid--sm--3>.aem-GridColumn--sm--1{width:33.33333333%}.aem-Grid--sm--3>.aem-GridColumn--sm--2{width:66.66666667%}.aem-Grid--sm--3>.aem-GridColumn--sm--3{width:100%}.aem-Grid--sm--3>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--3>.aem-GridColumn--offset--sm--1{margin-left:33.33333333%}.aem-Grid--sm--3>.aem-GridColumn--offset--sm--2{margin-left:66.66666667%}.aem-Grid--sm--3>.aem-GridColumn--offset--sm--3{margin-left:100%}.aem-Grid--4>.aem-GridColumn--sm--1{width:25%}.aem-Grid--4>.aem-GridColumn--sm--2{width:50%}.aem-Grid--4>.aem-GridColumn--sm--3{width:75%}.aem-Grid--4>.aem-GridColumn--sm--4{width:100%}.aem-Grid--4>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--4>.aem-GridColumn--offset--sm--1{margin-left:25%}.aem-Grid--4>.aem-GridColumn--offset--sm--2{margin-left:50%}.aem-Grid--4>.aem-GridColumn--offset--sm--3{margin-left:75%}.aem-Grid--4>.aem-GridColumn--offset--sm--4{margin-left:100%}.aem-Grid--sm--4>.aem-GridColumn--sm--1{width:25%}.aem-Grid--sm--4>.aem-GridColumn--sm--2{width:50%}.aem-Grid--sm--4>.aem-GridColumn--sm--3{width:75%}.aem-Grid--sm--4>.aem-GridColumn--sm--4{width:100%}.aem-Grid--sm--4>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--4>.aem-GridColumn--offset--sm--1{margin-left:25%}.aem-Grid--sm--4>.aem-GridColumn--offset--sm--2{margin-left:50%}.aem-Grid--sm--4>.aem-GridColumn--offset--sm--3{margin-left:75%}.aem-Grid--sm--4>.aem-GridColumn--offset--sm--4{margin-left:100%}.aem-Grid--5>.aem-GridColumn--sm--1{width:20%}.aem-Grid--5>.aem-GridColumn--sm--2{width:40%}.aem-Grid--5>.aem-GridColumn--sm--3{width:60%}.aem-Grid--5>.aem-GridColumn--sm--4{width:80%}.aem-Grid--5>.aem-GridColumn--sm--5{width:100%}.aem-Grid--5>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--5>.aem-GridColumn--offset--sm--1{margin-left:20%}.aem-Grid--5>.aem-GridColumn--offset--sm--2{margin-left:40%}.aem-Grid--5>.aem-GridColumn--offset--sm--3{margin-left:60%}.aem-Grid--5>.aem-GridColumn--offset--sm--4{margin-left:80%}.aem-Grid--5>.aem-GridColumn--offset--sm--5{margin-left:100%}.aem-Grid--sm--5>.aem-GridColumn--sm--1{width:20%}.aem-Grid--sm--5>.aem-GridColumn--sm--2{width:40%}.aem-Grid--sm--5>.aem-GridColumn--sm--3{width:60%}.aem-Grid--sm--5>.aem-GridColumn--sm--4{width:80%}.aem-Grid--sm--5>.aem-GridColumn--sm--5{width:100%}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--1{margin-left:20%}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--2{margin-left:40%}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--3{margin-left:60%}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--4{margin-left:80%}.aem-Grid--sm--5>.aem-GridColumn--offset--sm--5{margin-left:100%}.aem-Grid--6>.aem-GridColumn--sm--1{width:16.66666667%}.aem-Grid--6>.aem-GridColumn--sm--2{width:33.33333333%}.aem-Grid--6>.aem-GridColumn--sm--3{width:50%}.aem-Grid--6>.aem-GridColumn--sm--4{width:66.66666667%}.aem-Grid--6>.aem-GridColumn--sm--5{width:83.33333333%}.aem-Grid--6>.aem-GridColumn--sm--6{width:100%}.aem-Grid--6>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--6>.aem-GridColumn--offset--sm--1{margin-left:16.66666667%}.aem-Grid--6>.aem-GridColumn--offset--sm--2{margin-left:33.33333333%}.aem-Grid--6>.aem-GridColumn--offset--sm--3{margin-left:50%}.aem-Grid--6>.aem-GridColumn--offset--sm--4{margin-left:66.66666667%}.aem-Grid--6>.aem-GridColumn--offset--sm--5{margin-left:83.33333333%}.aem-Grid--6>.aem-GridColumn--offset--sm--6{margin-left:100%}.aem-Grid--sm--6>.aem-GridColumn--sm--1{width:16.66666667%}.aem-Grid--sm--6>.aem-GridColumn--sm--2{width:33.33333333%}.aem-Grid--sm--6>.aem-GridColumn--sm--3{width:50%}.aem-Grid--sm--6>.aem-GridColumn--sm--4{width:66.66666667%}.aem-Grid--sm--6>.aem-GridColumn--sm--5{width:83.33333333%}.aem-Grid--sm--6>.aem-GridColumn--sm--6{width:100%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--1{margin-left:16.66666667%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--2{margin-left:33.33333333%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--3{margin-left:50%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--4{margin-left:66.66666667%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--5{margin-left:83.33333333%}.aem-Grid--sm--6>.aem-GridColumn--offset--sm--6{margin-left:100%}.aem-Grid--7>.aem-GridColumn--sm--1{width:14.28571429%}.aem-Grid--7>.aem-GridColumn--sm--2{width:28.57142857%}.aem-Grid--7>.aem-GridColumn--sm--3{width:42.85714286%}.aem-Grid--7>.aem-GridColumn--sm--4{width:57.14285714%}.aem-Grid--7>.aem-GridColumn--sm--5{width:71.42857143%}.aem-Grid--7>.aem-GridColumn--sm--6{width:85.71428571%}.aem-Grid--7>.aem-GridColumn--sm--7{width:100%}.aem-Grid--7>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--7>.aem-GridColumn--offset--sm--1{margin-left:14.28571429%}.aem-Grid--7>.aem-GridColumn--offset--sm--2{margin-left:28.57142857%}.aem-Grid--7>.aem-GridColumn--offset--sm--3{margin-left:42.85714286%}.aem-Grid--7>.aem-GridColumn--offset--sm--4{margin-left:57.14285714%}.aem-Grid--7>.aem-GridColumn--offset--sm--5{margin-left:71.42857143%}.aem-Grid--7>.aem-GridColumn--offset--sm--6{margin-left:85.71428571%}.aem-Grid--7>.aem-GridColumn--offset--sm--7{margin-left:100%}.aem-Grid--sm--7>.aem-GridColumn--sm--1{width:14.28571429%}.aem-Grid--sm--7>.aem-GridColumn--sm--2{width:28.57142857%}.aem-Grid--sm--7>.aem-GridColumn--sm--3{width:42.85714286%}.aem-Grid--sm--7>.aem-GridColumn--sm--4{width:57.14285714%}.aem-Grid--sm--7>.aem-GridColumn--sm--5{width:71.42857143%}.aem-Grid--sm--7>.aem-GridColumn--sm--6{width:85.71428571%}.aem-Grid--sm--7>.aem-GridColumn--sm--7{width:100%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--1{margin-left:14.28571429%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--2{margin-left:28.57142857%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--3{margin-left:42.85714286%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--4{margin-left:57.14285714%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--5{margin-left:71.42857143%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--6{margin-left:85.71428571%}.aem-Grid--sm--7>.aem-GridColumn--offset--sm--7{margin-left:100%}.aem-Grid--8>.aem-GridColumn--sm--1{width:12.5%}.aem-Grid--8>.aem-GridColumn--sm--2{width:25%}.aem-Grid--8>.aem-GridColumn--sm--3{width:37.5%}.aem-Grid--8>.aem-GridColumn--sm--4{width:50%}.aem-Grid--8>.aem-GridColumn--sm--5{width:62.5%}.aem-Grid--8>.aem-GridColumn--sm--6{width:75%}.aem-Grid--8>.aem-GridColumn--sm--7{width:87.5%}.aem-Grid--8>.aem-GridColumn--sm--8{width:100%}.aem-Grid--8>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--8>.aem-GridColumn--offset--sm--1{margin-left:12.5%}.aem-Grid--8>.aem-GridColumn--offset--sm--2{margin-left:25%}.aem-Grid--8>.aem-GridColumn--offset--sm--3{margin-left:37.5%}.aem-Grid--8>.aem-GridColumn--offset--sm--4{margin-left:50%}.aem-Grid--8>.aem-GridColumn--offset--sm--5{margin-left:62.5%}.aem-Grid--8>.aem-GridColumn--offset--sm--6{margin-left:75%}.aem-Grid--8>.aem-GridColumn--offset--sm--7{margin-left:87.5%}.aem-Grid--8>.aem-GridColumn--offset--sm--8{margin-left:100%}.aem-Grid--sm--8>.aem-GridColumn--sm--1{width:12.5%}.aem-Grid--sm--8>.aem-GridColumn--sm--2{width:25%}.aem-Grid--sm--8>.aem-GridColumn--sm--3{width:37.5%}.aem-Grid--sm--8>.aem-GridColumn--sm--4{width:50%}.aem-Grid--sm--8>.aem-GridColumn--sm--5{width:62.5%}.aem-Grid--sm--8>.aem-GridColumn--sm--6{width:75%}.aem-Grid--sm--8>.aem-GridColumn--sm--7{width:87.5%}.aem-Grid--sm--8>.aem-GridColumn--sm--8{width:100%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--1{margin-left:12.5%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--2{margin-left:25%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--3{margin-left:37.5%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--4{margin-left:50%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--5{margin-left:62.5%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--6{margin-left:75%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--7{margin-left:87.5%}.aem-Grid--sm--8>.aem-GridColumn--offset--sm--8{margin-left:100%}.aem-Grid--9>.aem-GridColumn--sm--1{width:11.11111111%}.aem-Grid--9>.aem-GridColumn--sm--2{width:22.22222222%}.aem-Grid--9>.aem-GridColumn--sm--3{width:33.33333333%}.aem-Grid--9>.aem-GridColumn--sm--4{width:44.44444444%}.aem-Grid--9>.aem-GridColumn--sm--5{width:55.55555556%}.aem-Grid--9>.aem-GridColumn--sm--6{width:66.66666667%}.aem-Grid--9>.aem-GridColumn--sm--7{width:77.77777778%}.aem-Grid--9>.aem-GridColumn--sm--8{width:88.88888889%}.aem-Grid--9>.aem-GridColumn--sm--9{width:100%}.aem-Grid--9>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--9>.aem-GridColumn--offset--sm--1{margin-left:11.11111111%}.aem-Grid--9>.aem-GridColumn--offset--sm--2{margin-left:22.22222222%}.aem-Grid--9>.aem-GridColumn--offset--sm--3{margin-left:33.33333333%}.aem-Grid--9>.aem-GridColumn--offset--sm--4{margin-left:44.44444444%}.aem-Grid--9>.aem-GridColumn--offset--sm--5{margin-left:55.55555556%}.aem-Grid--9>.aem-GridColumn--offset--sm--6{margin-left:66.66666667%}.aem-Grid--9>.aem-GridColumn--offset--sm--7{margin-left:77.77777778%}.aem-Grid--9>.aem-GridColumn--offset--sm--8{margin-left:88.88888889%}.aem-Grid--9>.aem-GridColumn--offset--sm--9{margin-left:100%}.aem-Grid--sm--9>.aem-GridColumn--sm--1{width:11.11111111%}.aem-Grid--sm--9>.aem-GridColumn--sm--2{width:22.22222222%}.aem-Grid--sm--9>.aem-GridColumn--sm--3{width:33.33333333%}.aem-Grid--sm--9>.aem-GridColumn--sm--4{width:44.44444444%}.aem-Grid--sm--9>.aem-GridColumn--sm--5{width:55.55555556%}.aem-Grid--sm--9>.aem-GridColumn--sm--6{width:66.66666667%}.aem-Grid--sm--9>.aem-GridColumn--sm--7{width:77.77777778%}.aem-Grid--sm--9>.aem-GridColumn--sm--8{width:88.88888889%}.aem-Grid--sm--9>.aem-GridColumn--sm--9{width:100%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--1{margin-left:11.11111111%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--2{margin-left:22.22222222%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--3{margin-left:33.33333333%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--4{margin-left:44.44444444%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--5{margin-left:55.55555556%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--6{margin-left:66.66666667%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--7{margin-left:77.77777778%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--8{margin-left:88.88888889%}.aem-Grid--sm--9>.aem-GridColumn--offset--sm--9{margin-left:100%}.aem-Grid--10>.aem-GridColumn--sm--1{width:10%}.aem-Grid--10>.aem-GridColumn--sm--2{width:20%}.aem-Grid--10>.aem-GridColumn--sm--3{width:30%}.aem-Grid--10>.aem-GridColumn--sm--4{width:40%}.aem-Grid--10>.aem-GridColumn--sm--5{width:50%}.aem-Grid--10>.aem-GridColumn--sm--6{width:60%}.aem-Grid--10>.aem-GridColumn--sm--7{width:70%}.aem-Grid--10>.aem-GridColumn--sm--8{width:80%}.aem-Grid--10>.aem-GridColumn--sm--9{width:90%}.aem-Grid--10>.aem-GridColumn--sm--10{width:100%}.aem-Grid--10>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--10>.aem-GridColumn--offset--sm--1{margin-left:10%}.aem-Grid--10>.aem-GridColumn--offset--sm--2{margin-left:20%}.aem-Grid--10>.aem-GridColumn--offset--sm--3{margin-left:30%}.aem-Grid--10>.aem-GridColumn--offset--sm--4{margin-left:40%}.aem-Grid--10>.aem-GridColumn--offset--sm--5{margin-left:50%}.aem-Grid--10>.aem-GridColumn--offset--sm--6{margin-left:60%}.aem-Grid--10>.aem-GridColumn--offset--sm--7{margin-left:70%}.aem-Grid--10>.aem-GridColumn--offset--sm--8{margin-left:80%}.aem-Grid--10>.aem-GridColumn--offset--sm--9{margin-left:90%}.aem-Grid--10>.aem-GridColumn--offset--sm--10{margin-left:100%}.aem-Grid--sm--10>.aem-GridColumn--sm--1{width:10%}.aem-Grid--sm--10>.aem-GridColumn--sm--2{width:20%}.aem-Grid--sm--10>.aem-GridColumn--sm--3{width:30%}.aem-Grid--sm--10>.aem-GridColumn--sm--4{width:40%}.aem-Grid--sm--10>.aem-GridColumn--sm--5{width:50%}.aem-Grid--sm--10>.aem-GridColumn--sm--6{width:60%}.aem-Grid--sm--10>.aem-GridColumn--sm--7{width:70%}.aem-Grid--sm--10>.aem-GridColumn--sm--8{width:80%}.aem-Grid--sm--10>.aem-GridColumn--sm--9{width:90%}.aem-Grid--sm--10>.aem-GridColumn--sm--10{width:100%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--1{margin-left:10%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--2{margin-left:20%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--3{margin-left:30%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--4{margin-left:40%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--5{margin-left:50%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--6{margin-left:60%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--7{margin-left:70%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--8{margin-left:80%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--9{margin-left:90%}.aem-Grid--sm--10>.aem-GridColumn--offset--sm--10{margin-left:100%}.aem-Grid--11>.aem-GridColumn--sm--1{width:9.09090909%}.aem-Grid--11>.aem-GridColumn--sm--2{width:18.18181818%}.aem-Grid--11>.aem-GridColumn--sm--3{width:27.27272727%}.aem-Grid--11>.aem-GridColumn--sm--4{width:36.36363636%}.aem-Grid--11>.aem-GridColumn--sm--5{width:45.45454545%}.aem-Grid--11>.aem-GridColumn--sm--6{width:54.54545455%}.aem-Grid--11>.aem-GridColumn--sm--7{width:63.63636364%}.aem-Grid--11>.aem-GridColumn--sm--8{width:72.72727273%}.aem-Grid--11>.aem-GridColumn--sm--9{width:81.81818182%}.aem-Grid--11>.aem-GridColumn--sm--10{width:90.90909091%}.aem-Grid--11>.aem-GridColumn--sm--11{width:100%}.aem-Grid--11>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--11>.aem-GridColumn--offset--sm--1{margin-left:9.09090909%}.aem-Grid--11>.aem-GridColumn--offset--sm--2{margin-left:18.18181818%}.aem-Grid--11>.aem-GridColumn--offset--sm--3{margin-left:27.27272727%}.aem-Grid--11>.aem-GridColumn--offset--sm--4{margin-left:36.36363636%}.aem-Grid--11>.aem-GridColumn--offset--sm--5{margin-left:45.45454545%}.aem-Grid--11>.aem-GridColumn--offset--sm--6{margin-left:54.54545455%}.aem-Grid--11>.aem-GridColumn--offset--sm--7{margin-left:63.63636364%}.aem-Grid--11>.aem-GridColumn--offset--sm--8{margin-left:72.72727273%}.aem-Grid--11>.aem-GridColumn--offset--sm--9{margin-left:81.81818182%}.aem-Grid--11>.aem-GridColumn--offset--sm--10{margin-left:90.90909091%}.aem-Grid--11>.aem-GridColumn--offset--sm--11{margin-left:100%}.aem-Grid--sm--11>.aem-GridColumn--sm--1{width:9.09090909%}.aem-Grid--sm--11>.aem-GridColumn--sm--2{width:18.18181818%}.aem-Grid--sm--11>.aem-GridColumn--sm--3{width:27.27272727%}.aem-Grid--sm--11>.aem-GridColumn--sm--4{width:36.36363636%}.aem-Grid--sm--11>.aem-GridColumn--sm--5{width:45.45454545%}.aem-Grid--sm--11>.aem-GridColumn--sm--6{width:54.54545455%}.aem-Grid--sm--11>.aem-GridColumn--sm--7{width:63.63636364%}.aem-Grid--sm--11>.aem-GridColumn--sm--8{width:72.72727273%}.aem-Grid--sm--11>.aem-GridColumn--sm--9{width:81.81818182%}.aem-Grid--sm--11>.aem-GridColumn--sm--10{width:90.90909091%}.aem-Grid--sm--11>.aem-GridColumn--sm--11{width:100%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--1{margin-left:9.09090909%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--2{margin-left:18.18181818%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--3{margin-left:27.27272727%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--4{margin-left:36.36363636%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--5{margin-left:45.45454545%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--6{margin-left:54.54545455%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--7{margin-left:63.63636364%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--8{margin-left:72.72727273%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--9{margin-left:81.81818182%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--10{margin-left:90.90909091%}.aem-Grid--sm--11>.aem-GridColumn--offset--sm--11{margin-left:100%}.aem-Grid--12>.aem-GridColumn--sm--1{width:8.33333333%}.aem-Grid--12>.aem-GridColumn--sm--2{width:16.66666667%}.aem-Grid--12>.aem-GridColumn--sm--3{width:25%}.aem-Grid--12>.aem-GridColumn--sm--4{width:33.33333333%}.aem-Grid--12>.aem-GridColumn--sm--5{width:41.66666667%}.aem-Grid--12>.aem-GridColumn--sm--6{width:50%}.aem-Grid--12>.aem-GridColumn--sm--7{width:58.33333333%}.aem-Grid--12>.aem-GridColumn--sm--8{width:66.66666667%}.aem-Grid--12>.aem-GridColumn--sm--9{width:75%}.aem-Grid--12>.aem-GridColumn--sm--10{width:83.33333333%}.aem-Grid--12>.aem-GridColumn--sm--11{width:91.66666667%}.aem-Grid--12>.aem-GridColumn--sm--12{width:100%}.aem-Grid--12>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--12>.aem-GridColumn--offset--sm--1{margin-left:8.33333333%}.aem-Grid--12>.aem-GridColumn--offset--sm--2{margin-left:16.66666667%}.aem-Grid--12>.aem-GridColumn--offset--sm--3{margin-left:25%}.aem-Grid--12>.aem-GridColumn--offset--sm--4{margin-left:33.33333333%}.aem-Grid--12>.aem-GridColumn--offset--sm--5{margin-left:41.66666667%}.aem-Grid--12>.aem-GridColumn--offset--sm--6{margin-left:50%}.aem-Grid--12>.aem-GridColumn--offset--sm--7{margin-left:58.33333333%}.aem-Grid--12>.aem-GridColumn--offset--sm--8{margin-left:66.66666667%}.aem-Grid--12>.aem-GridColumn--offset--sm--9{margin-left:75%}.aem-Grid--12>.aem-GridColumn--offset--sm--10{margin-left:83.33333333%}.aem-Grid--12>.aem-GridColumn--offset--sm--11{margin-left:91.66666667%}.aem-Grid--12>.aem-GridColumn--offset--sm--12{margin-left:100%}.aem-Grid--sm--12>.aem-GridColumn--sm--1{width:8.33333333%}.aem-Grid--sm--12>.aem-GridColumn--sm--2{width:16.66666667%}.aem-Grid--sm--12>.aem-GridColumn--sm--3{width:25%}.aem-Grid--sm--12>.aem-GridColumn--sm--4{width:33.33333333%}.aem-Grid--sm--12>.aem-GridColumn--sm--5{width:41.66666667%}.aem-Grid--sm--12>.aem-GridColumn--sm--6{width:50%}.aem-Grid--sm--12>.aem-GridColumn--sm--7{width:58.33333333%}.aem-Grid--sm--12>.aem-GridColumn--sm--8{width:66.66666667%}.aem-Grid--sm--12>.aem-GridColumn--sm--9{width:75%}.aem-Grid--sm--12>.aem-GridColumn--sm--10{width:83.33333333%}.aem-Grid--sm--12>.aem-GridColumn--sm--11{width:91.66666667%}.aem-Grid--sm--12>.aem-GridColumn--sm--12{width:100%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--0{margin-left:0}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--1{margin-left:8.33333333%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--2{margin-left:16.66666667%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--3{margin-left:25%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--4{margin-left:33.33333333%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--5{margin-left:41.66666667%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--6{margin-left:50%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--7{margin-left:58.33333333%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--8{margin-left:66.66666667%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--9{margin-left:75%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--10{margin-left:83.33333333%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--11{margin-left:91.66666667%}.aem-Grid--sm--12>.aem-GridColumn--offset--sm--12{margin-left:100%}.aem-Grid>.aem-GridColumn--sm--newline{clear:both!important;display:block}.aem-Grid>.aem-GridColumn--sm--none{clear:none!important;display:block;float:left}.aem-Grid>.aem-GridColumn--sm--hide{display:none}.aem-GridColumn{padding:0 .8rem}}@media(min-width:48em)and (max-width:61.99em){.aem-Grid--1>.aem-GridColumn--md--1{width:100%}.aem-Grid--1>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--1>.aem-GridColumn--offset--md--1{margin-left:100%}.aem-Grid--md--1>.aem-GridColumn--md--1{width:100%}.aem-Grid--md--1>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--1>.aem-GridColumn--offset--md--1{margin-left:100%}.aem-Grid--2>.aem-GridColumn--md--1{width:50%}.aem-Grid--2>.aem-GridColumn--md--2{width:100%}.aem-Grid--2>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--2>.aem-GridColumn--offset--md--1{margin-left:50%}.aem-Grid--2>.aem-GridColumn--offset--md--2{margin-left:100%}.aem-Grid--md--2>.aem-GridColumn--md--1{width:50%}.aem-Grid--md--2>.aem-GridColumn--md--2{width:100%}.aem-Grid--md--2>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--2>.aem-GridColumn--offset--md--1{margin-left:50%}.aem-Grid--md--2>.aem-GridColumn--offset--md--2{margin-left:100%}.aem-Grid--3>.aem-GridColumn--md--1{width:33.33333333%}.aem-Grid--3>.aem-GridColumn--md--2{width:66.66666667%}.aem-Grid--3>.aem-GridColumn--md--3{width:100%}.aem-Grid--3>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--3>.aem-GridColumn--offset--md--1{margin-left:33.33333333%}.aem-Grid--3>.aem-GridColumn--offset--md--2{margin-left:66.66666667%}.aem-Grid--3>.aem-GridColumn--offset--md--3{margin-left:100%}.aem-Grid--md--3>.aem-GridColumn--md--1{width:33.33333333%}.aem-Grid--md--3>.aem-GridColumn--md--2{width:66.66666667%}.aem-Grid--md--3>.aem-GridColumn--md--3{width:100%}.aem-Grid--md--3>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--3>.aem-GridColumn--offset--md--1{margin-left:33.33333333%}.aem-Grid--md--3>.aem-GridColumn--offset--md--2{margin-left:66.66666667%}.aem-Grid--md--3>.aem-GridColumn--offset--md--3{margin-left:100%}.aem-Grid--4>.aem-GridColumn--md--1{width:25%}.aem-Grid--4>.aem-GridColumn--md--2{width:50%}.aem-Grid--4>.aem-GridColumn--md--3{width:75%}.aem-Grid--4>.aem-GridColumn--md--4{width:100%}.aem-Grid--4>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--4>.aem-GridColumn--offset--md--1{margin-left:25%}.aem-Grid--4>.aem-GridColumn--offset--md--2{margin-left:50%}.aem-Grid--4>.aem-GridColumn--offset--md--3{margin-left:75%}.aem-Grid--4>.aem-GridColumn--offset--md--4{margin-left:100%}.aem-Grid--md--4>.aem-GridColumn--md--1{width:25%}.aem-Grid--md--4>.aem-GridColumn--md--2{width:50%}.aem-Grid--md--4>.aem-GridColumn--md--3{width:75%}.aem-Grid--md--4>.aem-GridColumn--md--4{width:100%}.aem-Grid--md--4>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--4>.aem-GridColumn--offset--md--1{margin-left:25%}.aem-Grid--md--4>.aem-GridColumn--offset--md--2{margin-left:50%}.aem-Grid--md--4>.aem-GridColumn--offset--md--3{margin-left:75%}.aem-Grid--md--4>.aem-GridColumn--offset--md--4{margin-left:100%}.aem-Grid--5>.aem-GridColumn--md--1{width:20%}.aem-Grid--5>.aem-GridColumn--md--2{width:40%}.aem-Grid--5>.aem-GridColumn--md--3{width:60%}.aem-Grid--5>.aem-GridColumn--md--4{width:80%}.aem-Grid--5>.aem-GridColumn--md--5{width:100%}.aem-Grid--5>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--5>.aem-GridColumn--offset--md--1{margin-left:20%}.aem-Grid--5>.aem-GridColumn--offset--md--2{margin-left:40%}.aem-Grid--5>.aem-GridColumn--offset--md--3{margin-left:60%}.aem-Grid--5>.aem-GridColumn--offset--md--4{margin-left:80%}.aem-Grid--5>.aem-GridColumn--offset--md--5{margin-left:100%}.aem-Grid--md--5>.aem-GridColumn--md--1{width:20%}.aem-Grid--md--5>.aem-GridColumn--md--2{width:40%}.aem-Grid--md--5>.aem-GridColumn--md--3{width:60%}.aem-Grid--md--5>.aem-GridColumn--md--4{width:80%}.aem-Grid--md--5>.aem-GridColumn--md--5{width:100%}.aem-Grid--md--5>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--5>.aem-GridColumn--offset--md--1{margin-left:20%}.aem-Grid--md--5>.aem-GridColumn--offset--md--2{margin-left:40%}.aem-Grid--md--5>.aem-GridColumn--offset--md--3{margin-left:60%}.aem-Grid--md--5>.aem-GridColumn--offset--md--4{margin-left:80%}.aem-Grid--md--5>.aem-GridColumn--offset--md--5{margin-left:100%}.aem-Grid--6>.aem-GridColumn--md--1{width:16.66666667%}.aem-Grid--6>.aem-GridColumn--md--2{width:33.33333333%}.aem-Grid--6>.aem-GridColumn--md--3{width:50%}.aem-Grid--6>.aem-GridColumn--md--4{width:66.66666667%}.aem-Grid--6>.aem-GridColumn--md--5{width:83.33333333%}.aem-Grid--6>.aem-GridColumn--md--6{width:100%}.aem-Grid--6>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--6>.aem-GridColumn--offset--md--1{margin-left:16.66666667%}.aem-Grid--6>.aem-GridColumn--offset--md--2{margin-left:33.33333333%}.aem-Grid--6>.aem-GridColumn--offset--md--3{margin-left:50%}.aem-Grid--6>.aem-GridColumn--offset--md--4{margin-left:66.66666667%}.aem-Grid--6>.aem-GridColumn--offset--md--5{margin-left:83.33333333%}.aem-Grid--6>.aem-GridColumn--offset--md--6{margin-left:100%}.aem-Grid--md--6>.aem-GridColumn--md--1{width:16.66666667%}.aem-Grid--md--6>.aem-GridColumn--md--2{width:33.33333333%}.aem-Grid--md--6>.aem-GridColumn--md--3{width:50%}.aem-Grid--md--6>.aem-GridColumn--md--4{width:66.66666667%}.aem-Grid--md--6>.aem-GridColumn--md--5{width:83.33333333%}.aem-Grid--md--6>.aem-GridColumn--md--6{width:100%}.aem-Grid--md--6>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--6>.aem-GridColumn--offset--md--1{margin-left:16.66666667%}.aem-Grid--md--6>.aem-GridColumn--offset--md--2{margin-left:33.33333333%}.aem-Grid--md--6>.aem-GridColumn--offset--md--3{margin-left:50%}.aem-Grid--md--6>.aem-GridColumn--offset--md--4{margin-left:66.66666667%}.aem-Grid--md--6>.aem-GridColumn--offset--md--5{margin-left:83.33333333%}.aem-Grid--md--6>.aem-GridColumn--offset--md--6{margin-left:100%}.aem-Grid--7>.aem-GridColumn--md--1{width:14.28571429%}.aem-Grid--7>.aem-GridColumn--md--2{width:28.57142857%}.aem-Grid--7>.aem-GridColumn--md--3{width:42.85714286%}.aem-Grid--7>.aem-GridColumn--md--4{width:57.14285714%}.aem-Grid--7>.aem-GridColumn--md--5{width:71.42857143%}.aem-Grid--7>.aem-GridColumn--md--6{width:85.71428571%}.aem-Grid--7>.aem-GridColumn--md--7{width:100%}.aem-Grid--7>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--7>.aem-GridColumn--offset--md--1{margin-left:14.28571429%}.aem-Grid--7>.aem-GridColumn--offset--md--2{margin-left:28.57142857%}.aem-Grid--7>.aem-GridColumn--offset--md--3{margin-left:42.85714286%}.aem-Grid--7>.aem-GridColumn--offset--md--4{margin-left:57.14285714%}.aem-Grid--7>.aem-GridColumn--offset--md--5{margin-left:71.42857143%}.aem-Grid--7>.aem-GridColumn--offset--md--6{margin-left:85.71428571%}.aem-Grid--7>.aem-GridColumn--offset--md--7{margin-left:100%}.aem-Grid--md--7>.aem-GridColumn--md--1{width:14.28571429%}.aem-Grid--md--7>.aem-GridColumn--md--2{width:28.57142857%}.aem-Grid--md--7>.aem-GridColumn--md--3{width:42.85714286%}.aem-Grid--md--7>.aem-GridColumn--md--4{width:57.14285714%}.aem-Grid--md--7>.aem-GridColumn--md--5{width:71.42857143%}.aem-Grid--md--7>.aem-GridColumn--md--6{width:85.71428571%}.aem-Grid--md--7>.aem-GridColumn--md--7{width:100%}.aem-Grid--md--7>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--7>.aem-GridColumn--offset--md--1{margin-left:14.28571429%}.aem-Grid--md--7>.aem-GridColumn--offset--md--2{margin-left:28.57142857%}.aem-Grid--md--7>.aem-GridColumn--offset--md--3{margin-left:42.85714286%}.aem-Grid--md--7>.aem-GridColumn--offset--md--4{margin-left:57.14285714%}.aem-Grid--md--7>.aem-GridColumn--offset--md--5{margin-left:71.42857143%}.aem-Grid--md--7>.aem-GridColumn--offset--md--6{margin-left:85.71428571%}.aem-Grid--md--7>.aem-GridColumn--offset--md--7{margin-left:100%}.aem-Grid--8>.aem-GridColumn--md--1{width:12.5%}.aem-Grid--8>.aem-GridColumn--md--2{width:25%}.aem-Grid--8>.aem-GridColumn--md--3{width:37.5%}.aem-Grid--8>.aem-GridColumn--md--4{width:50%}.aem-Grid--8>.aem-GridColumn--md--5{width:62.5%}.aem-Grid--8>.aem-GridColumn--md--6{width:75%}.aem-Grid--8>.aem-GridColumn--md--7{width:87.5%}.aem-Grid--8>.aem-GridColumn--md--8{width:100%}.aem-Grid--8>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--8>.aem-GridColumn--offset--md--1{margin-left:12.5%}.aem-Grid--8>.aem-GridColumn--offset--md--2{margin-left:25%}.aem-Grid--8>.aem-GridColumn--offset--md--3{margin-left:37.5%}.aem-Grid--8>.aem-GridColumn--offset--md--4{margin-left:50%}.aem-Grid--8>.aem-GridColumn--offset--md--5{margin-left:62.5%}.aem-Grid--8>.aem-GridColumn--offset--md--6{margin-left:75%}.aem-Grid--8>.aem-GridColumn--offset--md--7{margin-left:87.5%}.aem-Grid--8>.aem-GridColumn--offset--md--8{margin-left:100%}.aem-Grid--md--8>.aem-GridColumn--md--1{width:12.5%}.aem-Grid--md--8>.aem-GridColumn--md--2{width:25%}.aem-Grid--md--8>.aem-GridColumn--md--3{width:37.5%}.aem-Grid--md--8>.aem-GridColumn--md--4{width:50%}.aem-Grid--md--8>.aem-GridColumn--md--5{width:62.5%}.aem-Grid--md--8>.aem-GridColumn--md--6{width:75%}.aem-Grid--md--8>.aem-GridColumn--md--7{width:87.5%}.aem-Grid--md--8>.aem-GridColumn--md--8{width:100%}.aem-Grid--md--8>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--8>.aem-GridColumn--offset--md--1{margin-left:12.5%}.aem-Grid--md--8>.aem-GridColumn--offset--md--2{margin-left:25%}.aem-Grid--md--8>.aem-GridColumn--offset--md--3{margin-left:37.5%}.aem-Grid--md--8>.aem-GridColumn--offset--md--4{margin-left:50%}.aem-Grid--md--8>.aem-GridColumn--offset--md--5{margin-left:62.5%}.aem-Grid--md--8>.aem-GridColumn--offset--md--6{margin-left:75%}.aem-Grid--md--8>.aem-GridColumn--offset--md--7{margin-left:87.5%}.aem-Grid--md--8>.aem-GridColumn--offset--md--8{margin-left:100%}.aem-Grid--9>.aem-GridColumn--md--1{width:11.11111111%}.aem-Grid--9>.aem-GridColumn--md--2{width:22.22222222%}.aem-Grid--9>.aem-GridColumn--md--3{width:33.33333333%}.aem-Grid--9>.aem-GridColumn--md--4{width:44.44444444%}.aem-Grid--9>.aem-GridColumn--md--5{width:55.55555556%}.aem-Grid--9>.aem-GridColumn--md--6{width:66.66666667%}.aem-Grid--9>.aem-GridColumn--md--7{width:77.77777778%}.aem-Grid--9>.aem-GridColumn--md--8{width:88.88888889%}.aem-Grid--9>.aem-GridColumn--md--9{width:100%}.aem-Grid--9>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--9>.aem-GridColumn--offset--md--1{margin-left:11.11111111%}.aem-Grid--9>.aem-GridColumn--offset--md--2{margin-left:22.22222222%}.aem-Grid--9>.aem-GridColumn--offset--md--3{margin-left:33.33333333%}.aem-Grid--9>.aem-GridColumn--offset--md--4{margin-left:44.44444444%}.aem-Grid--9>.aem-GridColumn--offset--md--5{margin-left:55.55555556%}.aem-Grid--9>.aem-GridColumn--offset--md--6{margin-left:66.66666667%}.aem-Grid--9>.aem-GridColumn--offset--md--7{margin-left:77.77777778%}.aem-Grid--9>.aem-GridColumn--offset--md--8{margin-left:88.88888889%}.aem-Grid--9>.aem-GridColumn--offset--md--9{margin-left:100%}.aem-Grid--md--9>.aem-GridColumn--md--1{width:11.11111111%}.aem-Grid--md--9>.aem-GridColumn--md--2{width:22.22222222%}.aem-Grid--md--9>.aem-GridColumn--md--3{width:33.33333333%}.aem-Grid--md--9>.aem-GridColumn--md--4{width:44.44444444%}.aem-Grid--md--9>.aem-GridColumn--md--5{width:55.55555556%}.aem-Grid--md--9>.aem-GridColumn--md--6{width:66.66666667%}.aem-Grid--md--9>.aem-GridColumn--md--7{width:77.77777778%}.aem-Grid--md--9>.aem-GridColumn--md--8{width:88.88888889%}.aem-Grid--md--9>.aem-GridColumn--md--9{width:100%}.aem-Grid--md--9>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--9>.aem-GridColumn--offset--md--1{margin-left:11.11111111%}.aem-Grid--md--9>.aem-GridColumn--offset--md--2{margin-left:22.22222222%}.aem-Grid--md--9>.aem-GridColumn--offset--md--3{margin-left:33.33333333%}.aem-Grid--md--9>.aem-GridColumn--offset--md--4{margin-left:44.44444444%}.aem-Grid--md--9>.aem-GridColumn--offset--md--5{margin-left:55.55555556%}.aem-Grid--md--9>.aem-GridColumn--offset--md--6{margin-left:66.66666667%}.aem-Grid--md--9>.aem-GridColumn--offset--md--7{margin-left:77.77777778%}.aem-Grid--md--9>.aem-GridColumn--offset--md--8{margin-left:88.88888889%}.aem-Grid--md--9>.aem-GridColumn--offset--md--9{margin-left:100%}.aem-Grid--10>.aem-GridColumn--md--1{width:10%}.aem-Grid--10>.aem-GridColumn--md--2{width:20%}.aem-Grid--10>.aem-GridColumn--md--3{width:30%}.aem-Grid--10>.aem-GridColumn--md--4{width:40%}.aem-Grid--10>.aem-GridColumn--md--5{width:50%}.aem-Grid--10>.aem-GridColumn--md--6{width:60%}.aem-Grid--10>.aem-GridColumn--md--7{width:70%}.aem-Grid--10>.aem-GridColumn--md--8{width:80%}.aem-Grid--10>.aem-GridColumn--md--9{width:90%}.aem-Grid--10>.aem-GridColumn--md--10{width:100%}.aem-Grid--10>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--10>.aem-GridColumn--offset--md--1{margin-left:10%}.aem-Grid--10>.aem-GridColumn--offset--md--2{margin-left:20%}.aem-Grid--10>.aem-GridColumn--offset--md--3{margin-left:30%}.aem-Grid--10>.aem-GridColumn--offset--md--4{margin-left:40%}.aem-Grid--10>.aem-GridColumn--offset--md--5{margin-left:50%}.aem-Grid--10>.aem-GridColumn--offset--md--6{margin-left:60%}.aem-Grid--10>.aem-GridColumn--offset--md--7{margin-left:70%}.aem-Grid--10>.aem-GridColumn--offset--md--8{margin-left:80%}.aem-Grid--10>.aem-GridColumn--offset--md--9{margin-left:90%}.aem-Grid--10>.aem-GridColumn--offset--md--10{margin-left:100%}.aem-Grid--md--10>.aem-GridColumn--md--1{width:10%}.aem-Grid--md--10>.aem-GridColumn--md--2{width:20%}.aem-Grid--md--10>.aem-GridColumn--md--3{width:30%}.aem-Grid--md--10>.aem-GridColumn--md--4{width:40%}.aem-Grid--md--10>.aem-GridColumn--md--5{width:50%}.aem-Grid--md--10>.aem-GridColumn--md--6{width:60%}.aem-Grid--md--10>.aem-GridColumn--md--7{width:70%}.aem-Grid--md--10>.aem-GridColumn--md--8{width:80%}.aem-Grid--md--10>.aem-GridColumn--md--9{width:90%}.aem-Grid--md--10>.aem-GridColumn--md--10{width:100%}.aem-Grid--md--10>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--10>.aem-GridColumn--offset--md--1{margin-left:10%}.aem-Grid--md--10>.aem-GridColumn--offset--md--2{margin-left:20%}.aem-Grid--md--10>.aem-GridColumn--offset--md--3{margin-left:30%}.aem-Grid--md--10>.aem-GridColumn--offset--md--4{margin-left:40%}.aem-Grid--md--10>.aem-GridColumn--offset--md--5{margin-left:50%}.aem-Grid--md--10>.aem-GridColumn--offset--md--6{margin-left:60%}.aem-Grid--md--10>.aem-GridColumn--offset--md--7{margin-left:70%}.aem-Grid--md--10>.aem-GridColumn--offset--md--8{margin-left:80%}.aem-Grid--md--10>.aem-GridColumn--offset--md--9{margin-left:90%}.aem-Grid--md--10>.aem-GridColumn--offset--md--10{margin-left:100%}.aem-Grid--11>.aem-GridColumn--md--1{width:9.09090909%}.aem-Grid--11>.aem-GridColumn--md--2{width:18.18181818%}.aem-Grid--11>.aem-GridColumn--md--3{width:27.27272727%}.aem-Grid--11>.aem-GridColumn--md--4{width:36.36363636%}.aem-Grid--11>.aem-GridColumn--md--5{width:45.45454545%}.aem-Grid--11>.aem-GridColumn--md--6{width:54.54545455%}.aem-Grid--11>.aem-GridColumn--md--7{width:63.63636364%}.aem-Grid--11>.aem-GridColumn--md--8{width:72.72727273%}.aem-Grid--11>.aem-GridColumn--md--9{width:81.81818182%}.aem-Grid--11>.aem-GridColumn--md--10{width:90.90909091%}.aem-Grid--11>.aem-GridColumn--md--11{width:100%}.aem-Grid--11>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--11>.aem-GridColumn--offset--md--1{margin-left:9.09090909%}.aem-Grid--11>.aem-GridColumn--offset--md--2{margin-left:18.18181818%}.aem-Grid--11>.aem-GridColumn--offset--md--3{margin-left:27.27272727%}.aem-Grid--11>.aem-GridColumn--offset--md--4{margin-left:36.36363636%}.aem-Grid--11>.aem-GridColumn--offset--md--5{margin-left:45.45454545%}.aem-Grid--11>.aem-GridColumn--offset--md--6{margin-left:54.54545455%}.aem-Grid--11>.aem-GridColumn--offset--md--7{margin-left:63.63636364%}.aem-Grid--11>.aem-GridColumn--offset--md--8{margin-left:72.72727273%}.aem-Grid--11>.aem-GridColumn--offset--md--9{margin-left:81.81818182%}.aem-Grid--11>.aem-GridColumn--offset--md--10{margin-left:90.90909091%}.aem-Grid--11>.aem-GridColumn--offset--md--11{margin-left:100%}.aem-Grid--md--11>.aem-GridColumn--md--1{width:9.09090909%}.aem-Grid--md--11>.aem-GridColumn--md--2{width:18.18181818%}.aem-Grid--md--11>.aem-GridColumn--md--3{width:27.27272727%}.aem-Grid--md--11>.aem-GridColumn--md--4{width:36.36363636%}.aem-Grid--md--11>.aem-GridColumn--md--5{width:45.45454545%}.aem-Grid--md--11>.aem-GridColumn--md--6{width:54.54545455%}.aem-Grid--md--11>.aem-GridColumn--md--7{width:63.63636364%}.aem-Grid--md--11>.aem-GridColumn--md--8{width:72.72727273%}.aem-Grid--md--11>.aem-GridColumn--md--9{width:81.81818182%}.aem-Grid--md--11>.aem-GridColumn--md--10{width:90.90909091%}.aem-Grid--md--11>.aem-GridColumn--md--11{width:100%}.aem-Grid--md--11>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--11>.aem-GridColumn--offset--md--1{margin-left:9.09090909%}.aem-Grid--md--11>.aem-GridColumn--offset--md--2{margin-left:18.18181818%}.aem-Grid--md--11>.aem-GridColumn--offset--md--3{margin-left:27.27272727%}.aem-Grid--md--11>.aem-GridColumn--offset--md--4{margin-left:36.36363636%}.aem-Grid--md--11>.aem-GridColumn--offset--md--5{margin-left:45.45454545%}.aem-Grid--md--11>.aem-GridColumn--offset--md--6{margin-left:54.54545455%}.aem-Grid--md--11>.aem-GridColumn--offset--md--7{margin-left:63.63636364%}.aem-Grid--md--11>.aem-GridColumn--offset--md--8{margin-left:72.72727273%}.aem-Grid--md--11>.aem-GridColumn--offset--md--9{margin-left:81.81818182%}.aem-Grid--md--11>.aem-GridColumn--offset--md--10{margin-left:90.90909091%}.aem-Grid--md--11>.aem-GridColumn--offset--md--11{margin-left:100%}.aem-Grid--12>.aem-GridColumn--md--1{width:8.33333333%}.aem-Grid--12>.aem-GridColumn--md--2{width:16.66666667%}.aem-Grid--12>.aem-GridColumn--md--3{width:25%}.aem-Grid--12>.aem-GridColumn--md--4{width:33.33333333%}.aem-Grid--12>.aem-GridColumn--md--5{width:41.66666667%}.aem-Grid--12>.aem-GridColumn--md--6{width:50%}.aem-Grid--12>.aem-GridColumn--md--7{width:58.33333333%}.aem-Grid--12>.aem-GridColumn--md--8{width:66.66666667%}.aem-Grid--12>.aem-GridColumn--md--9{width:75%}.aem-Grid--12>.aem-GridColumn--md--10{width:83.33333333%}.aem-Grid--12>.aem-GridColumn--md--11{width:91.66666667%}.aem-Grid--12>.aem-GridColumn--md--12{width:100%}.aem-Grid--12>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--12>.aem-GridColumn--offset--md--1{margin-left:8.33333333%}.aem-Grid--12>.aem-GridColumn--offset--md--2{margin-left:16.66666667%}.aem-Grid--12>.aem-GridColumn--offset--md--3{margin-left:25%}.aem-Grid--12>.aem-GridColumn--offset--md--4{margin-left:33.33333333%}.aem-Grid--12>.aem-GridColumn--offset--md--5{margin-left:41.66666667%}.aem-Grid--12>.aem-GridColumn--offset--md--6{margin-left:50%}.aem-Grid--12>.aem-GridColumn--offset--md--7{margin-left:58.33333333%}.aem-Grid--12>.aem-GridColumn--offset--md--8{margin-left:66.66666667%}.aem-Grid--12>.aem-GridColumn--offset--md--9{margin-left:75%}.aem-Grid--12>.aem-GridColumn--offset--md--10{margin-left:83.33333333%}.aem-Grid--12>.aem-GridColumn--offset--md--11{margin-left:91.66666667%}.aem-Grid--12>.aem-GridColumn--offset--md--12{margin-left:100%}.aem-Grid--md--12>.aem-GridColumn--md--1{width:8.33333333%}.aem-Grid--md--12>.aem-GridColumn--md--2{width:16.66666667%}.aem-Grid--md--12>.aem-GridColumn--md--3{width:25%}.aem-Grid--md--12>.aem-GridColumn--md--4{width:33.33333333%}.aem-Grid--md--12>.aem-GridColumn--md--5{width:41.66666667%}.aem-Grid--md--12>.aem-GridColumn--md--6{width:50%}.aem-Grid--md--12>.aem-GridColumn--md--7{width:58.33333333%}.aem-Grid--md--12>.aem-GridColumn--md--8{width:66.66666667%}.aem-Grid--md--12>.aem-GridColumn--md--9{width:75%}.aem-Grid--md--12>.aem-GridColumn--md--10{width:83.33333333%}.aem-Grid--md--12>.aem-GridColumn--md--11{width:91.66666667%}.aem-Grid--md--12>.aem-GridColumn--md--12{width:100%}.aem-Grid--md--12>.aem-GridColumn--offset--md--0{margin-left:0}.aem-Grid--md--12>.aem-GridColumn--offset--md--1{margin-left:8.33333333%}.aem-Grid--md--12>.aem-GridColumn--offset--md--2{margin-left:16.66666667%}.aem-Grid--md--12>.aem-GridColumn--offset--md--3{margin-left:25%}.aem-Grid--md--12>.aem-GridColumn--offset--md--4{margin-left:33.33333333%}.aem-Grid--md--12>.aem-GridColumn--offset--md--5{margin-left:41.66666667%}.aem-Grid--md--12>.aem-GridColumn--offset--md--6{margin-left:50%}.aem-Grid--md--12>.aem-GridColumn--offset--md--7{margin-left:58.33333333%}.aem-Grid--md--12>.aem-GridColumn--offset--md--8{margin-left:66.66666667%}.aem-Grid--md--12>.aem-GridColumn--offset--md--9{margin-left:75%}.aem-Grid--md--12>.aem-GridColumn--offset--md--10{margin-left:83.33333333%}.aem-Grid--md--12>.aem-GridColumn--offset--md--11{margin-left:91.66666667%}.aem-Grid--md--12>.aem-GridColumn--offset--md--12{margin-left:100%}.aem-Grid>.aem-GridColumn--md--newline{clear:both!important;display:block}.aem-Grid>.aem-GridColumn--md--none{clear:none!important;display:block;float:left}.aem-Grid>.aem-GridColumn--md--hide{display:none}}@media(min-width:62em)and (max-width:73.115em){.aem-Grid--1>.aem-GridColumn--lg--1{width:100%}.aem-Grid--1>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--1>.aem-GridColumn--offset--lg--1{margin-left:100%}.aem-Grid--lg--1>.aem-GridColumn--lg--1{width:100%}.aem-Grid--lg--1>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--1>.aem-GridColumn--offset--lg--1{margin-left:100%}.aem-Grid--2>.aem-GridColumn--lg--1{width:50%}.aem-Grid--2>.aem-GridColumn--lg--2{width:100%}.aem-Grid--2>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--2>.aem-GridColumn--offset--lg--1{margin-left:50%}.aem-Grid--2>.aem-GridColumn--offset--lg--2{margin-left:100%}.aem-Grid--lg--2>.aem-GridColumn--lg--1{width:50%}.aem-Grid--lg--2>.aem-GridColumn--lg--2{width:100%}.aem-Grid--lg--2>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--2>.aem-GridColumn--offset--lg--1{margin-left:50%}.aem-Grid--lg--2>.aem-GridColumn--offset--lg--2{margin-left:100%}.aem-Grid--3>.aem-GridColumn--lg--1{width:33.33333333%}.aem-Grid--3>.aem-GridColumn--lg--2{width:66.66666667%}.aem-Grid--3>.aem-GridColumn--lg--3{width:100%}.aem-Grid--3>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--3>.aem-GridColumn--offset--lg--1{margin-left:33.33333333%}.aem-Grid--3>.aem-GridColumn--offset--lg--2{margin-left:66.66666667%}.aem-Grid--3>.aem-GridColumn--offset--lg--3{margin-left:100%}.aem-Grid--lg--3>.aem-GridColumn--lg--1{width:33.33333333%}.aem-Grid--lg--3>.aem-GridColumn--lg--2{width:66.66666667%}.aem-Grid--lg--3>.aem-GridColumn--lg--3{width:100%}.aem-Grid--lg--3>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--3>.aem-GridColumn--offset--lg--1{margin-left:33.33333333%}.aem-Grid--lg--3>.aem-GridColumn--offset--lg--2{margin-left:66.66666667%}.aem-Grid--lg--3>.aem-GridColumn--offset--lg--3{margin-left:100%}.aem-Grid--4>.aem-GridColumn--lg--1{width:25%}.aem-Grid--4>.aem-GridColumn--lg--2{width:50%}.aem-Grid--4>.aem-GridColumn--lg--3{width:75%}.aem-Grid--4>.aem-GridColumn--lg--4{width:100%}.aem-Grid--4>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--4>.aem-GridColumn--offset--lg--1{margin-left:25%}.aem-Grid--4>.aem-GridColumn--offset--lg--2{margin-left:50%}.aem-Grid--4>.aem-GridColumn--offset--lg--3{margin-left:75%}.aem-Grid--4>.aem-GridColumn--offset--lg--4{margin-left:100%}.aem-Grid--lg--4>.aem-GridColumn--lg--1{width:25%}.aem-Grid--lg--4>.aem-GridColumn--lg--2{width:50%}.aem-Grid--lg--4>.aem-GridColumn--lg--3{width:75%}.aem-Grid--lg--4>.aem-GridColumn--lg--4{width:100%}.aem-Grid--lg--4>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--4>.aem-GridColumn--offset--lg--1{margin-left:25%}.aem-Grid--lg--4>.aem-GridColumn--offset--lg--2{margin-left:50%}.aem-Grid--lg--4>.aem-GridColumn--offset--lg--3{margin-left:75%}.aem-Grid--lg--4>.aem-GridColumn--offset--lg--4{margin-left:100%}.aem-Grid--5>.aem-GridColumn--lg--1{width:20%}.aem-Grid--5>.aem-GridColumn--lg--2{width:40%}.aem-Grid--5>.aem-GridColumn--lg--3{width:60%}.aem-Grid--5>.aem-GridColumn--lg--4{width:80%}.aem-Grid--5>.aem-GridColumn--lg--5{width:100%}.aem-Grid--5>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--5>.aem-GridColumn--offset--lg--1{margin-left:20%}.aem-Grid--5>.aem-GridColumn--offset--lg--2{margin-left:40%}.aem-Grid--5>.aem-GridColumn--offset--lg--3{margin-left:60%}.aem-Grid--5>.aem-GridColumn--offset--lg--4{margin-left:80%}.aem-Grid--5>.aem-GridColumn--offset--lg--5{margin-left:100%}.aem-Grid--lg--5>.aem-GridColumn--lg--1{width:20%}.aem-Grid--lg--5>.aem-GridColumn--lg--2{width:40%}.aem-Grid--lg--5>.aem-GridColumn--lg--3{width:60%}.aem-Grid--lg--5>.aem-GridColumn--lg--4{width:80%}.aem-Grid--lg--5>.aem-GridColumn--lg--5{width:100%}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--1{margin-left:20%}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--2{margin-left:40%}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--3{margin-left:60%}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--4{margin-left:80%}.aem-Grid--lg--5>.aem-GridColumn--offset--lg--5{margin-left:100%}.aem-Grid--6>.aem-GridColumn--lg--1{width:16.66666667%}.aem-Grid--6>.aem-GridColumn--lg--2{width:33.33333333%}.aem-Grid--6>.aem-GridColumn--lg--3{width:50%}.aem-Grid--6>.aem-GridColumn--lg--4{width:66.66666667%}.aem-Grid--6>.aem-GridColumn--lg--5{width:83.33333333%}.aem-Grid--6>.aem-GridColumn--lg--6{width:100%}.aem-Grid--6>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--6>.aem-GridColumn--offset--lg--1{margin-left:16.66666667%}.aem-Grid--6>.aem-GridColumn--offset--lg--2{margin-left:33.33333333%}.aem-Grid--6>.aem-GridColumn--offset--lg--3{margin-left:50%}.aem-Grid--6>.aem-GridColumn--offset--lg--4{margin-left:66.66666667%}.aem-Grid--6>.aem-GridColumn--offset--lg--5{margin-left:83.33333333%}.aem-Grid--6>.aem-GridColumn--offset--lg--6{margin-left:100%}.aem-Grid--lg--6>.aem-GridColumn--lg--1{width:16.66666667%}.aem-Grid--lg--6>.aem-GridColumn--lg--2{width:33.33333333%}.aem-Grid--lg--6>.aem-GridColumn--lg--3{width:50%}.aem-Grid--lg--6>.aem-GridColumn--lg--4{width:66.66666667%}.aem-Grid--lg--6>.aem-GridColumn--lg--5{width:83.33333333%}.aem-Grid--lg--6>.aem-GridColumn--lg--6{width:100%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--1{margin-left:16.66666667%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--2{margin-left:33.33333333%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--3{margin-left:50%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--4{margin-left:66.66666667%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--5{margin-left:83.33333333%}.aem-Grid--lg--6>.aem-GridColumn--offset--lg--6{margin-left:100%}.aem-Grid--7>.aem-GridColumn--lg--1{width:14.28571429%}.aem-Grid--7>.aem-GridColumn--lg--2{width:28.57142857%}.aem-Grid--7>.aem-GridColumn--lg--3{width:42.85714286%}.aem-Grid--7>.aem-GridColumn--lg--4{width:57.14285714%}.aem-Grid--7>.aem-GridColumn--lg--5{width:71.42857143%}.aem-Grid--7>.aem-GridColumn--lg--6{width:85.71428571%}.aem-Grid--7>.aem-GridColumn--lg--7{width:100%}.aem-Grid--7>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--7>.aem-GridColumn--offset--lg--1{margin-left:14.28571429%}.aem-Grid--7>.aem-GridColumn--offset--lg--2{margin-left:28.57142857%}.aem-Grid--7>.aem-GridColumn--offset--lg--3{margin-left:42.85714286%}.aem-Grid--7>.aem-GridColumn--offset--lg--4{margin-left:57.14285714%}.aem-Grid--7>.aem-GridColumn--offset--lg--5{margin-left:71.42857143%}.aem-Grid--7>.aem-GridColumn--offset--lg--6{margin-left:85.71428571%}.aem-Grid--7>.aem-GridColumn--offset--lg--7{margin-left:100%}.aem-Grid--lg--7>.aem-GridColumn--lg--1{width:14.28571429%}.aem-Grid--lg--7>.aem-GridColumn--lg--2{width:28.57142857%}.aem-Grid--lg--7>.aem-GridColumn--lg--3{width:42.85714286%}.aem-Grid--lg--7>.aem-GridColumn--lg--4{width:57.14285714%}.aem-Grid--lg--7>.aem-GridColumn--lg--5{width:71.42857143%}.aem-Grid--lg--7>.aem-GridColumn--lg--6{width:85.71428571%}.aem-Grid--lg--7>.aem-GridColumn--lg--7{width:100%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--1{margin-left:14.28571429%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--2{margin-left:28.57142857%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--3{margin-left:42.85714286%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--4{margin-left:57.14285714%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--5{margin-left:71.42857143%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--6{margin-left:85.71428571%}.aem-Grid--lg--7>.aem-GridColumn--offset--lg--7{margin-left:100%}.aem-Grid--8>.aem-GridColumn--lg--1{width:12.5%}.aem-Grid--8>.aem-GridColumn--lg--2{width:25%}.aem-Grid--8>.aem-GridColumn--lg--3{width:37.5%}.aem-Grid--8>.aem-GridColumn--lg--4{width:50%}.aem-Grid--8>.aem-GridColumn--lg--5{width:62.5%}.aem-Grid--8>.aem-GridColumn--lg--6{width:75%}.aem-Grid--8>.aem-GridColumn--lg--7{width:87.5%}.aem-Grid--8>.aem-GridColumn--lg--8{width:100%}.aem-Grid--8>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--8>.aem-GridColumn--offset--lg--1{margin-left:12.5%}.aem-Grid--8>.aem-GridColumn--offset--lg--2{margin-left:25%}.aem-Grid--8>.aem-GridColumn--offset--lg--3{margin-left:37.5%}.aem-Grid--8>.aem-GridColumn--offset--lg--4{margin-left:50%}.aem-Grid--8>.aem-GridColumn--offset--lg--5{margin-left:62.5%}.aem-Grid--8>.aem-GridColumn--offset--lg--6{margin-left:75%}.aem-Grid--8>.aem-GridColumn--offset--lg--7{margin-left:87.5%}.aem-Grid--8>.aem-GridColumn--offset--lg--8{margin-left:100%}.aem-Grid--lg--8>.aem-GridColumn--lg--1{width:12.5%}.aem-Grid--lg--8>.aem-GridColumn--lg--2{width:25%}.aem-Grid--lg--8>.aem-GridColumn--lg--3{width:37.5%}.aem-Grid--lg--8>.aem-GridColumn--lg--4{width:50%}.aem-Grid--lg--8>.aem-GridColumn--lg--5{width:62.5%}.aem-Grid--lg--8>.aem-GridColumn--lg--6{width:75%}.aem-Grid--lg--8>.aem-GridColumn--lg--7{width:87.5%}.aem-Grid--lg--8>.aem-GridColumn--lg--8{width:100%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--1{margin-left:12.5%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--2{margin-left:25%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--3{margin-left:37.5%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--4{margin-left:50%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--5{margin-left:62.5%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--6{margin-left:75%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--7{margin-left:87.5%}.aem-Grid--lg--8>.aem-GridColumn--offset--lg--8{margin-left:100%}.aem-Grid--9>.aem-GridColumn--lg--1{width:11.11111111%}.aem-Grid--9>.aem-GridColumn--lg--2{width:22.22222222%}.aem-Grid--9>.aem-GridColumn--lg--3{width:33.33333333%}.aem-Grid--9>.aem-GridColumn--lg--4{width:44.44444444%}.aem-Grid--9>.aem-GridColumn--lg--5{width:55.55555556%}.aem-Grid--9>.aem-GridColumn--lg--6{width:66.66666667%}.aem-Grid--9>.aem-GridColumn--lg--7{width:77.77777778%}.aem-Grid--9>.aem-GridColumn--lg--8{width:88.88888889%}.aem-Grid--9>.aem-GridColumn--lg--9{width:100%}.aem-Grid--9>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--9>.aem-GridColumn--offset--lg--1{margin-left:11.11111111%}.aem-Grid--9>.aem-GridColumn--offset--lg--2{margin-left:22.22222222%}.aem-Grid--9>.aem-GridColumn--offset--lg--3{margin-left:33.33333333%}.aem-Grid--9>.aem-GridColumn--offset--lg--4{margin-left:44.44444444%}.aem-Grid--9>.aem-GridColumn--offset--lg--5{margin-left:55.55555556%}.aem-Grid--9>.aem-GridColumn--offset--lg--6{margin-left:66.66666667%}.aem-Grid--9>.aem-GridColumn--offset--lg--7{margin-left:77.77777778%}.aem-Grid--9>.aem-GridColumn--offset--lg--8{margin-left:88.88888889%}.aem-Grid--9>.aem-GridColumn--offset--lg--9{margin-left:100%}.aem-Grid--lg--9>.aem-GridColumn--lg--1{width:11.11111111%}.aem-Grid--lg--9>.aem-GridColumn--lg--2{width:22.22222222%}.aem-Grid--lg--9>.aem-GridColumn--lg--3{width:33.33333333%}.aem-Grid--lg--9>.aem-GridColumn--lg--4{width:44.44444444%}.aem-Grid--lg--9>.aem-GridColumn--lg--5{width:55.55555556%}.aem-Grid--lg--9>.aem-GridColumn--lg--6{width:66.66666667%}.aem-Grid--lg--9>.aem-GridColumn--lg--7{width:77.77777778%}.aem-Grid--lg--9>.aem-GridColumn--lg--8{width:88.88888889%}.aem-Grid--lg--9>.aem-GridColumn--lg--9{width:100%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--1{margin-left:11.11111111%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--2{margin-left:22.22222222%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--3{margin-left:33.33333333%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--4{margin-left:44.44444444%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--5{margin-left:55.55555556%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--6{margin-left:66.66666667%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--7{margin-left:77.77777778%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--8{margin-left:88.88888889%}.aem-Grid--lg--9>.aem-GridColumn--offset--lg--9{margin-left:100%}.aem-Grid--10>.aem-GridColumn--lg--1{width:10%}.aem-Grid--10>.aem-GridColumn--lg--2{width:20%}.aem-Grid--10>.aem-GridColumn--lg--3{width:30%}.aem-Grid--10>.aem-GridColumn--lg--4{width:40%}.aem-Grid--10>.aem-GridColumn--lg--5{width:50%}.aem-Grid--10>.aem-GridColumn--lg--6{width:60%}.aem-Grid--10>.aem-GridColumn--lg--7{width:70%}.aem-Grid--10>.aem-GridColumn--lg--8{width:80%}.aem-Grid--10>.aem-GridColumn--lg--9{width:90%}.aem-Grid--10>.aem-GridColumn--lg--10{width:100%}.aem-Grid--10>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--10>.aem-GridColumn--offset--lg--1{margin-left:10%}.aem-Grid--10>.aem-GridColumn--offset--lg--2{margin-left:20%}.aem-Grid--10>.aem-GridColumn--offset--lg--3{margin-left:30%}.aem-Grid--10>.aem-GridColumn--offset--lg--4{margin-left:40%}.aem-Grid--10>.aem-GridColumn--offset--lg--5{margin-left:50%}.aem-Grid--10>.aem-GridColumn--offset--lg--6{margin-left:60%}.aem-Grid--10>.aem-GridColumn--offset--lg--7{margin-left:70%}.aem-Grid--10>.aem-GridColumn--offset--lg--8{margin-left:80%}.aem-Grid--10>.aem-GridColumn--offset--lg--9{margin-left:90%}.aem-Grid--10>.aem-GridColumn--offset--lg--10{margin-left:100%}.aem-Grid--lg--10>.aem-GridColumn--lg--1{width:10%}.aem-Grid--lg--10>.aem-GridColumn--lg--2{width:20%}.aem-Grid--lg--10>.aem-GridColumn--lg--3{width:30%}.aem-Grid--lg--10>.aem-GridColumn--lg--4{width:40%}.aem-Grid--lg--10>.aem-GridColumn--lg--5{width:50%}.aem-Grid--lg--10>.aem-GridColumn--lg--6{width:60%}.aem-Grid--lg--10>.aem-GridColumn--lg--7{width:70%}.aem-Grid--lg--10>.aem-GridColumn--lg--8{width:80%}.aem-Grid--lg--10>.aem-GridColumn--lg--9{width:90%}.aem-Grid--lg--10>.aem-GridColumn--lg--10{width:100%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--1{margin-left:10%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--2{margin-left:20%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--3{margin-left:30%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--4{margin-left:40%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--5{margin-left:50%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--6{margin-left:60%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--7{margin-left:70%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--8{margin-left:80%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--9{margin-left:90%}.aem-Grid--lg--10>.aem-GridColumn--offset--lg--10{margin-left:100%}.aem-Grid--11>.aem-GridColumn--lg--1{width:9.09090909%}.aem-Grid--11>.aem-GridColumn--lg--2{width:18.18181818%}.aem-Grid--11>.aem-GridColumn--lg--3{width:27.27272727%}.aem-Grid--11>.aem-GridColumn--lg--4{width:36.36363636%}.aem-Grid--11>.aem-GridColumn--lg--5{width:45.45454545%}.aem-Grid--11>.aem-GridColumn--lg--6{width:54.54545455%}.aem-Grid--11>.aem-GridColumn--lg--7{width:63.63636364%}.aem-Grid--11>.aem-GridColumn--lg--8{width:72.72727273%}.aem-Grid--11>.aem-GridColumn--lg--9{width:81.81818182%}.aem-Grid--11>.aem-GridColumn--lg--10{width:90.90909091%}.aem-Grid--11>.aem-GridColumn--lg--11{width:100%}.aem-Grid--11>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--11>.aem-GridColumn--offset--lg--1{margin-left:9.09090909%}.aem-Grid--11>.aem-GridColumn--offset--lg--2{margin-left:18.18181818%}.aem-Grid--11>.aem-GridColumn--offset--lg--3{margin-left:27.27272727%}.aem-Grid--11>.aem-GridColumn--offset--lg--4{margin-left:36.36363636%}.aem-Grid--11>.aem-GridColumn--offset--lg--5{margin-left:45.45454545%}.aem-Grid--11>.aem-GridColumn--offset--lg--6{margin-left:54.54545455%}.aem-Grid--11>.aem-GridColumn--offset--lg--7{margin-left:63.63636364%}.aem-Grid--11>.aem-GridColumn--offset--lg--8{margin-left:72.72727273%}.aem-Grid--11>.aem-GridColumn--offset--lg--9{margin-left:81.81818182%}.aem-Grid--11>.aem-GridColumn--offset--lg--10{margin-left:90.90909091%}.aem-Grid--11>.aem-GridColumn--offset--lg--11{margin-left:100%}.aem-Grid--lg--11>.aem-GridColumn--lg--1{width:9.09090909%}.aem-Grid--lg--11>.aem-GridColumn--lg--2{width:18.18181818%}.aem-Grid--lg--11>.aem-GridColumn--lg--3{width:27.27272727%}.aem-Grid--lg--11>.aem-GridColumn--lg--4{width:36.36363636%}.aem-Grid--lg--11>.aem-GridColumn--lg--5{width:45.45454545%}.aem-Grid--lg--11>.aem-GridColumn--lg--6{width:54.54545455%}.aem-Grid--lg--11>.aem-GridColumn--lg--7{width:63.63636364%}.aem-Grid--lg--11>.aem-GridColumn--lg--8{width:72.72727273%}.aem-Grid--lg--11>.aem-GridColumn--lg--9{width:81.81818182%}.aem-Grid--lg--11>.aem-GridColumn--lg--10{width:90.90909091%}.aem-Grid--lg--11>.aem-GridColumn--lg--11{width:100%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--1{margin-left:9.09090909%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--2{margin-left:18.18181818%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--3{margin-left:27.27272727%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--4{margin-left:36.36363636%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--5{margin-left:45.45454545%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--6{margin-left:54.54545455%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--7{margin-left:63.63636364%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--8{margin-left:72.72727273%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--9{margin-left:81.81818182%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--10{margin-left:90.90909091%}.aem-Grid--lg--11>.aem-GridColumn--offset--lg--11{margin-left:100%}.aem-Grid--12>.aem-GridColumn--lg--1{width:8.33333333%}.aem-Grid--12>.aem-GridColumn--lg--2{width:16.66666667%}.aem-Grid--12>.aem-GridColumn--lg--3{width:25%}.aem-Grid--12>.aem-GridColumn--lg--4{width:33.33333333%}.aem-Grid--12>.aem-GridColumn--lg--5{width:41.66666667%}.aem-Grid--12>.aem-GridColumn--lg--6{width:50%}.aem-Grid--12>.aem-GridColumn--lg--7{width:58.33333333%}.aem-Grid--12>.aem-GridColumn--lg--8{width:66.66666667%}.aem-Grid--12>.aem-GridColumn--lg--9{width:75%}.aem-Grid--12>.aem-GridColumn--lg--10{width:83.33333333%}.aem-Grid--12>.aem-GridColumn--lg--11{width:91.66666667%}.aem-Grid--12>.aem-GridColumn--lg--12{width:100%}.aem-Grid--12>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--12>.aem-GridColumn--offset--lg--1{margin-left:8.33333333%}.aem-Grid--12>.aem-GridColumn--offset--lg--2{margin-left:16.66666667%}.aem-Grid--12>.aem-GridColumn--offset--lg--3{margin-left:25%}.aem-Grid--12>.aem-GridColumn--offset--lg--4{margin-left:33.33333333%}.aem-Grid--12>.aem-GridColumn--offset--lg--5{margin-left:41.66666667%}.aem-Grid--12>.aem-GridColumn--offset--lg--6{margin-left:50%}.aem-Grid--12>.aem-GridColumn--offset--lg--7{margin-left:58.33333333%}.aem-Grid--12>.aem-GridColumn--offset--lg--8{margin-left:66.66666667%}.aem-Grid--12>.aem-GridColumn--offset--lg--9{margin-left:75%}.aem-Grid--12>.aem-GridColumn--offset--lg--10{margin-left:83.33333333%}.aem-Grid--12>.aem-GridColumn--offset--lg--11{margin-left:91.66666667%}.aem-Grid--12>.aem-GridColumn--offset--lg--12{margin-left:100%}.aem-Grid--lg--12>.aem-GridColumn--lg--1{width:8.33333333%}.aem-Grid--lg--12>.aem-GridColumn--lg--2{width:16.66666667%}.aem-Grid--lg--12>.aem-GridColumn--lg--3{width:25%}.aem-Grid--lg--12>.aem-GridColumn--lg--4{width:33.33333333%}.aem-Grid--lg--12>.aem-GridColumn--lg--5{width:41.66666667%}.aem-Grid--lg--12>.aem-GridColumn--lg--6{width:50%}.aem-Grid--lg--12>.aem-GridColumn--lg--7{width:58.33333333%}.aem-Grid--lg--12>.aem-GridColumn--lg--8{width:66.66666667%}.aem-Grid--lg--12>.aem-GridColumn--lg--9{width:75%}.aem-Grid--lg--12>.aem-GridColumn--lg--10{width:83.33333333%}.aem-Grid--lg--12>.aem-GridColumn--lg--11{width:91.66666667%}.aem-Grid--lg--12>.aem-GridColumn--lg--12{width:100%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--0{margin-left:0}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--1{margin-left:8.33333333%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--2{margin-left:16.66666667%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--3{margin-left:25%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--4{margin-left:33.33333333%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--5{margin-left:41.66666667%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--6{margin-left:50%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--7{margin-left:58.33333333%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--8{margin-left:66.66666667%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--9{margin-left:75%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--10{margin-left:83.33333333%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--11{margin-left:91.66666667%}.aem-Grid--lg--12>.aem-GridColumn--offset--lg--12{margin-left:100%}.aem-Grid>.aem-GridColumn--lg--newline{clear:both!important;display:block}.aem-Grid>.aem-GridColumn--lg--none{clear:none!important;display:block;float:left}.aem-Grid>.aem-GridColumn--lg--hide{display:none}}.responsivegrid.aem-GridColumn{padding-left:0;padding-right:0}.aem-GridColumn--default--6+.aem-GridColumn--default--3{margin-top:2.4rem;margin-top:var(--spacing-24)}@media screen and (min-width:73.125em){.aem-GridColumn--default--6+.aem-GridColumn--default--3{margin-top:0}}.root.responsivegrid{background:#f4f4f4;background:var(--color-bg-content);margin:0 .8rem;margin:0 var(--spacing-grid-half-gutter-sm);max-width:90em;max-width:var(--width-max-content);min-height:100vh}@media screen and (min-width:48em){.root.responsivegrid{margin:0 1.2rem;margin:0 var(--spacing-grid-half-gutter)}}@media screen and (min-width:62em){.root.responsivegrid{margin-right:0}}@media screen and (min-width:73.125em){.root.responsivegrid{margin-left:auto;margin-right:auto}.main-content.aem-GridColumn--default--9{padding-left:1.2rem;padding-left:var(--spacing-grid-half-gutter)}}.aem-Grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.aem-AuthorLayer-Edit .aem-Grid,.aem-AuthorLayer-structure .aem-Grid{display:block}.o-list-bare{list-style:none;margin-left:0}.o-list-inline li{display:inline-block}:root{--color-balloon-bg:var(--color-white);--color-balloon-text:var(--color-body);--balloon-padding-top:var(--spacing-32);--balloon-padding-bottom:var(--spacing-32);--balloon-padding-left:var(--spacing-24);--balloon-padding-right:var(--spacing-24);--balloon-border-radius-top-left:var(--border-radius-balloon);--balloon-border-radius-top-right:var(--border-radius-balloon);--balloon-border-radius-bottom-right:var(--border-radius-balloon);--balloon-border-radius-bottom-left:0;--border-radius-balloon-arrow:var(--border-radius-balloon-arrow-default);--balloon-margin-bottom:calc(var(--border-radius-balloon-arrow) + var(--balloon-padding-bottom));--balloon-arrow-url:var(--balloon-arrow-url-white)}.o-balloon-list .cmp-list__item,.o-balloon>[class^=cmp]{background:#fff;background:var(--color-balloon-bg);border-radius:2rem 2rem 2rem 0;border-radius:var(--balloon-border-radius-top-left) var(--balloon-border-radius-top-right) var(--balloon-border-radius-bottom-right) var(--balloon-border-radius-bottom-left);color:#383a3c;color:var(--color-balloon-text);margin-bottom:5.2rem;margin-bottom:var(--balloon-margin-bottom);padding:3.2rem 2.4rem;padding:var(--balloon-padding-top) var(--balloon-padding-right) var(--balloon-padding-bottom) var(--balloon-padding-left);position:relative}.o-balloon-list .cmp-list__item:after,.o-balloon>[class^=cmp]:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");background:var(--balloon-arrow-url);content:"";display:block;height:2rem;height:var(--border-radius-balloon-arrow);left:0;position:absolute;top:100%;width:2rem;width:var(--border-radius-balloon-arrow)}.o-balloon a,.o-balloon-list a{color:inherit}.o-balloon a:focus,.o-balloon a:hover,.o-balloon-list a:focus,.o-balloon-list a:hover{color:#00a870;color:var(--color-munsell-green)}.o-balloon a:active,.o-balloon-list a:active{color:#004c32;color:var(--color-munsell-green-darkest)}.o-balloon--bg-green,.o-balloon.o-balloon--bg-green>[class*=cmp-]{--color-balloon-bg:var(--color-munsell-green);--balloon-arrow-url:var(--balloon-arrow-url-green);--color-balloon-text:var(--color-white);--arrow-right-url:var(--arrow-right-url-white)}.o-balloon--bg-blue{--color-balloon-bg:var(--color-violet-blue);--balloon-arrow-url:var(--balloon-arrow-url-blue);--color-balloon-text:var(--color-white);--arrow-right-url:var(--arrow-right-url-white)}.o-balloon--bg-blue a:focus,.o-balloon--bg-blue a:hover,.o-balloon--bg-green a:focus,.o-balloon--bg-green a:hover{color:#004c32;color:var(--color-munsell-green-darkest)}.o-balloon--bg-green a:active{color:#007a51;color:var(--color-munsell-green-darker)}.o-balloon--bg-blue a:focus,.o-balloon--bg-blue a:hover{color:#cacce6;color:var(--color-violet-blue-lightest)}.o-balloon--bg-blue a:active{color:#848ac6;color:var(--color-violet-blue-lighter)}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.o-balloon-list.o-balloon--bg-green .cmp-list__item,.o-balloon.o-balloon--bg-green>[class^=cmp-]{background:#00a870;background:var(--color-munsell-green);color:#fff;color:var(--color-white)}.o-balloon-list.o-balloon--bg-blue .cmp-list__item,.o-balloon.o-balloon--bg-blue>[class^=cmp-]{background:#414aa8;background:var(--color-violet-blue);color:#fff;color:var(--color-white)}.cmp-teaser--cta-text-link .cmp-teaser__action-link:before,.o-balloon .cmp-list__item-link:before,.o-balloon-list .cmp-teaser__action-link:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300aa72' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");background:var(--arrow-right-url-green)}.cmp-teaser--cta-text-link.o-balloon--bg-blue .cmp-teaser__action-link:before,.cmp-teaser--cta-text-link.o-balloon--bg-green .cmp-teaser__action-link:before,.o-balloon--bg-blue .cmp-list__item-link:before,.o-balloon--bg-green .cmp-list__item-link:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");background:var(--arrow-right-url-white)}}:root{--p-validation-message-color:var(--color-coral-reef-darker)}input:not([type=radio]):not([type=checkbox]):not([type=hidden]):not([type=submit]),select,textarea{border:1px solid #bfc0c3;border:1px solid var(--color-manatee-lighter);border-radius:.4rem;border-radius:var(--border-radius-xs);line-height:--line-height-1-375;line-height:var(--line-height-input-and-buttons);padding:.8rem 1.6rem;padding:var(--spacing-8) var(--spacing-16)}select:focus input:not([type=radio]):not([type=checkbox]):not([type=hidden]):not([type=submit]):focus,textarea:focus{border-color:#414aa8;border-color:var(--color-violet-blue)}input[type=checkbox],input[type=radio]{border:none}.cx-question-box__input input{color:#383a3c;color:var(--color-body);width:100%}.form-container{border:0;margin:0;padding:0}.form-container fieldset{border:0;margin:0;padding:1.6rem 0;padding:var(--spacing-16) 0}.form-container fieldset>legend{display:none}.form-container .form-field-row,form.p-json-form p-form-row{padding:1.6rem 0 .8rem;padding:var(--spacing-16) 0 var(--spacing-8) 0}form.p-json-form .json-form-submit{margin-top:3.2rem;margin-top:var(--spacing-32)}.form-container--full .form-field-row{padding:.8rem 0;padding:var(--spacing-8) 0}.form-field-item .input-validation-error,form[data-is-submitted=true] input:not([type=radio]):not([type=checkbox]):not([type=hidden]):not([type=submit])[aria-invalid=true],form[data-is-submitted=true] select[aria-invalid=true],form[data-is-submitted=true] textarea[aria-invalid=true]{border-color:#ac4f43;border-color:var(--color-coral-reef-darker)}.form-field-input input.valid,input:not([type=radio]):not([type=checkbox]):not([type=hidden]):not([type=submit]):not([data-touched=false])[aria-invalid=false],select[aria-invalid=false],textarea[aria-invalid=false]{border-color:#007a51;border-color:var(--color-munsell-green-darker)}.cmp-formulier form{background:#fff;background:var(--color-white);border-radius:2rem;border-radius:var(--border-radius-default);display:block;margin-left:-1.2rem;margin-left:calc(var(--spacing-12)*-1);margin-right:-1.2rem;margin-right:calc(var(--spacing-12)*-1);padding:0 3.2rem 4.8rem;padding:0 var(--spacing-32) var(--spacing-48)}.cmp-formulier [hidden]{display:none}p-json-form input:not([type=radio]):not([type=checkbox]):not([type=hidden]):not([type=submit]),p-json-form select,p-json-form textarea{width:calc(100% - 3.8rem)}p-form-row .form-field-xs{min-width:90px;width:20%!important}p-form-row .form-field-s{min-width:114px;width:25%!important}p-json-form h3{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-top:.8rem;margin-top:var(--spacing-8);-webkit-box-align:center;-ms-flex-align:center;align-items:center}p-json-form p-form-row:first-of-type h3:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNMjAxIDM0NWMtNS41MiAwLTEwIDQuNDgtMTAgMTBzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwLTQuNDgtMTAtMTAtMTBtMSAxN2gtMnYtMmgyem0yLjA3LTcuNzUtLjkuOTJjLS41LjUxLS44Ni45Ny0xLjA0IDEuNjktLjA4LjMyLS4xMy42OC0uMTMgMS4xNGgtMnYtLjVhNCA0IDAgMCAxIDEuMTctMi44M2wxLjI0LTEuMjZjLjQ2LS40NC42OC0xLjEuNTUtMS44YTEuOTkgMS45OSAwIDAgMC0xLjM5LTEuNTNjLTEuMTEtLjMxLTIuMTQuMzItMi40NyAxLjI3LS4xMi4zNy0uNDMuNjUtLjgyLjY1aC0uM2MtLjU4IDAtLjk4LS41Ni0uODItMS4xMmE0LjAxIDQuMDEgMCAwIDEgMy4yMy0yLjgzYzEuNTItLjI0IDIuOTcuNTUgMy44NyAxLjggMS4xOCAxLjYzLjgzIDMuMzgtLjE5IDQuNCIvPjwvZGVmcz48dXNlIHhsaW5rOmhyZWY9IiNhIiBmaWxsPSIjMDBBQTcyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkxIC0zNDUpIi8+PC9zdmc+) 1.45rem 1.42rem no-repeat;background-color:#f4f4f4;background-color:var(--color-manatee-lightest);background-position:50%;border-radius:100%;content:"";display:inline-block;height:40px;margin-right:.8rem;margin-right:var(--spacing-8);min-height:40px;min-width:40px;width:40px}p-drop-file{--p-drop-file-feedback-color:var(--color-coral-reef-darker);--p-drop-file-focus-outline-style:solid;--p-drop-file-focus-outline-width:2px}@media screen and (min-width:62em){p-form-row{width:33.33%}p-json-form select{width:auto}p-json-form h3{margin-top:1.6rem;margin-top:var(--spacing-16)}p-json-form p-form-row:first-of-type h3{margin-top:.8rem;margin-top:var(--spacing-8)}p-json-form p-form-row:first-of-type h3:before{background-size:2.1rem 2.1rem}}.labels,.radio-button-item{margin-bottom:.8rem;margin-bottom:var(--spacing-8)}.radio-button-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.radio-button-item label{padding-left:.8rem;padding-left:var(--spacing-8)}svg[name=form-field-check-valid]{display:none;fill:#00a870;fill:var(--color-primary);height:3rem;width:3rem}.form-field-will-validate+svg[name=form-field-check-valid]{display:inline-block;margin-left:.8rem;margin-left:var(--spacing-8)}.form-field-validity{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.json-form-textarea{vertical-align:top}p-notification{--p-notification-color-validation:var(--color-white);--p-notification-color-error-text:var(--color-manatee-darkest);--p-notification-color-validation-error:var(--color-manatee);--p-notification-color-validation-bg-error:var(--color-white);--p-notification-icon-error:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHRpdGxlPmljb24vbmF2aWdhdGlvbi9jYW5jZWxfMjRweDwvdGl0bGU+PGRlZnM+PHBhdGggaWQ9ImEiIGQ9Ik0xMiAyQzYuNDcgMiAyIDYuNDcgMiAxMnM0LjQ3IDEwIDEwIDEwIDEwLTQuNDcgMTAtMTBTMTcuNTMgMiAxMiAybTQuMyAxNC4zYS45OTYuOTk2IDAgMCAxLTEuNDEgMEwxMiAxMy40MSA5LjExIDE2LjNhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxTDEwLjU5IDEyIDcuNyA5LjExQS45OTYuOTk2IDAgMSAxIDkuMTEgNy43TDEyIDEwLjU5bDIuODktMi44OWEuOTk2Ljk5NiAwIDEgMSAxLjQxIDEuNDFMMTMuNDEgMTJsMi44OSAyLjg5Yy4zOC4zOC4zOCAxLjAyIDAgMS40MSIvPjwvZGVmcz48dXNlIHhsaW5rOmhyZWY9IiNhIiBmaWxsPSIjRUQ2RDVDIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yIC0yKSIvPjwvc3ZnPg==");--p-notification-icon-display:block;--p-notification-color-validation-bg-info:var(--color-white);--p-notification-color-info-text:var(--color-manatee-darkest);--p-notification-color-validation-info:var(--color-manatee);--p-notification-icon-info:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjNDE0OUE4IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAyQzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAybTAgMTVjLS41NSAwLTEtLjQ1LTEtMXYtNGMwLS41NS40NS0xIDEtMXMxIC40NSAxIDF2NGMwIC41NS0uNDUgMS0xIDFtLTEtOGgyVjdoLTJ6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48bWFzayBpZD0iYSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB4PSIyIiB5PSIyIiBtYXNrLXR5cGU9ImFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAyQzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAybTAgMTVjLS41NSAwLTEtLjQ1LTEtMXYtNGMwLS41NS40NS0xIDEtMXMxIC40NSAxIDF2NGMwIC41NS0uNDUgMS0xIDFtLTEtOGgyVjdoLTJ6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L21hc2s+PGcgbWFzaz0idXJsKCNhKSI+PHBhdGggZmlsbD0iIzQxNDlBOCIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48L3N2Zz4=");--p-notification-color-validation-bg-success:var(--color-white);--p-notification-color-success-text:var(--color-manatee-darkest);--p-notification-color-validation-success:var(--color-manatee);--p-notification-icon-success:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMDBBQTcyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDEyQzIgNi40OCA2LjQ4IDIgMTIgMnMxMCA0LjQ4IDEwIDEwLTQuNDggMTAtMTAgMTBTMiAxNy41MiAyIDEybTMuNjMuMzk0IDMuNjMyIDMuNzQ1YS45ODcuOTg3IDAgMCAwIDEuNDI3IDBsNy42ODItNy45MThhMS4wNiAxLjA2IDAgMCAwIDAtMS40NzEuOTg3Ljk4NyAwIDAgMC0xLjQyNyAwTDkuOTggMTMuOTI4bC0yLjkyNS0zLjAwNWEuOTg3Ljk4NyAwIDAgMC0xLjQyNyAwYy0uMTkuMTk1LS4yOTYuNDYtLjI5Ni43MzUgMCAuMjc2LjEwNy41NC4yOTYuNzM2IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48bWFzayBpZD0iYSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB4PSIyIiB5PSIyIiBtYXNrLXR5cGU9ImFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDEyQzIgNi40OCA2LjQ4IDIgMTIgMnMxMCA0LjQ4IDEwIDEwLTQuNDggMTAtMTAgMTBTMiAxNy41MiAyIDEybTMuNjMuMzk0IDMuNjMyIDMuNzQ1YS45ODcuOTg3IDAgMCAwIDEuNDI3IDBsNy42ODItNy45MThhMS4wNiAxLjA2IDAgMCAwIDAtMS40NzEuOTg3Ljk4NyAwIDAgMC0xLjQyNyAwTDkuOTggMTMuOTI4bC0yLjkyNS0zLjAwNWEuOTg3Ljk4NyAwIDAgMC0xLjQyNyAwYy0uMTkuMTk1LS4yOTYuNDYtLjI5Ni43MzUgMCAuMjc2LjEwNy41NC4yOTYuNzM2IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L21hc2s+PC9zdmc+");--p-notification-color-validation-bg-warning:var(--color-white);--p-notification-color-warning-text:var(--color-manatee-darkest);--p-notification-color-validation-warning:var(--color-manatee);--p-notification-icon-warning:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHRpdGxlPmljb24vYWxlcnQvZXJyb3JfMjRweDwvdGl0bGU+PGRlZnM+PHBhdGggaWQ9ImEiIGQ9Ik0xMiAyQzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAybTAgMTFjLS41NSAwLTEtLjQ1LTEtMVY4YzAtLjU1LjQ1LTEgMS0xczEgLjQ1IDEgMXY0YzAgLjU1LS40NSAxLTEgMW0xIDRoLTJ2LTJoMnoiLz48L2RlZnM+PHVzZSB4bGluazpocmVmPSIjYSIgZmlsbD0iI0Y4QjgwMCIgZmlsbC1ydWxlPSJub256ZXJvIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMiAtMikiLz48L3N2Zz4=");--p-notification-width:100%;--p-notification-border-radius:var(--border-radius-xs);--p-notification-padding:var(--spacing-32);--p-notification-border-width:1px 1px 1px 1px;--p-notification-box-shadow:1px 10px 18px var(--color-manatee-lighter);--p-notification-icon-width:40px;--p-notification-icon-min-width:40px;--p-notification-icon-height:40px;--p-notification-icon-min-height:40px;--p-notification-icon-left:10px;--p-notification-icon-top:50%;--p-notification-icon-position:static;--p-notification-icon-margin-top:0}p-notification p{margin-bottom:0;padding-left:3.2rem;padding-left:var(--spacing-32)}.json-form-feedback-ok{background:#fff;background:var(--color-white);border-radius:2rem;border-radius:var(--border-radius-default);border-bottom-left-radius:0;margin-left:-1.2rem;margin-left:calc(var(--spacing-12)*-1);margin-right:-1.2rem;margin-right:calc(var(--spacing-12)*-1);padding:1.6rem 3.2rem 4.8rem;padding:var(--spacing-16) var(--spacing-32) var(--spacing-48);position:relative}.json-form-feedback-ok:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");background:var(--balloon-arrow-url);content:"";display:block;height:2rem;height:var(--border-radius-balloon-arrow);left:0;position:absolute;top:100%;width:2rem;width:var(--border-radius-balloon-arrow)}.json-form-feedback h3{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-bottom:3.2rem;margin-bottom:var(--spacing-32);margin-top:.8rem;margin-top:var(--spacing-8);-webkit-box-align:center;-ms-flex-align:center;align-items:center}.json-form-feedback h3:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iMTciPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJtMTkxLjQgMzYzLjg4NSAxNy40NS03LjQ4YTEgMSAwIDAgMCAwLTEuODRsLTE3LjQ1LTcuNDhhLjk5My45OTMgMCAwIDAtMS4zOS45MWwtLjAxIDQuNjFjMCAuNS4zNy45My44Ny45OWwxNC4xMyAxLjg5LTE0LjEzIDEuODhjLS41LjA3LS44Ny41LS44NyAxbC4wMSA0LjYxYzAgLjcxLjczIDEuMiAxLjM5LjkxIi8+PC9kZWZzPjx1c2UgeGxpbms6aHJlZj0iI2EiIGZpbGw9IiMwMEFBNzIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xOTAgLTM0NykiLz48L3N2Zz4=) no-repeat;background-color:#f4f4f4;background-color:var(--color-manatee-lightest);background-position:50%;border-radius:100%;content:"";display:inline-block;height:40px;margin-right:.8rem;margin-right:var(--spacing-8);min-width:40px;width:40px}@media screen and (min-width:62em){.json-form-feedback-ok{width:50%}p-notification{--p-notification-width:50%}}.c-btn,.cmp-teaser__action-link{cursor:pointer;line-height:--line-height-1-375;line-height:var(--line-height-input-and-buttons);margin-right:.8rem;margin-right:var(--spacing-8)}.cmp-teaser__action-link{display:inline-block}.json-form-submit{cursor:pointer;line-height:--line-height-1-375;line-height:var(--line-height-input-and-buttons);margin-right:.8rem;margin-right:var(--spacing-8)}.c-btn,.json-form-submit,.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link{background-color:#00a870;background-color:var(--color-munsell-green);border:1px solid transparent;border-radius:.4rem;border-radius:var(--border-radius-button);color:#fff;color:var(--color-white);display:inline-block;font-weight:600;font-weight:var(--fw-semibold);margin-bottom:.8rem;margin-bottom:var(--spacing-8);padding:.5rem 3.2rem;padding:.5rem var(--spacing-32);text-decoration:none;-webkit-transition:color .2s ease-in-out,border .2s ease-in-out,background .2s ease-in-out;transition:color .2s ease-in-out,border .2s ease-in-out,background .2s ease-in-out;-webkit-transition:color var(--anim),border var(--anim),background var(--anim);transition:color var(--anim),border var(--anim),background var(--anim)}.json-form-submit{margin-top:.8rem;margin-top:var(--spacing-8)}.c-btn:last-child{margin:0}.c-btn:focus,.c-btn:hover,.json-form-submit:focus,.json-form-submit:hover,.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:focus,.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:hover{background-color:#007a51;background-color:var(--color-munsell-green-darker)}.c-btn:active,.json-form-submit:active,.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link:active{background-color:#004c32;background-color:var(--color-munsell-green-darkest)}.c-btn--white,.cmp-button--white .c-btn,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-"] .cmp-teaser__action-link{background-color:#fff;background-color:var(--color-white);color:#00a870;color:var(--color-munsell-green)}.c-btn--white:focus,.c-btn--white:hover,.cmp-button--white .c-btn:focus,.cmp-button--white .c-btn:hover,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:focus,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:hover{background-color:#fff;background-color:var(--color-white);color:#007a51;color:var(--color-munsell-green-darker)}.c-btn--white:active,.cmp-button--white .c-btn:active,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-img"] .cmp-teaser__action-link:active{background-color:#00a870;background-color:var(--color-munsell-green);color:#fff;color:var(--color-white)}.cmp-button--cta .c-btn{background-color:#ed6f5e;background-color:var(--color-coral-reef);color:#fff;color:var(--color-white)}.cmp-button--cta .c-btn:before,.cmp-button--icon .c-btn:before{content:"";display:inline-block;font-family:PFZWIcons2;font-size:1.4em;margin:-.4em 0;padding:0 .8rem 0 0;padding:0 var(--spacing-8) 0 0;vertical-align:text-bottom}.cmp-button--cta .c-btn:focus,.cmp-button--cta .c-btn:hover{background-color:#ac4f43;background-color:var(--color-coral-reef-darker)}.cmp-button--cta .c-btn:active{background-color:#6a3129;background-color:var(--color-coral-reef-darkest)}.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:focus,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:hover{background-color:#d1efe5;background-color:var(--color-munsell-green-lightest);color:#007a51;color:var(--color-munsell-green-darker)}.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-green"] .cmp-teaser__action-link:active{background-color:#fff;background-color:var(--color-white)}.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link{color:#414aa8;color:var(--color-violet-blue)}.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:focus,.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:hover{background:#cacce6;background:var(--color-violet-blue-lightest);color:#292e6a;color:var(--color-violet-blue-darker)}.teaser:not(.cmp-teaser--cta-text-link).teaser[class*="--bg-blue"] .cmp-teaser__action-link:active{background-color:#fff;background-color:var(--color-white)}.c-btn--icon .c-btn{padding-right:.8rem;padding-right:var(--spacing-8)}:not(.cmp-button)>.c-btn--icon:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239c9fa3' d='m9.3 15.9 3.9-3.9-3.9-3.9c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.6 4.6c.4.4.4 1 0 1.4l-4.6 4.6c-.4.4-1 .4-1.4 0s-.4-1 0-1.4'/%3E%3C/svg%3E");content:"";display:inline-block;height:3.2rem;height:var(--spacing-32);vertical-align:middle;width:3.2rem;width:var(--spacing-32)}.cmp-button--icon-pdf .c-btn:before{content:""}.cmp-button--cta .c-btn:before,.cmp-button--cta.cmp-button--icon .c-btn:before{content:""}.c-btn--icon-only{height:4.6rem;line-height:1;overflow:hidden;padding:.8rem;padding:var(--spacing-8);position:relative;width:4.6rem}.c-btn--icon-only .c-btn__text{left:-9999px;position:absolute}.c-btn--ghost{background:0 0;border-color:#9ca0a4;border-color:var(--color-manatee);color:#383a3c;color:var(--color-manatee-darkest)}.c-btn--ghost:hover{color:#00a870;color:var(--color-munsell-green)}.c-btn--ghost:active,.c-btn--ghost:hover{background:#fff;background:var(--color-white);border-color:transparent}.c-btn--ghost:active{color:#004c32;color:var(--color-munsell-green-darkest)}.cmp-button--arrow-link .c-btn,.cmp-teaser__action-link{line-height:1.375;line-height:var(--line-height-1-375);margin-right:auto}.cmp-teaser--cta-text-link .cmp-teaser__action-link{background:0 0}.cmp-button--arrow-link .c-btn,.cmp-teaser--cta-text-link .cmp-teaser__action-link{--icon-width:1.2em;font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16);font-weight:600;font-weight:var(--fw-semibold);margin-top:.8rem;margin-top:var(--spacing-8);padding-left:1.2em;padding-left:var(--icon-width);text-decoration:none;-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out;-webkit-transition:color var(--anim);transition:color var(--anim)}.cmp-teaser--cta-text-link .cmp-teaser__action-link:before{height:1.2em;height:var(--icon-width);margin:0 0 0 -1.2em;margin:0 0 0 calc(var(--icon-width)*-1);width:1.2em;width:var(--icon-width)}.cmp-button--arrow-link.cmp-button--icon .c-btn:before,.cmp-teaser--cta-text-link .cmp-teaser__action-link:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300aa72' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");background:var(--arrow-right-url);content:"";display:inline-block;font-size:1em;padding:0;vertical-align:text-bottom}.cmp-button--arrow-link.cmp-button--icon .c-btn:before{height:undefined;height:var(--icon-width);margin:undefined;margin:0 0 0 calc(var(--icon-width)*-1);width:undefined;width:var(--icon-width)}.cmp-button--arrow-link .c-btn:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300aa72' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");background:var(--arrow-right-url);content:"";display:inline-block;font-size:1em;height:1.2em;height:var(--icon-width);margin:0 0 0 -1.2em;margin:0 0 0 calc(var(--icon-width)*-1);padding:0;vertical-align:text-bottom;width:1.2em;width:var(--icon-width)}.cmp-button--arrow-link .c-btn{background:0 0;color:inherit;margin-top:0;padding:0 0 0 1.2em;padding:0 0 0 var(--icon-width)}.cmp-button--arrow-link .c-btn:hover{color:#00a870;color:var(--color-munsell-green)}.cmp-button:not(.cmp-button--no-margin){margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}.c-btn[disabled],.json-form-submit[disabled],.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link[disabled]{background-color:#bfc0c3;background-color:var(--color-disabled);color:#9ca0a4;color:var(--color-manatee)}.c-btn[disabled]:hover,.json-form-submit[disabled]:hover,.teaser:not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link[disabled]:hover{background-color:#bfc0c3;background-color:var(--color-manatee-lighter)}@media screen and (min-width:48em){.cmp-button:not(.cmp-button--no-margin){margin-bottom:4.8rem;margin-bottom:var(--spacing-48)}}p-icon.small{height:24px;height:var(--icon-small);width:24px;width:var(--icon-small)}p-icon.medium{height:48px;height:var(--icon-medium);width:48px;width:var(--icon-medium)}p-icon.large{height:96px;height:var(--icon-large);width:96px;width:var(--icon-large)}.cmp-image__image{width:100%}.cmp-accordion__header{font-size:unset;margin:0;padding:1.2rem 0;padding:var(--spacing-12) 0}.cmp-accordion__title{display:-webkit-box;display:-ms-flexbox;display:flex;font-weight:700;margin-right:3.2rem;margin-right:var(--spacing-32);-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;width:inherit}.cmp-accordion__item+.cmp-accordion__item{border-top:1px solid #bfc0c3;border-top:1px solid var(--color-manatee-lighter)}.cmp-accordion__button{background-color:unset;text-align:left;width:100%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal}.cmp-accordion__panel--hidden{display:none}.aem-AuthorLayer-Edit .cmp-accordion__panel--hidden,.cmp-accordion__panel--expanded{display:block}.cmp-accordion__item{padding-top:.8rem;padding-top:var(--spacing-8)}.cmp-accordion__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right}.accordion-icon-pointer{max-height:1.2rem;max-height:var(--spacing-12);min-width:1.2rem;min-width:var(--spacing-12);-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transition:-webkit-transform .2s ease-out;transition:transform .2s ease-out,-webkit-transform .2s ease-out;width:1.2rem;width:var(--spacing-12);will-change:auto}.accordion-icon-pointer path{fill:#00a870;fill:var(--color-munsell-green)}.cmp-accordion__button--expanded .accordion-icon-pointer{-webkit-transform:rotate(0);transform:rotate(0)}.main-left.navigation{padding-left:0}.main-left .cmp-navigation{border-top-left-radius:0}@media screen and (min-width:48em){.main-left .cmp-navigation{margin-right:calc(1.2rem + 8.33333%);margin-right:calc(var(--spacing-grid-half-gutter) + 8.33333%)}}.cmp-navigation__group{list-style-type:none}.cmp-navigation__item--level-0>.cmp-navigation__item-link{font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16);font-weight:700;font-weight:var(--fw-bold)}.cmp-navigation__item-link{color:#383a3c;color:var(--color-body);display:block;padding-bottom:1.2rem;padding-bottom:var(--spacing-12);padding-top:1.2rem;padding-top:var(--spacing-12);text-decoration:none}.cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link{color:#00a870;color:var(--color-primary);font-weight:700;font-weight:var(--fw-bold)}.cmp-navigation__item>.cmp-navigation__item-link:hover{color:#414aa8;color:var(--color-menu-link-hover)}.cmp-navigation__item--level-0>.cmp-navigation__item-link,.cmp-navigation__item--level-0>.cmp-navigation__item-link:hover{color:#00a870;color:var(--color-primary)}.cmp-pfzw-navigation .cmp-navigation__group>li:first-child.cmp-navigation__item--level-0>.cmp-navigation__item-link,.cmp-pfzw-navigation .cmp-navigation__group>li:first-child.cmp-navigation__item--level-0>.cmp-navigation__item-link:hover{color:#383a3c;color:var(--color-body)}@media screen and (min-width:90em){.cmp-navigation__item--level-0>.cmp-navigation__item-link,.cmp-navigation__item--level-0>.cmp-navigation__item-link:hover{color:#383a3c;color:var(--color-body)}.pfzw-page--white-header-text .cmp-pfzw-navigation .cmp-navigation__group>li:first-child.cmp-navigation__item--level-0>.cmp-navigation__item-link{color:#fff;color:var(--color-white)}.cmp-pfzw-navigation .cmp-navigation__group>li:first-child.cmp-navigation__item--level-0>.cmp-navigation__item-link:hover{color:#00a870;color:var(--color-primary)}}.cmp-teaser__image{border-top-left-radius:2rem;border-top-left-radius:var(--balloon-border-radius-top-left);border-top-right-radius:2rem;border-top-right-radius:var(--balloon-border-radius-top-right);margin-left:-2.4rem;margin-left:calc(var(--balloon-padding-left)*-1);margin-right:-2.4rem;margin-right:calc(var(--balloon-padding-right)*-1);margin-top:-3.2rem;margin-top:calc(var(--balloon-padding-top)*-1);overflow:hidden}.cmp-teaser__image+.cmp-teaser__content{position:relative;z-index:1}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.o-balloon--bg-green .cmp-teaser__image+.cmp-teaser__content:before{background:#00a870;background:var(--color-munsell-green)}.o-balloon--bg-blue .cmp-teaser__image+.cmp-teaser__content:before{background:#414aa8;background:var(--color-violet-blue)}.cmp-teaser--bg-img>[class^=cmp]{color:#fff;color:var(--color-white)}}.cmp-teaser__title{margin-bottom:var(--spacing-16,1.6rem)}.cmp-teaser__title-link{text-decoration:none}.cmp-teaser__title--icon{padding-left:4.8rem;padding-left:var(--spacing-48)}.cmp-teaser__icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#f4f4f4;background:var(--color-manatee-lightest);border-radius:50%;color:#00a870;color:var(--color-munsell-green);height:3.2rem;height:var(--spacing-32);margin-left:calc(var(--spacing-48, 4.8rem)*-1);margin-right:var(--spacing-16,1.6rem);vertical-align:bottom;width:3.2rem;width:var(--spacing-32)}.cmp-teaser__action-container{margin-top:1.6rem;margin-top:var(--spacing-16)}.cmp-teaser--cta-text-link .cmp-teaser__action-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.cmp-teaser--bg-img{--border-radius-balloon-arrow:var(--border-radius-balloon-arrow--lg);--balloon-margin-bottom:var(--spacing-32);--color-balloon-text:var(--color-white);--teaser-text-shadow:0 0 1px rgba(0,0,0,.5);--arrow-right-url:var(--arrow-right-url-white)}.cmp-teaser--bg-img h2,.cmp-teaser--bg-img h3{font:3.6rem/1.1666666667 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-36);font-family:Nantes Web,georgia,serif;font-family:var(--ff-secondary)}.cmp-teaser--bg-img .cmp-teaser{background:0 0;border-bottom-left-radius:0;border-bottom-right-radius:0;height:60rem;overflow:hidden;padding-bottom:10rem;padding-bottom:calc(var(--border-radius-balloon-arrow--lg) + var(--spacing-32))}.cmp-teaser--bg-img>.cmp-teaser:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23f5f5f5' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");background-image:var(--balloon-arrow-url-x-light);bottom:6.8rem;bottom:var(--border-radius-balloon-arrow);content:"";display:block;height:2rem;height:var(--border-radius-balloon);left:auto;position:absolute;right:0;-webkit-transform:rotate(180deg);transform:rotate(180deg);width:2rem;width:var(--border-radius-balloon);z-index:1}.cmp-teaser--bg-img>.cmp-teaser:after{background:#f4f4f4;background:var(--color-bg-content);border-top-left-radius:6.8rem;border-top-left-radius:var(--border-radius-balloon-arrow);bottom:0;top:auto;width:calc(100% + 1px)}.cmp-teaser--bg-img .cmp-teaser__image{height:100%;left:0;margin:0;position:absolute;top:0;width:100%}.cmp-teaser--bg-img .cmp-image,.cmp-teaser--bg-img .cmp-image__link{display:-webkit-box;display:-ms-flexbox;display:flex;height:99%}.cmp-teaser--bg-img img{display:block;height:100%;width:auto}.cmp-teaser--bg-img{overflow:hidden;position:relative}.cmp-teaser--bg-img img{bottom:-9999px;left:-9999px;margin:auto;min-height:100%;min-width:100%;position:absolute;right:-9999px;top:-9999px}@supports((-o-object-fit:cover) or (object-fit:cover)){.cmp-teaser--bg-img img{height:auto;margin:initial;min-height:100%;min-width:100%;-o-object-fit:cover;object-fit:cover;position:static;width:auto}}.cmp-teaser--bg-img .cmp-teaser__content{position:relative;z-index:1}.cmp-teaser--bg-img .cmp-teaser__content:before{display:none}.cmp-teaser--bg-img .cmp-teaser__title{text-shadow:0 0 1px rgba(0,0,0,.5);text-shadow:var(--teaser-text-shadow)}.cmp-teaser--bg-img .cmp-teaser__description{display:none}.cmp-teaser--bg-img-text-bottom .cmp-teaser{display:-webkit-box;display:-ms-flexbox;display:flex}.cmp-teaser--bg-img-text-bottom .cmp-teaser__content{-ms-flex-item-align:end;align-self:flex-end}.cmp-teaser--text-dark,.cmp-teaser--text-dark .cmp-teaser{--color-balloon-text:#393a3c;--color-balloon-text:var(--color-body);--teaser-text-shadow:0 0 1px hsla(0,0%,100%,.5);color:#383a3c;color:var(--color-balloon-text);text-shadow:0 0 1px hsla(0,0%,100%,.5);text-shadow:var(--teaser-text-shadow)}.o-balloon--bg-blue.cmp-teaser--text-dark,.o-balloon--bg-green.cmp-teaser--text-dark{--color-balloon-text:var(--color-white);--teaser-text-shadow:none}.main-right .teaser.o-balloon{padding-right:0;--balloon-border-radius-top-right:0;--balloon-border-radius-bottom-right:0;--balloon-border-radius-bottom-left:var(--border-radius-balloon)}.main-right .teaser:first-child .cmp-teaser{margin-top:4.8rem;margin-top:var(--spacing-48)}@media screen and (min-width:48em){.main-right .teaser:first-child .cmp-teaser{margin-top:12.8rem;margin-top:var(--spacing-128)}}.main-right .cmp-teaser{border-bottom-left-radius:2rem;border-bottom-left-radius:var(--border-radius-balloon);border-bottom-right-radius:0;border-top-right-radius:0}.main-right .cmp-teaser--bg-img .cmp-teaser{border-bottom-left-radius:0}.main-right .cmp-teaser:after{left:auto;right:0;-webkit-transform:scaleX(-1);transform:scaleX(-1)}.main-right .cmp-teaser--bg-img .cmp-teaser:before{left:0;right:auto;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.main-right .cmp-teaser__image{border-top-right-radius:0}.cmp-teaser--hero .cmp-teaser{--hero-teaser-height-small:22.5rem;--teaser-height:22.5rem;--teaser-height:var(--hero-teaser-height-small);height:22.5rem;height:var(--teaser-height);margin-left:-1.6rem;margin-left:calc(var(--spacing-grid-gutter-sm)*-1);margin-right:-1.6rem;margin-right:calc(var(--spacing-grid-gutter-sm)*-1);margin-top:-13.6rem;margin-top:calc(var(--header-height)*-1);overflow:hidden;position:relative}@media screen and (min-width:48em){.cmp-teaser--hero .cmp-teaser{margin-left:-2.4rem;margin-left:calc(var(--spacing-grid-gutter)*-1);margin-right:-2.4rem;margin-right:calc(var(--spacing-grid-gutter)*-1)}}@media screen and (min-width:62em){.cmp-teaser--hero .cmp-teaser{margin-right:-1.2rem;margin-right:calc(var(--spacing-grid-half-gutter)*-1)}}@media screen and (min-width:73.125em){.cmp-teaser--hero .cmp-teaser{margin-left:-1.2rem;margin-left:calc(var(--spacing-grid-half-gutter)*-1)}.cmp-teaser--hero-main-content .cmp-teaser{border-right:none}}.cmp-teaser--hero .cmp-teaser:before{background:linear-gradient(180deg,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,.2) 40px,hsla(0,0%,100%,.2) 88px,transparent 22.5rem),linear-gradient(0deg,#f4f4f4 1px,transparent 0);background:linear-gradient(to bottom,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,.2) 40px,hsla(0,0%,100%,.2) 88px,transparent var(--hero-teaser-height-small)),linear-gradient(to top,var(--color-bg-content) 1px,transparent 0);content:"";display:block;height:1px;height:100%;left:0;position:absolute;top:0;width:100%;z-index:10;z-index:var(--z-index-hero-teaser-before)}.pfzw-page--white-header-text .cmp-teaser--hero .cmp-teaser:before{background:linear-gradient(180deg,rgba(0,0,0,.1) 0,rgba(0,0,0,.2) 40px,rgba(0,0,0,.2) 88px,transparent 22.5rem),linear-gradient(0deg,#f4f4f4 1px,transparent 0);background:linear-gradient(to bottom,rgba(0,0,0,.1) 0,rgba(0,0,0,.2) 40px,rgba(0,0,0,.2) 88px,transparent var(--hero-teaser-height-small)),linear-gradient(to top,var(--color-bg-content) 1px,transparent 0)}.cmp-teaser--hero .cmp-teaser:after{background:#f4f4f4;background:var(--color-bg-content);border-top-right-radius:2rem;border-top-right-radius:var(--border-radius-balloon-arrow-default);bottom:0;content:"";display:block;height:2rem;height:var(--border-radius-balloon-arrow-default);position:absolute;width:100%}@media screen and (min-width:62em){.cmp-teaser--hero .cmp-teaser{height:40.8rem}.cmp-teaser--hero .cmp-teaser:after{border-top-right-radius:6.8rem;border-top-right-radius:var(--border-radius-balloon-arrow--lg);height:6.8rem;height:var(--border-radius-balloon-arrow--lg)}}@media screen and (min-width:73.125em){.cmp-teaser--hero .cmp-teaser{height:56.8rem}}.cmp-teaser--hero .cmp-teaser .cmp-teaser__image{height:auto;left:2.4rem;left:var(--spacing-grid-gutter);position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}.cmp-teaser--hero-align-top .cmp-teaser .cmp-teaser__image{top:0;-webkit-transform:none;transform:none}.cmp-teaser--hero-align-10-from-top .cmp-teaser .cmp-teaser__image{top:10%;-webkit-transform:translateY(-10%);transform:translateY(-10%)}.cmp-teaser--hero-align-20-from-top .cmp-teaser .cmp-teaser__image{top:20%;-webkit-transform:translateY(-20%);transform:translateY(-20%)}.cmp-teaser--hero-align-25-from-top .cmp-teaser .cmp-teaser__image{top:25%;-webkit-transform:translateY(-25%);transform:translateY(-25%)}.cmp-teaser--hero-align-30-from-top .cmp-teaser .cmp-teaser__image{top:30%;-webkit-transform:translateY(-30%);transform:translateY(-30%)}.cmp-teaser--hero-align-40-from-top .cmp-teaser .cmp-teaser__image{top:40%;-webkit-transform:translateY(-40%);transform:translateY(-40%)}.cmp-teaser--hero-align-25-from-bottom .cmp-teaser .cmp-teaser__image{bottom:25%;top:auto;-webkit-transform:translateY(25%);transform:translateY(25%)}.cmp-teaser--hero-align-bottom .cmp-teaser .cmp-teaser__image{bottom:0;top:auto;-webkit-transform:none;transform:none}.cmp-teaser--hero .cmp-teaser__content{display:none}.cmp-teaser--hero-main-content .cmp-teaser{border-top-left-radius:2rem;border-top-left-radius:var(--border-radius-balloon-arrow-default);border-top-right-radius:2rem;border-top-right-radius:var(--border-radius-balloon-arrow-default);height:auto;margin:0 0 1.6rem;margin:0 0 var(--spacing-16)}.aem-AuthorLayer-Edit .cmp-teaser--hero-main-content .cmp-teaser{min-height:32px}.cmp-teaser--hero-main-content .cmp-teaser:after{border-top-left-radius:2rem;border-top-left-radius:var(--border-radius-balloon-arrow-default);border-top-right-radius:0;height:2rem;height:var(--border-radius-balloon-arrow-default)}.cmp-teaser--hero-main-content.cmp-teaser--hero-main-content .cmp-teaser:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23f5f5f5' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");background:var(--balloon-arrow-url-x-light);bottom:2rem;bottom:var(--border-radius-balloon-arrow-default);content:"";height:2rem;height:var(--border-radius-balloon-arrow-default);left:auto;position:absolute;right:0;top:auto;-webkit-transform:rotate(180deg);transform:rotate(180deg);width:2rem;width:var(--border-radius-balloon-arrow-default);z-index:1}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.cmp-teaser--hero-main-content.cmp-teaser--hero-main-content .cmp-teaser:before{background:#f4f4f4;background:var(--color-bg-content);border-bottom-right-radius:2rem;border-bottom-right-radius:var(--border-radius-balloon-arrow-default);bottom:0;width:100%}}.cmp-teaser--hero-main-content .cmp-teaser .cmp-teaser__image{position:relative;-webkit-transform:none;transform:none}.cmp-text{margin-bottom:0}.cmp-text p:last-child{margin-bottom:1.6rem;margin-bottom:var(--mb-p)}@media screen and (min-width:48em){.cmp-text p:last-child{margin-bottom:3.2rem;margin-bottom:var(--mb-p)}}.cmp-text--intro{font-weight:600;font-weight:var(--fw-semibold);margin-bottom:0}.cmp-text--intro .cmp-text{margin-bottom:0}.cmp-text--intro .cmp-text p{margin-bottom:1.6rem;margin-bottom:var(--spacing-16)}.cmp-text--intro .cmp-text p:last-of-type{margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}@media screen and (min-width:48em){.cmp-text--intro .cmp-text p{margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}.cmp-text--intro .cmp-text p:last-of-type{margin-bottom:4.8rem;margin-bottom:var(--spacing-48)}}.cmp-text a,pfzw-collapsible a{border:1px solid transparent;color:#414aa8;color:var(--color-body-link);display:inline-block;margin:0 -.1em;padding:0 .1em;text-decoration:underline;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none;-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out;-webkit-transition:color var(--anim);transition:color var(--anim)}.cmp-text a:visited,pfzw-collapsible a:visited{color:#00a870;color:var(--color-body-link-visited)}.cmp-text a:hover,pfzw-collapsible a:hover{color:#1d214d;color:var(--color-body-link-hover)}.cmp-text a:active,pfzw-collapsible a:active{color:#292e6a;color:var(--color-body-link-active)}.cmp-text a:focus,pfzw-collapsible a:focus{background:#fff;background:var(--color-white);border:1px solid #cacce6;border:1px solid var(--color-violet-blue-lightest);border-radius:.4rem;border-radius:var(--border-radius-xs);outline:0;text-decoration:none}.cmp-text ol ol,.cmp-text ol ul,.cmp-text ul ol,.cmp-text ul ul,.guidetextdraw ol ol,.guidetextdraw ol ul,.guidetextdraw ul ul{margin-bottom:0}.cmp-text ol,.cmp-text ul,.guidetextdraw ol,.guidetextdraw ul,pfzw-collapsible ol,pfzw-collapsible ul{list-style:none;margin-bottom:1.6rem;margin-bottom:var(--spacing-body-text)}.cmp-text ul li,.guidetextdraw ul li,pfzw-collapsible ul li{padding-left:3.2rem;padding-left:var(--spacing-list-elements);position:relative}.cmp-text ul li:before,.guidetextdraw ul li:before,pfzw-collapsible ul li:before{background-color:#00a870;background-color:var(--color-munsell-green);border-radius:50%;content:"";display:inline-block;height:.5rem;left:0;position:absolute;top:1.2rem;top:var(--spacing-grid-half-gutter);width:.5rem}.cmp-text ol,.guidetextdraw ol,pfzw-collapsible ol{counter-reset:pfzw;list-style-type:none}.cmp-text ol>li,.guidetextdraw ol>li,pfzw-collapsible ol>li{counter-increment:pfzw;display:table;margin-top:.6em;word-break:normal}.cmp-text ol li:before,.guidetextdraw ol li:before,pfzw-collapsible ol li:before{content:counters(pfzw,".");display:table-cell;padding-right:1.4em}pfzw-collapsible ol:last-child,pfzw-collapsible ul:last-child{margin-bottom:0}.cmp-text--table{overflow-x:auto}@media screen and (min-width:48em){.cmp-text--intro .cmp-text p{margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}.cmp-text--intro .cmp-text p:last-of-type{margin-bottom:4.8rem;margin-bottom:var(--spacing-48)}.cmp-text ol,.cmp-text ul,.guidetextdraw ol,.guidetextdraw ul{margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}}.cmp-breadcrumb{font-size:undefined;font-size:var(--fs-sm);margin:0 0 1.6rem;margin:0 0 var(--spacing-16);overflow:hidden;white-space:nowrap;width:100%}.cmp-breadcrumb__list{-webkit-box-sizing:content-box;box-sizing:content-box;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:0;overflow-x:auto;overflow-y:hidden;padding:0;scrollbar-width:none}.cmp-breadcrumb__list::-webkit-scrollbar{height:0;width:0}.cmp-breadcrumb__item:not(.cmp-breadcrumb__item--active):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239c9fa3' d='m9.3 15.9 3.9-3.9-3.9-3.9c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.6 4.6c.4.4.4 1 0 1.4l-4.6 4.6c-.4.4-1 .4-1.4 0s-.4-1 0-1.4'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:2.4rem 2.4rem;content:"";display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:100%;margin-left:1.6rem;margin-left:var(--spacing-16);margin-right:1.6rem;margin-right:var(--spacing-16);width:.8rem}.cmp-breadcrumb__item{color:#bfc0c3;color:var(--color-manatee-lighter);display:none}.cmp-breadcrumb__item:last-child,.cmp-breadcrumb__item:nth-last-child(2),.cmp-breadcrumb__item:nth-last-child(3){display:-webkit-box;display:-ms-flexbox;display:flex}.cmp-breadcrumb__item-link{text-decoration:none}.cmp-breadcrumb__item-link,.cmp-breadcrumb__item-link:active,.cmp-breadcrumb__item-link:hover,.cmp-breadcrumb__item-link:visited{color:#636668;color:var(--color-manatee-darker)}@media screen and (min-width:48em){.cmp-breadcrumb{margin:0 0 3.2rem;margin:0 0 var(--spacing-32)}}.cmp-image{line-height:0;margin-bottom:1.6rem;margin-bottom:var(--spacing-16)}@media screen and (min-width:48em){.cmp-image{margin-bottom:2.4rem;margin-bottom:var(--spacing-24)}}.cmp-tabs{display:block}.cmp-tabs__tablist{display:-webkit-box;display:-ms-flexbox;display:flex;list-style-type:none;-webkit-box-orient:horizontal;-webkit-box-direction:normal;border-bottom:1px solid #bfc0c3;border-bottom:1px solid var(--color-manatee-lighter);-ms-flex-direction:row;flex-direction:row;margin-bottom:3.2rem}.cmp-tabs__tab{border-bottom:3px solid transparent;cursor:pointer;font-weight:600;margin:0 4rem -2px 0;outline:0}.cmp-tabs__tab:not(.cmp-tabs__tab--active):hover{border-color:#383a3c;border-color:var(--color-manatee-darkest)}.cmp-tabs__tab--active{border-color:#00a870;border-color:var(--color-munsell-green);color:#00a870;color:var(--color-munsell-green)}.cmp-tabs__tabpanel{display:none}.cmp-tabs__tabpanel--active{display:block}.cmp-list{list-style:none;margin-bottom:1.6rem;margin-bottom:var(--spacing-16)}.o-balloon-list .cmp-list{margin-bottom:0}.cmp-list__item-link{--icon-width:1.2em;color:inherit;display:block;font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16);margin-top:1.6rem;margin-top:var(--spacing-16);padding-left:1.2em;padding-left:var(--icon-width);text-decoration:none;-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out;-webkit-transition:color var(--anim);transition:color var(--anim)}.cmp-list__item-link:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300aa72' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");background:var(--arrow-right-url);content:"";display:inline-block;height:1.2em;height:var(--icon-width);margin-left:-1.2em;margin-left:calc(var(--icon-width)*-1);vertical-align:sub;width:1.2em;width:var(--icon-width)}.list:not(.cmp-list--footer) .cmp-list__item:first-child .cmp-list__item-link{margin-top:0}.cmp-list__item-description{display:block;padding-left:2.4rem;padding-left:var(--spacing-24)}.row .cmp-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%}.row .cmp-list__item{width:100%}@media screen and (min-width:48em){.cmp-list{margin-bottom:3.2rem;margin-bottom:var(--spacing-32)}.row--2-items .cmp-list__item,.row--3-items .cmp-list__item,.row--4-items .cmp-list__item{margin-left:2.4rem;margin-left:calc(var(--spacing-grid-gutter))}.row--2-items .cmp-list__item{width:calc(50% - 1.3rem);width:calc((100% - var(--spacing-grid-gutter))/2 - .1rem)}.row--2-items .cmp-list__item:nth-child(odd){margin-left:0}.row--3-items .cmp-list__item{width:calc(33.33333% - 1.7rem);width:calc(33.33333% - var(--spacing-grid-gutter)*2/3 - .1rem)}.row--3-items .cmp-list__item:nth-child(3n+1){margin-left:0}.row--4-items .cmp-list__item{width:calc(25% - 1.9rem);width:calc(25% - var(--spacing-grid-gutter)*3/4 - .1rem)}.row--4-items .cmp-list__item:nth-child(4n+1){margin-left:0}}.cmp-list--footer .cmp-list{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:1.4rem;-webkit-box-pack:start;-ms-flex-pack:start;border-top:1px solid #bfc0c3;border-top:1px solid var(--color-manatee-lighter);-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:flex-start;padding:1.6rem 0;padding:var(--spacing-16) 0 var(--spacing-16) 0;position:relative}.cmp-list--footer .cmp-list:before{border-bottom:1px solid #bfc0c3;border-bottom:1px solid var(--color-manatee-lighter);content:"";display:block;height:2rem;position:absolute;top:calc(-2rem - 1px);width:2rem}.cmp-list--footer .cmp-list__item{width:50%}.cmp-list--footer .cmp-list__item-link{font:1.4rem/1.4285714288 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-14);padding:0;text-align:center}.cmp-list--footer .cmp-list__item-link:before{display:none}.cmp-list--footer .cmp-list__item-link:hover{color:#00a870;color:var(--color-primary)}@media screen and (min-width:48em){.cmp-list--footer .cmp-list__item{width:33.33%}.cmp-list--footer .cmp-list{padding:0 0 1.6rem;padding:0 0 var(--spacing-16) 0}}@media screen and (min-width:73.125em){.cmp-list--footer{padding-left:0}.cmp-list--footer .cmp-list__item{padding:0;width:16.66%}.cmp-list--footer .cmp-list:before{right:-1.2rem}.cmp-list--footer .cmp-list{margin-bottom:0;margin-top:1.6rem;margin-top:var(--spacing-16);padding:0 3.2rem 3.2rem;padding:0 var(--spacing-32) var(--spacing-32) var(--spacing-32)}}.cmp-searchbar__input[type=text]{margin-right:-4.9rem;padding-right:4.2rem;vertical-align:middle;width:100%}.cmp-searchbar__button{background:0 0;border:0;height:4.4rem;vertical-align:middle;width:4.4rem}.cmp-searchbar__button:before{color:#383a3c;color:var(--color-manatee-darkest);font-size:2.5rem;left:50%;position:absolute;top:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.cmp-searchbar__button:focus:before,.cmp-searchbar__button:hover:before{color:#00a870;color:var(--color-munsell-green)}.cmp-searchresult{padding-top:1.6rem}.cmp-searchresult__item{border-top:1px solid #bfc0c3;border-top:1px solid var(--color-manatee-lighter);padding:3.2rem 0 3.2rem 4.8rem;padding:var(--spacing-32) 0 var(--spacing-32) var(--spacing-48);position:relative}.cmp-searchresult__item:first-child{border-top:none}.cmp-searchresult__item .cmp-teaser__icon{background:#fff;left:0;margin-left:0;position:absolute;top:3.2rem;top:var(--spacing-32)}.cmp-searchresult__item__search-term{font-weight:700}.cmp-searchresult__no-result>*{display:inline-block}.investment-map-top{background:#fff;border-top-left-radius:16px;border-top-right-radius:16px;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:100px;padding:1.6rem;padding:var(--spacing-16)}.investment-map-top .header{font-weight:700;margin:0}.investment-map-top .amount{font-size:28px;font-weight:800;margin-top:5px}.investment-map-top .total-left .amount{color:#414aa8;color:var(--color-violet-blue)}.investment-map-top .total-right .amount{color:#00a870;color:var(--color-munsell-green)}.investment-map-top .total-left{width:60%}.investment-map-top .total-right{text-align:right;width:40%}.investment-map-component{height:353px}.investment-map-bottom{background:#fff;border-bottom-right-radius:16px;min-height:100px;padding:1.6rem;padding:var(--spacing-16)}.investmentmap .gm-style-iw-d{max-height:240px!important;overflow:hidden!important}.investmentmap .gm-style-iw .gm-ui-hover-effect{border:1px solid #000!important;border-radius:3px!important;height:40px!important;right:7%!important;top:11%!important;width:40px!important}.gm-ui-hover-effect span{height:25px!important;margin:6px!important;width:25px!important}.gm-style-iw{height:275px!important;max-height:275px!important}.gm-style-iw-c{border-radius:20px!important;box-shadow:none!important;-webkit-box-shadow:none!important}.gm-style-iw-tc{display:none!important}.gm-style .gm-style-iw-c{-webkit-transform:translate3d(-25%,-95%,0)!important;transform:translate3d(-25%,-95%,0)!important}.grey-overlay{background:rgba(0,0,0,.135);height:100%;position:absolute;width:100%;z-index:1}.investmentmap #content{height:275px;padding:20px 12px;width:358px}#headers-content{width:100%}.arrow_button{background:#f5f5f5!important;border:none;color:#00a870;color:var(--color-munsell-green);font-size:20px;font-weight:900}#table-headers{height:auto;padding:0;width:100%}#table-headers tr.show:not(:empty){height:30px;padding-bottom:5px}#table-headers th{border-bottom:0 solid #fff;font-weight:bolder}.sortable-table{width:100%}.sortable-table th{position:relative}.sortable-table th:first-child .sorting-button{background-repeat:no-repeat;left:97px;position:absolute;top:16px}.sortable-table th:first-child .sorting-button-onderneming{left:123px}.sortable-table th:nth-child(2){float:right;width:125px}.sortable-table th:nth-child(2) .sorting-button{background-repeat:no-repeat;position:absolute;right:0;top:15px}.sorting-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='14' fill='none' viewBox='0 0 6 14'%3E%3Cpath fill='%239C9FA3' d='M5.752 2.824 3.588.287c-.326-.383-.852-.383-1.178 0L.246 2.824C-.281 3.442.096 4.5.839 4.5h4.328c.744 0 1.112-1.058.585-1.676M.248 11.176l2.164 2.537c.326.383.852.383 1.178 0l2.164-2.537c.527-.618.15-1.676-.593-1.676H.833c-.744 0-1.112 1.058-.585 1.676'/%3E%3C/svg%3E");height:20px;width:20px}.investmentmap .firstHeading{font-size:18px;font-weight:700;height:24px;line-height:24px;margin-bottom:32px;width:200px}.investment-label{font-family:Open Sans;font-size:15px;font-weight:400}.investmentmap p{margin-bottom:16px}.investment-arrow{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");background-repeat:no-repeat;height:20px;margin-left:7px;position:absolute;width:20px}.investment-button{background:#fff}.extra-negative-margin-left{margin-left:-5px}.investment-specifics{font-size:16px;font-weight:600px;line-height:24px;padding-left:27px}.investment-specifics-selected,.investment-specifics:hover{color:#00a870;color:var(--color-munsell-green)}#investment-map-table-part{background-color:#fff;border-bottom-left-radius:16px;border-bottom-right-radius:16px;margin-bottom:20px;overflow-y:scroll;padding:15px 15px 22px}#investment-map-table-part table{margin-bottom:0}#investment-map-table-part::-webkit-scrollbar-track{background-color:transparent;margin-bottom:10px;margin-top:10px}#investment-map-table-part::-webkit-scrollbar-thumb{background:#f5f5f5;border-radius:10px}#investment-map-table-part::-webkit-scrollbar{width:7px}#SDG_tbl_expanded_id tbody:first-child,#SDG_tbl_id tbody:first-child,#engadgements_tbl_id tbody:first-child,#totaal_tbl_expanded_id tbody:first-child,#totaal_tbl_id tbody:first-child{border-top:1px solid #bfc0c3;border-top:1px solid var(--color-border-table)}.clickable-row{cursor:pointer}.tooltip{position:relative}.tooltip .tooltip-text{background:#fff;border:1px solid #bfc0c3;border:1px solid var(--color-manatee-lighter);border-radius:16px;color:#636668;color:var(--color-manatee-darker);position:absolute;right:0;text-align:center;top:28px;visibility:hidden;width:100px;z-index:5}.tooltip:hover .tooltip-text{visibility:visible}.hide{display:none}.show,table{display:table}table{width:calc(100% - 20px)}.sdg{border-bottom-right-radius:4px;border-top-right-radius:4px;height:20px;margin-right:17px;padding-top:19px}.sdg-budget{position:relative}.sdg-budget img{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tbl-title{text-align:right}.investment-row{width:30%}.investment-column{width:21%}.tbl-button{background-color:transparent;padding-right:26px;position:relative}#totaal_tbl_expanded_header th:first-child,#totaal_tbl_expanded_id td:first-child{width:440px}#totaal_tbl_expanded_header th:nth-child(2),#totaal_tbl_expanded_id td:nth-child(2){text-align:right;width:135px}#totaal_tbl_expanded_header th:nth-child(2){margin-right:16px}#totaal_tbl_expanded_header th:nth-child(3),#totaal_tbl_expanded_id td:nth-child(3){width:53px}.type-Obligatie{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='33' fill='none' viewBox='83 0 110 33'%3E%3Cpath stroke='%23C0C1C4' d='M0 32.5h133M121 13c0 6.627-5.373 12-12 12s-12-5.373-12-12 5.373-12 12-12 12 5.373 12 12Zm-7.233-.369q0 2.571-1.304 4.043-1.296 1.473-3.611 1.473-2.365 0-3.655-1.443-1.281-1.451-1.281-4.087 0-2.616 1.289-4.05 1.289-1.444 3.662-1.443 2.307 0 3.603 1.464 1.297 1.466 1.297 4.043Zm-8.533 0q0 2.175.923 3.304.93 1.12 2.695 1.12 1.78 0 2.688-1.12.908-1.122.908-3.304 0-2.16-.908-3.274-.902-1.12-2.673-1.12-1.78 0-2.71 1.128-.923 1.12-.923 3.266Z'/%3E%3C/svg%3E");float:right}.type-Aandeel,.type-Obligatie{background-size:125px 30px;display:block;height:24px;text-indent:-9999px;width:60px}.type-Aandeel{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='33' fill='none' viewBox='70 0 133 33'%3E%3Cpath stroke='%23C0C1C4' d='M0 32.5h133M121 13c0 6.627-5.373 12-12 12s-12-5.373-12-12 5.373-12 12-12 12 5.373 12 12Zm-8.797 5-1.333-3.406h-4.292L105.26 18H104l4.233-10.752h1.048L113.492 18zm-1.721-4.526-1.245-3.318a18 18 0 0 1-.498-1.546q-.161.704-.462 1.546l-1.259 3.318z'/%3E%3C/svg%3E")}.belang-row{text-align:right;width:130px}.sdg1{background-color:#b81c31}.sdg2{background-color:#dda73a}.sdg3{background-color:#4ca146}.sdg4{background-color:#a11a26}.sdg5{background-color:#be3323}.sdg6{background-color:#27bfe6}.sdg7{background-color:#fbc412}.sdg8{background-color:#a41c45}.sdg9{background-color:#f16a2f}.sdg10{background-color:#e01682}.sdg11{background-color:#f89d2a}.sdg12{background-color:#be8d2c}.sdg13{background-color:#407f46}.sdg14{background-color:#2296d4}.sdg15{background-color:#5bba48}.sdg16{background-color:#116b9f}.sdg17{background-color:#18496d}pfzw-collapsible:not(:defined){visibility:hidden}pfzw-collapsible [slot=pfzw-collapsible--head]{font-weight:700;padding-right:3.2rem;padding-right:var(--spacing-32);text-align:left}.accordion+:not(.accordion){padding-top:3.2rem;padding-top:var(--spacing-32)}.accordion+.accordion pfzw-collapsible{border-top:1px solid #bfc0c3;border-top:1px solid var(--color-manatee-lighter)}@media screen and (min-width:48em){.accordion+:not(.accordion){padding-top:3.2rem;padding-top:var(--spacing-32)}}pfzw-timeline:not(:defined){visibility:hidden}.cmp-timeline__card+.cmp-timeline__card{margin-top:var(---spacing-48,4.8rem)}.cmp-timeline__card__number{display:none}.cmp-timeline__card__title,.pfzw-v2 .cmp-timeline__card__title,h2.cmp-timeline__card__title{font-size:1.8rem;font-weight:600;line-height:1.3333333;margin:0 0 .8rem}p-pagination{--p-pagination-text-color:var(--color-munsell-green);--p-pagination-bg-color:transparent;--p-pagination-border-color:transparent;--p-pagination-border-radius:50%;--p-pagination-item-width:3em;--p-pagination-item-height:3em;--p-pagination-margin:.4rem;--p-pagination-mobile-font-size:11px;--p-pagination-font-size:16px;--p-pagination-font-weight:bold;--p-pagination-hover-bg-color:var(--color-manatee-lighter);--p-pagination-focus-bg-color:var(--color-munsell-green);--p-pagination-focus-color:var(--color-manatee-lightest);--p-pagination-switch-left-border:1px solid var(--color-munsell-green);--p-pagination-switch-left-border-radius:50%;--p-pagination-switch-right-border:1px solid var(--color-munsell-green);--p-pagination-switch-right-border-left:1px solid var(--color-munsell-green);--p-pagination-switch-right-border-radius:50%;--p-pagination-switch-hover-border-color:var(--color-manatee-lighter);--p-pagination-switch-hover-bg-color:var(--color-manatee-lighter);--p-pagination-arrow-color:var(--color-munsell-green);--p-pagination-arrow-hover-color:var(--color-munsell-green);--p-pagination-switch-bg-color:transparent}p-data-table p-pagination{margin-bottom:1.2rem;margin-bottom:var(--data-table-paging-slot-margin-bottom,1.2rem);margin-top:1.2rem;margin-top:var(--data-table-paging-slot-margin-bottom,1.2rem)}p-loading-indicator{height:5rem;width:5rem}p-data-table{--data-table-color:var(--color-table-text);--data-table-background-color:var(--color-bg-table);--data-table-border-color:var(--color-border-table);--data-table-cell-padding:var(--td-th-padding);--data-table-th-border-width:1px;--data-table-th-font-weight:var(--fw-th);--data-table-selected-background-color:var(--color-munsell-green)}:not(.custom-style-defined) body{opacity:0}.custom-style-defined body{opacity:1;-webkit-transition:opacity .25s;transition:opacity .25s}[slot=cookiebar__body]{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}[slot=cookiebar__body] h3{margin:0 0 1.6rem;margin:0 0 var(--spacing-16)}[slot=cookiebar__body] a{color:#414aa8;color:var(--color-body-link)}[slot=cookiebar__body] a:visited{color:#00a870;color:var(--color-body-link-visited)}[slot=cookiebar__body] a:focus,[slot=cookiebar__body] a:hover{color:#1d214d;color:var(--color-body-link-hover)}[slot=cookiebar__body] a:active{color:#292e6a;color:var(--color-body-link-active)}.nonmodal--cookie{bottom:0;margin:0 auto;max-width:90em;max-width:var(--width-max-content);position:fixed;top:auto;width:calc(100% - 3.2rem);width:calc(100% - var(--spacing-32));z-index:990;z-index:var(--z-index-cookiebar)}@media screen and (min-width:48em){.nonmodal--cookie{bottom:3rem;width:calc(100% - 6.4rem);width:calc(100% - var(--spacing-64))}}.youtube-video-container{height:0;margin-bottom:32px;overflow:hidden;padding-bottom:56.25%;position:relative}.embed-responsive-1by1{padding-bottom:100%}.embed-responsive-4by3{padding-bottom:75%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-21by9{padding-bottom:42.85%}.youtube-video-container embed,.youtube-video-container iframe,.youtube-video-container object{height:100%;left:0;position:absolute;top:0;width:100%}:root{--pfzw-viewport-size:var(--bp-md-min);--pfzw-login-list-balloon:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23ed6f5e' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--pfzw-login-list-button-balloon:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23ed6f5e' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--pfzw-login-list-balloon-open:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236a3129' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--pfzw-login-list-item-link-icon:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 6.71a1 1 0 0 0 0 1.41L12.88 12 9 15.88a1 1 0 1 0 1.41 1.41L15 12.7a1 1 0 0 0 0-1.41L10.41 6.7A1 1 0 0 0 9 6.71'/%3E%3C/svg%3E");--pfzw-login-list-item-link-iconHover:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231e224d' d='M9 6.71a1 1 0 0 0 0 1.41L12.88 12 9 15.88a1 1 0 1 0 1.41 1.41L15 12.7a1 1 0 0 0 0-1.41L10.41 6.7A1 1 0 0 0 9 6.71'/%3E%3C/svg%3E")}pfzw-login-status{--pfzw-login-button-paddingLeft:var(--spacing-16);--pfzw-login-button-paddingRight:var(--spacing-16);--pfzw-login-statusposition:static;--pfzw-login-list-open-borderRadius:.4rem 0 .4rem .4rem;--pfzw-login-status-list-padding:0 0 var(--spacing-16) 0;--pfzw-login-list-item-link-colorHover:var(--color-body-link-hover);--pfzw-login-list-item-link-colorActive:var(--color-body-link-active)}@media screen and (max-width:47.99em){body:not(.pfzw-v2) pfzw-login-status{--pfzw-login-display:block;--pfzw-login-button-borderRadius:0 .4rem .4rem .4rem;--pfzw-login-list-item-first-display:none;--pfzw-login-list-position:relative;--pfzw-login-button-paddingTop:1.6rem;--pfzw-login-button-paddingTop:var(--spacing-16);--pfzw-login-button-paddingBottom:1.6rem;--pfzw-login-button-paddingBottom:var(--spacing-16);--pfzw-login-list-item-padding:0.8rem 1.6rem 0.8rem 0.8rem;--pfzw-login-list-item-padding:var(--spacing-8) var(--spacing-16) var(--spacing-8) var(--spacing-8);--pfzw-login-list-open-borderRadius:0 0 1.6rem 0;margin-left:-1.6rem;margin-left:calc(var(--spacing-16)*-1);margin-right:-1.6rem;margin-right:calc(var(--spacing-16)*-1)}body:not(.pfzw-v2) .pfzw-login-status-mob{margin:0 1.6rem!important;margin:0 var(--spacing-16)!important;width:calc(100vw - 2.8rem)!important;width:calc(100vw - var(--spacing-14)*2)!important}body:not(.pfzw-v2) .pfzw-inlog-status-icon{background:#f4f4f4;background:var(--color-manatee-lightest);border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;left:-1.6rem;left:calc(var(--spacing-16)*-1);max-height:4.2rem;max-width:4.2rem;min-height:2.4rem;min-width:2.4rem;padding:.8rem;position:relative;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body:not(.pfzw-v2) .pfzw-inlog-status-icon circle,body:not(.pfzw-v2) .pfzw-inlog-status-icon path{fill:#f2a096;fill:var(--color-coral-reef-lighter)}}@media screen and (min-width:48em){pfzw-login-status{--pfzw-login-status-username:none;--pfzw-login-button-width:auto;--pfzw-login-list-before-display:none;--pfzw-login-button-open-borderRadius:.4rem .4rem 0 0;--pfzw-login-list-item-first-borderRadius:.4rem 0 0 0;--pfzw-login-list-item-padding:var(--spacing-8) var(--spacing-16) var(--spacing-8) var(--spacing-8);--pfzw-login-button-paddingBottom:0;--pfzw-login-list-item-first-padding:var(--spacing-16)}.pfzw-inlog-status-icon{height:2.4rem;width:2.4rem}.pfzw-inlog-status-icon circle,.pfzw-inlog-status-icon path{fill:#fff;fill:var(--color-white)}}p-json-form .inline-spinner{display:inline-block;margin-top:3.2rem;margin-top:var(--spacing-32);position:absolute;width:8rem}p-data-table-wrapper pfzw-spinner{display:block;height:8rem;margin:1rem auto;width:8rem}.env-localhost-or-test body:after{background:green;bottom:0;color:#fff;content:"sm";display:block;font-size:1.2rem;padding:0 .5em;position:fixed;right:0}@media screen and (min-width:48em){.env-localhost-or-test body:after{background:#ff0;color:#000;content:"md"}}@media screen and (min-width:62em){.env-localhost-or-test body:after{background:orange;content:"lg"}}@media screen and (min-width:73.125em){.env-localhost-or-test body:after{background:red;color:#fff;content:"xl"}}@media screen and (min-width:90em){.env-localhost-or-test body:after{background:purple;color:#fff;content:"2xl"}}.debug-grid{background-image:-webkit-gradient(linear,left top,right top,from(#fffdc2),color-stop(8.333333%,#fffdc2),color-stop(8.333333%,#d7f0a2),color-stop(16.66666%,#d7f0a2),color-stop(16.66666%,#fffdc2),color-stop(24.999999%,#fffdc2),color-stop(24.999999%,#d7f0a2),color-stop(33.333333%,#d7f0a2),color-stop(33.333333%,#fffdc2),color-stop(41.6666666%,#fffdc2),color-stop(41.6666666%,#d7f0a2),color-stop(50%,#d7f0a2),color-stop(50%,#fffdc2),color-stop(58.3333333%,#fffdc2),color-stop(58.3333333%,#d7f0a2),color-stop(66.6666666%,#d7f0a2),color-stop(66.6666666%,#fffdc2),color-stop(74.9999999%,#fffdc2),color-stop(74.9999999%,#d7f0a2),color-stop(83.3333333%,#d7f0a2),color-stop(83.3333333%,#fffdc2),color-stop(91.66666666%,#fffdc2),color-stop(91.66666666%,#d7f0a2))!important;background-image:linear-gradient(90deg,#fffdc2,#fffdc2 8.333333%,#d7f0a2 0,#d7f0a2 16.66666%,#fffdc2 0,#fffdc2 24.999999%,#d7f0a2 0,#d7f0a2 33.333333%,#fffdc2 0,#fffdc2 41.6666666%,#d7f0a2 0,#d7f0a2 50%,#fffdc2 0,#fffdc2 58.3333333%,#d7f0a2 0,#d7f0a2 66.6666666%,#fffdc2 0,#fffdc2 74.9999999%,#d7f0a2 0,#d7f0a2 83.3333333%,#fffdc2 0,#fffdc2 91.66666666%,#d7f0a2 0)!important}.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description:before,.aem-AuthorLayer-Edit .cmp-teaser--hero:after,.aem-AuthorLayer-Edit .cmp-teaser__action-link+.cmp-teaser__action-link:after,.aem-AuthorLayer-Edit .main-right .o-balloon:not(.cmp-teaser--bg-img) .cmp-teaser__image:after,.aem-AuthorLayer-Edit .o-balloon--bg-blue.cmp-teaser--text-dark:before,.aem-AuthorLayer-Edit .o-balloon--bg-green.cmp-teaser--text-dark:before{background:#fcedce;border:2px solid #f5b73c;border-radius:4px;color:#383a3c;color:var(--color-body);content:"⚠";display:block;margin-bottom:.8rem;margin-bottom:var(--spacing-8);padding:.8rem;padding:var(--spacing-8)}.aem-AuthorLayer-Edit .cmp-teaser--cta-text-link .cmp-teaser__action-link+.cmp-teaser__action-link:after,.aem-AuthorLayer-Edit .pfzw-page--white-header-text .cmp-teaser--hero:after{display:none}.aem-AuthorLayer-Edit .o-balloon--bg-blue.cmp-teaser--text-dark:before,.aem-AuthorLayer-Edit .o-balloon--bg-green.cmp-teaser--text-dark:before{content:'⚠ Style "Dark Text" is niet toegestaan op groene of blauwe achtergrond. Tekst wordt wit getoond.'}.aem-AuthorLayer-Edit .main-right .o-balloon:not(.cmp-teaser--bg-img) .cmp-teaser__image:after{content:"⚠ Image in zijkolom mag alleen als achtergrond. "}.aem-AuthorLayer-Edit :not(.cmp-teaser--cta-text-link) .cmp-teaser__action-link+.cmp-teaser__action-link:after{content:"⚠ Meerdere CTA's alleen toegestaan met style \"CTA Text Link\""}.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description{display:block;font-size:0}.aem-AuthorLayer-Edit .cmp-teaser--bg-img .cmp-teaser__description:before{content:"⚠ Description is niet toegestaan bij bg-image. Tekst wordt niet getoond.";font:1.6rem/1.75 Open Sans,Segoe UI,Tahoma,sans-serif;font:var(--font-16)}.aem-AuthorLayer-Edit .cmp-teaser--hero:after{content:'⚠ Gebruik bij voorkeur "Header text white" op Hero teaser.';position:absolute;top:120px}body.xf-web-container{opacity:1}:root{--anim-dur:0.2s;--anim-easing:ease-in-out;--anim:var(--anim-dur) var(--anim-easing);--color-white:#fff;--color-black:#000;--color-munsell-green:#00a870;--color-munsell-green-lightest:#d1efe6;--color-munsell-green-lighter:#5bc8a5;--color-munsell-green-darker:#007a52;--color-munsell-green-darkest:#004d33;--color-coral-reef:#ed6f5e;--color-coral-reef-lightest:#fad7d1;--color-coral-reef-lighter:#f3a196;--color-coral-reef-darker:#ad4f43;--color-coral-reef-darkest:#6a3129;--color-violet-blue:#424aa9;--color-violet-blue-lightest:#cacce6;--color-violet-blue-lighter:#858ac7;--color-violet-blue-darker:#292f6a;--color-violet-blue-darkest:#1e224d;--color-manatee:#9da0a4;--color-manatee-lightest:#f5f5f5;--color-manatee-lighter:#c0c1c4;--color-manatee-darker:#646668;--color-manatee-darkest:#393a3c;--color-sunshine-yellow:#fabb00;--color-sunshine-yellow-lightest:#fef1cd;--color-sunshine-yellow-lighter:#fbd365;--color-sunshine-yellow-darker:#ad7f00;--color-sunshine-yellow-darkest:#614700;--color-disabled:var(--color-manatee-lighter);--color-primary:var(--color-munsell-green);--color-secondary:var(--color-violet-blue);--color-tertiary:var(--color-coral-reef);--color-bg-x-light:var(--color-manatee-lightest);--color-body:var(--color-manatee-darkest);--color-body-link:var(--color-violet-blue);--color-body-link-hover:var(--color-violet-blue-darkest);--color-body-link-active:var(--color-violet-blue-darker);--color-body-link-visited:var(--color-munsell-green);--color-menu-link-hover:var(--color-violet-blue);--color-on-primary-bg:var(--color-white);--color-on-secondary-bg:var(--color-white);--color-bg-body:var(--color-white);--color-bg-content:var(--color-bg-x-light);--color-border-main:var(--color-manatee);--color-table-text:inherit;--color-bg-table:transparent;--color-border-table:var(--color-manatee-lighter);--spacing-8:0.8rem;--spacing-12:1.2rem;--spacing-14:1.4rem;--spacing-16:1.6rem;--spacing-24:2.4rem;--spacing-32:3.2rem;--spacing-40:4.0rem;--spacing-48:4.8rem;--spacing-56:5.6rem;--spacing-64:6.4rem;--spacing-96:9.6rem;--spacing-128:12.8rem;--spacing-grid-gutter:2.4rem;--spacing-grid-half-gutter:1.2rem;--spacing-grid-gutter-sm:1.6rem;--spacing-grid-half-gutter-sm:0.8rem;--spacing-body-text:var(--spacing-16);--spacing-list-elements:var(--spacing-32);--width-max-content:90em;--header-content-height:var(--spacing-40);--header-padding:var(--spacing-48);--header-height:calc(var(--header-content-height) + var(--header-padding)*2);--border-radius-xs:0.4rem;--border-radius-default:2rem;--border-radius-button:var(--border-radius-xs);--border-radius-balloon:var(--border-radius-default);--border-radius-balloon-arrow-default:var(--border-radius-default);--border-radius-balloon-arrow--lg:6.8rem;--balloon-arrow-url-green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300aa72' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--balloon-arrow-url-white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--balloon-arrow-url-blue:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%234149a8' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--balloon-arrow-url-x-light:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23f5f5f5' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");--arrow-right-url-green:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300aa72' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");--arrow-right-url-white:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");--arrow-right-url:var(--arrow-right-url-green);--icon-small:24px;--icon-medium:48px;--icon-large:96px;--bp-md-min:48em;--bp-lg-min:62em;--bp-xl-min:73.125em;--bp-2xl-min:90em;--bp-sm-max:47.99em;--bp-md-max:61.99em;--bp-lg-max:73.115em;--bp-xl-max:89.99em;--z-index-nav-overlay:5;--z-index-hero-teaser-before:10;--z-index-menu:15;--z-index-nav-expanded-menu:20;--z-index-menu-toggle:30;--collabsible-h3-in-code-not-set-in-variable-added-here-as-reference:99;--z-index-cookiebar:990;--z-index-new-design-alert:1000}.wrapper-full-width.-no-background{background:0 0}.cmp-header{z-index:15}.header__upper{margin:2.4rem 1.2rem}.header__cmp-loginbutton,.header__cmp-search,.header__cmp-switch{margin-left:1.6rem;margin-left:var(--spacing-16)}.header__logo-img{height:5.7142857143rem;width:17.84rem}@media screen and (max-width:47.99em){.header__logo-img{height:4.5714285714rem;height:calc(var(--header-content-height)*1.42857);width:14.272rem;width:calc(var(--header-content-height)*4.46)}}.menu-toggle{background:0 0;right:1.6rem;z-index:30}.menu-toggle__btn{height:4rem;width:4rem}@media screen and (max-width:47.99em){.menu-toggle__btn{height:3.2rem;height:var(--header-content-height);width:3.2rem;width:var(--header-content-height)}}.pfzw-page--white-header-text .pfzw-i-navigation-menu{border-color:#fff;color:#fff}.pfzw-page--white-header-text .pfzw-i-navigation-close:hover,.pfzw-page--white-header-text .pfzw-i-navigation-menu:hover{color:#00a870;color:var(--color-munsell-green)}.pfzw-page--white-header-text .pfzw-i-navigation-menu:active{color:#fff}@media screen and (max-width:47.99em){:root{--header-padding:var(--spacing-32);--header-content-height:var(--spacing-32);--header-height:calc(var(--header-content-height) + var(--header-padding)*2)}.menu-toggle__btn{font-size:2rem}.header__menu{overflow:hidden;-webkit-box-orient:vertical;-webkit-box-direction:normal;background:#fff;background:var(--color-white);-ms-flex-direction:column;flex-direction:column;left:-1.4rem;left:calc(var(--spacing-14)*-1);max-width:0;min-height:100vh;min-height:undefined;min-height:calc(var(--expanded-menu-full-height)*100);padding-top:9.6rem;padding-top:var(--header-height);position:absolute;right:-1.4rem;right:calc(var(--spacing-14)*-1);top:0;-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0);-webkit-transition:max-width 0s .2s,-webkit-transform .2s ease-in-out;transition:max-width 0s .2s,-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out,max-width 0s .2s;transition:transform .2s ease-in-out,max-width 0s .2s,-webkit-transform .2s ease-in-out;-webkit-transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:transform var(--anim),max-width 0s var(--anim-dur);transition:transform var(--anim),max-width 0s var(--anim-dur),-webkit-transform var(--anim);z-index:20;z-index:var(--z-index-nav-expanded-menu)}}@media screen and (max-width:47.99em)and (min-width:48em)and (max-width:89.98em){.header__menu{padding-top:12rem;padding-top:var(--header-height)}}@media screen and (max-width:47.99em)and (max-width:47.99em){.header__menu{padding-top:9.6rem;padding-top:var(--header-height)}}@media screen and (max-width:47.99em){.cmp-header--is-expanded .header__menu{max-width:120vw;max-width:calc(100% + 3.2rem);max-width:calc(100% + var(--spacing-grid-gutter-sm)*2);padding:11rem 1.2rem 0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;-webkit-transition:-webkit-transform var(--anim);transition:-webkit-transform var(--anim);transition:transform var(--anim);transition:transform var(--anim),-webkit-transform var(--anim)}.header__cmp-loginbutton,.header__cmp-switch{margin-top:1.6rem;margin-top:var(--spacing-16);width:calc(100% - 3.2rem);width:calc(100% - var(--spacing-32))}.header__menu-actions{padding-bottom:1.6rem;padding-bottom:var(--spacing-16)}.header__cmp-loginbutton .c-btn,.header__cmp-switch>.c-btn{width:100%}.header__menu-navigation-container{-webkit-box-flex:1;-ms-flex:auto;flex:auto}.header__cmp-loginbutton .c-btn,.header__cmp-switch .c-btn{text-align:center}.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wrapper-full-width.with-minHeight{min-height:0}}@media screen and (min-width:48em){.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.header__cmp-switch>.c-btn:focus{background:#fff;background:var(--color-white);color:#00a870;color:var(--color-primary)}.header__menu{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin:0 0 0 1.6rem;margin-left:var(--spacing-16)}.cv-app-placeholder{min-width:4.2rem}.header__cmp-switch{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.wrapper-full-width.with-minHeight{min-height:0}}@media screen and (min-width:73.125em){.cmp-header:after{content:"";display:block;height:100%;position:absolute;right:-1.2rem;right:calc(var(--spacing-grid-half-gutter)*-1);top:0;width:0}}@media screen and (max-width:89.99em){.header__overlay{background:0 0;height:0;left:0;position:fixed;top:0;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;-webkit-transition:background var(--anim);transition:background var(--anim);width:0;z-index:5;z-index:var(--z-index-nav-overlay)}.cmp-header--is-expanded .header__overlay{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:rgba(0,0,0,.5);height:200vh;width:100vw}}@media screen and (min-width:90em){.cmp-header{width:144rem}.header__menu-navigation-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:3;-ms-flex:3;flex:3}.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wrapper-full-width.with-minHeight{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:90vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:48em)and (max-width:89.98em){:root{--header-padding:var(--spacing-40);--header-height:calc(var(--header-content-height) + var(--header-padding)*2)}.menu-toggle{-webkit-box-ordinal-group:101;-ms-flex-order:100;margin:0;order:100;right:.8rem;right:var(--spacing-8);top:8.5px}.menu-toggle .menu-toggle__btn{height:39.5px}}@media screen and (-ms-high-contrast:none){.header__upper,::-ms-backdrop{-ms-flex-align:stretch;align-items:stretch}}h2{font-size:24px;font-weight:800;line-height:32px}h2,h3{font-family:Open Sans;font-style:normal}h3{font-size:18px;font-weight:600;line-height:24px}.aem-AuthorLayer-structure .cmp-header{height:auto}.aem-AuthorLayer-structure .menu-toggle{display:none}.aem-AuthorLayer-structure .cmp-header .cmp-loginbutton,.aem-AuthorLayer-structure .cmp-header .cmp-search{display:block}.content-menu{display:-webkit-box;display:-ms-flexbox;display:flex}.header__cmp-home .cmp-navigation__item-link{font-weight:undefined;font-weight:var(--fw-semibold)}.cmp-header--is-expanded .c-btn--ghost:hover{border:1px solid #00a870;border:1px solid var(--color-munsell-green);color:#00a870;color:var(--color-munsell-green)}.cmp-pfzw-navigation .content-menu .cmp-navigation__group li:nth-child(2) .cmp-navigation__group>li:first-child{display:none}@media screen and (max-width:89.99em){.has-submenu{background:#f4f4f4;background:var(--color-manatee-lightest)}.has-submenu>a{background:#fff;background:var(--color-white);border-radius:0;-webkit-transition:border-radius .2s ease-in-out;transition:border-radius .2s ease-in-out;-webkit-transition:border-radius var(--anim);transition:border-radius var(--anim)}.has-submenu.cmp-navigation__item--submenu-is-expanded>a{border-bottom-left-radius:2em}.has-submenu>a:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m8.59 16.34 4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");content:"";display:inline-block;float:right;height:2rem;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;-webkit-transition:-webkit-transform var(--anim);transition:-webkit-transform var(--anim);transition:transform var(--anim);transition:transform var(--anim),-webkit-transform var(--anim);width:2rem}.cmp-navigation__item--submenu-is-expanded>a:after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.has-submenu .cmp-navigation__group{max-height:0;overflow:hidden;-webkit-transition:max-height .2s ease-in-out;transition:max-height .2s ease-in-out;-webkit-transition:max-height var(--anim);transition:max-height var(--anim)}.cmp-navigation__item--submenu-is-expanded .cmp-navigation__group{background:#f4f4f4;background:var(--color-manatee-lightest);max-height:30em}}@media screen and (max-width:47.99em){.cmp-pfzw-navigation{position:relative}.content-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.content-menu a{padding-left:1.6rem;padding-left:var(--spacing-grid-gutter-sm);padding-right:1.6rem;padding-right:var(--spacing-grid-gutter-sm)}}@media screen and (max-width:61.99em){.header__cmp-search{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}}@media screen and (min-width:48em){.header__cmp-search{-webkit-box-ordinal-group:initial;-ms-flex-order:initial;order:0}.pfzw-page--white-header-text .c-btn--ghost{background:0 0;border:1px solid #fff;border:1px solid var(--color-white);color:#fff;color:var(--color-white)}.pfzw-page--white-header-text .c-btn--ghost:hover{background:#fff;background:var(--color-white);color:#00a870;color:var(--color-munsell-green)}.pfzw-page--white-header-text .cmp-header--is-expanded .c-btn--ghost{background:0 0;border:1px solid #9ca0a4;border:1px solid var(--color-manatee);color:#383a3c;color:var(--color-body)}.pfzw-page--white-header-text .cmp-header--is-expanded .c-btn--ghost:hover{border:1px solid #00a870;border:1px solid var(--color-munsell-green);color:#00a870;color:var(--color-munsell-green)}}@media screen and (min-width:48em)and (max-width:89.98em){.cmp-pfzw-navigation{margin-right:auto;position:static}.content-menu{overflow:hidden;-webkit-box-orient:vertical;-webkit-box-direction:normal;background:0 0;-ms-flex-direction:column;flex-direction:column;max-width:0;padding-bottom:4.8rem;padding-bottom:var(--spacing-48);padding-top:11rem;position:fixed;right:-2.4rem;right:calc(var(--spacing-grid-gutter)*-1);top:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:max-width 0s .2s,-webkit-transform .2s ease-in-out;transition:max-width 0s .2s,-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out,max-width 0s .2s;transition:transform .2s ease-in-out,max-width 0s .2s,-webkit-transform .2s ease-in-out;-webkit-transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:transform var(--anim),max-width 0s var(--anim-dur);transition:transform var(--anim),max-width 0s var(--anim-dur),-webkit-transform var(--anim);width:37.5rem;z-index:20;z-index:var(--z-index-nav-expanded-menu)}.cmp-header--is-expanded .content-menu{max-width:37.5rem;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;-webkit-transition:-webkit-transform var(--anim);transition:-webkit-transform var(--anim);transition:transform var(--anim);transition:transform var(--anim),-webkit-transform var(--anim)}.content-menu:after,.content-menu:before{content:"";display:block;position:absolute}.content-menu:before{background:#fff;background:var(--color-white);border-bottom-left-radius:2rem;border-bottom-left-radius:var(--border-radius-balloon);height:calc(100% - 2rem);height:calc(100% - var(--border-radius-balloon));top:0;width:100%;z-index:-1}.content-menu:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M20 0H0v20C0 9 9 0 20 0'/%3E%3C/svg%3E");background:var(--balloon-arrow-url-white);bottom:0;height:2rem;height:var(--border-radius-balloon-arrow-default);right:2.4rem;right:var(--spacing-24);-webkit-transform:scaleX(-1);transform:scaleX(-1);width:2rem;width:var(--border-radius-balloon-arrow-default)}.content-menu a{padding-left:2.4rem;padding-left:var(--spacing-grid-gutter);padding-right:2.4rem;padding-right:var(--spacing-grid-gutter)}}@media screen and (min-width:90em){.menu-toggle{display:none}.cmp-pfzw-navigation{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:auto}.content-menu .cmp-navigation__group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cmp-pfzw-navigation .content-menu .cmp-navigation__item-link:hover,.header__cmp-home .cmp-navigation__item-link:hover{background:#fff;background:var(--color-white);-webkit-box-shadow:2px 2px 5px rgba(57,58,60,.3);box-shadow:2px 2px 5px rgba(57,58,60,.3);color:#00a870;color:var(--color-munsell-green)}.content-menu .cmp-navigation__item-link:hover:after,.content-menu .cmp-navigation__item-link:hover:before{opacity:1}.content-menu .cmp-navigation__item-link:after{background-image:radial-gradient(circle at bottom right,transparent 70.7106781187%,#fff 0);background-image:radial-gradient(circle at bottom right,transparent 70.7106781187%,var(--color-white) 0);left:50%}.cmp-pfzw-navigation .content-menu>.cmp-navigation__group>li.has-submenu>.cmp-navigation__item-link{display:none}.over-ons .cmp-pfzw-navigation .content-menu>.cmp-navigation__group>li.has-submenu>.cmp-navigation__item-link{display:block}.over-ons .cmp-navigation__group .cmp-navigation__group{display:none!important}.pfzw-page--white-header-text .cmp-pfzw-navigation .cmp-navigation__item-link,.pfzw-page--white-header-text .header__cmp-home .cmp-navigation__item-link{color:#fff;color:var(--color-white);text-shadow:none}.pfzw-page--white-header-text .header__cmp-home .cmp-navigation__item-link:hover{color:#00a870;color:var(--color-munsell-green)}.content-menu .has-submenu .cmp-navigation__group{display:-webkit-box;display:-ms-flexbox;display:flex}.cmp-pfzw-navigation .cmp-navigation__item-link,.header__cmp-home .cmp-navigation__item-link{background:0 0;border-radius:.4rem;border-radius:var(--border-radius-button);font-weight:undefined;font-weight:var(--fw-semibold);line-height:1;margin-left:1.6rem;margin-left:var(--spacing-16);padding-left:1.6rem;padding-left:var(--spacing-16);padding-right:1.6rem;padding-right:var(--spacing-16);position:relative;text-shadow:0 0 5px hsla(0,0%,100%,.5);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transition:all var(--anim);transition:all var(--anim)}.cmp-pfzw-navigation .cmp-navigation__item-link:after,.cmp-pfzw-navigation .cmp-navigation__item-link:before,.header__cmp-home .cmp-navigation__item-link:after,.header__cmp-home .cmp-navigation__item-link:before{background-image:radial-gradient(circle at bottom left,transparent 70.7106781187%,#fff 0);background-image:radial-gradient(circle at bottom left,transparent 70.7106781187%,var(--color-white) 0);content:"";display:block;height:.8rem;height:var(--spacing-8);opacity:0;position:absolute;right:50%;top:100%;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;-webkit-transition:opacity var(--anim);transition:opacity var(--anim);width:.8rem;width:var(--spacing-8)}.cmp-pfzw-navigation .cmp-navigation__item--level-0.cmp-navigation__item--active>.cmp-navigation__item-link,.cmp-pfzw-navigation .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link{background:#fff;background:var(--color-white);-webkit-box-shadow:2px 2px 5px rgba(57,58,60,.3);box-shadow:2px 2px 5px rgba(57,58,60,.3);color:#00a870!important;color:var(--color-munsell-green)!important}.pfzw-page--white-header-text .c-btn--ghost:active{color:#007a51;color:var(--color-munsell-green-darker)}.cmp-pfzw-navigation .cmp-navigation__item--level-0.cmp-navigation__item--active>.cmp-navigation__item-link:after,.cmp-pfzw-navigation .cmp-navigation__item--level-0.cmp-navigation__item--active>.cmp-navigation__item-link:before,.cmp-pfzw-navigation .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link:after,.cmp-pfzw-navigation .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link:before,.cmp-pfzw-navigation .cmp-navigation__item-link:hover:after,.cmp-pfzw-navigation .cmp-navigation__item-link:hover:before{opacity:1}.cmp-pfzw-navigation .cmp-navigation__item-link:after{background-image:radial-gradient(circle at bottom right,transparent 70.7106781187%,#fff 0);background-image:radial-gradient(circle at bottom right,transparent 70.7106781187%,var(--color-white) 0);left:50%}.pfzw-page--white-header-text .cmp-pfzw-navigation .cmp-navigation__item-link{-webkit-box-shadow:none;box-shadow:none}}:root{--bollen-size-lg:16.8rem;--bollen-size-md:14.4rem;--bollen-size-sm:12.8rem}.homepage-navigation-bollen-list__item--item6,.meer-taken-overlay{display:none}.meer-taken-close{background:0 0;height:3rem;position:fixed;right:6.4rem;right:var(--spacing-64);top:4.8rem;top:var(--spacing-48);width:3rem}.meer-taken-close:before{background:#ed6f5e;background:var(--color-tertiary);border-radius:50%;content:"";display:block;height:6rem;left:calc(50% - 2.9rem);position:absolute;top:calc(50% - 2.8rem);width:6rem}.homepage-navigation-meer-taken-close-container__icon{fill:#fff;position:relative}.homepage-navigation-bollen-text-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.homepage-navigation-bollen-list{list-style:none;margin:0;padding:0}.homepage-navigation-bollen-list__item{background:#fff;background:var(--color-white);border-radius:2rem;border-radius:var(--border-radius-default);-webkit-box-shadow:6px 9px 8px -9px rgba(0,0,0,.5);box-shadow:6px 9px 8px -9px rgba(0,0,0,.5);margin:0 .8rem .8rem;margin:0 var(--spacing-8) var(--spacing-8);padding:.8rem 1.6rem;padding:var(--spacing-8) var(--spacing-16)}.homepage-navigation-bollen-list__item-link{color:#00a870;color:var(--color-munsell-green);display:block;font-weight:700;text-decoration:none}.homepage-navigation-bollen-list__item:hover{background:#ed6f5e;background:var(--color-tertiary);-webkit-transition:all .7s;transition:all .7s}.homepage-navigation-bollen-list__item:hover .homepage-navigation-bollen-list__item-link{border-color:#ed6f5e;border-color:var(--color-tertiary);color:#fff;color:var(--color-white)}.homepage-navigation-bollen-list__item #werkgeverKlantWorden ellipse,.homepage-navigation-bollen-list__item #werkgeverKlantWorden path,.homepage-navigation-bollen-list__item:hover #deelnemerMetPensioenGaan ellipse,.homepage-navigation-bollen-list__item:hover #werkgeverKlantWorden rect,.homepage-navigation-bollen-list__item:hover .homepage-navigation-bollen-text-container__icon path{fill:#fff;fill:var(--color-white)}.homepage-navigation-bollen-list__item:hover #werkgeverKlantWorden ellipse,.homepage-navigation-bollen-list__item:hover #werkgeverKlantWorden path{fill:#ed6f5e;fill:var(--color-tertiary)}.homepage-navigation-bollen-text-container--desktop{display:none}.homepage-navigation-bollen-text-container__icon{height:24px;height:var(--icon-small);margin-right:.8rem;margin-right:var(--spacing-8);width:24px;width:var(--icon-small)}.homepage-navigation-bollen-list__item #deelnemerMetPensioenGaan ellipse,.homepage-navigation-bollen-list__item #werkgeverKlantWorden rect,.homepage-navigation-bollen-text-container__icon path{fill:#00a870;fill:var(--color-munsell-green)}.homepage-navigation-bollen-list__item--appear{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:slideIn;animation-name:slideIn}.homepage-navigation-bollen-list__item--item1,.homepage-navigation-bollen-list__item--item10,.homepage-navigation-bollen-list__item--item11,.homepage-navigation-bollen-list__item--item12,.homepage-navigation-bollen-list__item--item13,.homepage-navigation-bollen-list__item--item14,.homepage-navigation-bollen-list__item--item15,.homepage-navigation-bollen-list__item--item16,.homepage-navigation-bollen-list__item--item17,.homepage-navigation-bollen-list__item--item18,.homepage-navigation-bollen-list__item--item19,.homepage-navigation-bollen-list__item--item2,.homepage-navigation-bollen-list__item--item3,.homepage-navigation-bollen-list__item--item4,.homepage-navigation-bollen-list__item--item5,.homepage-navigation-bollen-list__item--item6,.homepage-navigation-bollen-list__item--item7,.homepage-navigation-bollen-list__item--item8,.homepage-navigation-bollen-list__item--item9{-webkit-animation-duration:.1s;animation-duration:.1s}.homepage-navigation-bollen-list__item--item1{-webkit-animation-delay:0s;animation-delay:0s}.homepage-navigation-bollen-list__item--item2{-webkit-animation-delay:.1s;animation-delay:.1s}.homepage-navigation-bollen-list__item--item3{-webkit-animation-delay:.2s;animation-delay:.2s}.homepage-navigation-bollen-list__item--item4{-webkit-animation-delay:.3s;animation-delay:.3s}.homepage-navigation-bollen-list__item--item5{-webkit-animation-delay:.4s;animation-delay:.4s}.homepage-navigation-bollen-list__item--item6{-webkit-animation-delay:.5s;animation-delay:.5s}.homepage-navigation-bollen-list__item--item7{-webkit-animation-delay:.6s;animation-delay:.6s}.homepage-navigation-bollen-list__item--item8{-webkit-animation-delay:.7s;animation-delay:.7s}.homepage-navigation-bollen-list__item--item9{-webkit-animation-delay:.8s;animation-delay:.8s}.homepage-navigation-bollen-list__item--item10{-webkit-animation-delay:.9s;animation-delay:.9s}.homepage-navigation-bollen-list__item--item11{-webkit-animation-delay:1s;animation-delay:1s}.homepage-navigation-bollen-list__item--item12{-webkit-animation-delay:1.1s;animation-delay:1.1s}.homepage-navigation-bollen-list__item--item13{-webkit-animation-delay:1.2s;animation-delay:1.2s}.homepage-navigation-bollen-list__item--item14{-webkit-animation-delay:1.3s;animation-delay:1.3s}.homepage-navigation-bollen-list__item--item15{-webkit-animation-delay:1.4s;animation-delay:1.4s}.homepage-navigation-bollen-list__item--item16{-webkit-animation-delay:1.5s;animation-delay:1.5s;-webkit-animation-delay:1.6s;animation-delay:1.6s;-webkit-animation-delay:1.7s;animation-delay:1.7s;-webkit-animation-delay:1.8s;animation-delay:1.8s}.teaser-container{padding:1.6rem;padding:var(--spacing-16)}.teaser-container__heading{color:#fff;color:var(--color-white);font-family:undefined;font-family:var(--ff-secondary)}@-webkit-keyframes slideIn{0%{opacity:0;-webkit-transform:translateX(-200px);transform:translateX(-200px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideIn{0%{opacity:0;-webkit-transform:translateX(-200px);transform:translateX(-200px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@media only screen and (min-width:48em){.meer-taken-overlay.meer-taken-overlay-visible{bottom:0;display:block;left:0;overflow-y:scroll;position:fixed;right:0;top:0;width:100vw;z-index:999}.noscroll{overflow:hidden}.meer-taken-blur{background-position:top;background-repeat:no-repeat;background-size:cover;display:block;height:100vh;position:fixed;width:100vw;z-index:-1}.meer-taken-overlay-visible .meer-taken-blur{-webkit-animation:blurIn 1s ease 1;animation:blurIn 1s ease 1;-webkit-filter:blur(10px);filter:blur(10px)}.meer-taken-overlay-visible .homepage-navigation-bollen__container{margin-bottom:1.6rem;margin-bottom:var(--spacing-16);width:100%}.homepage-navigation-bollen-list{margin:0 auto;width:80%}.homepage-navigation-bollen-list__item{border-radius:50%;margin:0 auto;position:relative}.homepage-navigation-bollen-text-container__icon{margin:0 auto .8rem;margin:0 auto var(--spacing-8)}.homepage-navigation-bollen-list__item-link{height:100%}.homepage-navigation-bollen-text-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:100%;text-align:center}.homepage-navigation-bollen-text-container--desktop{display:block;line-height:2.3rem}.homepage-navigation-bollen-text-container--mobile{display:none}.homepage-navigation-bollen-list__item:first-child{height:16.8rem;height:var(--bollen-size-lg);top:17.5rem;width:16.8rem;width:var(--bollen-size-lg)}.homepage-navigation-bollen-list__item:nth-child(2){height:14.4rem;height:var(--bollen-size-md);left:-13.2rem;margin-top:-8.4rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.homepage-navigation-bollen-list__item:nth-child(3){height:14.4rem;height:var(--bollen-size-md);left:8rem;margin-top:-18.5rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.homepage-navigation-bollen-list__item:nth-child(4){height:12.8rem;height:var(--bollen-size-sm);left:15.7rem;margin-top:3rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.homepage-navigation-bollen-list__item:nth-child(5){height:12.8rem;height:var(--bollen-size-sm);left:-13rem;margin-top:-5.5rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.homepage-navigation-bollen-list__item:nth-child(6){display:block;height:12.8rem;height:var(--bollen-size-sm);left:3.2rem;margin-top:-6.8rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:first-child{height:16.8rem;height:var(--bollen-size-lg);left:-14rem;top:30rem;width:16.8rem;width:var(--bollen-size-lg)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(2){height:16.8rem;height:var(--bollen-size-lg);left:1rem;margin-top:24rem;position:relative;width:16.8rem;width:var(--bollen-size-lg)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(3){height:16.8rem;height:var(--bollen-size-lg);left:2rem;margin-top:-36rem;position:relative;width:16.8rem;width:var(--bollen-size-lg)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(4){height:14.4rem;height:var(--bollen-size-md);left:17rem;margin-top:-5rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(5){height:14.4rem;height:var(--bollen-size-md);left:19rem;margin-top:-31rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(6){display:none}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(7){height:14.4rem;height:var(--bollen-size-md);left:-13rem;margin-top:-18rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(8){height:14.4rem;height:var(--bollen-size-md);left:-28rem;margin-top:-9rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(9){height:14.4rem;height:var(--bollen-size-md);left:-31rem;margin-top:2rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(10){height:14.4rem;height:var(--bollen-size-md);left:-15rem;margin-top:-1rem;position:relative;width:14.4rem;width:var(--bollen-size-md)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(11){height:12.8rem;height:var(--bollen-size-sm);left:-30rem;margin-top:-11rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(12){height:12.8rem;height:var(--bollen-size-sm);left:5rem;margin-top:-57rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(13){height:12.8rem;height:var(--bollen-size-sm);left:16rem;margin-top:29rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(14){height:12.8rem;height:var(--bollen-size-sm);left:7rem;margin-top:-2rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(15){height:12.8rem;height:var(--bollen-size-sm);left:30rem;margin-top:-30rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(16){height:12.8rem;height:var(--bollen-size-sm);left:-7rem;margin-top:6rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(17){height:12.8rem;height:var(--bollen-size-sm);left:30rem;margin-top:-47rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(18){height:12.8rem;height:var(--bollen-size-sm);left:-21rem;margin-top:22.5rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(19){height:12.8rem;height:var(--bollen-size-sm);left:28rem;margin-top:-18.5rem;position:relative;width:12.8rem;width:var(--bollen-size-sm)}.homepage-navigation-bollen-list__item:first-child .homepage-navigation-bollen-text-container__icon{height:5.6rem;height:var(--spacing-56);width:5.6rem;width:var(--spacing-56)}.homepage-navigation-bollen-list__item:nth-child(2) .homepage-navigation-bollen-text-container__icon,.homepage-navigation-bollen-list__item:nth-child(3) .homepage-navigation-bollen-text-container__icon{height:4.8rem;height:var(--spacing-48);width:4.8rem;width:var(--spacing-48)}.homepage-navigation-bollen-list__item:nth-child(4) .homepage-navigation-bollen-text-container__icon,.homepage-navigation-bollen-list__item:nth-child(5) .homepage-navigation-bollen-text-container__icon,.homepage-navigation-bollen-list__item:nth-child(6) .homepage-navigation-bollen-text-container__icon{height:4rem;height:var(--spacing-40);width:4rem;width:var(--spacing-40)}.homepage-navigation-bollen-list__item--appear{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:bounceIn;animation-name:bounceIn}.homepage-navigation-bollen-list__item--item1{-webkit-animation-duration:1s;animation-duration:1s}.homepage-navigation-bollen-list__item--item2{-webkit-animation-duration:.75s;animation-duration:.75s}.homepage-navigation-bollen-list__item--item3{-webkit-animation-duration:.55s;animation-duration:.55s}.homepage-navigation-bollen-list__item--item4{-webkit-animation-duration:.65;animation-duration:.65}.homepage-navigation-bollen-list__item--item5{-webkit-animation-duration:.95s;animation-duration:.95s}.homepage-navigation-bollen-list__item--item6{-webkit-animation-duration:.85s;animation-duration:.85s}.teaser-container{max-width:60%}.homepage-navigation-bollen-list__item:nth-child(n+7){display:none}.meer-taken-overlay .homepage-navigation-bollen-list__item:nth-child(n+7){display:block}.homepage-navigation-bollen-list__item--meer-taken{background:#ed6f5e;background:var(--color-tertiary)}.homepage-navigation-bollen-list__item--meer-taken .homepage-navigation-bollen-list__item-link{color:#fff;color:var(--color-white)}.homepage-navigation-bollen-list__item--meer-taken .homepage-navigation-bollen-text-container__icon path{fill:#fff;fill:var(--color-white)}}@media (-ms-high-contrast:none)and (min-width:48em){::-ms-backdrop{height:24px!important;height:var(--icon-small)!important;width:24px!important;width:var(--icon-small)!important}.homepage-navigation-bollen-list__item .homepage-navigation-bollen-text-container__icon{height:24px!important;height:var(--icon-small)!important;width:24px!important;width:var(--icon-small)!important}}@media only screen and (min-width:62em){.cmp-homepage-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.homepage-navigation-bollen__container{width:60%}.homepage-navigation-bollen-list__item{margin:0 auto;position:relative}.teaser-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:30%}}@media only screen and (min-width:73.125em){.homepage-navigation-bollen-list{margin:initial;width:100%}}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1.2);transform:scale(1.2)}60%{-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1.2);transform:scale(1.2)}60%{-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes blurIn{0%{-webkit-filter:blur(0);filter:blur(0)}to{-webkit-filter:blur(10px);filter:blur(10px)}}@keyframes blurIn{0%{-webkit-filter:blur(0);filter:blur(0)}to{-webkit-filter:blur(10px);filter:blur(10px)}}.cx-search-app{margin-bottom:1.6rem;margin-bottom:var(--spacing-16);margin-right:1.6rem;margin-right:var(--spacing-16)}.cx-question-box__input{border:1px solid #bfc0c3;border:1px solid var(--color-manatee-lighter);border-radius:.4rem;border-radius:var(--border-radius-xs);display:-webkit-box;display:-ms-flexbox;display:flex;line-height:undefined;line-height:var(--line-height-input-and-buttons);max-width:100%;padding:0;position:relative}.cx-question-box__input input{border:none!important;border-radius:0!important;line-height:inherit!important;padding:.6rem 0 .6rem 1.6rem!important;padding:.6rem 0 .6rem var(--spacing-16)!important}.cx-question-box__button{background:0 0;padding:0 .9rem}.cx-search-app--open .cx-question-box__input{fill:currentColor}.cx-search-app--open .cx-search-app__button{display:none}.cx-search-app svg{height:2.2rem;width:2.2rem;fill:#383a3c;fill:var(--color-body)}.cx-search-app--open .cx-question-box__input{color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;width:auto;z-index:1000}.cx-faqs{background:#fff;background:var(--color-white);border:1px solid #bfc0c3;border:1px solid var(--color-manatee-lighter);border-bottom-left-radius:.4rem;border-bottom-left-radius:var(--border-radius-xs);border-bottom-right-radius:.4rem;border-bottom-right-radius:var(--border-radius-xs);border-top:none;-webkit-box-sizing:content-box;box-sizing:content-box;left:-1px;position:absolute;top:3.5rem;width:100%}.cx-faqs__results ul{list-style:none;margin:0;padding:0}.cx-faqs__results li{padding:.8rem 1.6rem;padding:var(--spacing-8) var(--spacing-16)}.cx-faqs__results li:nth-child(odd){background:#f4f4f4;background:var(--color-manatee-lightest)}.cx-faqs__results li a{color:inherit;display:block;text-decoration:none}.cx-faqs__results li:hover{background:#5ac8a5!important;background:var(--color-munsell-green-lighter)!important;color:#383a3c;color:var(--color-body)}.cx-faqs__results li a:focus{outline:1px dotted #9ca0a4;outline:1px dotted var(--color-manatee)}.cx-search-app__button__label{display:none}@media screen and (min-width:48em){.cx-search-app{margin:0}.cx-search-app__button{background-color:transparent;border:1px solid var(--color-manatee,#646668);border-radius:.4rem;border-radius:var(--border-radius-xs);display:-webkit-box;display:-ms-flexbox;display:flex;padding:.8rem 1.6rem .8rem .8rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:.8rem}.cx-search-app__button__label{color:var(--color-manatee-darkest,#383a3c);display:block;font-size:var(--font-size-16,1.6rem);font-weight:600;padding-top:.2rem}.cx-question-box__button{border-bottom-right-radius:.4rem;border-bottom-right-radius:var(--border-radius-xs);border-top-right-radius:.4rem;border-top-right-radius:var(--border-radius-xs)}.cx-search-app__button:hover{background:#fff;background:var(--color-white);border:1px solid #fff;border:1px solid var(--color-white)}.cx-search-app__button:hover svg,.pfzw-page--white-header-text .cx-search-app__button:hover svg{fill:var(--color-primary,#00a870)}.cx-search-app__button:hover .cx-search-app__button__label{color:var(--color-primary,#00a870)}.pfzw-page--white-header-text .cx-search-app__button svg{fill:var(--color-white,#fff)}.cx-search-app--open .cx-question-box__button{background:var(--color-white,#fff)}.pfzw-page--white-header-text .cx-question-box__button,.pfzw-page--white-header-text .cx-search-app__button{border-color:var(--color-white,#fff)}.cx-search-app--open .cx-question-box__input input{border-bottom-left-radius:var(--border-radius-xs,.4rem)!important;border-top-left-radius:var(--border-radius-xs,.4rem)!important;padding:.5rem 0 .5rem var(--spacing-16,1.6rem)!important}.cx-search-app--open .cx-question-box__input{left:0;position:absolute;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.cmp-header--is-expanded .cx-search-app--open{visibility:hidden}.cx-faqs{top:3.5rem}}@media screen and (-ms-high-contrast:none){::-ms-backdrop{padding:.8rem 0 .8rem 1.6rem!important;padding:.8rem 0 .8rem var(--spacing-16)!important}.cx-search-app--open .cx-question-box__input input{padding:.8rem 0 .8rem 1.6rem!important;padding:.8rem 0 .8rem var(--spacing-16)!important}}.cv-chat{display:none}.cmp-callback__spinner{display:inline-block;height:7.5rem;margin-left:-2.8rem;vertical-align:middle;width:13rem}.cmp-callback__text{display:inline-block;margin:0;vertical-align:middle}.wrapper-full-width{background-position:top;background-repeat:no-repeat;background-size:cover;left:50%;margin-left:-50vw;margin-right:-50vw;position:relative;right:50%;width:100vw}.wrapper-full-width.-no-background{background:none}.cmp-header{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;margin:0 auto;position:relative;width:100%;z-index:var(--z-index-menu)}.cmp-header,.header__upper{display:-webkit-box;display:-ms-flexbox;display:flex}.header__upper{margin:var(--spacing-24) var(--spacing-12);-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header__cmp-loginbutton,.header__cmp-search,.header__cmp-switch{margin-left:var(--spacing-16)}.header__logo-img{display:inline-block;height:calc(var(--header-content-height)*1.42857);-webkit-transform:translateY(-7%);transform:translateY(-7%);width:calc(var(--header-content-height)*4.46)}.header__menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.cmp-header .cmp-loginbutton,.cmp-header .cmp-search,.header__werkgevers{display:block}.menu-toggle{background:transparent;position:absolute;right:var(--spacing-16);z-index:var(--z-index-menu-toggle)}.menu-toggle__btn{display:inline-block;font-size:2.4rem;height:var(--header-content-height);line-height:1;margin:0;width:var(--header-content-height)}.menu-toggle .pfzw-i-navigation-close{display:none}.cmp-header--is-expanded .pfzw-i-navigation-close{display:inline-block}.cmp-header--is-expanded .pfzw-i-navigation-menu{display:none}.pfzw-page--white-header-text .pfzw-i-navigation-menu{border-color:var(--color-white);color:var(--color-white)}.pfzw-page--white-header-text .pfzw-i-navigation-close:hover,.pfzw-page--white-header-text .pfzw-i-navigation-menu:hover{color:var(--color-munsell-green)}.pfzw-page--white-header-text .pfzw-i-navigation-menu:active{color:var(--color-white)}@media screen and (max-width:47.99em){:root{--header-padding:var(--spacing-32);--header-content-height:var(--spacing-32);--header-height:calc(var(--header-content-height) + var(--header-padding)*2)}.menu-toggle__btn{font-size:2rem}.header__menu{overflow:hidden;-webkit-box-orient:vertical;-webkit-box-direction:normal;background:var(--color-white);-ms-flex-direction:column;flex-direction:column;left:calc(var(--spacing-14)*-1);max-width:0;min-height:100vh;min-height:calc(var(--expanded-menu-full-height)*100);padding-top:var(--header-height);position:absolute;right:calc(var(--spacing-14)*-1);top:0;-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0);-webkit-transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:max-width 0s var(--anim-dur),-webkit-transform var(--anim);transition:transform var(--anim),max-width 0s var(--anim-dur);transition:transform var(--anim),max-width 0s var(--anim-dur),-webkit-transform var(--anim);z-index:var(--z-index-nav-expanded-menu)}.cmp-header--is-expanded .header__menu{max-width:120vw;max-width:calc(100% + var(--spacing-grid-gutter-sm)*2);padding:11rem 1.2rem 0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:-webkit-transform var(--anim);transition:-webkit-transform var(--anim);transition:transform var(--anim);transition:transform var(--anim),-webkit-transform var(--anim)}.header__cmp-loginbutton,.header__cmp-switch{margin-top:var(--spacing-16);width:calc(100% - var(--spacing-32))}.header__menu-actions{padding-bottom:var(--spacing-16)}.header__cmp-loginbutton .c-btn,.header__cmp-switch>.c-btn{width:100%}.header__menu-navigation-container{-webkit-box-flex:1;-ms-flex:auto;flex:auto}.header__cmp-loginbutton .c-btn,.header__cmp-switch .c-btn{text-align:center}.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wrapper-full-width.with-minHeight{min-height:0}}@media screen and (min-width:48em){.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.header__cmp-switch>.c-btn:focus{background:var(--color-white);color:var(--color-primary)}.header__menu{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin:0;margin-left:var(--spacing-16)}.cv-app-placeholder{min-width:4.2rem}.header__cmp-switch{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.wrapper-full-width.with-minHeight{min-height:0}}@media screen and (min-width:48em)and (max-width:89.98em){.header__menu{margin-right:6.6rem}.header__upper{position:relative}.wrapper-full-width.with-minHeight{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:90vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:73.125em){.cmp-header:after{content:"";display:block;height:100%;position:absolute;right:calc(var(--spacing-grid-half-gutter)*-1);top:0;width:0}}@media screen and (max-width:89.99em){.header__overlay{background:transparent;height:0;left:0;position:fixed;top:0;-webkit-transition:background var(--anim);transition:background var(--anim);width:0;z-index:var(--z-index-nav-overlay)}.cmp-header--is-expanded .header__overlay{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:rgba(0,0,0,.5);height:200vh;width:100vw}}@media screen and (min-width:90em){.cmp-header{width:144rem}.header__menu-navigation-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:3;-ms-flex:3;flex:3}.header__menu-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wrapper-full-width.with-minHeight{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:90vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.cmp-announcement{bottom:0}}@media screen and (min-width:48em)and (max-width:89.98em){body:not(.pfzw-v2) :root{--header-padding:var(--spacing-40);--header-height:calc(var(--header-content-height) + var(--header-padding)*2)}body:not(.pfzw-v2) .menu-toggle{-webkit-box-ordinal-group:101;-ms-flex-order:100;margin:0;order:100;right:var(--spacing-8);top:8.5px}}body:not(.pfzw-v2) .cmp-announcement{background-color:var(--color-white);margin-top:var(--spacing-16)}body:not(.pfzw-v2) .cmp-announcement_list{font-size:1.4rem}body:not(.pfzw-v2) .cmp-announcement_list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:600;list-style-type:none;padding:1rem}body:not(.pfzw-v2) .cmp-announcement_list-item a,body:not(.pfzw-v2) .cmp-announcement_list-item a:hover{color:var(--color-manatee-darker);display:-webkit-box;display:-ms-flexbox;display:flex;text-decoration:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body:not(.pfzw-v2) .cmp-announcement_list-item:first-child{display:none}body:not(.pfzw-v2) .cmp-announcement_list-item-anouncement{color:var(--color-munsell-green)}body:not(.pfzw-v2) .cmp-announcement_list-item-paymentdate{color:var(--color-munsell-green);font-size:var(--font-16)}body:not(.pfzw-v2) .cmp-announcement_list-item-coverageratio__icon svg,body:not(.pfzw-v2) .cmp-announcement_list-item-paymentdate__icon svg{height:2.4rem;margin:0 var(--spacing-8);width:2.4rem;fill:var(--color-manatee-darker)}@media screen and (min-width:48em){body:not(.pfzw-v2) .cmp-announcement{background:-webkit-gradient(linear,left top,right top,from(#fff),color-stop(40%,#fff),color-stop(41%,hsla(0,0%,100%,0)),color-stop(60%,hsla(0,0%,100%,0)),color-stop(61%,#fff),to(#fff));background:linear-gradient(90deg,#fff 0,#fff 40%,hsla(0,0%,100%,0) 41%,hsla(0,0%,100%,0) 60%,#fff 61%,#fff);height:5rem;width:100vw;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}body:not(.pfzw-v2) .cmp-announcement,body:not(.pfzw-v2) .cmp-announcement_list{display:-webkit-box;display:-ms-flexbox;display:flex}body:not(.pfzw-v2) .cmp-announcement_list-item:nth-child(2){background-color:var(--color-white);border-radius:0 3rem 0 0;width:50vw}body:not(.pfzw-v2) .cmp-announcement_list-item:nth-child(3){background-color:var(--color-white);border-radius:3rem 0 0 0;padding-left:2rem;width:50vw}}@media screen and (min-width:73.125em){body:not(.pfzw-v2) .cmp-announcement_list{position:relative;width:100%}body:not(.pfzw-v2) .cmp-announcement_list,body:not(.pfzw-v2) .cmp-announcement_list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:5rem}body:not(.pfzw-v2) .cmp-announcement_list-item{list-style-type:none;padding-left:var(--spacing-24);padding-right:2rem}body:not(.pfzw-v2) .cmp-announcement_list-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body:not(.pfzw-v2) .cmp-announcement_list-item:first-child{background-color:var(--color-white);border-radius:0 3rem 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:50%}body:not(.pfzw-v2) .cmp-announcement_list-item:nth-child(2){background-color:var(--color-white);border-radius:3rem 0 0 0;width:25%}body:not(.pfzw-v2) .cmp-announcement_list-item:nth-child(3){background-color:var(--color-white);width:25%}body:not(.pfzw-v2) .cmp-announcement_list-item-date{margin-right:1rem;white-space:nowrap}body:not(.pfzw-v2) .cmp-announcement_list-item-anouncement{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}@media screen and (min-width:90em){body:not(.pfzw-v2) .cmp-announcement_list{width:144rem}}@media screen and (-ms-high-contrast:none){body:not(.pfzw-v2) .header__upper,body:not(.pfzw-v2) ::-ms-backdrop{-ms-flex-align:stretch;align-items:stretch}}.header__logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Laag_1' data-name='Laag 1' viewBox='0 0 150 48'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fff}%3C/style%3E%3C/defs%3E%3Ctitle%3Elogo-small-medium-large%3C/title%3E%3Crect width='141.87' height='33.59' x='8.02' y='14.41' rx='5.7' style='fill:%2312aa74'/%3E%3Crect width='94.66' height='21.47' rx='5.7' style='fill:%23434b99'/%3E%3Cpath d='M13.7 9.12a2.44 2.44 0 0 1-.8 2 3.47 3.47 0 0 1-2.28.68h-.73v2.83H8.21V6.64h2.54a3.37 3.37 0 0 1 2.2.62 2.26 2.26 0 0 1 .75 1.86m-3.81 1.26h.56a1.8 1.8 0 0 0 1.16-.31 1.06 1.06 0 0 0 .39-.89 1.1 1.1 0 0 0-.33-.88 1.5 1.5 0 0 0-1-.28h-.78ZM17.31 14.7a3.14 3.14 0 0 1-2.31-.82 3.06 3.06 0 0 1-.83-2.29A3.35 3.35 0 0 1 15 9.23a2.71 2.71 0 0 1 2.11-.84 2.7 2.7 0 0 1 2 .74 2.8 2.8 0 0 1 .71 2V12h-3.95a1.6 1.6 0 0 0 .42 1.1 1.46 1.46 0 0 0 1.1.4 5 5 0 0 0 1-.11 5 5 0 0 0 1-.37v1.29a4 4 0 0 1-.93.32 6 6 0 0 1-1.15.07m-.23-5.13a1 1 0 0 0-.83.34 1.54 1.54 0 0 0-.34.95h2.33a1.43 1.43 0 0 0-.32-.95 1.08 1.08 0 0 0-.84-.34M26.58 14.59h-1.66V11a1.7 1.7 0 0 0-.24-1 .83.83 0 0 0-.74-.33 1.12 1.12 0 0 0-1 .46 3 3 0 0 0-.31 1.55v2.86H21V8.51h1.27l.22.77h.1a1.75 1.75 0 0 1 .76-.66 2.6 2.6 0 0 1 1.11-.23A2.12 2.12 0 0 1 26 9a2.3 2.3 0 0 1 .55 1.65ZM32.51 12.78a1.7 1.7 0 0 1-.65 1.43 3.24 3.24 0 0 1-1.94.49 6 6 0 0 1-1.13-.09 4 4 0 0 1-.88-.27V13a6 6 0 0 0 1 .37 4.7 4.7 0 0 0 1 .14c.6 0 .9-.17.9-.52a.44.44 0 0 0-.12-.32 1.9 1.9 0 0 0-.41-.28c-.19-.1-.46-.22-.78-.36a4.5 4.5 0 0 1-1-.54 1.6 1.6 0 0 1-.48-.57 1.9 1.9 0 0 1-.15-.8 1.43 1.43 0 0 1 .63-1.25 3 3 0 0 1 1.78-.45 5.1 5.1 0 0 1 2.14.48l-.5 1.2a9 9 0 0 0-.86-.32 2.5 2.5 0 0 0-.81-.13c-.49 0-.73.13-.73.4a.45.45 0 0 0 .23.38 7 7 0 0 0 1 .49 4.6 4.6 0 0 1 1 .54 1.54 1.54 0 0 1 .49.57 1.7 1.7 0 0 1 .27.75M33.39 6.94q0-.81.9-.81c.61 0 .91.27.91.81a.8.8 0 0 1-.23.6 1 1 0 0 1-.68.21q-.9 0-.9-.81m1.73 7.65h-1.66V8.51h1.66ZM42.21 11.54a3.23 3.23 0 0 1-.79 2.32 2.82 2.82 0 0 1-2.18.84 3 3 0 0 1-1.54-.39 2.5 2.5 0 0 1-1-1.1 3.7 3.7 0 0 1-.36-1.67 3.24 3.24 0 0 1 .78-2.32 2.87 2.87 0 0 1 2.19-.83 3.1 3.1 0 0 1 1.54.38 2.55 2.55 0 0 1 1 1.1 3.64 3.64 0 0 1 .36 1.67m-4.21 0a2.5 2.5 0 0 0 .3 1.36 1.06 1.06 0 0 0 1 .46 1 1 0 0 0 .95-.46 2.6 2.6 0 0 0 .29-1.36 2.57 2.57 0 0 0-.29-1.36 1.07 1.07 0 0 0-1-.45 1 1 0 0 0-1 .45 2.47 2.47 0 0 0-.25 1.36M46.32 14.7a3.15 3.15 0 0 1-2.3-.82 3.06 3.06 0 0 1-.83-2.29A3.35 3.35 0 0 1 44 9.23a3.08 3.08 0 0 1 4.12-.1 2.76 2.76 0 0 1 .71 2V12h-3.96a1.6 1.6 0 0 0 .42 1.1 1.46 1.46 0 0 0 1.1.4 5 5 0 0 0 1-.11 5 5 0 0 0 1-.37v1.29a4 4 0 0 1-.93.32 6 6 0 0 1-1.14.07m-.24-5.13a1 1 0 0 0-.83.34 1.6 1.6 0 0 0-.34.95h2.33a1.38 1.38 0 0 0-.32-.95 1.08 1.08 0 0 0-.84-.34M55.58 14.59h-1.66V11a1.7 1.7 0 0 0-.24-1 .83.83 0 0 0-.74-.33 1.13 1.13 0 0 0-1 .46 3 3 0 0 0-.31 1.55v2.86H50V8.51h1.26l.23.77h.09a1.75 1.75 0 0 1 .76-.66 2.6 2.6 0 0 1 1.11-.23A2.12 2.12 0 0 1 55 9a2.3 2.3 0 0 1 .55 1.65ZM60.47 9.75H59v4.84h-1.63V9.75h-.91V9l.91-.44v-.5a2 2 0 0 1 .51-1.52 2.35 2.35 0 0 1 1.64-.47 4.3 4.3 0 0 1 1.53.25l-.43 1.22a2.9 2.9 0 0 0-.92-.16.58.58 0 0 0-.51.21.85.85 0 0 0-.16.54v.38h1.44ZM66.76 11.54a3.27 3.27 0 0 1-.76 2.32 2.83 2.83 0 0 1-2.18.84 3 3 0 0 1-1.54-.39 2.5 2.5 0 0 1-1-1.1 3.7 3.7 0 0 1-.36-1.67 3.24 3.24 0 0 1 .78-2.32 2.85 2.85 0 0 1 2.18-.83 3.1 3.1 0 0 1 1.55.38 2.6 2.6 0 0 1 1 1.1 3.64 3.64 0 0 1 .33 1.67m-4.2 0a2.5 2.5 0 0 0 .3 1.36 1.05 1.05 0 0 0 1 .46 1 1 0 0 0 1-.46 2.6 2.6 0 0 0 .29-1.36 2.47 2.47 0 0 0-.3-1.36 1.24 1.24 0 0 0-1.91 0 2.47 2.47 0 0 0-.38 1.36M73.73 14.59h-1.66V11a1.7 1.7 0 0 0-.23-1 .85.85 0 0 0-.74-.33 1.12 1.12 0 0 0-1 .46 2.9 2.9 0 0 0-.31 1.55v2.86h-1.67V8.51h1.27l.22.77h.09a1.77 1.77 0 0 1 .77-.66 2.6 2.6 0 0 1 1.1-.23 2.1 2.1 0 0 1 1.61.61 2.27 2.27 0 0 1 .55 1.65ZM77.19 14.7a2 2 0 0 1-1.69-.84 3.86 3.86 0 0 1-.61-2.3 3.84 3.84 0 0 1 .62-2.33 2 2 0 0 1 1.72-.84 2 2 0 0 1 1.77.89 6 6 0 0 1-.13-1.21V6.13h1.66v8.46H79.3l-.3-.79h-.07a1.9 1.9 0 0 1-1.74.9m.58-1.33a1.12 1.12 0 0 0 .93-.37 2 2 0 0 0 .3-1.25v-.18a2.5 2.5 0 0 0-.3-1.4 1.11 1.11 0 0 0-1-.43 1 1 0 0 0-.86.47 2.5 2.5 0 0 0-.31 1.37 2.45 2.45 0 0 0 .31 1.35 1 1 0 0 0 .93.44M86.37 12.78a1.68 1.68 0 0 1-.65 1.43 3.24 3.24 0 0 1-1.94.49 6 6 0 0 1-1.13-.09 4 4 0 0 1-.88-.27V13a6 6 0 0 0 1 .37 4.7 4.7 0 0 0 1 .14c.6 0 .91-.17.91-.52a.44.44 0 0 0-.12-.32 2 2 0 0 0-.42-.28q-.28-.15-.78-.36a4.5 4.5 0 0 1-1-.54 1.6 1.6 0 0 1-.48-.57 1.9 1.9 0 0 1-.15-.8 1.43 1.43 0 0 1 .63-1.25 3 3 0 0 1 1.78-.45 5.1 5.1 0 0 1 2.14.48l-.5 1.2a9 9 0 0 0-.78-.35 2.5 2.5 0 0 0-.81-.13c-.49 0-.73.13-.73.4a.45.45 0 0 0 .23.38 7 7 0 0 0 1 .49 4.4 4.4 0 0 1 1 .54 1.46 1.46 0 0 1 .49.57 1.7 1.7 0 0 1 .19.78M26.29 38.5h-9.56v-2L22 28.91h-5.15v-2.68h9.3v2l-5.31 7.55h5.45ZM36.66 33.73a5.1 5.1 0 0 1-1.25 3.64 4.66 4.66 0 0 1-3.52 1.3 4.57 4.57 0 0 1-3.45-1.33 5 5 0 0 1-1.28-3.61 5 5 0 0 1 1.26-3.62 4.7 4.7 0 0 1 3.52-1.29 5 5 0 0 1 2.48.6 4.1 4.1 0 0 1 1.66 1.71 5.5 5.5 0 0 1 .58 2.6m-6.16 0a4.15 4.15 0 0 0 .33 1.86 1.12 1.12 0 0 0 1.09.65 1.11 1.11 0 0 0 1.08-.65 4.3 4.3 0 0 0 .32-1.86 4.16 4.16 0 0 0-.32-1.84 1.26 1.26 0 0 0-2.17 0 4 4 0 0 0-.33 1.84M44 28.82a4.3 4.3 0 0 1 .82.07H45L44.71 32a4.7 4.7 0 0 0-1.12-.1 2.1 2.1 0 0 0-1.56.49 1.9 1.9 0 0 0-.49 1.42v4.69h-3.28V29h2.44l.51 1.52h.16a3.36 3.36 0 0 1 1.15-1.22 2.74 2.74 0 0 1 1.48-.48M55 29v1.59l-1.3.48a2.27 2.27 0 0 1 .3 1.12 2.87 2.87 0 0 1-1.07 2.38 5.13 5.13 0 0 1-3.22.85 3.7 3.7 0 0 1-.84-.07.9.9 0 0 0-.12.42c0 .16.13.28.39.37a3.3 3.3 0 0 0 1 .13h1.57c2.14 0 3.2.9 3.2 2.69a3.06 3.06 0 0 1-1.48 2.71 7.6 7.6 0 0 1-4.16 1 6 6 0 0 1-3.09-.67 2.15 2.15 0 0 1-1.09-2c0-1.13.7-1.87 2.11-2.2a1.94 1.94 0 0 1-.76-.59 1.37 1.37 0 0 1-.32-.82 1.33 1.33 0 0 1 .24-.78 3.4 3.4 0 0 1 1-.81 2.52 2.52 0 0 1-1.16-1 3.1 3.1 0 0 1-.43-1.69 2.91 2.91 0 0 1 1.06-2.41 4.68 4.68 0 0 1 3-.86c.18 0 .47 0 .9.06s.74.08.94.11Zm-7.17 10.7a.73.73 0 0 0 .43.65 2.4 2.4 0 0 0 1.17.25 5 5 0 0 0 1.91-.3c.48-.2.72-.46.72-.77a.55.55 0 0 0-.44-.53 3.7 3.7 0 0 0-1.25-.16h-1.25a1.54 1.54 0 0 0-.9.25.72.72 0 0 0-.36.6Zm1-7.59q0 1.47 1 1.47a.82.82 0 0 0 .72-.37 1.87 1.87 0 0 0 .26-1.08c0-1-.33-1.48-1-1.48s-.92.48-.92 1.45ZM69.33 38.5l-.83-.85a7.4 7.4 0 0 1-1.24.66 5.6 5.6 0 0 1-1.09.27 9 9 0 0 1-1.37.09 5.8 5.8 0 0 1-2.35-.45A3.54 3.54 0 0 1 60.89 37a3.3 3.3 0 0 1-.54-1.86 3.65 3.65 0 0 1 2.28-3.36 5.1 5.1 0 0 1-.81-1.25 3.7 3.7 0 0 1-.29-1.53 2.53 2.53 0 0 1 1-2.13 4.57 4.57 0 0 1 2.85-.79 4.36 4.36 0 0 1 2.76.78 2.6 2.6 0 0 1 1 2.14 3 3 0 0 1-.54 1.73 5.3 5.3 0 0 1-1.6 1.48l1.67 1.58a6.1 6.1 0 0 0 .87-2.18h3.36a10.6 10.6 0 0 1-.79 2.32 9.6 9.6 0 0 1-1.22 2l2.68 2.57Zm-5.6-3.64a1.1 1.1 0 0 0 .38.86 1.43 1.43 0 0 0 1 .34 2.4 2.4 0 0 0 .84-.13 2 2 0 0 0 .56-.28l-2.09-2.12a1.59 1.59 0 0 0-.69 1.33M66.21 29a.69.69 0 0 0-.21-.6 1 1 0 0 0-.6-.18 1 1 0 0 0-.62.21.82.82 0 0 0-.26.67 1.86 1.86 0 0 0 .74 1.3 2.1 2.1 0 0 0 .73-.64 1.35 1.35 0 0 0 .22-.76M92.31 38.5h-3.92l-1.18-5.35c0-.22-.14-.66-.26-1.33s-.21-1.22-.26-1.67c0 .36-.12.81-.22 1.35s-.2 1-.3 1.49-.51 2.29-1.17 5.51h-4l-3-12.27h3.2l1.33 6.15c.3 1.36.51 2.45.62 3.25.08-.57.21-1.34.39-2.32s.37-1.8.53-2.44l1.08-4.64h3.07l1.05 4.64c.18.75.36 1.6.55 2.58s.31 1.7.37 2.18c.07-.62.27-1.7.59-3.23l1.36-6.17h3.2ZM100.55 38.67a5.13 5.13 0 0 1-3.69-1.26 4.8 4.8 0 0 1-1.31-3.6 5.2 5.2 0 0 1 1.22-3.7 4.54 4.54 0 0 1 3.47-1.29 4.63 4.63 0 0 1 3.32 1.12 4.24 4.24 0 0 1 1.18 3.23v1.46h-5.87a1.6 1.6 0 0 0 .58 1.25 2.26 2.26 0 0 0 1.5.46 7 7 0 0 0 1.59-.17 7.5 7.5 0 0 0 1.57-.56V38a5.5 5.5 0 0 1-1.59.55 11 11 0 0 1-1.97.12m-.19-7.61a1.37 1.37 0 0 0-1 .36 1.75 1.75 0 0 0-.46 1.15h2.82a1.62 1.62 0 0 0-.39-1.1 1.25 1.25 0 0 0-.97-.41M109.76 38.5h-3.28V25.44h3.28ZM119.08 38.5h-7.88v-1.87l3.94-5.13h-3.71V29h7.47v2l-3.77 5h4ZM120.46 26.62a1.37 1.37 0 0 1 .42-1.1 2 2 0 0 1 1.32-.36 2 2 0 0 1 1.34.37 1.38 1.38 0 0 1 .42 1.09c0 1-.59 1.45-1.76 1.45s-1.74-.49-1.74-1.45m3.37 11.88h-3.28V29h3.28ZM125.77 42.63a8 8 0 0 1-.93-.06 5 5 0 0 1-.83-.15v-2.56a3.7 3.7 0 0 0 1 .15c.67 0 1-.47 1-1.42V29h3.28v10.28a3.3 3.3 0 0 1-.91 2.46 3.6 3.6 0 0 1-2.61.89m.16-16a1.37 1.37 0 0 1 .41-1.1 2 2 0 0 1 1.33-.36 2 2 0 0 1 1.33.37 1.38 1.38 0 0 1 .42 1.09c0 1-.58 1.45-1.75 1.45s-1.74-.5-1.74-1.46ZM137.64 38.5v-5.19a3 3 0 0 0-.27-1.43.93.93 0 0 0-.88-.48 1.28 1.28 0 0 0-1.2.66 5.14 5.14 0 0 0-.37 2.28v4.16h-3.28V29h2.48l.41 1.18h.19a2.6 2.6 0 0 1 1.16-1 4 4 0 0 1 1.71-.34 3.27 3.27 0 0 1 2.46.92 3.6 3.6 0 0 1 .88 2.57v6.17Z' class='cls-3'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;height:57px;width:178px}body.pfzw-v2{background-color:#f7f7f7;opacity:1}body.pfzw-v2 *{scroll-margin-top:100px}body.pfzw-v2 .responsivegrid.aem-GridColumn{padding:0 1.2rem}body.pfzw-v2 .container.aem-GridColumn--default--12+.targetaudiencexf{background-color:#fff;margin-top:32px}body.pfzw-v2 .sectioncontainer{padding:0}body.pfzw-v2 p{margin-bottom:24px}body.pfzw-v2 .cmp-text a,body.pfzw-v2 .cmp-text a:active,body.pfzw-v2 .cmp-text a:focus,body.pfzw-v2 .cmp-text a:hover,body.pfzw-v2 .cmp-text a:visited,body.pfzw-v2 .text a,body.pfzw-v2 .text a:active,body.pfzw-v2 .text a:focus,body.pfzw-v2 .text a:hover,body.pfzw-v2 .text a:visited{color:var(--pggm-link-color)}body.pfzw-v2 .blue a[link-type],body.pfzw-v2 .green a[link-type]{color:#fff}body.pfzw-v2 .blue a[link-type=external]:after,body.pfzw-v2 .green a[link-type=external]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-external-link" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5"/></svg>')}body.pfzw-v2 .blue a[link-type=pdf]:after,body.pfzw-v2 .green a[link-type=pdf]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-file-type-pdf" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M14 3v4a1 1 0 0 0 1 1h4"/><path d="M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 0 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z"/></svg>')}body.pfzw-v2 .cmp-text a,body.pfzw-v2 .cmp-text a:active,body.pfzw-v2 .cmp-text a:focus,body.pfzw-v2 .cmp-text a:hover,body.pfzw-v2 .cmp-text a:visited,body.pfzw-v2 [appearance=primary] .teaser a[link-type],body.pfzw-v2 [appearance=primary] .teaser a[link-type]:active,body.pfzw-v2 [appearance=primary] .teaser a[link-type]:focus,body.pfzw-v2 [appearance=primary] .teaser a[link-type]:hover,body.pfzw-v2 [appearance=primary] .teaser a[link-type]:visited,body.pfzw-v2 [appearance=secondary] .teaser a[link-type],body.pfzw-v2 [appearance=secondary] .teaser a[link-type]:active,body.pfzw-v2 [appearance=secondary] .teaser a[link-type]:focus,body.pfzw-v2 [appearance=secondary] .teaser a[link-type]:hover,body.pfzw-v2 [appearance=secondary] .teaser a[link-type]:visited,body.pfzw-v2 a[link-type],body.pfzw-v2 a[link-type]:active,body.pfzw-v2 a[link-type]:focus,body.pfzw-v2 a[link-type]:hover,body.pfzw-v2 a[link-type]:visited{color:var(--pggm-link-color)}body.pfzw-v2 .cmp-text a[link-type=external],body.pfzw-v2 .cmp-text a[link-type=pdf],body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=external],body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=pdf],body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=external],body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=pdf],body.pfzw-v2 a[link-type][link-type=external],body.pfzw-v2 a[link-type][link-type=pdf]{padding-right:26px;position:relative}body.pfzw-v2 .cmp-text a[link-type=external]:after,body.pfzw-v2 .cmp-text a[link-type=pdf]:after,body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=external]:after,body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=pdf]:after,body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=external]:after,body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=pdf]:after,body.pfzw-v2 a[link-type][link-type=external]:after,body.pfzw-v2 a[link-type][link-type=pdf]:after{content:"";display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:24px;margin-left:2px;position:absolute;width:24px}body.pfzw-v2 .cmp-text a[link-type=external]:after,body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=external]:after,body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=external]:after,body.pfzw-v2 a[link-type][link-type=external]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23008055" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-external-link" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5"/></svg>')}body.pfzw-v2 .cmp-text a[link-type=pdf]:after,body.pfzw-v2 [appearance=primary] .teaser a[link-type][link-type=pdf]:after,body.pfzw-v2 [appearance=secondary] .teaser a[link-type][link-type=pdf]:after,body.pfzw-v2 a[link-type][link-type=pdf]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23008055" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-file-type-pdf" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M14 3v4a1 1 0 0 0 1 1h4"/><path d="M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 0 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z"/></svg>')}body.pfzw-v2 .blue a[link-type],body.pfzw-v2 .blue a[link-type]:active,body.pfzw-v2 .blue a[link-type]:focus,body.pfzw-v2 .blue a[link-type]:hover,body.pfzw-v2 .blue a[link-type]:visited,body.pfzw-v2 .green a[link-type],body.pfzw-v2 .green a[link-type]:active,body.pfzw-v2 .green a[link-type]:focus,body.pfzw-v2 .green a[link-type]:hover,body.pfzw-v2 .green a[link-type]:visited,body.pfzw-v2 [appearance=primary] a[link-type],body.pfzw-v2 [appearance=primary] a[link-type]:active,body.pfzw-v2 [appearance=primary] a[link-type]:focus,body.pfzw-v2 [appearance=primary] a[link-type]:hover,body.pfzw-v2 [appearance=primary] a[link-type]:visited,body.pfzw-v2 [appearance=secondary] a[link-type],body.pfzw-v2 [appearance=secondary] a[link-type]:active,body.pfzw-v2 [appearance=secondary] a[link-type]:focus,body.pfzw-v2 [appearance=secondary] a[link-type]:hover,body.pfzw-v2 [appearance=secondary] a[link-type]:visited{color:#fff}body.pfzw-v2 .blue a[link-type=external]:after,body.pfzw-v2 .green a[link-type=external]:after,body.pfzw-v2 [appearance=primary] a[link-type=external]:after,body.pfzw-v2 [appearance=secondary] a[link-type=external]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-external-link" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5"/></svg>')}body.pfzw-v2 .blue a[link-type=pdf]:after,body.pfzw-v2 .green a[link-type=pdf]:after,body.pfzw-v2 [appearance=primary] a[link-type=pdf]:after,body.pfzw-v2 [appearance=secondary] a[link-type=pdf]:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon icon-tabler icons-tabler-outline icon-tabler-file-type-pdf" viewBox="0 0 24 24"><path stroke="none" d="M0 0h24v24H0z"/><path d="M14 3v4a1 1 0 0 0 1 1h4"/><path d="M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 0 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z"/></svg>')}body.pfzw-v2 .root.responsivegrid{background-color:#f7f7f7;margin:0;max-width:unset;overflow:hidden;width:100%}body.pfzw-v2 .root.responsivegrid .responsivegrid{margin:0 auto;max-width:1096px}body.pfzw-v2.detail-page .header-image+.container,body.pfzw-v2.detail-page .targetaudiencexf+.container,body.pfzw-v2.fullwidth-page .header-image+.container,body.pfzw-v2.fullwidth-page .targetaudiencexf+.container,body.pfzw-v2.overview-page .header-image+.container,body.pfzw-v2.overview-page .targetaudiencexf+.container,body.pfzw-v2.xl-page .header-image+.container,body.pfzw-v2.xl-page .root.responsivegrid>.cmp-container>.aem-Grid>.aem-GridColumn,body.pfzw-v2.xl-page .targetaudiencexf+.container{padding:0}body.pfzw-v2.detail-page .root.responsivegrid .responsivegrid,body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid,body.pfzw-v2.overview-page .root.responsivegrid .responsivegrid,body.pfzw-v2.xl-page .root.responsivegrid .responsivegrid{margin:0 auto;max-width:1440px}body.pfzw-v2.detail-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2 .experiencefragment .navigation,body.pfzw-v2.detail-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3 .experiencefragment .navigation,body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2 .experiencefragment .navigation,body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3 .experiencefragment .navigation,body.pfzw-v2.overview-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2 .experiencefragment .navigation,body.pfzw-v2.overview-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3 .experiencefragment .navigation,body.pfzw-v2.xl-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2 .experiencefragment .navigation,body.pfzw-v2.xl-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3 .experiencefragment .navigation{padding:0}@media screen and (min-width:992px){body.pfzw-v2.detail-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2,body.pfzw-v2.detail-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3,body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2,body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3,body.pfzw-v2.overview-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2,body.pfzw-v2.overview-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3,body.pfzw-v2.xl-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--2.aem-GridColumn--default--2,body.pfzw-v2.xl-page .root.responsivegrid .responsivegrid .aem-GridColumn--default--3.aem-GridColumn--default--3{padding:0}}body.pfzw-v2.detail-page .container.aem-GridColumn--default--12+.targetaudiencexf,body.pfzw-v2.fullwidth-page .container.aem-GridColumn--default--12+.targetaudiencexf,body.pfzw-v2.overview-page .container.aem-GridColumn--default--12+.targetaudiencexf,body.pfzw-v2.xl-page .container.aem-GridColumn--default--12+.targetaudiencexf{border-top:8px solid #00aa72;margin-top:120px;padding-top:64px}body.pfzw-v2 .experiencefragment{padding:0}body.pfzw-v2 .width-75{display:inline-block;vertical-align:top;width:74.5%}body.pfzw-v2 .width-66{display:inline-block;vertical-align:top;width:65.9%}body.pfzw-v2 .width-50{display:inline-block;vertical-align:top;width:49.7%}body.pfzw-v2 .width-33{display:inline-block;vertical-align:top;width:32.9%}body.pfzw-v2 .width-25{display:inline-block;vertical-align:top;width:24.5%}@media screen and (max-width:991px){body.pfzw-v2 .width-25,body.pfzw-v2 .width-33,body.pfzw-v2 .width-50,body.pfzw-v2 .width-66,body.pfzw-v2 .width-75{width:100%}}body.pfzw-v2.fullwidth-12-columns-page .breadcrumb.aem-GridColumn,body.pfzw-v2.fullwidth-12-columns-page .responsivegrid.aem-GridColumn{padding:0!important}body.pfzw-v2 body.pfzw-v2.fullwidth-page .root.responsivegrid .responsivegrid,body.pfzw-v2.fullwidth-12-columns-page .cmp-container .breadcrumb,body.pfzw-v2.fullwidth-12-columns-page .root.responsivegrid .responsivegrid{margin:0 auto;max-width:1440px;width:100%}body.pfzw-v2.fullwidth-12-columns-page .cmp-breadcrumb{margin-left:0;margin-top:32px;padding-left:1.2rem;padding-right:1.2rem}body.pfzw-v2.fullwidth-12-columns-page .title{margin-top:32px}body.pfzw-v2.fullwidth-12-columns-page .breadcrumb+.title{margin-top:0}.pfzw-v2{font-family:var(--fontFamilyOpenSans,"Open Sans","Segoe UI",Tahoma,sans-serif);font-size:16px;line-height:1.75}.pfzw-v2 h1,.pfzw-v2 h2,.pfzw-v2 h3,.pfzw-v2 h4,.pfzw-v2 h5,.pfzw-v2 h6{font-family:var(--fontFamilyPoppins,"Poppins","Segoe UI",Tahoma,sans-serif)}.pfzw-v2 h1{font-size:36px;font-weight:600;line-height:40px;margin-bottom:1.33333em;margin-top:0}.pfzw-v2 h2{font-family:var(--fontFamilyPoppins,"Poppins","Segoe UI",Tahoma,sans-serif);font-size:24px;font-weight:600;line-height:32px}.pfzw-v2 h3{font-size:20px}.pfzw-v2 h3,.pfzw-v2 h4{font-weight:500;line-height:24px}.pfzw-v2 h4{font-size:18px}.pfzw-v2 h5{font-size:14px;font-weight:500;line-height:24px}.pfzw-v2 .cmp-title h2{margin-top:24px}.pfzw-v2 .cmp-title h3{margin-top:16px}@media screen and (max-width:767px){.pfzw-v2 h1{font-size:30px}}.text-align-left{text-align:left}.text-align-center{text-align:center}.text-align-right{text-align:right}.text-align-justify{text-align:justify}.text-justify-inter-ideograph{text-justify:inter-ideograph}.height__1{height:1px}.height__2{height:2px}.height__3{height:3px}.height__4{height:4px}.height__5{height:5px}.height__6{height:6px}.height__7{height:7px}.height__8{height:8px}.height__9{height:9px}.height__10{height:10px}.height__11{height:11px}.height__12{height:12px}.height__13{height:13px}.height__14{height:14px}.height__15{height:15px}.height__16{height:16px}.height__17{height:17px}.height__18{height:18px}.height__19{height:19px}.height__20{height:20px}.height__21{height:21px}.height__22{height:22px}.height__23{height:23px}.height__24{height:24px}.height__25{height:25px}.height__26{height:26px}.height__27{height:27px}.height__28{height:28px}.height__29{height:29px}.height__30{height:30px}.height__31{height:31px}.height__32{height:32px}.height__33{height:33px}.height__34{height:34px}.height__35{height:35px}.height__36{height:36px}.height__37{height:37px}.height__38{height:38px}.height__39{height:39px}.height__40{height:40px}.height__41{height:41px}.height__42{height:42px}.height__43{height:43px}.height__44{height:44px}.height__45{height:45px}.height__46{height:46px}.height__47{height:47px}.height__48{height:48px}.height__49{height:49px}.height__50{height:50px}.pfzw-v2 .announcement{margin-bottom:40px;margin-top:0;padding:0}.pfzw-v2 .cmp-announcement{background-color:var(--color-munsell-green);display:-webkit-box;display:-ms-flexbox;display:flex;height:90px;position:relative}.pfzw-v2 .cmp-announcement:before{background-color:var(--color-munsell-green);content:"";height:100%;left:-2500px;position:absolute;top:0;width:750%}@media screen and (max-width:925px){.pfzw-v2 .cmp-announcement:before{left:0;width:100%}}.pfzw-v2 .cmp-announcement_list{position:relative;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pfzw-v2 .cmp-announcement_list,.pfzw-v2 .cmp-announcement_list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.pfzw-v2 .cmp-announcement_list-item{font-weight:600;list-style-type:none;padding:0 12px}.pfzw-v2 .cmp-announcement_list-item a,.pfzw-v2 .cmp-announcement_list-item a:hover{color:var(--color-white);display:-webkit-box;display:-ms-flexbox;display:flex;text-decoration:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.pfzw-v2 .cmp-announcement_list-item:nth-child(2){padding:0 100px}.pfzw-v2 .cmp-announcement_list-item-announcement,.pfzw-v2 .cmp-announcement_list-item-coverageratio,.pfzw-v2 .cmp-announcement_list-item-paymentdate{padding-left:42px;position:relative}.pfzw-v2 .cmp-announcement_list-item-announcement:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M23.693 29.333H8.307a3.013 3.013 0 0 1-2.974-2.986V5.653a3.013 3.013 0 0 1 2.974-2.986h15.386a3.013 3.013 0 0 1 2.974 2.986v20.694a3.013 3.013 0 0 1-2.974 2.986M17.92 8.573a1.2 1.2 0 0 0-1.2-1.2H9.533a1.2 1.2 0 0 0 0 2.4h7.187a1.2 1.2 0 0 0 1.2-1.2m5.333 5.334a1.2 1.2 0 0 0-1.2-1.2H9.533a1.2 1.2 0 0 0 0 2.4h12.52a1.2 1.2 0 0 0 1.2-1.2m0 5.333a1.2 1.2 0 0 0-1.2-1.2H9.533a1.2 1.2 0 1 0 0 2.4h12.52a1.2 1.2 0 0 0 1.2-1.2m-5.333 5.333a1.2 1.2 0 0 0-1.2-1.2H9.533a1.2 1.2 0 1 0 0 2.4h7.187a1.2 1.2 0 0 0 1.2-1.2m5.333 0a1.2 1.2 0 0 0-1.2-1.2h-.52a1.2 1.2 0 1 0 0 2.4h.52a1.2 1.2 0 0 0 1.2-1.2' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-announcement_list-item-announcement:before,.pfzw-v2 .cmp-announcement_list-item-coverageratio:before{content:"";height:32px;left:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:32px}.pfzw-v2 .cmp-announcement_list-item-coverageratio:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M7.987 4a2.653 2.653 0 0 1 2.653 2.653v18.56a2.653 2.653 0 1 1-5.307 0V6.653A2.653 2.653 0 0 1 7.987 4m18.626 7.133a2.653 2.653 0 1 0-5.306 0v14.08a2.653 2.653 0 1 0 5.306 0zM18.64 16.16a2.653 2.653 0 1 0-5.307 0v9.053a2.653 2.653 0 1 0 5.307 0z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-announcement_list-item-paymentdate:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M25.333 6.667H24V5.333a1.334 1.334 0 0 0-2.667 0v1.334H10.667V5.333a1.333 1.333 0 0 0-2.667 0v1.334H6.667A2.667 2.667 0 0 0 4 9.333v16A2.667 2.667 0 0 0 6.667 28h18.666A2.667 2.667 0 0 0 28 25.333v-16a2.667 2.667 0 0 0-2.667-2.666m-8.813 8.48a.733.733 0 1 1 0 1.466h-4q-.03.367 0 .734-.03.353 0 .706h4a.732.732 0 1 1 0 1.467h-3.56a4.774 4.774 0 0 0 6.88 1.813.874.874 0 0 1 1.191 1.23.9.9 0 0 1-.244.237 6.67 6.67 0 0 1-3.56 1.04 6.53 6.53 0 0 1-6.147-4.373H9.187a.72.72 0 0 1-.734-.734.733.733 0 0 1 .734-.733h1.573a6 6 0 0 1-.093-.667q.019-.368.08-.733h-1.56a.733.733 0 0 1-.734-.733.72.72 0 0 1 .734-.734h1.906a6.52 6.52 0 0 1 9.72-3.28.88.88 0 0 1-.946 1.48 4.87 4.87 0 0 0-2.667-.786 4.81 4.81 0 0 0-4.253 2.666z'/%3E%3C/svg%3E");content:"";height:32px;left:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:32px}.pfzw-v2 .list .cmp-list__item-link{margin-top:0;padding:0}.pfzw-v2 .list .cmp-list__item-link:before{display:none}.pfzw-v2 .list .cmp-list__item-title{display:block;padding:0 0 12px}@media screen and (max-width:925px){.pfzw-v2 .cmp-announcement{height:auto}.pfzw-v2 .cmp-announcement_list{display:block;padding:32px 0}.pfzw-v2 .cmp-announcement_list-item,.pfzw-v2 .cmp-announcement_list-item:nth-child(2){padding:12px 32px}}.pfzw-v2 .button .cmp-button-v2{background-color:#00aa72;border-radius:4px;color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-weight:600;padding:8px 32px;text-decoration:none;-webkit-transition:all .2s linear;transition:all .2s linear;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:32px}.pfzw-v2 .button .cmp-button-v2:hover{background-color:#007c53}.pfzw-v2 .button .cmp-button-v2 .pfzw-i:before{margin-right:8px;margin-top:3px}.pfzw-v2 .button .cmp-button-v2 span{line-height:24px}.pfzw-v2 .button .cmp-button-v2 .pfzw-i{font-size:24px}.pfzw-v2 .button .cmp-button-v2.hide{display:none}.pfzw-v2 .button.blue .cmp-button{background-color:#4149a8}.pfzw-v2 .button.blue .cmp-button:hover{background-color:#2a2f6b}.pfzw-v2 .button.white .cmp-button{background-color:#fff;color:#00aa72}.pfzw-v2 .button.white .cmp-button:hover{background-color:#fff}.pfzw-v2 .button.red .cmp-button{background-color:#ed6d5c}.pfzw-v2 .button.red .cmp-button:hover{background-color:#ad5043}.pfzw-v2 .button.red .cmp-button .pfzw-i:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M16 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0M4 18c0-2.7 5.3-4 8-4s8 1.3 8 4v1c0 .6-.5 1-1 1H5c-.6 0-1-.4-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");color:transparent}.pfzw-v2 .button.arrow .cmp-button{background-color:transparent;color:#393a3c;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:600;margin-bottom:16px;overflow:hidden;padding-left:32px;position:relative;text-decoration:none;text-overflow:ellipsis;-webkit-transition:all .5s linear;transition:all .5s linear;white-space:break-spaces}.pfzw-v2 .button.arrow .cmp-button:hover{color:#00aa72}.pfzw-v2 .button.arrow .cmp-button:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:24px;left:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:24px}.pfzw-v2 .button.white .cmp-button-v2--external:before,.pfzw-v2 .button.white .cmp-button-v2--pdf:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='%2300AA72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");content:"";display:-webkit-box;display:-ms-flexbox;display:flex;height:24px;margin-right:8px;min-width:24px;width:24px}.pfzw-v2 .button.white .cmp-button-v2--pdf:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='%2300AA72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 1 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")}.pfzw-v2 .button.arrow .cmp-button-v2--external:after,.pfzw-v2 .button.arrow .cmp-button-v2--external:before,.pfzw-v2 .button.arrow .cmp-button-v2--pdf:after,.pfzw-v2 .button.arrow .cmp-button-v2--pdf:before{content:"";display:-webkit-box;display:-ms-flexbox;display:flex;height:24px;margin-left:8px;min-width:24px;position:static;-webkit-transition:opacity .5s linear;transition:opacity .5s linear;width:24px}.pfzw-v2 .button.arrow .cmp-button-v2--external:before,.pfzw-v2 .button.arrow .cmp-button-v2--pdf:before{-webkit-transform:translateX(-24px);transform:translateX(-24px);-webkit-box-ordinal-group:2;-ms-flex-order:1;margin-left:0;opacity:1;order:1}.pfzw-v2 .button.arrow .cmp-button-v2--external:after,.pfzw-v2 .button.arrow .cmp-button-v2--pdf:after{opacity:0;-webkit-transition:opacity .85s linear;transition:opacity .85s linear}.pfzw-v2 .button.arrow .cmp-button-v2--external:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='var(--textColor, %23393A3C)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")}.pfzw-v2 .button.arrow .cmp-button-v2--external:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='%2300AA72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")}.pfzw-v2 .button.arrow .cmp-button-v2--pdf:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='var(--textColor, %23393A3C)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 1 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")}.pfzw-v2 .button.arrow .cmp-button-v2--pdf:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='%2300AA72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(clientlib-all/css/%23a)'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M5 12V5a2 2 0 0 1 2-2h7l5 5v4M5 18h1.5a1.5 1.5 0 1 0 0-3H5v6M17 18h2M20 15h-3v6M11 15v6h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")}.pfzw-v2 .button.arrow .cmp-button-v2:hover.cmp-button-v2--external:after,.pfzw-v2 .button.arrow .cmp-button-v2:hover.cmp-button-v2--pdf:after{opacity:1;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.pfzw-v2 .button.arrow .cmp-button-v2:hover.cmp-button-v2--external:before,.pfzw-v2 .button.arrow .cmp-button-v2:hover.cmp-button-v2--pdf:before{opacity:0}.pfzw-v2 .button.arrow .cmp-button-v2 .cmp-button__arrow{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:24px;left:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:24px}.pfzw-v2 .cmp-button--cta .c-btn{line-height:23px;padding:8px 32px}.pfzw-v2 .section-container-content .cmp-container .buttonlist-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop){-webkit-box-flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop):nth-child(2){padding-left:4px;padding-right:16px}.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop):nth-child(3){padding-left:16px;padding-right:4px}.pfzw-v2 .section-container-content .cmp-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.pfzw-v2 .cmp-button--blue{background-color:transparent}.pfzw-v2 .cmp-button--blue .c-btn{background-color:#4149a8;border-radius:8px;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:600;line-height:1.5;padding:19px 60px;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .2s linear;transition:all .2s linear;width:100%}.pfzw-v2 .cmp-button--blue .c-btn:hover{background-color:#2a2f6b}.pfzw-v2 .cmp-button--blue .cmp-button,.pfzw-v2 .cmp-button--blue-dark .cmp-button{margin:0 4px 8px}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M3.167 16C3.167 8.64 9.14 2.667 16.5 2.667S29.833 8.64 29.833 16 23.86 29.333 16.5 29.333 3.167 23.36 3.167 16m14.666 1.333h4c.734 0 1.334-.6 1.334-1.333s-.6-1.333-1.334-1.333h-4v-4c0-.734-.6-1.334-1.333-1.334s-1.333.6-1.333 1.334v4h-4c-.734 0-1.334.6-1.334 1.333s.6 1.333 1.334 1.333h4v4c0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334z' clip-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:31px;left:16px;margin:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:32px}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-mypension:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-mypension:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M26.853 26.97a2.545 2.545 0 0 1-3.557 2.52 2.55 2.55 0 0 1-1.523-2.52V5.399a2.546 2.546 0 1 1 5.08 0zm-8.626 0a2.548 2.548 0 0 1-4.405 1.92 2.55 2.55 0 0 1-.675-1.92V12.065a2.546 2.546 0 1 1 5.08 0zM9.449 28c.116-.33.163-.68.138-1.03v-8.24a2.547 2.547 0 1 0-5.08 0v8.24A2.546 2.546 0 0 0 9.449 28' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-pension:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-pension:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M23.452 3.204c.998 1.033.295 3.33-1.57 5.13s-4.184 2.423-5.182 1.39c-.997-1.033-.294-3.33 1.57-5.13 1.865-1.801 4.185-2.423 5.182-1.39m3.74 17.101c.973-5.147-2.294-9.333-7.28-9.333a8.75 8.75 0 0 0-3.307.64 8.9 8.9 0 0 0-3.307-.64c-4.987 0-8.267 4.186-7.294 9.333.974 5.147 4.654 9.333 8.227 9.333a4.7 4.7 0 0 0 2.374-.653 4.7 4.7 0 0 0 2.373.653c3.573 0 7.24-4.186 8.213-9.333' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-inpension:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-inpension:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M13.96 24.873c-.21.372-.556.65-.966.773a1.64 1.64 0 0 1-2-1.133c-1.133-6.72-3.08-13.747-7.36-19.08a1.64 1.64 0 0 1 0-2.293 1.627 1.627 0 0 1 2.293 0 33.9 33.9 0 0 1 4.76 8.24.41.41 0 0 0 .414.213h.106l8.814-2.747a.907.907 0 0 1 .8 1.6.37.37 0 0 0-.174.32v.08l.974 4.094.067.146 2.893 5.507a1.493 1.493 0 0 1-1.334 2.213 1.53 1.53 0 0 1-1.333-.8l-2.52-4.72a.4.4 0 0 0-.346-.2h-.08l-5.454 1.227h-.106a.37.37 0 0 0-.294.373v.014c.427 1.706.72 3.226 1.013 4.946.104.415.045.855-.166 1.227m13.23-4.433c.267-.108.565-.105.83.006a1.066 1.066 0 0 1 .6 1.48 13.12 13.12 0 0 1-9.88 7.16c-.967.18-1.949.27-2.933.267a12.13 12.13 0 0 1-9.08-3.68 1.086 1.086 0 0 1 1.614-1.453c2.12 2.36 6.146 3.373 9.973 2.666 3.827-.706 7.08-3.013 8.28-5.866.114-.264.328-.473.596-.58' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-newjob:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-newjob:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M21.313 22.975q.203-.127.36-.307l1.494-1.746v5.44a2.974 2.974 0 0 1-3.067 2.973H6.247a2.974 2.974 0 0 1-3.08-2.973v-20.8a2.986 2.986 0 0 1 3.08-2.894H20.1c1.733 0 3.067 1.974 3.067 3.574v2.16l-7.614 9.333a.8.8 0 0 0-.173.28l-2.667 5.907H8.5a1.334 1.334 0 0 0 0 2.666h5.84q.463-.006.907-.133l.226-.093zM30.73 6.48c.296.451.448.982.437 1.522a2.67 2.67 0 0 1-.427 1.52c-.053.08-.173.213-.173.213l-9.88 12.2-5.854 3.373a.6.6 0 0 1-.306.08.693.693 0 0 1-.694-.693.6.6 0 0 1 0-.267l2.667-5.88L26.553 6.122a2.667 2.667 0 0 1 4.177.358' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-fired:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-fired:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M13.487 14.745a6.3 6.3 0 0 0 1.71 1.833 4 4 0 0 1 1.587 2.453 4 4 0 0 1-1.133 2.667 6.23 6.23 0 0 0-1.694 4.427c.062.778.294 1.534.68 2.213q.057.077.067.173a.414.414 0 0 1-.4.44l-4.6.387a3.01 3.01 0 0 1-3.347-2.667L4.504 6.284A2.96 2.96 0 0 1 7.29 3.178l6.253-.507a.45.45 0 0 1 .307.067 4.4 4.4 0 0 1 1.626 2.6 4.1 4.1 0 0 1-1.12 2.666 6.25 6.25 0 0 0-1.733 4.387c.127.835.421 1.635.863 2.354m7.87-11.98 4.6.386a2.96 2.96 0 0 1 2.787 3.107L26.89 26.67a3.026 3.026 0 0 1-3.4 2.547l-6.266-.534a.5.5 0 0 1-.24-.106 4.44 4.44 0 0 1-1.08-2.773 4.1 4.1 0 0 1 1.587-2.44 6.35 6.35 0 0 0 2.48-4.08 6.22 6.22 0 0 0-1.76-4.547 4 4 0 0 1-1.054-2.667 4.12 4.12 0 0 1 1.613-2.44 6.36 6.36 0 0 0 2.467-4.08 5.3 5.3 0 0 0-.346-2.267.6.6 0 0 1 0-.146.427.427 0 0 1 .466-.374' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-marriage:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-marriage:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M31.143 12.018a8 8 0 0 0-14.666-4.44A7.999 7.999 0 0 0 2.403 15a8 8 0 0 0 1.847 2.765l8.533 8.573a4.853 4.853 0 0 0 7.387 0l8.546-8.64a8 8 0 0 0 2.427-5.68'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-wao:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-wao:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M26.014 12.4h-6.133V6.267a3.6 3.6 0 0 0-7.2 0V12.4H6.548a3.6 3.6 0 0 0 0 7.187h6.133v6.133a3.6 3.6 0 0 0 7.2 0v-6.133h6.133a3.6 3.6 0 0 0 0-7.187' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-dead:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-dead:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M16.007 1.334c.12.001.234.049.32.133 3.666 3.987 3.013 8.613-.32 10.64a.45.45 0 0 1-.392.037.4.4 0 0 1-.142-.09c-3.243-2.99-2.206-5.142-1.032-7.578.428-.89.875-1.816 1.139-2.836a.43.43 0 0 1 .427-.306m2.343 14.172a3.44 3.44 0 0 0-2.423-1.012 3.44 3.44 0 0 0-3.427 3.44v9.333a3.427 3.427 0 1 0 6.853 0v-9.333c0-.91-.36-1.783-1.003-2.428' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-devorce:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-devorce:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M13.167 11.2c-.934 1.6-.934 3.6.133 5.2l1.6 2.533c.8 1.334.933 2.934.267 4.267-.534.933-.667 2.133-.4 3.333v.134c0 .4-.267.666-.667.666 0 0-.133-.133-.267-.133-.266-.133-.933-.8-.933-.8l-8.533-8.667c-1.6-1.466-2.534-3.6-2.534-5.866C1.967 7.467 5.567 4 9.967 4c1.466 0 3.066.4 4.266 1.2.051.05.102.082.146.11.07.043.121.074.121.157V5.6c.4 1.2.4 2.533-.267 3.733zm8-6.933C21.833 4.133 22.5 4 23.3 4c2.133 0 4.133.8 5.733 2.533C32.1 9.733 32.1 14.8 28.9 17.867l-8.533 8.666c-.8.8-1.734 1.467-2.8 1.6h-.134c-.4 0-.666-.266-.666-.533v-.133c-.134-1.334.133-2.8 1.066-3.867.934-1.2 1.2-2.8.667-4.267L17.433 16.4a4.99 4.99 0 0 1 .934-5.067L19.7 9.867a4.64 4.64 0 0 0 .933-4.534v-.4c0-.266.267-.533.534-.666' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-absense:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-absense:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M24.9 9.04a2 2 0 0 1-4 0V4.667a2 2 0 0 1 4 0zM12.127 4.667a2 2 0 1 0-4 0V9.04a2 2 0 0 0 4 0zm19.04 5.866V27a3.64 3.64 0 0 1-3.614 3.653H5.447a3.667 3.667 0 0 1-3.614-3.613V10.573A3.627 3.627 0 0 1 5.447 6.92H6.78v2.133a3.307 3.307 0 1 0 6.6 0V6.907h6.173V9.04a3.293 3.293 0 1 0 6.587 0V6.88h1.334a3.627 3.627 0 0 1 3.693 3.653M16.154 25l7.546-7.2a1.4 1.4 0 0 0 0-1.96 1.333 1.333 0 0 0-1.947 0l-6.573 6.28-3.306-3.467a1.334 1.334 0 0 0-1.947 0 1.4 1.4 0 0 0 0 1.96l4.307 4.294a1.33 1.33 0 0 0 1.906 0z'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-children:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-children:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M22.905 23.92a2.12 2.12 0 0 1-1.427 2.667 2.4 2.4 0 0 1-.6.08 2.13 2.13 0 0 1-2.04-1.52l-.92-2.814a4.7 4.7 0 0 1-1.72.334h-3.867l.32 1.453a2.12 2.12 0 0 1-2.066 2.547H5.13a2.134 2.134 0 0 1 0-4.254h2.667l-.8-3.24a10 10 0 0 1-.147-1.146 4.614 4.614 0 0 1 4.64-4.614h4.707a4.59 4.59 0 0 1 4.44 3.454zm1.946-7.6a4.826 4.826 0 1 1 4.814-4.827 4.815 4.815 0 0 1-4.814 4.827'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-moving:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-moving:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M9.655 29.4a2.787 2.787 0 0 1-2.84-2.667v-8.84a.4.4 0 0 0-.386-.4H4.762a1.534 1.534 0 0 1-1.093-2.667L15.375 3.12a1.547 1.547 0 0 1 2.187 0l11.706 11.747a1.533 1.533 0 0 1-1.093 2.667H26.51a.4.4 0 0 0-.387.4v8.746a2.787 2.787 0 0 1-2.84 2.667zm9.814-9.334-3.427-3.573a1.15 1.15 0 0 0-1.654 0 1.24 1.24 0 0 0 0 1.68l2.667 2.773-2.666 2.773a1.24 1.24 0 0 0 0 1.68 1.16 1.16 0 0 0 1.653 0l3.426-3.573a1.24 1.24 0 0 0 0-1.76'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-less:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-less:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M20.367 18.173H15.42a1.133 1.133 0 0 1-1.133-1.12V8A1.133 1.133 0 0 1 16.5 8v7.88h3.88a1.134 1.134 0 0 1 .794 1.945 1.17 1.17 0 0 1-.807.348M16.5 2.667a13.333 13.333 0 1 0 0 26.666 13.333 13.333 0 0 0 0-26.666'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-taxes:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-taxes:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M24.193 29.333H8.807a3.013 3.013 0 0 1-2.974-2.986V5.653a3.013 3.013 0 0 1 2.974-2.986h15.386a3.013 3.013 0 0 1 2.974 2.986v20.694a3.013 3.013 0 0 1-2.974 2.986m-.44-10.12a1.2 1.2 0 0 0-1.2-1.2h-12.52a1.2 1.2 0 1 0 0 2.4h12.52a1.2 1.2 0 0 0 1.2-1.173zm-5.333 5.334a1.2 1.2 0 0 0-1.2-1.2h-7.187a1.2 1.2 0 0 0 0 2.4h7.187a1.2 1.2 0 0 0 1.2-1.174zm5.333 0a1.2 1.2 0 0 0-1.2-1.2h-.52a1.2 1.2 0 0 0 0 2.4h.52a1.2 1.2 0 0 0 1.2-1.174zm-3.84-15.4h-2.386v-2.4a1.2 1.2 0 1 0-2.4 0v2.4h-2.4a1.2 1.2 0 0 0 0 2.4h2.44v2.386a1.198 1.198 0 0 0 1.659 1.11 1.2 1.2 0 0 0 .74-1.11v-2.386h2.387a1.2 1.2 0 1 0 0-2.4z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-deliverdetails:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-deliverdetails:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M7.87 5.92h9.27l.01.01a1.29 1.29 0 0 1 0 2.58H7.88v2.31a.64.64 0 0 1-1.1.45l-3.59-3.6a.64.64 0 0 1 0-.9l3.59-3.6a.63.63 0 0 1 1.09.45zm8.26 12.16H6.86v-.01a1.29 1.29 0 1 1 0-2.58h9.26v-2.31a.64.64 0 0 1 1.1-.45l3.59 3.6a.64.64 0 0 1 0 .9l-3.59 3.6a.63.63 0 0 1-1.09-.45z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-coverage:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-coverage:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5.99 3a1.99 1.99 0 0 1 1.99 1.99v13.92a1.99 1.99 0 0 1-3.98 0V4.99A1.99 1.99 0 0 1 5.99 3m13.97 5.35a1.99 1.99 0 0 0-3.98 0v10.56a1.99 1.99 0 1 0 3.98 0zm-5.98 3.77a1.99 1.99 0 0 0-3.98 0v6.79a1.99 1.99 0 1 0 3.98 0z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-invoice:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-invoice:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.61 22H5.45A2.45 2.45 0 0 1 3 19.55V4.44A2.45 2.45 0 0 1 5.45 2h12.16a2.45 2.45 0 0 1 2.45 2.45v15.11A2.45 2.45 0 0 1 17.61 22m-3.08-6a3.53 3.53 0 0 1-2 .57 3.59 3.59 0 0 1-3.2-2h2.66a.55.55 0 1 0 0-1.1h-3a3 3 0 0 1-.04-.47 3.3 3.3 0 0 1 .05-.55h3a.55.55 0 1 0 0-1.1H9.37A3.57 3.57 0 0 1 14.53 10a.66.66 0 0 0 .9-.19.65.65 0 0 0-.19-.9 4.8 4.8 0 0 0-2.71-.82 4.9 4.9 0 0 0-4.6 3.25h-1.4a.55.55 0 1 0 0 1.1H7.7a5 5 0 0 0-.05.55q.01.266.05.53H6.53a.55.55 0 1 0 0 1.1h1.42a4.89 4.89 0 0 0 7.26 2.49.651.651 0 0 0-.68-1.11'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-customer:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-customer:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5.36 3h13.28A2.36 2.36 0 0 1 21 5.36v13.28A2.36 2.36 0 0 1 18.64 21H5.36A2.36 2.36 0 0 1 3 18.64V5.36A2.36 2.36 0 0 1 5.36 3m10.169 4.97a1.94 1.94 0 0 1 .014 2.744 1.94 1.94 0 0 1-2.744-.015 1.94 1.94 0 0 1-.014-2.743 1.94 1.94 0 0 1 2.744.014m-4.196 3.452a.73.73 0 0 0-.683-1.012H9.4V9.15a.74.74 0 0 0-1.47 0v1.26H6.68a.73.73 0 1 0 0 1.46h1.25v1.26a.74.74 0 0 0 1.47 0v-1.26h1.25a.73.73 0 0 0 .683-.448M14.17 16.6c-1.62 0-3.89-.06-3.89-2.08 0-1.29 2.59-2 3.89-2s3.87.71 3.89 2c0 2.08-2.27 2.08-3.89 2.08' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-support:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-support:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M22 3.4v11.11a1.38 1.38 0 0 1-2.66.44 2.73 2.73 0 0 0-2-1.77V9.5a2.9 2.9 0 0 0-2.89-2.89H8.16V3.4A1.4 1.4 0 0 1 9.55 2h11.1A1.4 1.4 0 0 1 22 3.4M3.35 8.11h11.1a1.4 1.4 0 0 1 1.42 1.39v8.3a1.39 1.39 0 0 1-1.39 1.39H7.27a2.74 2.74 0 0 0-2.59 1.84A1.38 1.38 0 0 1 2 20.59V9.5a1.4 1.4 0 0 1 1.35-1.39m6.672 3.487a1.09 1.09 0 1 0-1.783-1.254 1.09 1.09 0 0 0 1.783 1.254m-1.653 5.384c.205.204.482.319.771.319v-.03a1.09 1.09 0 0 0 1.08-1.05V14a1.09 1.09 0 0 0-1.08-1.09A1.09 1.09 0 0 0 8.05 14v2.21c0 .29.115.566.32.77' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-services:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-services:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M6.9 6.8h5.39a.9.9 0 0 0 0-1.8H6.9a.9.9 0 0 0 0 1.8m0 4h9.39a.9.9 0 1 0 0-1.8H6.9a.9.9 0 0 0 0 1.8m9.39 4H6.9a.9.9 0 1 1 0-1.8h9.39a.9.9 0 1 1 0 1.8m-9.39 4h7.39a.9.9 0 1 0 0-1.8H6.9a.9.9 0 1 0 0 1.8' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-pensionreturn:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-pensionreturn:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 5h-1V4a1 1 0 0 0-2 0v1H8V4a1 1 0 0 0-2 0v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-6.61 6.36a.55.55 0 1 1 0 1.1h-3a3.3 3.3 0 0 0 0 .55 3 3 0 0 0 0 .53h3a.55.55 0 1 1 0 1.1H9.72A3.58 3.58 0 0 0 14.88 16a.654.654 0 1 1 .71 1.1 5 5 0 0 1-2.67.78 4.9 4.9 0 0 1-4.61-3.28H6.89a.54.54 0 0 1-.55-.55.55.55 0 0 1 .55-.55h1.18A5 5 0 0 1 8 13q.015-.276.06-.55H6.89a.55.55 0 0 1-.55-.55.54.54 0 0 1 .55-.55h1.43a4.89 4.89 0 0 1 7.29-2.46.659.659 0 1 1-.71 1.11 3.65 3.65 0 0 0-2-.59 3.61 3.61 0 0 0-3.19 2z'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-leave:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-leave:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M16 14.85v.79a2.15 2.15 0 0 0 1.52 2.09v2.1A2.22 2.22 0 0 1 15.25 22H3.87a2.21 2.21 0 0 1-2.26-2.22V4.22a2.21 2.21 0 0 1 2.26-2.17h11.36a2.22 2.22 0 0 1 2.27 2.17v2.22a2.16 2.16 0 0 0-1.5 2v.83h-5.2a2.79 2.79 0 0 0 0 5.58zm1.52-1.5h-6.64v.01a1.29 1.29 0 1 1 0-2.58h6.64V8.45A.65.65 0 0 1 18.63 8l3.57 3.59a.64.64 0 0 1 0 .91l-3.59 3.6a.64.64 0 0 1-1.09-.46z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-employer:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-employer:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7a2.5 2.5 0 0 0 0 5M9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3m7.5 3c-1.83 0-5.5.92-5.5 2.75V18c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1.25c0-1.83-3.67-2.75-5.5-2.75M9 13c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h6v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.icon-change:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.icon-change:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m18.948 8.35-2.79 2.79a.5.5 0 0 0 .35.86h1.79a6 6 0 0 1-6 6 5.8 5.8 0 0 1-2.25-.44 1 1 0 0 0-1 .23 1 1 0 0 0 .34 1.64 7.8 7.8 0 0 0 2.91.57 8 8 0 0 0 8-8h1.79a.49.49 0 0 0 .35-.85l-2.79-2.79a.49.49 0 0 0-.7-.01M6.298 12a6 6 0 0 1 8.25-5.56 1 1 0 0 0 1-.23 1 1 0 0 0-.25-1.64 7.8 7.8 0 0 0-3-.57 8 8 0 0 0-8 8h-1.79a.49.49 0 0 0-.35.85l2.79 2.79a.5.5 0 0 0 .71 0l2.79-2.79a.5.5 0 0 0-.36-.85z'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.open,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.open{background-color:#2a2f6b}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn.open:before,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn.open:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M3.167 16C3.167 8.64 9.14 2.667 16.5 2.667S29.833 8.64 29.833 16 23.86 29.333 16.5 29.333 3.167 23.36 3.167 16m6.666 0c0 .733.6 1.333 1.334 1.333h10.666c.734 0 1.334-.6 1.334-1.333s-.6-1.333-1.334-1.333H11.167c-.734 0-1.334.6-1.334 1.333' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-button--blue .cmp-button .c-btn:after,.pfzw-v2 .cmp-button--blue-dark .cmp-button .c-btn:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' fill='none' viewBox='0 0 33 32'%3E%3Cpath fill='%23fff' d='M7.445 17.333h14.893l-6.506 6.507c-.52.52-.52 1.373 0 1.893s1.36.52 1.88 0l8.786-8.786c.52-.52.52-1.36 0-1.88l-8.773-8.8a1.33 1.33 0 0 0-1.88 0c-.52.52-.52 1.36 0 1.88l6.493 6.52H7.445c-.733 0-1.333.6-1.333 1.333s.6 1.333 1.333 1.333'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:32px;margin:0;position:absolute;right:16px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:32px}.pfzw-v2 .buttonlist{margin-bottom:24px;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.pfzw-v2 .buttonlist .buttonlist{margin-bottom:0}.pfzw-v2 .buttonlist pggm-link{display:block;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.pfzw-v2 .buttonlist-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.pfzw-v2 .buttonlist-container .button{width:33.3333%}.pfzw-v2 .buttonlist-container .cmp-button--blue:first-child .c-btn{background-color:var(--color-coral-reef)}.pfzw-v2 .buttonlist-container .cmp-button--blue:first-child:hover .c-btn{background-color:#ad5043}.pfzw-v2 .buttonlist-container.show .hide{display:block}.pfzw-v2 .buttonlist h2{color:#fff;margin-bottom:24px;text-shadow:0 0 10px rgba(0,0,0,.6)}.pfzw-v2 .buttonlist.grey-backdrop.background-white{background-color:hsla(0,0%,100%,.95)}.pfzw-v2 .buttonlist.grey-backdrop{border-radius:var(--pggm-border-radius-md);padding:32px 24px 16px}.pfzw-v2 .buttonlist.grey-backdrop h2{color:var(--color-black);margin-bottom:18px;text-shadow:none}.pfzw-v2 .buttonlist.grey-backdrop .more-btn{display:none}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container.list{row-gap:var(--pggm-link-standalone-margin-block-end,var(--pggm-space-block-sm,1.2rem))}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .cmp-button{margin-bottom:16px;margin-left:0}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .button{width:100%}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .cmp-button--blue .c-btn{background-color:transparent;color:#393a3c;font-size:16px;font-weight:600;line-height:24px;padding:0 0 0 24px;position:relative}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .cmp-button--blue .c-btn:hover{color:#00aa72}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .cmp-button--blue .c-btn:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");height:24px;left:0;width:24px}.pfzw-v2 .buttonlist.grey-backdrop .buttonlist-container .cmp-button--blue .c-btn:after{display:none}@media screen and (max-width:768px){.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop){-webkit-box-flex:unset;-ms-flex:unset;flex:unset;margin:0;width:100%}.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop):nth-child(2),.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop):nth-child(3){padding:0 4px}.pfzw-v2 .section-container-content .cmp-container .buttonlist:has(.grey-backdrop):nth-child(2){margin-bottom:32px}.pfzw-v2 .buttonlist-container .button{width:100%}}.pfzw-v2 .cmp-breadcrumb{margin-left:-142px;margin-top:-17px;padding-top:10px;position:relative;z-index:1}.pfzw-v2 .cmp-breadcrumb.hidden-back{display:none;margin-left:0}.pfzw-v2 .cmp-breadcrumb__button{width:50px}.pfzw-v2 .cmp-breadcrumb__return-button{color:var(--color-manatee-darker);cursor:pointer;float:left;margin-right:17px;text-decoration:none;width:135px}.pfzw-v2 .cmp-breadcrumb__return-button.invisible{visibility:hidden}.pfzw-v2 .cmp-breadcrumb__return-button .cmp-breadcrumb__button{float:left;margin-right:12px;width:40px}.pfzw-v2 .cmp-breadcrumb__return-button .cmp-breadcrumb__button .c-btn-small{background-color:#4149a8;background-position:50%;background-repeat:no-repeat;border-radius:4px;display:block;height:40px;margin:-9px auto 0;padding-top:5px;position:relative;width:40px}.pfzw-v2 .cmp-breadcrumb__return-button .cmp-breadcrumb__button .c-btn-small:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18.791 11.005H7.621l4.88-4.88c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0l-6.59 6.59a.996.996 0 0 0 0 1.41l6.59 6.59a.996.996 0 1 0 1.41-1.41l-4.88-4.88h11.17c.55 0 1-.45 1-1s-.45-1-1-1'/%3E%3C/svg%3E");background-repeat:no-repeat;content:"";height:24px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:24px}.pfzw-v2.fullwidth-page .cmp-breadcrumb__return-button.invisible{width:20px}.pfzw-v2.detail-page .cmp-breadcrumb,.pfzw-v2.fullwidth-page .cmp-breadcrumb,.pfzw-v2.xl-page .cmp-breadcrumb{margin-top:32px}@media(max-width:61.99em){.pfzw-v2 .cmp-breadcrumb{margin-left:0}}body.pfzw-v2 .root.responsivegrid .container:not(.aem-GridColumn){width:100%}body.pfzw-v2 .root.responsivegrid .container.white{background-color:#fff;border-radius:var(--pggm-border-radius-md,.8rem);margin-bottom:var(--spacing-40,4rem);padding:var(--pggm-space-block-xl,3.2rem) var(--pggm-space-block-lg,2.4rem)}body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>.aem-GridColumn:not(.container.white-with-border){padding:0}body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:first-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:first-child>:first-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:first-child>:first-child>:first-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:first-child>:first-child>:first-child>:first-child{margin-top:0}body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:last-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:last-child>:last-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:last-child>:last-child>:last-child,body.pfzw-v2 .root.responsivegrid .container.white .aem-Grid>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}body.pfzw-v2 .root.responsivegrid .container.white-with-border{background-color:#fff;border:1px solid var(--pggm-color-gray-200,#d3d5d6);border-radius:var(--pggm-border-radius-md,.8rem);margin-bottom:calc(var(--pggm-space-block-md, 1.6rem)*2.5);padding:var(--pggm-space-block-xl,3.2rem) var(--pggm-space-block-lg,2.4rem)}body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>.aem-GridColumn:not(.container.white-with-border){padding:0}body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:first-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:first-child>:first-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:first-child>:first-child>:first-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:first-child>:first-child>:first-child>:first-child{margin-top:0}body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:last-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:last-child>:last-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:last-child>:last-child>:last-child,body.pfzw-v2 .root.responsivegrid .container.white-with-border .aem-Grid>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}.container.target .responsivegrid{min-height:auto}#cc--main{display:none;font-family:Open Sans}#c-ttl{font-size:16px}.show--consent .cc_div .box{font-family:Open Sans;visibility:visible!important}.show--consent #cc--main{display:block;z-index:99999}#s-cnt{display:none}.cc_div{bottom:0;left:0;max-height:100%;overflow:scroll;padding:32px 32px 0;position:fixed;width:100%;z-index:10}.cc_div .box{background:var(--color-white);border-top-left-radius:20px;border-top-right-radius:20px;-webkit-box-shadow:0 0 30px var(--color-black) 3;box-shadow:0 0 30px var(--color-black) 3;margin:0 auto;max-width:1300px;padding:32px}.cc_div .box:after,.cc_div .box:before{bottom:2px;content:"";height:30px;left:50%;position:absolute;width:30px}.cc_div .c-bn{border:0;border-radius:5px;-webkit-box-shadow:0 1px 1px var(--color-black) 3d;box-shadow:0 1px 1px var(--color-black) 3d;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;display:block;font-family:inherit;font-size:15px;font-weight:inherit;font-weight:700;height:46px;line-height:20px;margin-top:15px;outline:0;padding:8px 32px;position:relative;text-decoration:none;width:250px}#c-bns{padding:0 32px}#c-p-bn{background:var(--color-munsell-green)}#c-p-bn,#c-p-bn:hover{color:var(--color-white)}#c-p-bn:hover{background:var(--color-munsell-green-darker)}#c-s-bn{background-color:var(--color-white);border:2px solid var(--color-manatee-darkest);color:var(--color-manatee-darkest)}#c-s-bn:hover{background:var(--color-coral-reef);color:var(--color-white)}#c-txt a{color:var(--color-munsell-green);text-decoration:none}#c-txt a:hover{color:var(--color-munsell-green-darker)}@media(min-width:768px){#c-inr{display:-webkit-box;display:-ms-flexbox;display:flex}#c-bns{padding:0 32px}}.pfzw-v2 .experiencefragment .cmp-experiencefragment{margin:0 auto;max-width:1352px}.pfzw-v2 .header-image{height:365px;overflow:hidden;padding:0;position:relative}.pfzw-v2 .header-image:before{background:#f6f6f6;border-radius:0 57px 0 0;bottom:0;content:"";height:57px;left:0;position:absolute;width:100%;z-index:1}.pfzw-v2 .header-image img{height:365px;-o-object-fit:cover;object-fit:cover}.pfzw-v2 .content-image{margin-bottom:58px}.pfzw-v2 .content-image img{border-radius:var(--pggm-border-radius-md)}.pfzw-v2 .list.border .cmp-teaser{border:1px solid var(--pggm-color-gray-200,#d3d5d6)}.pfzw-v2 .list.white .list-v2__item{background:#fff;border-radius:var(--pggm-border-radius-md);padding:32px 0 24px 16px}.pfzw-v2 .list.white .list-v2__item .cmp-list{margin-bottom:0}.pfzw-v2 .list.items-blue .cmp-teaser{background-color:#4149a8;color:#fff}.pfzw-v2 .list.items-blue .cmp-teaser .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .list.items-blue .cmp-teaser .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .list.items-blue .cmp-teaser .cmp-teaser__text,.pfzw-v2 .list.items-blue .cmp-teaser .cmp-teaser__title{color:#fff}.pfzw-v2 .list.items-blue .cmp-teaser .cmp-teaser__image:before{background-color:#4149a8}.pfzw-v2 .list.items-green .cmp-teaser{background-color:#00aa72;color:#fff}.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser__text,.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser__title{color:#fff}.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser-link:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E")}.pfzw-v2 .list.items-green .cmp-teaser .cmp-teaser__image:before{background-color:#00aa72}.pfzw-v2 .list.full-height .cmp-teaser{height:100%;max-height:calc(100% - 32px)}.pfzw-v2 .list.full-height .cmp-teaser.full-teaser .cmp-teaser__content{height:calc(100% - 234px)}.pfzw-v2 .list.full-height .cmp-teaser__content{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pfzw-v2 .list.full-height .cmp-teaser__text{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.pfzw-v2 .list.green-arrow .cmp-list__item-link{padding-left:32px;position:relative}.pfzw-v2 .list.green-arrow .cmp-list__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:24px;left:0;position:absolute;top:3px;width:24px}.pfzw-v2 .cmp-list__title{color:#393a3c;margin-bottom:16px}.pfzw-v2 a.cmp-list__title{text-decoration:none}.pfzw-v2 .cmp-list__item.cmp-list__item--active .cmp-list__item-link,.pfzw-v2 .cmp-list__item:hover .cmp-list__item-link,.pfzw-v2 a.cmp-list__title:hover{color:#00aa72}.pfzw-v2 .list-v2__teaser .cmp-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.pfzw-v2 .list-v2__teaser .cmp-list__item{width:50%}.pfzw-v2 .list-v2__teaser .cmp-list__item-link{color:#393a3c;-webkit-transition:all .5s linear;transition:all .5s linear}@media screen and (max-width:768px){.pfzw-v2 .list-v2__teaser .cmp-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap}.pfzw-v2 .list-v2__teaser .cmp-list__item{padding-bottom:8px;padding-top:8px;width:100%}.pfzw-v2 .list-v2__teaser .cmp-list__item:nth-child(odd){padding-right:0}.pfzw-v2 .list-v2__teaser .cmp-list__item:nth-child(2n){padding-left:0}}.pfzw-v2 .navigation-v2{background:#fff;border-radius:var(--pggm-border-radius-md);padding:32px 0 24px 16px}.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-0>.cmp-navigation__item-link,.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link,.pfzw-v2 .navigation-v2 .cmp-navigation__item-link{color:#393a3c;font-weight:400;padding:0 0 12px;-webkit-transition:all .2s linear;transition:all .2s linear}.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-0.cmp-navigation__item--active>.cmp-navigation__item-link,.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-0>.cmp-navigation__item-link:hover,.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link,.pfzw-v2 .navigation-v2 .cmp-navigation__item--level-1.cmp-navigation__item--active>.cmp-navigation__item-link:hover,.pfzw-v2 .navigation-v2 .cmp-navigation__item-link:hover{color:#00aa72}@media screen and (max-width:991px){.pfzw-v2 .navigation-v2{display:none}}.pfzw-v2.scrolly .cmp-header{margin-top:-49px}.pfzw-v2 .pageheader{height:124px}.pfzw-v2 .cmp-header{background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;left:0;position:fixed;right:0;top:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-shadow:0 0 12px 4px rgba(57,58,60,.2);box-shadow:0 0 12px 4px rgba(57,58,60,.2);-ms-flex-flow:column;flex-flow:column;margin:0 auto;-webkit-transition:all .3s ease-in;transition:all .3s ease-in;width:100%;z-index:15}.pfzw-v2 .cmp-header__top{background:#f1f1f1}.pfzw-v2 .cmp-header .header__switch{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin:0 auto;max-width:1400px}.pfzw-v2 .cmp-header .header__switch span{color:#393a3c;margin-right:16px}.pfzw-v2 .cmp-header .header__switch ul{display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;padding:0}.pfzw-v2 .cmp-header .header-btn{background-color:transparent;border-radius:0 0 8px 8px;color:#646668;font-size:16px;font-weight:600;line-height:24px;margin-bottom:16px;padding:3px 18px 5px;text-decoration:none}.pfzw-v2 .cmp-header .header-btn.active{background-color:#4149a8;color:#fff}.pfzw-v2 .cmp-header nav .header-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.pfzw-v2 .cmp-header .cmp-header__main{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 auto;max-width:1440px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:12px;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Laag_1' data-name='Laag 1' viewBox='0 0 150 48'%3E%3Cdefs%3E%3Cstyle%3E.cls-3{fill:%23fff}%3C/style%3E%3C/defs%3E%3Ctitle%3Elogo-small-medium-large%3C/title%3E%3Crect width='141.87' height='33.59' x='8.02' y='14.41' rx='5.7' style='fill:%2312aa74'/%3E%3Crect width='94.66' height='21.47' rx='5.7' style='fill:%23434b99'/%3E%3Cpath d='M13.7 9.12a2.44 2.44 0 0 1-.8 2 3.47 3.47 0 0 1-2.28.68h-.73v2.83H8.21V6.64h2.54a3.37 3.37 0 0 1 2.2.62 2.26 2.26 0 0 1 .75 1.86m-3.81 1.26h.56a1.8 1.8 0 0 0 1.16-.31 1.06 1.06 0 0 0 .39-.89 1.1 1.1 0 0 0-.33-.88 1.5 1.5 0 0 0-1-.28h-.78ZM17.31 14.7a3.14 3.14 0 0 1-2.31-.82 3.06 3.06 0 0 1-.83-2.29A3.35 3.35 0 0 1 15 9.23a2.71 2.71 0 0 1 2.11-.84 2.7 2.7 0 0 1 2 .74 2.8 2.8 0 0 1 .71 2V12h-3.95a1.6 1.6 0 0 0 .42 1.1 1.46 1.46 0 0 0 1.1.4 5 5 0 0 0 1-.11 5 5 0 0 0 1-.37v1.29a4 4 0 0 1-.93.32 6 6 0 0 1-1.15.07m-.23-5.13a1 1 0 0 0-.83.34 1.54 1.54 0 0 0-.34.95h2.33a1.43 1.43 0 0 0-.32-.95 1.08 1.08 0 0 0-.84-.34M26.58 14.59h-1.66V11a1.7 1.7 0 0 0-.24-1 .83.83 0 0 0-.74-.33 1.12 1.12 0 0 0-1 .46 3 3 0 0 0-.31 1.55v2.86H21V8.51h1.27l.22.77h.1a1.75 1.75 0 0 1 .76-.66 2.6 2.6 0 0 1 1.11-.23A2.12 2.12 0 0 1 26 9a2.3 2.3 0 0 1 .55 1.65ZM32.51 12.78a1.7 1.7 0 0 1-.65 1.43 3.24 3.24 0 0 1-1.94.49 6 6 0 0 1-1.13-.09 4 4 0 0 1-.88-.27V13a6 6 0 0 0 1 .37 4.7 4.7 0 0 0 1 .14c.6 0 .9-.17.9-.52a.44.44 0 0 0-.12-.32 1.9 1.9 0 0 0-.41-.28c-.19-.1-.46-.22-.78-.36a4.5 4.5 0 0 1-1-.54 1.6 1.6 0 0 1-.48-.57 1.9 1.9 0 0 1-.15-.8 1.43 1.43 0 0 1 .63-1.25 3 3 0 0 1 1.78-.45 5.1 5.1 0 0 1 2.14.48l-.5 1.2a9 9 0 0 0-.86-.32 2.5 2.5 0 0 0-.81-.13c-.49 0-.73.13-.73.4a.45.45 0 0 0 .23.38 7 7 0 0 0 1 .49 4.6 4.6 0 0 1 1 .54 1.54 1.54 0 0 1 .49.57 1.7 1.7 0 0 1 .27.75M33.39 6.94q0-.81.9-.81c.61 0 .91.27.91.81a.8.8 0 0 1-.23.6 1 1 0 0 1-.68.21q-.9 0-.9-.81m1.73 7.65h-1.66V8.51h1.66ZM42.21 11.54a3.23 3.23 0 0 1-.79 2.32 2.82 2.82 0 0 1-2.18.84 3 3 0 0 1-1.54-.39 2.5 2.5 0 0 1-1-1.1 3.7 3.7 0 0 1-.36-1.67 3.24 3.24 0 0 1 .78-2.32 2.87 2.87 0 0 1 2.19-.83 3.1 3.1 0 0 1 1.54.38 2.55 2.55 0 0 1 1 1.1 3.64 3.64 0 0 1 .36 1.67m-4.21 0a2.5 2.5 0 0 0 .3 1.36 1.06 1.06 0 0 0 1 .46 1 1 0 0 0 .95-.46 2.6 2.6 0 0 0 .29-1.36 2.57 2.57 0 0 0-.29-1.36 1.07 1.07 0 0 0-1-.45 1 1 0 0 0-1 .45 2.47 2.47 0 0 0-.25 1.36M46.32 14.7a3.15 3.15 0 0 1-2.3-.82 3.06 3.06 0 0 1-.83-2.29A3.35 3.35 0 0 1 44 9.23a3.08 3.08 0 0 1 4.12-.1 2.76 2.76 0 0 1 .71 2V12h-3.96a1.6 1.6 0 0 0 .42 1.1 1.46 1.46 0 0 0 1.1.4 5 5 0 0 0 1-.11 5 5 0 0 0 1-.37v1.29a4 4 0 0 1-.93.32 6 6 0 0 1-1.14.07m-.24-5.13a1 1 0 0 0-.83.34 1.6 1.6 0 0 0-.34.95h2.33a1.38 1.38 0 0 0-.32-.95 1.08 1.08 0 0 0-.84-.34M55.58 14.59h-1.66V11a1.7 1.7 0 0 0-.24-1 .83.83 0 0 0-.74-.33 1.13 1.13 0 0 0-1 .46 3 3 0 0 0-.31 1.55v2.86H50V8.51h1.26l.23.77h.09a1.75 1.75 0 0 1 .76-.66 2.6 2.6 0 0 1 1.11-.23A2.12 2.12 0 0 1 55 9a2.3 2.3 0 0 1 .55 1.65ZM60.47 9.75H59v4.84h-1.63V9.75h-.91V9l.91-.44v-.5a2 2 0 0 1 .51-1.52 2.35 2.35 0 0 1 1.64-.47 4.3 4.3 0 0 1 1.53.25l-.43 1.22a2.9 2.9 0 0 0-.92-.16.58.58 0 0 0-.51.21.85.85 0 0 0-.16.54v.38h1.44ZM66.76 11.54a3.27 3.27 0 0 1-.76 2.32 2.83 2.83 0 0 1-2.18.84 3 3 0 0 1-1.54-.39 2.5 2.5 0 0 1-1-1.1 3.7 3.7 0 0 1-.36-1.67 3.24 3.24 0 0 1 .78-2.32 2.85 2.85 0 0 1 2.18-.83 3.1 3.1 0 0 1 1.55.38 2.6 2.6 0 0 1 1 1.1 3.64 3.64 0 0 1 .33 1.67m-4.2 0a2.5 2.5 0 0 0 .3 1.36 1.05 1.05 0 0 0 1 .46 1 1 0 0 0 1-.46 2.6 2.6 0 0 0 .29-1.36 2.47 2.47 0 0 0-.3-1.36 1.24 1.24 0 0 0-1.91 0 2.47 2.47 0 0 0-.38 1.36M73.73 14.59h-1.66V11a1.7 1.7 0 0 0-.23-1 .85.85 0 0 0-.74-.33 1.12 1.12 0 0 0-1 .46 2.9 2.9 0 0 0-.31 1.55v2.86h-1.67V8.51h1.27l.22.77h.09a1.77 1.77 0 0 1 .77-.66 2.6 2.6 0 0 1 1.1-.23 2.1 2.1 0 0 1 1.61.61 2.27 2.27 0 0 1 .55 1.65ZM77.19 14.7a2 2 0 0 1-1.69-.84 3.86 3.86 0 0 1-.61-2.3 3.84 3.84 0 0 1 .62-2.33 2 2 0 0 1 1.72-.84 2 2 0 0 1 1.77.89 6 6 0 0 1-.13-1.21V6.13h1.66v8.46H79.3l-.3-.79h-.07a1.9 1.9 0 0 1-1.74.9m.58-1.33a1.12 1.12 0 0 0 .93-.37 2 2 0 0 0 .3-1.25v-.18a2.5 2.5 0 0 0-.3-1.4 1.11 1.11 0 0 0-1-.43 1 1 0 0 0-.86.47 2.5 2.5 0 0 0-.31 1.37 2.45 2.45 0 0 0 .31 1.35 1 1 0 0 0 .93.44M86.37 12.78a1.68 1.68 0 0 1-.65 1.43 3.24 3.24 0 0 1-1.94.49 6 6 0 0 1-1.13-.09 4 4 0 0 1-.88-.27V13a6 6 0 0 0 1 .37 4.7 4.7 0 0 0 1 .14c.6 0 .91-.17.91-.52a.44.44 0 0 0-.12-.32 2 2 0 0 0-.42-.28q-.28-.15-.78-.36a4.5 4.5 0 0 1-1-.54 1.6 1.6 0 0 1-.48-.57 1.9 1.9 0 0 1-.15-.8 1.43 1.43 0 0 1 .63-1.25 3 3 0 0 1 1.78-.45 5.1 5.1 0 0 1 2.14.48l-.5 1.2a9 9 0 0 0-.78-.35 2.5 2.5 0 0 0-.81-.13c-.49 0-.73.13-.73.4a.45.45 0 0 0 .23.38 7 7 0 0 0 1 .49 4.4 4.4 0 0 1 1 .54 1.46 1.46 0 0 1 .49.57 1.7 1.7 0 0 1 .19.78M26.29 38.5h-9.56v-2L22 28.91h-5.15v-2.68h9.3v2l-5.31 7.55h5.45ZM36.66 33.73a5.1 5.1 0 0 1-1.25 3.64 4.66 4.66 0 0 1-3.52 1.3 4.57 4.57 0 0 1-3.45-1.33 5 5 0 0 1-1.28-3.61 5 5 0 0 1 1.26-3.62 4.7 4.7 0 0 1 3.52-1.29 5 5 0 0 1 2.48.6 4.1 4.1 0 0 1 1.66 1.71 5.5 5.5 0 0 1 .58 2.6m-6.16 0a4.15 4.15 0 0 0 .33 1.86 1.12 1.12 0 0 0 1.09.65 1.11 1.11 0 0 0 1.08-.65 4.3 4.3 0 0 0 .32-1.86 4.16 4.16 0 0 0-.32-1.84 1.26 1.26 0 0 0-2.17 0 4 4 0 0 0-.33 1.84M44 28.82a4.3 4.3 0 0 1 .82.07H45L44.71 32a4.7 4.7 0 0 0-1.12-.1 2.1 2.1 0 0 0-1.56.49 1.9 1.9 0 0 0-.49 1.42v4.69h-3.28V29h2.44l.51 1.52h.16a3.36 3.36 0 0 1 1.15-1.22 2.74 2.74 0 0 1 1.48-.48M55 29v1.59l-1.3.48a2.27 2.27 0 0 1 .3 1.12 2.87 2.87 0 0 1-1.07 2.38 5.13 5.13 0 0 1-3.22.85 3.7 3.7 0 0 1-.84-.07.9.9 0 0 0-.12.42c0 .16.13.28.39.37a3.3 3.3 0 0 0 1 .13h1.57c2.14 0 3.2.9 3.2 2.69a3.06 3.06 0 0 1-1.48 2.71 7.6 7.6 0 0 1-4.16 1 6 6 0 0 1-3.09-.67 2.15 2.15 0 0 1-1.09-2c0-1.13.7-1.87 2.11-2.2a1.94 1.94 0 0 1-.76-.59 1.37 1.37 0 0 1-.32-.82 1.33 1.33 0 0 1 .24-.78 3.4 3.4 0 0 1 1-.81 2.52 2.52 0 0 1-1.16-1 3.1 3.1 0 0 1-.43-1.69 2.91 2.91 0 0 1 1.06-2.41 4.68 4.68 0 0 1 3-.86c.18 0 .47 0 .9.06s.74.08.94.11Zm-7.17 10.7a.73.73 0 0 0 .43.65 2.4 2.4 0 0 0 1.17.25 5 5 0 0 0 1.91-.3c.48-.2.72-.46.72-.77a.55.55 0 0 0-.44-.53 3.7 3.7 0 0 0-1.25-.16h-1.25a1.54 1.54 0 0 0-.9.25.72.72 0 0 0-.36.6Zm1-7.59q0 1.47 1 1.47a.82.82 0 0 0 .72-.37 1.87 1.87 0 0 0 .26-1.08c0-1-.33-1.48-1-1.48s-.92.48-.92 1.45ZM69.33 38.5l-.83-.85a7.4 7.4 0 0 1-1.24.66 5.6 5.6 0 0 1-1.09.27 9 9 0 0 1-1.37.09 5.8 5.8 0 0 1-2.35-.45A3.54 3.54 0 0 1 60.89 37a3.3 3.3 0 0 1-.54-1.86 3.65 3.65 0 0 1 2.28-3.36 5.1 5.1 0 0 1-.81-1.25 3.7 3.7 0 0 1-.29-1.53 2.53 2.53 0 0 1 1-2.13 4.57 4.57 0 0 1 2.85-.79 4.36 4.36 0 0 1 2.76.78 2.6 2.6 0 0 1 1 2.14 3 3 0 0 1-.54 1.73 5.3 5.3 0 0 1-1.6 1.48l1.67 1.58a6.1 6.1 0 0 0 .87-2.18h3.36a10.6 10.6 0 0 1-.79 2.32 9.6 9.6 0 0 1-1.22 2l2.68 2.57Zm-5.6-3.64a1.1 1.1 0 0 0 .38.86 1.43 1.43 0 0 0 1 .34 2.4 2.4 0 0 0 .84-.13 2 2 0 0 0 .56-.28l-2.09-2.12a1.59 1.59 0 0 0-.69 1.33M66.21 29a.69.69 0 0 0-.21-.6 1 1 0 0 0-.6-.18 1 1 0 0 0-.62.21.82.82 0 0 0-.26.67 1.86 1.86 0 0 0 .74 1.3 2.1 2.1 0 0 0 .73-.64 1.35 1.35 0 0 0 .22-.76M92.31 38.5h-3.92l-1.18-5.35c0-.22-.14-.66-.26-1.33s-.21-1.22-.26-1.67c0 .36-.12.81-.22 1.35s-.2 1-.3 1.49-.51 2.29-1.17 5.51h-4l-3-12.27h3.2l1.33 6.15c.3 1.36.51 2.45.62 3.25.08-.57.21-1.34.39-2.32s.37-1.8.53-2.44l1.08-4.64h3.07l1.05 4.64c.18.75.36 1.6.55 2.58s.31 1.7.37 2.18c.07-.62.27-1.7.59-3.23l1.36-6.17h3.2ZM100.55 38.67a5.13 5.13 0 0 1-3.69-1.26 4.8 4.8 0 0 1-1.31-3.6 5.2 5.2 0 0 1 1.22-3.7 4.54 4.54 0 0 1 3.47-1.29 4.63 4.63 0 0 1 3.32 1.12 4.24 4.24 0 0 1 1.18 3.23v1.46h-5.87a1.6 1.6 0 0 0 .58 1.25 2.26 2.26 0 0 0 1.5.46 7 7 0 0 0 1.59-.17 7.5 7.5 0 0 0 1.57-.56V38a5.5 5.5 0 0 1-1.59.55 11 11 0 0 1-1.97.12m-.19-7.61a1.37 1.37 0 0 0-1 .36 1.75 1.75 0 0 0-.46 1.15h2.82a1.62 1.62 0 0 0-.39-1.1 1.25 1.25 0 0 0-.97-.41M109.76 38.5h-3.28V25.44h3.28ZM119.08 38.5h-7.88v-1.87l3.94-5.13h-3.71V29h7.47v2l-3.77 5h4ZM120.46 26.62a1.37 1.37 0 0 1 .42-1.1 2 2 0 0 1 1.32-.36 2 2 0 0 1 1.34.37 1.38 1.38 0 0 1 .42 1.09c0 1-.59 1.45-1.76 1.45s-1.74-.49-1.74-1.45m3.37 11.88h-3.28V29h3.28ZM125.77 42.63a8 8 0 0 1-.93-.06 5 5 0 0 1-.83-.15v-2.56a3.7 3.7 0 0 0 1 .15c.67 0 1-.47 1-1.42V29h3.28v10.28a3.3 3.3 0 0 1-.91 2.46 3.6 3.6 0 0 1-2.61.89m.16-16a1.37 1.37 0 0 1 .41-1.1 2 2 0 0 1 1.33-.36 2 2 0 0 1 1.33.37 1.38 1.38 0 0 1 .42 1.09c0 1-.58 1.45-1.75 1.45s-1.74-.5-1.74-1.46ZM137.64 38.5v-5.19a3 3 0 0 0-.27-1.43.93.93 0 0 0-.88-.48 1.28 1.28 0 0 0-1.2.66 5.14 5.14 0 0 0-.37 2.28v4.16h-3.28V29h2.48l.41 1.18h.19a2.6 2.6 0 0 1 1.16-1 4 4 0 0 1 1.71-.34 3.27 3.27 0 0 1 2.46.92 3.6 3.6 0 0 1 .88 2.57v6.17Z' class='cls-3'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;height:52px;width:162px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation{max-width:910px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group-list{list-style-type:none}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0{padding-left:35px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0:hover .cmp-navigation__item-link{color:#00aa72}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children:hover .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%2300AA72' d='M13.62.353A1.3 1.3 0 0 0 12.729 0a1.3 1.3 0 0 0-.891.353L6.935 5.062 1.98.352A1.304 1.304 0 0 0 .354.51 1.18 1.18 0 0 0 .25 2.077l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397A1.17 1.17 0 0 0 13.62.353'/%3E%3C/svg%3E");height:8px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children.open .cmp-navigation__item-link{color:#00aa72}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children.open .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%2300AA72' d='M13.62.353A1.3 1.3 0 0 0 12.729 0a1.3 1.3 0 0 0-.891.353L6.935 5.062 1.98.352A1.304 1.304 0 0 0 .354.51 1.18 1.18 0 0 0 .25 2.077l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397A1.17 1.17 0 0 0 13.62.353'/%3E%3C/svg%3E");height:8px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children.open .cmp-navigation__group{display:block}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children .cmp-navigation__item-link{padding-right:26px;position:relative}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.has-children .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23646668' d='M18.62 8.353A1.3 1.3 0 0 0 17.729 8a1.3 1.3 0 0 0-.891.353l-4.903 4.709-4.954-4.71a1.304 1.304 0 0 0-1.627.158 1.18 1.18 0 0 0-.105 1.567l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397a1.17 1.17 0 0 0-.286-1.327'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;content:"";height:24px;position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:24px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.cmp-navigation__item--active .cmp-navigation__item-link{color:#00aa72}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0.cmp-navigation__item--active .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%2300AA72' d='M13.62.353A1.3 1.3 0 0 0 12.729 0a1.3 1.3 0 0 0-.891.353L6.935 5.062 1.98.352A1.304 1.304 0 0 0 .354.51 1.18 1.18 0 0 0 .25 2.077l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397A1.17 1.17 0 0 0 13.62.353'/%3E%3C/svg%3E");height:8px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__item-link{color:#646668;font-size:16px;font-weight:600;line-height:24px;max-width:220px;overflow:hidden;padding:8px 16px;text-overflow:ellipsis;white-space:nowrap}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group{background-color:#fff;border-radius:16px;-webkit-box-shadow:0 0 24px 0 rgba(57,58,60,.2);box-shadow:0 0 24px 0 rgba(57,58,60,.2);display:none;height:336px;left:0;overflow:hidden;padding:28px 40px;position:absolute;top:52px;width:100%;width:1090px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:288px;-ms-flex-line-pack:start;align-content:flex-start}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1:hover .cmp-navigation__group{display:block}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link{color:#393a3c;max-width:unset;padding-left:0;padding-right:56px;position:relative;width:341px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link:hover{color:#00aa72}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group-list .cmp-navigation__item--level-2:nth-child(n+15),.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link:after{display:none}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group-list .cmp-navigation__item--level-2 .cmp-navigation__item-link{color:#393a3c}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group-list .cmp-navigation__item--level-2 .cmp-navigation__item-link:hover{color:#00aa72}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group-list .cmp-navigation__item--level-2 .cmp-navigation__group,.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group-list .cmp-navigation__item--level-2 .cmp-navigation__item-link:after{display:none}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1.has-children .cmp-navigation__item-link:hover:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none' viewBox='0 0 8 14'%3E%3Cpath fill='%2300AA72' d='M.353.38A1.3 1.3 0 0 0 0 1.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801A1.3 1.3 0 0 0 8 7.059a1.3 1.3 0 0 0-.353-.89L2.077.367A1.2 1.2 0 0 0 1.68.094 1.17 1.17 0 0 0 .353.38'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1.has-children .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none' viewBox='0 0 8 14'%3E%3Cpath fill='%23646668' d='M.353.38A1.3 1.3 0 0 0 0 1.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801A1.3 1.3 0 0 0 8 7.059a1.3 1.3 0 0 0-.353-.89L2.077.367A1.2 1.2 0 0 0 1.68.094 1.17 1.17 0 0 0 .353.38'/%3E%3C/svg%3E");background-size:contain;content:"";display:block;height:14px;position:absolute;right:34px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:8px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation .cmp-navigation__group .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group{background-color:#f1f1f1;border-radius:0 16px 16px 0;-webkit-box-shadow:none;box-shadow:none;display:none;height:100%;left:381px;top:0;width:calc(100% - 381px);z-index:2}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons{background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px;margin-left:auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:1}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons .header__search{min-width:40px}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons .header__menu-toggle-button{display:none}.pfzw-v2 .cmp-header .cmp-header__main .header__cmp-search{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0;position:relative}.pfzw-v2 .cmp-header .cmp-header__main .header__cmp-search .cv-app-placeholder{min-width:1px}.pfzw-v2 .cmp-header .cmp-header__main .header__cmp-loginbutton,.pfzw-v2 .cmp-header .cmp-header__main .header__cmp-search,.pfzw-v2 .cmp-header .cmp-header__main .header__cmp-switch{margin-left:0}.pfzw-v2 .cmp-button--cta .c-btn:before,.pfzw-v2 .cmp-button--icon .c-btn:before{margin:0}@media screen and (max-width:1440px){.pfzw-v2 .pageheader .header__cmp-loginbutton{margin-left:0;margin-top:0;width:auto}.pfzw-v2 .pageheader .cmp-button--cta .c-btn{color:transparent;height:40px;margin:8px 0 0!important;overflow:hidden;padding:8px 16px;width:56px!important}.pfzw-v2 .pageheader .cmp-button--cta .c-btn:before{color:#fff}}@media screen and (max-width:1325px){.pfzw-v2 .cmp-header .cmp-header__main .header__buttons{gap:8px}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons .header__menu-toggle-button{border:1px solid #646668;border-radius:4px;cursor:pointer;display:block;height:40px;position:relative;width:40px}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons .header__menu-toggle-button:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23646668' fill-rule='evenodd' d='M4 8c-.55 0-1-.45-1-1s.45-1 1-1h16c.55 0 1 .45 1 1s-.45 1-1 1zm0 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m0 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1' clip-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:24px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:24px}.pfzw-v2 .cmp-header .cmp-header__main .header__buttons .header__menu-toggle-button.open:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23646668' d='M18.69 5.321a1.057 1.057 0 0 0-1.498 0L12 10.503 6.808 5.31A1.057 1.057 0 1 0 5.31 6.808L10.503 12 5.31 17.192a1.057 1.057 0 1 0 1.497 1.497L12 13.497l5.192 5.192a1.057 1.057 0 1 0 1.497-1.497L13.497 12l5.192-5.192a1.064 1.064 0 0 0 0-1.487'/%3E%3C/svg%3E");content:""}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation{background-color:#fff;-webkit-box-shadow:0 0 24px 0 rgba(57,58,60,.2);box-shadow:0 0 24px 0 rgba(57,58,60,.2);display:none;height:calc(100% - 124px);left:0;max-width:unset;overflow:auto;padding:24px 0;position:fixed;top:124px;width:100%;z-index:-1}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open{display:block}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0{padding-left:0;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0.open .cmp-navigation__group{display:block;height:100%;max-height:unset}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0.open .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%23007C53' d='M13.62 7.647a1.3 1.3 0 0 1-.891.353 1.3 1.3 0 0 1-.891-.353L6.935 2.938 1.98 7.648A1.304 1.304 0 0 1 .354 7.49 1.18 1.18 0 0 1 .25 5.923L6.05.354A1.3 1.3 0 0 1 6.941 0c.334 0 .654.127.89.353l5.802 5.57c.117.114.21.25.273.397a1.17 1.17 0 0 1-.286 1.327'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__item-link{max-width:unset;padding:8px 24px;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%2300AA72' d='M13.62.353A1.3 1.3 0 0 0 12.729 0a1.3 1.3 0 0 0-.891.353L6.935 5.062 1.98.352A1.304 1.304 0 0 0 .354.51 1.18 1.18 0 0 0 .25 2.077l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397A1.17 1.17 0 0 0 13.62.353'/%3E%3C/svg%3E");height:8px;right:28px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group{background-color:#f1f1f1;border-radius:0;-webkit-box-shadow:none;box-shadow:none;display:none;padding:16px 0;position:relative;top:0;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list{height:auto;max-height:unset}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1{width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1.open .cmp-navigation__item-link:hover:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%23007C53' d='M13.62 7.647a1.3 1.3 0 0 1-.891.353 1.3 1.3 0 0 1-.891-.353L6.935 2.938 1.98 7.648A1.304 1.304 0 0 1 .354 7.49 1.18 1.18 0 0 1 .25 5.923L6.05.354A1.3 1.3 0 0 1 6.941 0c.334 0 .654.127.89.353l5.802 5.57c.117.114.21.25.273.397a1.17 1.17 0 0 1-.286 1.327'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1.open .cmp-navigation__group{display:block}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1.open .cmp-navigation__item-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%23007C53' d='M13.62 7.647a1.3 1.3 0 0 1-.891.353 1.3 1.3 0 0 1-.891-.353L6.935 2.938 1.98 7.648A1.304 1.304 0 0 1 .354 7.49 1.18 1.18 0 0 1 .25 5.923L6.05.354A1.3 1.3 0 0 1 6.941 0c.334 0 .654.127.89.353l5.802 5.57c.117.114.21.25.273.397a1.17 1.17 0 0 1-.286 1.327'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link{padding:8px 48px;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link:after,.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link:hover:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%2300AA72' d='M13.62.353A1.3 1.3 0 0 0 12.729 0a1.3 1.3 0 0 0-.891.353L6.935 5.062 1.98.352A1.304 1.304 0 0 0 .354.51 1.18 1.18 0 0 0 .25 2.077l5.801 5.57c.237.226.557.353.891.353s.654-.127.89-.353l5.802-5.57c.117-.114.21-.25.273-.397A1.17 1.17 0 0 0 13.62.353'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__item-link:after{height:8px;width:24px}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group{display:none;left:0;padding:0;width:100%}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group .cmp-navigation__group-list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.pfzw-v2 .cmp-header .cmp-header__main .header__navigation.open .cmp-navigation__group-list .cmp-navigation__item--level-0 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-1 .cmp-navigation__group .cmp-navigation__group-list .cmp-navigation__item--level-2 .cmp-navigation__item-link{padding:8px 24px 8px 72px}.pfzw-v2.scrolly .cmp-header .cmp-header__main .header__navigation.open{height:calc(100% - 79px);top:79px}}@media screen and (max-width:767px){.pfzw-v2 .pageheader .header__cmp-loginbutton{padding-left:16px;width:56px}}.pfzw-v2.scrolly .cx-search-app--open{top:74px}.pfzw-v2 .cx-search-app--open{background-color:#fff;left:0;margin:0;padding:50px;position:fixed;top:123px;-webkit-transition:all .3s ease-in;transition:all .3s ease-in;width:100%;z-index:2}.pfzw-v2 .cx-search-app--open .cx-question-box__input{-webkit-box-shadow:0 0 12px 0 rgba(57,58,60,.2);box-shadow:0 0 12px 0 rgba(57,58,60,.2)}.pfzw-v2 .cx-search-app--open .cx-question-box__input input:focus{outline:none}.pfzw-v2 .cx-search-app--open .cx-search-app--open .cx-question-box__button{border:1px solid #f7f7f7}.pfzw-v2 .cx-search-app--open .cx-search-app svg{margin-top:6px}.pfzw-v2 .cx-search-app__button{border:1px solid var(--color-manatee-darker,#646668);padding:.8rem 1.6rem .9rem .8rem}@media screen and (max-width:47.9375rem){.pfzw-v2 .cx-search-app{margin:0}.pfzw-v2 .cx-search-app__button{background-color:transparent;border-radius:var(--border-radius-xs);margin-top:.1rem;padding:.9rem .8rem .5rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}}@media screen and (min-width:48rem){.pfzw-v2 .cx-search-app .cx-question-box__input{left:32px;right:32px}}@media screen and (min-width:90rem){.pfzw-v2 .cx-search-app .cx-search-app__button{padding:1rem 1.6rem 1rem .8rem}}:root{--pggm-tabs-scrollable-width:var(--spacing-48);--pggm-tabs-scrollable-height:var(--spacing-48);--pggm-tabs-panel-padding-block-start:var(--spacing-48);--pggm-tabs-panel-padding-block-end:var(--spacing-48)}.aem-Grid>.tabs{margin-bottom:48px}.aem-Grid>.tabs:last-child{margin-bottom:-120px}@media screen and (max-width:991px){:root{--pggm-tabs-panel-padding-inline-start:0;--pggm-tabs-panel-padding-inline-end:0;--pggm-tabs-panel-overflow-width:50vw}}@media screen and (min-width:992px){body.pfzw-v2 pggm-tab{--pggm-tabs-margin-inline-start:calc(var(--pggm-tabs-unselected-padding-inline-start, 1.5rem)*-1);--pggm-tabs-margin-inline-end:calc(var(--pggm-tabs-unselected-padding-inline-end, 1.5rem)*-1)}}.pfzw-v2 .teaser{padding:0}.pfzw-v2 .cmp-teaser{background-color:#fff;border:1px solid transparent;border-radius:var(--pggm-border-radius-md) var(--pggm-border-radius-md);color:#393a3c;display:block;float:none;margin:0 8px 32px;position:relative}.pfzw-v2 .cmp-teaser:has(.cmp-teaser__text) .cmp-teaser__content .cmp-teaser__title{margin-bottom:16px}.pfzw-v2 .cmp-teaser__image{margin:0}.pfzw-v2 .cmp-teaser__content{bottom:0;color:#393a3c;font-size:22px;line-height:42px;padding:32px 24px;top:0}.pfzw-v2 .cmp-teaser__content ul{padding-left:20px}.pfzw-v2 .cmp-teaser__link{text-decoration:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;color:#393a3c;-ms-flex:1;flex:1;-webkit-transition:all .5s linear;transition:all .5s linear;z-index:2}.pfzw-v2 .cmp-teaser__category{background:#00aa72;color:#fff;display:inline-block;font-family:Appo Paint;font-size:10px;font-weight:400;line-height:17px;margin-bottom:8px;padding:1px 4px 0}.pfzw-v2 .cmp-teaser__title{color:#393a3c;-ms-hyphens:manual;hyphens:manual;padding-bottom:0;padding-left:0;position:relative;word-break:break-word}.pfzw-v2 .cmp-teaser__content .cmp-teaser__link .cmp-teaser__text,.pfzw-v2 .cmp-teaser__content .cmp-teaser__text:has(+.cmp-teaser-link){margin-bottom:16px}.pfzw-v2 .cmp-teaser__text{display:block;font-size:16px;line-height:1.5}.pfzw-v2 .cmp-teaser__text p{font-size:inherit;line-height:inherit;margin:0;text-align:left}.pfzw-v2 .cmp-teaser-link{color:#393a3c;display:block;font-size:16px;font-weight:600;line-height:1.5;margin-top:5px;padding-left:32px;position:relative;text-decoration:none;-webkit-transition:all .5s linear;transition:all .5s linear}.pfzw-v2 .cmp-teaser-link:hover{color:#00aa72}.pfzw-v2 .cmp-teaser-link:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";height:24px;left:0;position:absolute;top:0;width:24px}.pfzw-v2 .cmp-teaser.image-teaser{overflow:hidden;padding-bottom:0}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__image{border-radius:0;display:block;height:518px;margin:0;overflow:hidden;position:relative;text-decoration:none}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__image:after{background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.5),transparent);bottom:0;content:"";display:block;height:50%;left:0;position:absolute;width:100%}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__image .cmp-image{height:100%}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__image .cmp-image img{height:100%;margin:0;-o-object-fit:cover;object-fit:cover;width:100%}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__content{background-color:transparent;color:#fff;padding:24px 24px 32px;position:absolute;top:auto}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__title{color:#fff;margin-bottom:0;padding-bottom:0;padding-left:0;position:relative}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser__title:after{display:none}.pfzw-v2 .cmp-teaser.image-teaser .cmp-teaser-link{color:#fff}.pfzw-v2 .cmp-teaser.full-teaser{background-color:#fff}.pfzw-v2 .cmp-teaser.full-teaser .cmp-teaser__image{display:block;height:234px;margin:0;overflow:hidden;position:relative;text-decoration:none}.pfzw-v2 .cmp-teaser.full-teaser .cmp-teaser__image img{height:100%;left:0;margin:0;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;width:100%}.pfzw-v2 .cmp-teaser.full-teaser .cmp-teaser__content{background-color:transparent;color:#393a3c;float:none;position:relative}.pfzw-v2 .cmp-teaser.full-teaser .cmp-teaser__content .cmp-teaser-link{color:#393a3c}.pfzw-v2 .cmp-teaser.full-teaser .cmp-teaser__title{color:#393a3c;margin-bottom:16px}.pfzw-v2 .cmp-teaser.green{background-color:#00aa72;color:#fff}.pfzw-v2 .cmp-teaser.green .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .cmp-teaser.green .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .cmp-teaser.green .cmp-teaser__text,.pfzw-v2 .cmp-teaser.green .cmp-teaser__title{color:#fff}.pfzw-v2 .cmp-teaser.green .cmp-teaser-link:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-teaser.blue{background-color:#4149a8;color:#fff}.pfzw-v2 .cmp-teaser.blue .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .cmp-teaser.blue .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .cmp-teaser.blue .cmp-teaser__text,.pfzw-v2 .cmp-teaser.blue .cmp-teaser__title{color:#fff}.pfzw-v2 .cmp-teaser.white{background-color:#fff;color:#393a3c}.pfzw-v2 .cmp-teaser.white .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .cmp-teaser.white .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .cmp-teaser.white .cmp-teaser__text,.pfzw-v2 .cmp-teaser.white .cmp-teaser__title{color:#393a3c}.pfzw-v2 .teaser.top-text .image-teaser .cmp-teaser__content{bottom:auto;top:10px}.pfzw-v2 .teaser.green .cmp-teaser{background-color:#00aa72;color:#fff}.pfzw-v2 .teaser.green .cmp-teaser.image-teaser{background-color:transparent}.pfzw-v2 .teaser.green .cmp-teaser.image-teaser.full-teaser{background-color:#00aa72}.pfzw-v2 .teaser.green .cmp-teaser .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .teaser.green .cmp-teaser .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .teaser.green .cmp-teaser .cmp-teaser__text,.pfzw-v2 .teaser.green .cmp-teaser .cmp-teaser__title{color:#fff}.pfzw-v2 .teaser.green .cmp-teaser .cmp-teaser-link:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E")}.pfzw-v2 .teaser.blue .cmp-teaser{background-color:#4149a8;color:#fff}.pfzw-v2 .teaser.blue .cmp-teaser.image-teaser{background-color:transparent}.pfzw-v2 .teaser.blue .cmp-teaser.image-teaser.full-teaser{background-color:#4149a8}.pfzw-v2 .teaser.blue .cmp-teaser .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .teaser.blue .cmp-teaser .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .teaser.blue .cmp-teaser .cmp-teaser__text,.pfzw-v2 .teaser.blue .cmp-teaser .cmp-teaser__title,.pfzw-v2 .teaser.blue a,.pfzw-v2 .teaser.green a{color:#fff}.pfzw-v2 .teaser.white .cmp-teaser{background-color:#fff;color:#393a3c}.pfzw-v2 .teaser.white .cmp-teaser.image-teaser{background-color:transparent}.pfzw-v2 .teaser.white .cmp-teaser.image-teaser.full-teaser{background-color:#fff}.pfzw-v2 .teaser.white .cmp-teaser .cmp-teaser__content .cmp-teaser-link,.pfzw-v2 .teaser.white .cmp-teaser .cmp-teaser__content .cmp-teaser__link,.pfzw-v2 .teaser.white .cmp-teaser .cmp-teaser__text,.pfzw-v2 .teaser.white .cmp-teaser .cmp-teaser__title{color:#393a3c}.pfzw-v2 .teaser.border .cmp-teaser{border:1px solid var(--pggm-color-gray-200,#d3d5d6)}.pfzw-v2 .teaser.width-25,.pfzw-v2 .teaser.width-33,.pfzw-v2 .teaser.width-50,.pfzw-v2 .teaser.width-66,.pfzw-v2 .teaser.width-75{padding:0}.pfzw-v2 .teaser.full-height.top-text .cmp-teaser.image-teaser .cmp-teaser__content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pfzw-v2 .teaser.full-height .cmp-teaser{height:100%;max-height:calc(100% - 36px)}.pfzw-v2 .teaser.full-height .cmp-teaser.image-teaser .cmp-teaser__content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.pfzw-v2 .teaser.full-height .cmp-teaser.full-teaser .cmp-teaser__content{height:calc(100% - 230px);-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pfzw-v2 .teaser.full-height .cmp-teaser.full-teaser .cmp-teaser__content .cmp-teaser__link{height:100%}.pfzw-v2 .teaser.full-height .cmp-teaser__content{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pfzw-v2 .teaser.full-height .cmp-teaser__text{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.pfzw-v2 .teaser.image-height .cmp-teaser__image{height:100%}.pfzw-v2 .teaser.image-height .cmp-teaser__image .cmp-image{margin-bottom:0}.pfzw-v2 .teaser.image-height .cmp-teaser__image .cmp-image .cmp-image__image{position:relative}.pfzw-v2 .teaser.image-height .cmp-teaser__image:before{border-radius:0}.pfzw-v2 .cmp-teaser__image+.cmp-teaser__content:before{display:none}@media screen and (max-width:767px){.pfzw-v2 .list .cmp-teaser{margin-left:0;margin-right:0}}.pfzw-v2 .guideTextDraw.intro,.pfzw-v2 .text.intro{font-family:var(--fontFamilyOpenSans,"Open Sans","Segoe UI",Tahoma,sans-serif);font-size:20px;font-style:normal;font-weight:400;line-height:30px}.pfzw-v2 .guideTextDraw.bedrag,.pfzw-v2 .text.bedrag{font-size:4rem;font-weight:800;line-height:.8}.pfzw-v2 .guideTextDraw.bedrag .cmp-text p,.pfzw-v2 .text.bedrag .cmp-text p{margin-bottom:var(--spacing-24,1.5rem)}.pfzw-v2 .guideTextDraw.small,.pfzw-v2 .text.small{font-size:1.4rem;line-height:1}.pfzw-v2 .guideTextDraw ul,.pfzw-v2 .text ul{margin-left:16px}.pfzw-v2 .guideTextDraw ul li:before,.pfzw-v2 .text ul li:before{top:13px}.pfzw-v2 .section-container{margin-bottom:4px;padding:136px 12px 68px;position:relative}.pfzw-v2 .section-container:after{background:#f7f7f7;border-radius:0 30px 0 0;bottom:0;content:"";height:30px;left:0;position:absolute;width:100%;z-index:1}.pfzw-v2 .section-container .cmp-image{margin:0}.pfzw-v2 .section-container-content{margin:0 auto;max-width:1096px;position:relative;z-index:2}.pfzw-v2 .section-container-image img{bottom:0;height:100%;left:0;-o-object-fit:cover;object-fit:cover;position:absolute;right:0;top:0;width:100%}.pfzw-v2 .socialmedia .cmp-teaser__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.pfzw-v2 .socialmedia .cmp-teaser__content .social-icons a{height:35px;width:35px}.pfzw-v2 .socialmedia .cmp-teaser__content .social-icons a:last-child{margin-right:0}.pfzw-v2 .socialmedia .cmp-teaser__content .facebook{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%2300A870' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m1.564 15.659v8.16h-3.377v-8.16H11.5v-2.812h1.687v-1.688c0-2.295.953-3.659 3.659-3.659h2.253v2.813H17.69c-1.054 0-1.124.393-1.124 1.126l-.003 1.408h2.55l-.298 2.812z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .socialmedia .cmp-teaser__content .instagram{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cg fill='%2300A870'%3E%3Cpath fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m-3.298 7.048C12.555 7.01 12.828 7 15.001 7h-.003c2.174 0 2.445.01 3.299.048.851.04 1.433.174 1.943.372.527.204.972.478 1.417.923.445.444.718.89.923 1.417.197.508.332 1.09.372 1.941.038.854.048 1.126.048 3.3 0 2.172-.01 2.444-.048 3.297-.04.852-.175 1.433-.372 1.942a3.9 3.9 0 0 1-.923 1.417c-.445.445-.89.719-1.416.923-.51.198-1.091.333-1.943.372-.854.039-1.125.048-3.298.048s-2.445-.01-3.299-.048c-.851-.04-1.433-.174-1.942-.372a3.9 3.9 0 0 1-1.416-.923 3.9 3.9 0 0 1-.923-1.417c-.198-.509-.332-1.09-.372-1.942C7.01 17.445 7 17.173 7 15s.01-2.445.048-3.299c.038-.851.173-1.433.372-1.941.205-.526.478-.973.923-1.417A3.9 3.9 0 0 1 9.76 7.42c.509-.198 1.09-.333 1.942-.372' clip-rule='evenodd'/%3E%3Cpath fill-rule='evenodd' d='M14.283 8.441h.718c2.136 0 2.389.008 3.232.046.78.036 1.204.166 1.486.276.373.145.64.318.92.598s.453.547.598.92c.11.282.24.705.275 1.485.039.844.047 1.097.047 3.232s-.008 2.388-.047 3.232c-.035.78-.166 1.203-.275 1.485-.145.373-.319.639-.599.919s-.546.453-.92.598c-.28.11-.705.24-1.485.276-.843.038-1.096.046-3.232.046s-2.39-.008-3.233-.046c-.78-.036-1.203-.167-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.282-.24-.705-.275-1.485-.038-.843-.046-1.097-.046-3.233s.008-2.388.046-3.232c.036-.78.166-1.203.276-1.485.145-.373.319-.64.599-.92s.546-.453.92-.599c.282-.11.705-.24 1.485-.276.738-.033 1.024-.043 2.515-.045zm4.988 1.329a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92M10.892 15a4.109 4.109 0 1 1 8.218 0 4.109 4.109 0 0 1-8.218 0' clip-rule='evenodd'/%3E%3Cpath d='M15 12.334a2.667 2.667 0 1 1 0 5.333 2.667 2.667 0 0 1 0-5.334'/%3E%3C/g%3E%3C/svg%3E")}.pfzw-v2 .socialmedia .cmp-teaser__content .linkedin{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%2300A870' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0M7.201 12.424h3.4v10.213H7.2zm3.623-3.16c-.022-1.001-.738-1.764-1.9-1.764C7.76 7.5 7 8.263 7 9.264c0 .98.738 1.766 1.879 1.766h.022c1.185 0 1.923-.785 1.923-1.766m8.122 2.92c2.237 0 3.914 1.46 3.914 4.597v5.856h-3.4v-5.464c0-1.372-.492-2.31-1.722-2.31-.94 0-1.499.632-1.744 1.242-.09.219-.112.523-.112.828v5.704h-3.4s.045-9.255 0-10.213h3.4v1.447c.45-.696 1.259-1.687 3.064-1.687' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .socialmedia .cmp-teaser__content .youtube{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cg fill='%2300A870'%3E%3Cpath fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m6.251 9.843c.688.19 1.23.746 1.415 1.453C23 12.576 23 15.25 23 15.25s0 2.673-.334 3.954a2.03 2.03 0 0 1-1.415 1.453C20.003 21 15 21 15 21s-5.003 0-6.251-.343a2.03 2.03 0 0 1-1.415-1.453C7 17.923 7 15.25 7 15.25s0-2.673.334-3.954A2.03 2.03 0 0 1 8.75 9.843C9.997 9.5 15 9.5 15 9.5s5.003 0 6.251.343' clip-rule='evenodd'/%3E%3Cpath d='M13.5 18v-5l4 2.5z'/%3E%3C/g%3E%3C/svg%3E")}.pfzw-v2 .socialmedia .cmp-teaser__content .twitter{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%2300A870' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m7.514 8-5.585 6.352L23 23h-4.467l-4.09-5.825L9.323 23H8l5.857-6.66L8 8h4.467l3.872 5.514L21.191 8zm-10.681.976H9.8l9.357 13.096h2.032z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .social-icons{display:-webkit-box;display:-ms-flexbox;display:flex}.pfzw-v2 .social-icons a{background-repeat:no-repeat;background-size:contain;height:30px;margin:0 8px 0 0;width:30px}.pfzw-v2 .social-icons a:last-child{margin-right:0}.pfzw-v2 .social-icons .facebook{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%239C9FA3' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m1.564 15.659v8.16h-3.377v-8.16H11.5v-2.812h1.687v-1.688c0-2.295.953-3.659 3.659-3.659h2.253v2.813H17.69c-1.054 0-1.124.393-1.124 1.126l-.003 1.408h2.55l-.298 2.812z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .social-icons .instagram{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cg fill='%239C9FA3'%3E%3Cpath fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m-3.298 7.048C12.555 7.01 12.828 7 15.001 7h-.003c2.174 0 2.445.01 3.299.048.851.04 1.433.174 1.943.372.527.204.972.478 1.417.923.445.444.718.89.923 1.417.197.508.332 1.09.372 1.941.038.854.048 1.126.048 3.3 0 2.172-.01 2.444-.048 3.297-.04.852-.175 1.433-.372 1.942a3.9 3.9 0 0 1-.923 1.417c-.445.445-.89.719-1.416.923-.51.198-1.091.333-1.943.372-.854.039-1.125.048-3.298.048s-2.445-.01-3.299-.048c-.851-.04-1.433-.174-1.942-.372a3.9 3.9 0 0 1-1.416-.923 3.9 3.9 0 0 1-.923-1.417c-.198-.509-.332-1.09-.372-1.942C7.01 17.445 7 17.173 7 15s.01-2.445.048-3.299c.038-.851.173-1.433.372-1.941.205-.526.478-.973.923-1.417A3.9 3.9 0 0 1 9.76 7.42c.509-.198 1.09-.333 1.942-.372' clip-rule='evenodd'/%3E%3Cpath fill-rule='evenodd' d='M14.283 8.441h.718c2.136 0 2.389.008 3.232.046.78.036 1.204.166 1.486.276.373.145.64.318.92.598s.453.547.598.92c.11.282.24.705.275 1.485.039.844.047 1.097.047 3.232s-.008 2.388-.047 3.232c-.035.78-.166 1.203-.275 1.485-.145.373-.319.639-.599.919s-.546.453-.92.598c-.28.11-.705.24-1.485.276-.843.038-1.096.046-3.232.046s-2.39-.008-3.233-.046c-.78-.036-1.203-.167-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.282-.24-.705-.275-1.485-.038-.843-.046-1.097-.046-3.233s.008-2.388.046-3.232c.036-.78.166-1.203.276-1.485.145-.373.319-.64.599-.92s.546-.453.92-.599c.282-.11.705-.24 1.485-.276.738-.033 1.024-.043 2.515-.045zm4.988 1.329a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92M10.892 15a4.109 4.109 0 1 1 8.218 0 4.109 4.109 0 0 1-8.218 0' clip-rule='evenodd'/%3E%3Cpath d='M15 12.334a2.667 2.667 0 1 1 0 5.333 2.667 2.667 0 0 1 0-5.334'/%3E%3C/g%3E%3C/svg%3E")}.pfzw-v2 .social-icons .linkedin{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%239C9FA3' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0M7.201 12.424h3.4v10.213H7.2zm3.623-3.16c-.022-1.001-.738-1.764-1.9-1.764C7.76 7.5 7 8.263 7 9.264c0 .98.738 1.766 1.879 1.766h.022c1.185 0 1.923-.785 1.923-1.766m8.122 2.92c2.237 0 3.914 1.46 3.914 4.597v5.856h-3.4v-5.464c0-1.372-.492-2.31-1.722-2.31-.94 0-1.499.632-1.744 1.242-.09.219-.112.523-.112.828v5.704h-3.4s.045-9.255 0-10.213h3.4v1.447c.45-.696 1.259-1.687 3.064-1.687' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .social-icons .youtube{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cg fill='%239C9FA3'%3E%3Cpath fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m6.251 9.843c.688.19 1.23.746 1.415 1.453C23 12.576 23 15.25 23 15.25s0 2.673-.334 3.954a2.03 2.03 0 0 1-1.415 1.453C20.003 21 15 21 15 21s-5.003 0-6.251-.343a2.03 2.03 0 0 1-1.415-1.453C7 17.923 7 15.25 7 15.25s0-2.673.334-3.954A2.03 2.03 0 0 1 8.75 9.843C9.997 9.5 15 9.5 15 9.5s5.003 0 6.251.343' clip-rule='evenodd'/%3E%3Cpath d='M13.5 18v-5l4 2.5z'/%3E%3C/g%3E%3C/svg%3E")}.pfzw-v2 .social-icons .twitter{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%239C9FA3' fill-rule='evenodd' d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0m7.514 8-5.585 6.352L23 23h-4.467l-4.09-5.825L9.323 23H8l5.857-6.66L8 8h4.467l3.872 5.514L21.191 8zm-10.681.976H9.8l9.357 13.096h2.032z' clip-rule='evenodd'/%3E%3C/svg%3E")}.pfzw-v2 .cmp-download{background-color:#fff;border-radius:var(--pggm-border-radius-md) var(--pggm-border-radius-md) 0 0;color:var(--textColor,#393a3c);display:block;margin:0 8px 32px;position:relative}.pfzw-v2 .cmp-download:before{background:#f7f7f7;border-radius:30px 0 0;bottom:0;content:"";height:30px;left:0;position:absolute;width:100%;z-index:1}.pfzw-v2 .cmp-download:after{border-radius:0 0 var(--pggm-border-radius-md) var(--pggm-border-radius-md);bottom:30px;-webkit-box-shadow:8px 8px 0 8px #f7f7f7;box-shadow:8px 8px 0 8px #f7f7f7;content:"";height:16px;position:absolute;right:0;width:16px;z-index:1}.pfzw-v2 .cmp-download__image{border-radius:var(--pggm-border-radius-md) var(--pggm-border-radius-md) 0 0;display:block;height:234px;margin:0;overflow:hidden;padding-bottom:30px;position:relative}.pfzw-v2 .cmp-download__image:before{background:#fff;border-radius:0 30px 0 0;bottom:0;content:"";height:30px;left:0;position:absolute;width:100%;z-index:1}.pfzw-v2 .cmp-download__image:after{background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.5),transparent);bottom:0;content:"";display:block;height:50%;left:0;position:absolute;width:100%}.pfzw-v2 .cmp-download__image .cmp-image__image{height:100%;margin:0;-o-object-fit:cover;object-fit:cover;position:absolute;width:100%}.pfzw-v2 .cmp-download__content{background-color:transparent;bottom:30px;padding:24px 24px 32px;position:relative;top:auto}.pfzw-v2 .cmp-download__title{font-size:var(--fontSizeH2,20px);line-height:28px;margin-bottom:16px;padding-left:40px;position:relative}.pfzw-v2 .cmp-download__title-link{color:inherit;font-family:inherit;text-decoration:none}.pfzw-v2 .cmp-download__title:before{background-color:#f6f6f6;border-radius:50%;color:#00aa72;display:block;height:24px;left:0;padding:4px;position:absolute;text-align:center;top:0;width:24px;z-index:1}.pfzw-v2 .cmp-download__description{display:block;font-size:var(--fontSizeSmall,14px);line-height:22px;margin-bottom:16px}.pfzw-v2 .cmp-download__action{color:inherit;display:block;font-size:16px;font-weight:var(--fontWeightBold,600);line-height:1.5;margin-top:5px;padding-left:32px;position:relative;text-decoration:none;-webkit-transition:all .5s linear;transition:all .5s linear}.pfzw-v2 .cmp-download__action:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2300AA72' d='M8.353 5.38A1.3 1.3 0 0 0 8 6.271c0 .334.127.654.353.891l4.709 4.903-4.71 4.954a1.304 1.304 0 0 0 .158 1.627 1.18 1.18 0 0 0 1.567.105l5.57-5.801a1.3 1.3 0 0 0 .353-.891 1.3 1.3 0 0 0-.353-.89l-5.57-5.801a1.2 1.2 0 0 0-.397-.274 1.17 1.17 0 0 0-1.327.286'/%3E%3C/svg%3E");content:"";height:24px;left:0;position:absolute;top:0;width:24px}.pfzw-v2 .download.right .cmp-download:before{border-radius:0 30px 0 0;right:0}.pfzw-v2 .download.right .cmp-download:after{border-radius:0 0 0 var(--pggm-border-radius-md);-webkit-box-shadow:-8px 8px 0 8px #f7f7f7;box-shadow:-8px 8px 0 8px #f7f7f7;left:0}.pfzw-v2 .download.width-25,.pfzw-v2 .download.width-33,.pfzw-v2 .download.width-50,.pfzw-v2 .download.width-66,.pfzw-v2 .download.width-75{padding:0}.pfzw-v2 .download.full-height .cmp-download{height:100%;max-height:calc(100% - 36px)}.pfzw-v2 .download.full-height .cmp-download .cmp-download__content{display:-webkit-box;display:-ms-flexbox;display:flex;height:calc(100% - 230px);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pfzw-v2 .download.image-height .cmp-download__image{height:100%}.pfzw-v2 .download.image-height .cmp-download__image .cmp-image{margin-bottom:0}.pfzw-v2 .download.image-height .cmp-download__image .cmp-image .cmp-image__image{position:relative}.pfzw-v2 .download.image-height .cmp-download__image:before{border-radius:0}pfzw-timeline{--timeline-item-title-font-size:1.8rem;--timeline-item-title-date-font-size:1.6rem;--timeline-item-title-date-font-weight:600;--timeline-item-sub-title-font-size:1.6rem;--timeline-item-number-font-size:1.6rem}pfzw-timeline [slot=title]{margin:0}pfzw-timeline p[slot=title]{margin:.4rem 0 0}pfzw-timeline .timeline-item-content>:first-child,pfzw-timeline .timeline-item-content>:first-child>:first-child,pfzw-timeline .timeline-item-content>:first-child>:first-child>:first-child,pfzw-timeline .timeline-item-content>:first-child>:first-child>:first-child>:first-child{margin-top:0}pfzw-timeline .timeline-item-content>:last-child,pfzw-timeline .timeline-item-content>:last-child>:last-child,pfzw-timeline .timeline-item-content>:last-child>:last-child>:last-child,pfzw-timeline .timeline-item-content>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}pfzw-timeline .timeline-item-content:not(:has(*)){display:none}pfzw-timeline .timeline-item-content:has(*)+.timeline-item-content:has(*){margin-top:var(--spacing-48,2.5rem)}body.pfzw-v2 .timeline:not(:last-child){margin-bottom:var(--spacing-32,2rem)}body.pfzw-v2 pfzw-timeline p[slot=title]{margin:.4rem 0 0}body.pfzw-v2 pfzw-timeline .timeline-item-content h4{-webkit-margin-after:var(--spacing-8,.5rem);margin-block-end:var(--spacing-8,.5rem)}body.pfzw-v2 pfzw-timeline .timeline-item-content .button:has(+*) .cmp-button{margin-bottom:var(--spacing-48,3rem)}.pfzw-v2 pfzw-customer-dialog{--customer-dialog-header-offset:90px;--customer-dialog-answer-marginRight:0;--customer-dialog-answer-marginLeft:0;--customer-dialog-question-marginRight:0;--customer-dialog-question-marginLeft:0}@media screen and (max-width:47.99em){.pfzw-v2 pfzw-login-status{width:56px;--pfzw-viewport-size:1px;--pfzw-login-button-width:auto;--pfzw-login-button-borderRadius:4px;--pfzw-login-button-open-borderRadius:4px 4px 0 0;--pfzw-login-button-paddingTop:12px;--pfzw-login-button-paddingBottom:2px;--pfzw-login-button-paddingLeft:15px;--pfzw-login-button-paddingRight:15px;--pfzw-login-list-position:absolute;--pfzw-login-list-before-display:none;--pfzw-login-list-item-first-borderRadius:4px 0 0 0;--pfzw-login-list-item-padding:var(--spacing-8) var(--spacing-16) var(--spacing-8) var(--spacing-8);--pfzw-login-list-item-first-padding:var(--spacing-16);--pfzw-login-list-item-first-display:block;--pfzw-login-list-open-borderRadius:4px 0 4px 4px;--pfzw-login-status-username:none}.pfzw-v2 .pfzw-inlog-status-icon{background:none;height:23px;left:0;padding:0;top:-6px;width:23px}.pfzw-v2 .pfzw-inlog-status-icon circle,.pfzw-v2 .pfzw-inlog-status-icon path{fill:#fff}}body .infotile-inner,body.pfzw-v2 .infotile-inner{background:#fff;border-radius:5px;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:24px;max-width:70ch;padding:20px 64px 20px 78px;position:relative}body .infotile-inner:before,body.pfzw-v2 .infotile-inner:before{background-repeat:no-repeat;background-size:contain;content:"";height:32px;left:24px;position:absolute;top:24px;width:32px}body .infotile-inner.info,body.pfzw-v2 .infotile-inner.info{border:1px solid #868bc7}body .infotile-inner.info:before,body.pfzw-v2 .infotile-inner.info:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' fill='none' viewBox='0 0 34 34'%3E%3Cpath fill='%234149A8' d='M.717 17A16.283 16.283 0 1 1 17 33.283 16.3 16.3 0 0 1 .717 17M17 12.3a2.116 2.116 0 1 0 0-4.232 2.116 2.116 0 0 0 0 4.232m-2.117 4.183v7.4a2.117 2.117 0 0 0 2.117 2.1 2.1 2.1 0 0 0 2.083-2.1v-7.4a2.1 2.1 0 0 0-2.083-2.1 2.117 2.117 0 0 0-2.1 2.1z'/%3E%3C/svg%3E")}body .infotile-inner.warning,body.pfzw-v2 .infotile-inner.warning{border:1px solid #fbd466}body .infotile-inner.warning:before,body.pfzw-v2 .infotile-inner.warning:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' fill='none' viewBox='0 0 34 34'%3E%3Cpath fill='%23F8B800' d='M33.283 17A16.284 16.284 0 1 1 17 .717 16.3 16.3 0 0 1 33.283 17M17 21.7a2.117 2.117 0 1 0 0 4.234 2.117 2.117 0 0 0 0-4.234m2.117-4.183v-7.4A2.117 2.117 0 0 0 17 8.017a2.1 2.1 0 0 0-2.083 2.1v7.4a2.1 2.1 0 0 0 2.083 2.1 2.117 2.117 0 0 0 2.1-2.1z'/%3E%3C/svg%3E")}body .infotile-inner.success,body.pfzw-v2 .infotile-inner.success{border:1px solid #5cc8a5}body .infotile-inner.success:before,body.pfzw-v2 .infotile-inner.success:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' fill='none' viewBox='0 0 34 34'%3E%3Cpath fill='%2300AA72' fill-rule='evenodd' d='M.333 17C.333 7.8 7.8.333 17 .333S33.667 7.8 33.667 17 26.2 33.666 17 33.666.333 26.2.333 17m7.11 1.265 5.45 4.994c.593.543 1.564.543 2.141 0l11.522-10.558a1.305 1.305 0 0 0 0-1.961 1.61 1.61 0 0 0-2.14 0L13.97 20.31l-4.387-4.006a1.61 1.61 0 0 0-2.14 0 1.33 1.33 0 0 0-.444.98c0 .369.16.722.444.982' clip-rule='evenodd'/%3E%3C/svg%3E")}body .infotile-inner.error,body.pfzw-v2 .infotile-inner.error{border:1px solid #f3a297}body .infotile-inner.error:before,body.pfzw-v2 .infotile-inner.error:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' viewBox='0 0 40 40'%3E%3Cpath fill='%23ED6D5C' d='M20 3.333a16.667 16.667 0 1 0 0 33.333 16.667 16.667 0 0 0 0-33.333m7.167 23.833a1.666 1.666 0 0 1-2.35 0L20 22.35l-4.817 4.816a1.668 1.668 0 0 1-2.817-.476 1.67 1.67 0 0 1 .467-1.874L17.65 20l-4.817-4.817a1.668 1.668 0 1 1 2.35-2.35L20 17.65l4.817-4.817a1.666 1.666 0 1 1 2.35 2.35L22.35 20l4.817 4.816a1.667 1.667 0 0 1 0 2.35'/%3E%3C/svg%3E")}body .infotile-inner.hidden,body.pfzw-v2 .infotile-inner.hidden{display:none}body .infotile-inner p,body.pfzw-v2 .infotile-inner p{margin:0}body .infotile-inner .infotile-close,body.pfzw-v2 .infotile-inner .infotile-close{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23393A3C' d='M13.69.321a1.057 1.057 0 0 0-1.498 0L7 5.503 1.808.31A1.057 1.057 0 1 0 .31 1.808L5.503 7 .31 12.192a1.057 1.057 0 1 0 1.497 1.497L7 8.497l5.192 5.192a1.057 1.057 0 1 0 1.497-1.497L8.497 7l5.192-5.192a1.064 1.064 0 0 0 0-1.487'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;border:none;cursor:pointer;height:14px;margin-right:24px;opacity:1;position:absolute;right:0;top:24px;width:14px}body .infotile-inner .infotile-title,body.pfzw-v2 .infotile-inner .infotile-title{margin:0;padding:0}body.pfzw-v2 p-accordeon pfzw-collapsible{--pfzw-collapsible-padding-block-start:var(--pggm-space-block-lg,2.4rem);--pfzw-collapsible-padding-block-end:var(--pggm-space-block-lg,2.4rem);--pfzw-collapsible-padding-inline-start:var(--pggm-space-inline-lg,2.4rem);--pfzw-collapsible-padding-inline-end:var(--pggm-space-inline-lg,2.4rem);--pfzw-collapsible-component-border-radius:var(--pggm-border-radius-md,0.8rem);background-color:var(--color-white,#fff);border:1px solid var(--pggm-color-gray-200,#d3d5d6);border-radius:var(--pggm-border-radius-md,.8rem);margin-bottom:var(--pggm-space-block-md,1.6rem)}body.pfzw-v2 p-accordeon pfzw-collapsible h3,body.pfzw-v2 p-accordeon pfzw-collapsible h4{font-style:normal}body.pfzw-v2 p-accordeon pfzw-collapsible [slot=pfzw-collapsible--content]{margin-top:calc(var(--pggm-space-block-md, 1.6rem)*-1)}.aemform .accordion.panelcontainer p-accordeon pfzw-collapsible{--pfzw-collapsible-padding-block-start:var(--pggm-space-block-sm,1.2rem);--pfzw-collapsible-padding-block-end:var(--pggm-space-block-sm,1.2rem);--pfzw-collapsible-padding-inline-start:var(--pggm-space-block-md,1.6rem);--pfzw-collapsible-padding-inline-end:var(--pggm-space-block-md,1.6rem);background-color:transparent;border:none;border-radius:0;margin-bottom:0;padding:0}.rte-toggletip-container{position:relative}.rte-toggletip-link{color:var(--pggm-link-color);-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;text-decoration:underline}.rte-toggletip-link,.rte-toggletip-link:after{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.rte-toggletip-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23008055' fill-rule='evenodd' d='M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12' clip-rule='evenodd'/%3E%3Cpath fill='%23008055' fill-rule='evenodd' d='M11 8a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1M10 12a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1-1-1' clip-rule='evenodd'/%3E%3C/svg%3E");content:"";height:24px;margin-left:2px;width:24px}.pfzw-v2 pggm-toggletip{opacity:0;overflow:visible;--toggletip-background-color:#fff;--toggletip-border-color:#fff;--toggletip-color:#000!important;--toggletip-box-shadow:0px 2px 4px 0px rgba(0,0,0,.25);--toggletip-padding:12px 16px}pggm-toggletip.rte-explainer-text>:last-child{margin-bottom:0}.rte-tooltip-container{position:relative}.rte-tooltip-link{color:var(--pggm-link-color);-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;text-decoration:underline}.rte-tooltip-link,.rte-tooltip-link:after{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.rte-tooltip-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23008055' fill-rule='evenodd' d='M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12' clip-rule='evenodd'/%3E%3Cpath fill='%23008055' fill-rule='evenodd' d='M11 8a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1M10 12a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1-1-1' clip-rule='evenodd'/%3E%3C/svg%3E");content:"";height:24px;margin-left:2px;width:24px}.rte-explainer-container{position:relative}.rte-explainer-link{color:var(--pggm-link-color);display:inline-block;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;text-decoration:underline;text-decoration-style:dotted;text-underline-offset:.1875em}.pfzw-v2 p-tooltip{opacity:0;overflow:visible;--tooltip-background-color:#fff;--tooltip-border-color:#fff;--tooltip-color:#000!important;--tooltip-box-shadow:0px 2px 4px 0px rgba(0,0,0,.25);--tooltip-padding:12px 16px}p-tooltip.rte-explainer-text>:last-child{margin-bottom:0}.modal-button{background-color:transparent;color:var(--pggm-link-color);text-decoration:underline}body.pfzw-v2 pggm-dialog{--pggm-dialog-border-radius:var(--pggm-border-radius-md,8px)}body.pfzw-v2 pggm-dialog div[slot=header] h3{margin-bottom:0}body.pfzw-v2 pggm-dialog .GridColumn,body.pfzw-v2 pggm-dialog .aem-GridColumn,body.pfzw-v2 pggm-dialog .responsivegrid.aem-GridColumn{padding:0}body.pfzw-v2 pggm-dialog .cmp-text p:last-child{margin-bottom:0}.aem-Grid>.tabs.compare{margin-bottom:1.2rem}.aem-Grid>.tabs.compare:last-child{margin-bottom:.1rem}.aem-Grid>.tabs.compare:last-child pggm-npr-compare{--pggm-compare-margin-block-end:-0.1rem}pggm-npr-compare:not(:defined){opacity:0}pggm-npr-compare{--pggm-compare-font-size:1.5rem;--pggm-compare-font-size-large:1.6rem;--pggm-compare-unselected-padding-block-start:.8rem;--pggm-compare-unselected-padding-block-end:.8rem;--pggm-compare-unselected-padding-inline-start:1.6rem;--pggm-compare-unselected-padding-inline-end:1.6rem}pggm-npr-compare-panel{--pggm-compare-panel-padding-block-start:1.6rem;--pggm-compare-panel-padding-block-end:1.6rem;--pggm-compare-panel-padding-inline-start:1.6rem;--pggm-compare-panel-padding-inline-end:1.6rem;--pggm-compare-panel-padding-block-start-large:1.6rem;--pggm-compare-panel-padding-block-end-large:1.6rem;--pggm-compare-panel-padding-inline-start-large:1.6rem;--pggm-compare-panel-padding-inline-end-large:1.6rem}pggm-npr-compare-panel>div>.container>.cmp-container>.aem-Grid>.text:first-child .cmp-text{font-size:1.8rem;font-weight:700;line-height:1.5;margin-bottom:3.2rem}pggm-npr-compare-panel .accordion{font-size:1.6rem;margin:0 calc(var(--pggm-space-block-md, 1.6rem)*-1);width:calc(100% + var(--pggm-space-block-md, 1.6rem)*2)!important}body.pfzw-v2 .root.responsivegrid .container>.cmp-container>.aem-Grid>.compare>.cmp-compare .accordion.panelcontainer p-accordeon pfzw-collapsible{--pfzw-collapsible-padding-block-start:var(--pggm-space-block-md,1.6rem);--pfzw-collapsible-padding-block-end:var(--pggm-space-block-md,1.6rem);--pfzw-collapsible-padding-inline-start:var(--pggm-space-inline-lg,2.4rem);--pfzw-collapsible-padding-inline-end:var(--pggm-space-inline-lg,2.4rem);background-color:transparent;border:none;margin-bottom:0}body.pfzw-v2 .root.responsivegrid .container>.cmp-container>.aem-Grid>.compare>.cmp-compare .accordion.panelcontainer p-accordeon pfzw-collapsible [slot=pfzw-collapsible--content]{margin-top:0}body.pfzw-v2 .root.responsivegrid .container>.cmp-container>.aem-Grid>.compare>.cmp-compare .accordion.panelcontainer p-accordeon pfzw-collapsible [slot=pfzw-collapsible--content] .aem-Grid>.aem-GridColumn:not(:first-child){margin-top:var(--pggm-space-block-xl,3.2rem)}body.pfzw-v2 .root.responsivegrid .container.white pggm-npr-compare-panel .aem-Grid>.accordion:last-child,pggm-npr-compare-panel .accordion:last-child{margin-bottom:calc(var(--pggm-space-block-md, 1.6rem)*-1)}pggm-npr-compare-panel p-accordeon{background:var(--pggm-color-blue-700,#2a2f6b);margin-bottom:0}pggm-npr-compare-panel:not(:first-child) p-accordeon{background:var(--pggm-color-blue-800,#1e224d)}[appearance=secondary] pggm-npr-compare-panel p-accordeon{background:var(--pggm-compare-secondary-selected-background-color,var(--pggm-color-green-800,#064))}.pfzw-v2 [appearance=primary] .rte-explainer-link,.pfzw-v2 [appearance=primary] .rte-tooltip-link,.pfzw-v2 [appearance=primary] .text .cmp-text a,.pfzw-v2 [appearance=secondary] .rte-explainer-link,.pfzw-v2 [appearance=secondary] .rte-tooltip-link,.pfzw-v2 [appearance=secondary] .text .cmp-text a{color:#fff}.pfzw-v2 [appearance=primary] a,.pfzw-v2 [appearance=secondary] a{text-decoration:underline}.pfzw-v2 [appearance=primary] .rte-tooltip-link:after,.pfzw-v2 [appearance=secondary] .rte-tooltip-link:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12' clip-rule='evenodd'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M11 8a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1M10 12a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1-1-1' clip-rule='evenodd'/%3E%3C/svg%3E")}[appearance=secondary] pggm-npr-compare-panel:not(:first-child) p-accordeon{background:var(--pggm-compare-secondary-selected-background-color,var(--pggm-color-green-900,#004e34))}[appearance=tertiary] pggm-npr-compare-panel p-accordeon{background:var(--pggm-color-gray-200,#d3d5d6)}.compare pfzw-collapsible{--default-icon:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9IiNmZmYiIHJ4PSIxMiIvPjxwYXRoIGZpbGw9IiM0MTQ5QTgiIGQ9Ik0xNy42NzQgOC44NTNhMS4wMyAxLjAzIDAgMCAwLS43NjQtLjM1M2MtLjI4NiAwLS41Ni4xMjctLjc2My4zNTNsLTQuMjAzIDQuNzA5LTQuMjQ2LTQuNzFhMSAxIDAgMCAwLS43MjMtLjIwNyAxLjA0IDEuMDQgMCAwIDAtLjY3MS4zNjUgMS4zIDEuMyAwIDAgMC0uMzAyLjc2NSAxLjMyIDEuMzIgMCAwIDAgLjIxMi44MDFsNC45NzIgNS41NzFjLjIwMy4yMjYuNDc3LjM1My43NjMuMzUzcy41NjEtLjEyNy43NjQtLjM1M2w0Ljk3Mi01LjU3Yy4xLS4xMTQuMTgtLjI1LjIzNS0uMzk3YTEuMzQgMS4zNCAwIDAgMC0uMDA2LS45MzQgMS4yIDEuMiAwIDAgMC0uMjQtLjM5MyIvPjwvc3ZnPg==)}.compare pfzw-collapsible [slot=pfzw-collapsible--head]{padding-right:var(--spacing-8,.5rem)}@media screen and (min-width:992px){pggm-npr-compare-panel{--pggm-compare-panel-padding-block-start:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-block-end:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-inline-start:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-inline-end:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-block-start-large:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-block-end-large:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-inline-start-large:var(--spacing-24,1.5rem);--pggm-compare-panel-padding-inline-end-large:var(--spacing-24,1.5rem)}pggm-npr-compare-panel .accordion{margin:0 calc(var(--spacing-24, 1.5rem)*-1);width:calc(100% + var(--spacing-24, 1.5rem)*2)!important}body.pfzw-v2 .root.responsivegrid .container.white pggm-npr-compare-panel .aem-Grid>.accordion:last-child,pggm-npr-compare-panel .accordion:last-child{margin-bottom:calc(var(--spacing-24, 1.5rem)*-1)}pggm-npr-compare-panel pfzw-collapsible{--pfzw-collapsible-padding-block-start:var(--spacing-16,1.6rem);--pfzw-collapsible-padding-block-end:var(--spacing-16,1.6rem);--pfzw-collapsible-padding-inline-start:var(--spacing-24,2.4rem);--pfzw-collapsible-padding-inline-end:var(--spacing-24,2.4rem)}}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container .ot-sdk-cookie-policy-group-desc,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container .ot-table-header,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container td{font-size:inherit!important}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container .ot-sdk-cookie-policy-group-desc{line-height:1.75}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container #cookie-policy-description,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container #cookie-policy-title,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container .ot-sdk-cookie-policy-group,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container p,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td span,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr th,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container td{color:inherit!important}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr th{min-width:50px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td:first-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr th:first-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr th:last-child{min-width:100px}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td a,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr tr th{background:none!important;color:inherit!important}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr td:last-child,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container table tr th:last-child{width:50%}#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container th.ot-table-header.ot-host,#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy.ot-sdk-container th.ot-table-header.ot-life-span{white-space:nowrap!important}div#MetrixLab_Div .main_body{background:#fff;border-radius:18px;-webkit-box-shadow:0 1px 11px 0 rgba(32,33,36,.48);box-shadow:0 1px 11px 0 rgba(32,33,36,.48);display:block;font-family:calibri,sans-serif!important;height:400px;left:20px;position:absolute;top:90px;width:350px;z-index:999999}div#MetrixLab_Div .whole_block{bottom:0;left:0;margin:auto;padding-top:17px;right:0;top:0;width:90%}div#MetrixLab_Div .mlologo{background-image:url(clientlib-all/resources/images/metrixlab/logo.png);background-position:50%;background-repeat:no-repeat;background-size:contain;height:50px;max-width:135px;width:247px}div#MetrixLab_Div .time_dependant,div#MetrixLab_Div .time_dependant2{font-size:15px;font-weight:var(--fontWeightBold,600);padding-bottom:5px}div#MetrixLab_Div .internal_text{font-size:var(--fontSizeSmall,14px);line-height:137%;width:94%}div#MetrixLab_Div .buttonss{padding-top:15px}div#MetrixLab_Div button{border-radius:4px;-webkit-box-sizing:unset;box-sizing:unset;cursor:pointer;font-family:calibri,sans-serif;font-weight:var(--fontWeightBold,600);height:24px;outline:none}div#MetrixLab_Div .ja{background-color:#00aa72;border:0;color:#fff;width:88px}div#MetrixLab_Div .nee{background-color:#fff;border:0;color:#000;float:right;width:88px}div#MetrixLab_Div .privacy_footer{font-size:var(--fontSizeXSmall,12px);margin-top:20px;text-align:center}
:root{--pggm-tooltip-box-shadow:0 2px 4px 0 #00000033;--pggm-textarea-max-inline-size:400px;--pggm-textarea-border-radius:0px;--pggm-textarea-border-bottom-width:auto;--pggm-text-input-content-line-height:1;--pggm-text-input-max-inline-size:488px;--pggm-table-header-background-color:transparent;--pggm-table-footer-background-color:transparent;--pggm-table-row-background-color:transparent;--pggm-table-container-box-inline-end-shadow:0 16px 48px 0 #0000001a;--pggm-table-container-box-inline-start-shadow:0 16px 48px 0 #0000001a;--pggm-select-max-inline-size:488px;--pggm-radio-checked-border-color:transparent;--pggm-radio-checked-hover-border-color:transparent;--pggm-radio-checked-active-border-color:transparent;--pggm-radio-checked-disabled-border-color:transparent;--pggm-radio-checked-invalid-border-color:transparent;--pggm-alert-icon-padding-inline-end:0px;--pggm-alert-icon-padding-inline-start:0px;--pggm-link-text-decoration-thickness:auto;--pggm-link-text-underline-offset:auto;--pggm-link-text-decoration:underline;--pggm-checkbox-checked-border-color:transparent;--pggm-checkbox-checked-disabled-border-color:transparent;--pggm-checkbox-checked-hover-border-color:transparent;--pggm-checkbox-checked-active-border-color:transparent;--pggm-checkbox-checked-invalid-border-color:transparent;--pggm-checkbox-indeterminate-border-color:transparent;--pggm-checkbox-indeterminate-disabled-border-color:transparent;--pggm-checkbox-indeterminate-active-border-color:transparent;--pggm-checkbox-indeterminate-hover-border-color:transparent;--pggm-checkbox-indeterminate-invalid-border-color:transparent;--pggm-button-primary-hover-border-color:transparent;--pggm-button-primary-border-color:transparent;--pggm-button-primary-active-border-color:transparent;--pggm-button-disabled-border-color:transparent;--pggm-button-tertiary-hover-border-color:transparent;--pggm-button-tertiary-background-color:transparent;--pggm-button-tertiary-border-color:transparent;--pggm-button-tertiary-active-border-color:transparent;--pggm-button-sign-in-hover-border-color:transparent;--pggm-button-sign-in-border-color:transparent;--pggm-button-sign-in-active-border-color:transparent;--pggm-accordion-border-radius:0px;--pggm-accordion-section-border-width:auto;--pggm-accordion-body-border-color:transparent;--pggm-accordion-button-hover-border-color:transparent;--pggm-accordion-button-expanded-border-color:transparent;--pggm-accordion-button-border-color:transparent;--pggm-accordion-button-active-border-color:transparent;--pggm-focus-outline-offset:1px;--pggm-focus-outline-style:solid;--pggm-focus-border-radius:4px;--pggm-typography-font-size-base:16px;--pggm-typography-line-height-sm:1.25;--pggm-typography-line-height-md:1.5;--pggm-typography-font-weight-regular:400;--pggm-typography-font-weight-bold:700;--pggm-typography-font-weight-semibold:600;--pggm-typography-font-weight-extrabold:800;--pggm-typography-font-family-primary:NantesWeb,Tahoma,Verdana,sans-serif;--pggm-typography-font-family-secondary:"Open Sans",Tahoma,Verdana,sans-serif;--pggm-color-white:#fff;--pggm-color-black:#000;--pggm-color-gray-50:#f6f6f6;--pggm-color-gray-100:#e7e8e9;--pggm-color-gray-200:#d3d5d6;--pggm-color-gray-500:#898c8f;--pggm-color-gray-600:#646668;--pggm-color-gray-800:#393a3c;--pggm-color-gray-900:#19191a;--pggm-color-red-50:#fff8f6;--pggm-color-red-100:#fad7d2;--pggm-color-red-200:#f8c5be;--pggm-color-red-300:#f3a297;--pggm-color-red-400:#ed6d5c;--pggm-color-red-500:#b25447;--pggm-color-red-600:#99473b;--pggm-color-red-700:#6c322a;--pggm-color-yellow-50:#fff9ed;--pggm-color-yellow-100:#fef1cc;--pggm-color-yellow-200:#fce399;--pggm-color-yellow-300:#fbd466;--pggm-color-yellow-500:#f8b800;--pggm-color-yellow-700:#ad8000;--pggm-color-yellow-800:#634900;--pggm-color-green-50:#f5fbf7;--pggm-color-green-100:#d0efe5;--pggm-color-green-300:#99ddc7;--pggm-color-green-400:#5cc8a5;--pggm-color-green-600:#00aa72;--pggm-color-green-700:#008055;--pggm-color-green-800:#064;--pggm-color-green-900:#004e34;--pggm-color-blue-50:#f9f9fc;--pggm-color-blue-100:#cbcde7;--pggm-color-blue-200:#b3b6dc;--pggm-color-blue-300:#868bc7;--pggm-color-blue-500:#4149a8;--pggm-color-blue-600:#373e8f;--pggm-color-blue-700:#2a2f6b;--pggm-color-blue-800:#1e224d;--pggm-color-alpha-light-50:hsla(0,0%,100%,.05);--pggm-color-alpha-light-100:hsla(0,0%,100%,.1);--pggm-color-alpha-dark-50:rgba(0,0,0,.05);--pggm-color-alpha-dark-100:rgba(0,0,0,.1);--pggm-color-alpha-dark-200:rgba(0,0,0,.2);--pggm-space-base:16px;--pggm-border-radius-base:16px;--pggm-border-radius-round:999px;--pggm-border-width-sm:1px;--pggm-border-width-md:2px;--pggm-border-width-lg:4px;--pggm-size-base:16px;--pggm-motion-duration-xs:150ms;--token-set-order-0:global;--token-set-order-1:semantic;--token-set-order-2:component/accordion;--token-set-order-3:component/button;--token-set-order-4:component/checkbox;--token-set-order-5:component/form-field;--token-set-order-6:component/form-field-description;--token-set-order-7:component/form-field-error-message;--token-set-order-8:component/form-field-label;--token-set-order-9:component/heading;--token-set-order-10:component/link;--token-set-order-11:component/ordered-list;--token-set-order-12:component/notification;--token-set-order-13:component/paragraph;--token-set-order-14:component/radio-button;--token-set-order-15:component/select;--token-set-order-16:component/separator;--token-set-order-17:component/table;--token-set-order-18:component/tabs;--token-set-order-19:component/text-input;--token-set-order-20:component/textarea;--token-set-order-21:component/tooltip;--token-set-order-22:component/unordered-list;--pggm-unordered-list-marker-border-color:var(--pggm-color-green-600);--pggm-unordered-list-marker-color:var(--pggm-color-green-600);--pggm-tooltip-background-color:var(--pggm-color-white);--pggm-tooltip-border-color:var(--pggm-color-gray-50);--pggm-tooltip-border-width:var(--pggm-border-width-sm);--pggm-tabs-unselected-background-color:var(--pggm-color-blue-500);--pggm-tabs-unselected-color:var(--pggm-color-white);--pggm-tabs-unselected-hover-background-color:var(--pggm-color-blue-600);--pggm-tabs-unselected-hover-color:var(--pggm-color-white);--pggm-tabs-selected-background-color:var(--pggm-color-white);--pggm-tabs-selected-border-color:var(--pggm-color-blue-500);--pggm-tabs-selected-color:var(--pggm-color-blue-500);--pggm-tabs-selected-border-width:var(--pggm-border-width-md);--pggm-tabs-panel-background-color:var(--pggm-color-white);--pggm-tabs-scrollable-icon-color:var(--pggm-color-blue-500);--pggm-tabs-text-underline:var(--pggm-border-width-sm);--pggm-table-caption-line-height:var(--pggm-typography-line-height-sm);--pggm-table-header-border-block-end-width:var(--pggm-border-width-md);--pggm-table-footer-border-block-end-width:var(--pggm-border-width-sm);--pggm-table-row-border-block-end-width:var(--pggm-border-width-sm);--pggm-radio-checked-color:var(--pggm-color-white);--pggm-radio-checked-hover-color:var(--pggm-color-white);--pggm-radio-checked-active-color:var(--pggm-color-white);--pggm-radio-checked-disabled-color:var(--pggm-color-white);--pggm-radio-checked-invalid-color:var(--pggm-color-white);--pggm-radio-border-radius:var(--pggm-border-radius-round);--pggm-alert-heading-line-height:var(--pggm-typography-line-height-sm);--pggm-alert-border-width:var(--pggm-border-width-md);--pggm-link-standalone-color:var(--pggm-color-gray-800);--pggm-link-standalone-font-weight:var(--pggm-typography-font-weight-semibold);--pggm-link-visited-color:var(--pggm-color-blue-500);--pggm-link-visited-icon-color:var(--pggm-color-blue-500);--pggm-link-font-weight:var(--pggm-typography-font-weight-regular);--pggm-heading-2xl-line-height:var(--pggm-typography-line-height-sm);--pggm-heading-xl-line-height:var(--pggm-typography-line-height-sm);--pggm-heading-lg-line-height:var(--pggm-typography-line-height-md);--pggm-heading-md-line-height:var(--pggm-typography-line-height-md);--pggm-heading-sm-line-height:var(--pggm-typography-line-height-md);--pggm-heading-font-family:var(--pggm-typography-font-family-secondary);--pggm-heading-font-weight:var(--pggm-typography-font-weight-bold);--pggm-heading-color:var(--pggm-color-gray-800);--pggm-heading-strong-font-weight:var(--pggm-typography-font-weight-extrabold);--pggm-heading-line-height:var(--pggm-typography-line-height-sm);--pggm-form-field-invalid-border-inline-start-width:var(--pggm-border-width-md);--pggm-checkbox-checked-color:var(--pggm-color-white);--pggm-checkbox-checked-disabled-color:var(--pggm-color-white);--pggm-checkbox-checked-hover-color:var(--pggm-color-white);--pggm-checkbox-checked-active-color:var(--pggm-color-white);--pggm-checkbox-checked-invalid-color:var(--pggm-color-white);--pggm-checkbox-indeterminate-color:var(--pggm-color-white);--pggm-checkbox-indeterminate-disabled-color:var(--pggm-color-white);--pggm-checkbox-indeterminate-active-color:var(--pggm-color-white);--pggm-checkbox-indeterminate-hover-color:var(--pggm-color-white);--pggm-checkbox-indeterminate-invalid-color:var(--pggm-color-white);--pggm-button-primary-hover-color:var(--pggm-color-white);--pggm-button-primary-color:var(--pggm-color-white);--pggm-button-primary-active-color:var(--pggm-color-white);--pggm-button-disabled-background-color:var(--pggm-color-gray-100);--pggm-button-disabled-color:var(--pggm-color-gray-600);--pggm-button-secondary-hover-background-color:var(--pggm-color-green-50);--pggm-button-secondary-background-color:var(--pggm-color-white);--pggm-button-secondary-active-background-color:var(--pggm-color-green-50);--pggm-button-border-width:var(--pggm-border-width-sm);--pggm-button-tertiary-hover-background-color:var(--pggm-color-green-50);--pggm-button-tertiary-active-background-color:var(--pggm-color-green-50);--pggm-button-sign-in-hover-background-color:var(--pggm-color-red-600);--pggm-button-sign-in-hover-color:var(--pggm-color-white);--pggm-button-sign-in-background-color:var(--pggm-color-red-500);--pggm-button-sign-in-color:var(--pggm-color-white);--pggm-button-sign-in-active-background-color:var(--pggm-color-red-700);--pggm-button-sign-in-active-color:var(--pggm-color-white);--pggm-accordion-section-border-block-end-width:var(--pggm-border-width-sm);--pggm-accordion-body-border-width:var(--pggm-border-width-lg);--pggm-accordion-button-hover-background-color:var(--pggm-color-gray-100);--pggm-accordion-button-expanded-background-color:var(--pggm-color-gray-50);--pggm-accordion-button-background-color:var(--pggm-color-gray-50);--pggm-accordion-button-active-background-color:var(--pggm-color-gray-200);--pggm-accordion-button-border-width:var(--pggm-border-width-sm);--pggm-root-background-color:var(--pggm-color-gray-50);--pggm-container-background-color:var(--pggm-color-white);--pggm-container-border-color:var(--pggm-color-gray-500);--pggm-container-border-width:var(--pggm-border-width-sm);--pggm-document-color:var(--pggm-color-gray-800);--pggm-document-subtle-color:var(--pggm-color-gray-600);--pggm-document-font-family:var(--pggm-typography-font-family-secondary);--pggm-document-font-weight:var(--pggm-typography-font-weight-regular);--pggm-document-strong-font-weight:var(--pggm-typography-font-weight-bold);--pggm-document-line-height:var(--pggm-typography-line-height-md);--pggm-line-border-color:var(--pggm-color-gray-200);--pggm-line-border-width:var(--pggm-border-width-sm);--pggm-interaction-color:var(--pggm-color-green-700);--pggm-interaction-active-color:var(--pggm-color-green-900);--pggm-interaction-hover-color:var(--pggm-color-green-800);--pggm-focus-outline-color:var(--pggm-color-blue-500);--pggm-focus-outline-width:var(--pggm-border-width-md);--pggm-form-control-background-color:var(--pggm-color-white);--pggm-form-control-border-color:var(--pggm-color-gray-500);--pggm-form-control-border-width:var(--pggm-border-width-sm);--pggm-form-control-color:var(--pggm-color-gray-800);--pggm-form-control-active-background-color:var(--pggm-color-gray-50);--pggm-form-control-active-border-color:var(--pggm-color-gray-800);--pggm-form-control-active-border-width:var(--pggm-border-width-md);--pggm-form-control-active-color:var(--pggm-color-gray-800);--pggm-form-control-disabled-accent-color:var(--pggm-color-gray-500);--pggm-form-control-disabled-background-color:var(--pggm-color-gray-50);--pggm-form-control-disabled-border-color:var(--pggm-color-gray-200);--pggm-form-control-disabled-color:var(--pggm-color-gray-200);--pggm-form-control-read-only-accent-color:var(--pggm-color-gray-500);--pggm-form-control-read-only-background-color:var(--pggm-color-gray-50);--pggm-form-control-read-only-border-color:var(--pggm-color-gray-200);--pggm-form-control-read-only-color:var(--pggm-color-gray-800);--pggm-form-control-hover-background-color:var(--pggm-color-white);--pggm-form-control-hover-border-color:var(--pggm-color-gray-800);--pggm-form-control-hover-color:var(--pggm-color-gray-800);--pggm-form-control-invalid-background-color:var(--pggm-color-white);--pggm-form-control-invalid-border-width:var(--pggm-border-width-md);--pggm-form-control-invalid-color:var(--pggm-color-gray-800);--pggm-form-control-placeholder-color:var(--pggm-color-gray-600);--pggm-feedback-informative-background-color:var(--pggm-color-blue-50);--pggm-feedback-informative-border-color:var(--pggm-color-blue-500);--pggm-feedback-informative-color:var(--pggm-color-blue-500);--pggm-feedback-negative-background-color:var(--pggm-color-red-50);--pggm-feedback-negative-border-color:var(--pggm-color-red-500);--pggm-feedback-negative-color:var(--pggm-color-red-500);--pggm-feedback-positive-background-color:var(--pggm-color-green-50);--pggm-feedback-positive-border-color:var(--pggm-color-green-700);--pggm-feedback-positive-color:var(--pggm-color-green-700);--pggm-feedback-warning-background-color:var(--pggm-color-yellow-50);--pggm-feedback-warning-border-color:var(--pggm-color-yellow-700);--pggm-feedback-warning-color:var(--pggm-color-yellow-700);--pggm-typography-font-size-sm:calc(var(--pggm-typography-font-size-base)*0.875);--pggm-typography-font-size-md:var(--pggm-typography-font-size-base);--pggm-typography-font-size-lg:calc(var(--pggm-typography-font-size-base)*1.25);--pggm-typography-font-size-xl:calc(var(--pggm-typography-font-size-base)*1.5);--pggm-typography-font-size-2xl:calc(var(--pggm-typography-font-size-base)*1.75);--pggm-typography-font-size-3xl:calc(var(--pggm-typography-font-size-base)*2.25);--pggm-typography-font-size-4xl:calc(var(--pggm-typography-font-size-base)*3);--pggm-space-inline-2xs:calc(var(--pggm-space-base)*0.25);--pggm-space-inline-xs:calc(var(--pggm-space-base)*0.5);--pggm-space-inline-sm:calc(var(--pggm-space-base)*0.75);--pggm-space-inline-md:var(--pggm-space-base);--pggm-space-inline-lg:calc(var(--pggm-space-base)*1.5);--pggm-space-inline-xl:calc(var(--pggm-space-base)*2);--pggm-space-inline-2xl:calc(var(--pggm-space-base)*3);--pggm-space-inline-3xl:calc(var(--pggm-space-base)*4);--pggm-space-block-2xs:calc(var(--pggm-space-base)*0.25);--pggm-space-block-xs:calc(var(--pggm-space-base)*0.5);--pggm-space-block-sm:calc(var(--pggm-space-base)*0.75);--pggm-space-block-md:var(--pggm-space-base);--pggm-space-block-lg:calc(var(--pggm-space-base)*1.5);--pggm-space-block-xl:calc(var(--pggm-space-base)*2);--pggm-space-block-2xl:calc(var(--pggm-space-base)*3);--pggm-space-block-3xl:calc(var(--pggm-space-base)*4);--pggm-space-text-2xs:calc(var(--pggm-space-base)*0.25);--pggm-space-text-xs:calc(var(--pggm-space-base)*0.5);--pggm-space-text-sm:calc(var(--pggm-space-base)*0.75);--pggm-space-text-md:var(--pggm-space-base);--pggm-space-text-lg:calc(var(--pggm-space-base)*1.5);--pggm-space-column-2xs:calc(var(--pggm-space-base)*0.25);--pggm-space-column-xs:calc(var(--pggm-space-base)*0.5);--pggm-space-column-sm:calc(var(--pggm-space-base)*0.75);--pggm-space-column-md:var(--pggm-space-base);--pggm-space-column-lg:calc(var(--pggm-space-base)*1.5);--pggm-space-column-xl:calc(var(--pggm-space-base)*2);--pggm-space-column-2xl:calc(var(--pggm-space-base)*3);--pggm-space-column-3xl:calc(var(--pggm-space-base)*4);--pggm-space-row-2xs:calc(var(--pggm-space-base)*0.25);--pggm-space-row-xs:calc(var(--pggm-space-base)*0.5);--pggm-space-row-sm:calc(var(--pggm-space-base)*0.75);--pggm-space-row-md:var(--pggm-space-base);--pggm-space-row-lg:calc(var(--pggm-space-base)*1.5);--pggm-space-row-xl:calc(var(--pggm-space-base)*2);--pggm-space-row-2xl:calc(var(--pggm-space-base)*3);--pggm-space-row-3xl:calc(var(--pggm-space-base)*4);--pggm-space-row-4xl:calc(var(--pggm-space-base)*10);--pggm-border-radius-sm:calc(var(--pggm-border-radius-base)/4);--pggm-border-radius-md:calc(var(--pggm-border-radius-base)/2);--pggm-border-radius-lg:var(--pggm-border-radius-base);--pggm-size-2xs:calc(var(--pggm-size-base)/8);--pggm-size-xs:calc(var(--pggm-size-base)/4);--pggm-size-sm:calc(var(--pggm-size-base)/2);--pggm-size-md:var(--pggm-size-base);--pggm-size-lg:calc(var(--pggm-size-base)*1.5);--pggm-size-xl:calc(var(--pggm-space-base)*2);--pggm-size-2xl:calc(var(--pggm-size-base)*3);--pggm-size-3xl:calc(var(--pggm-size-base)*4);--pggm-size-icon-sm:var(--pggm-size-base);--pggm-size-icon-md:calc(var(--pggm-size-base)*1.5);--pggm-size-icon-lg:calc(var(--pggm-space-base)*2);--pggm-size-icon-xl:calc(var(--pggm-size-base)*3);--pggm-box-shadow-sm:0 2px 4px 0 var(--pggm-color-alpha-dark-200);--pggm-box-shadow-md:0 8px 16px 0 var(--pggm-color-alpha-dark-100);--pggm-box-shadow-lg:0 16px 48px 0 var(--pggm-color-alpha-dark-100);--pggm-unordered-list-color:var(--pggm-document-color);--pggm-unordered-list-font-family:var(--pggm-document-font-family);--pggm-unordered-list-font-weight:var(--pggm-document-font-weight);--pggm-unordered-list-line-height:var(--pggm-document-line-height);--pggm-unordered-list-padding-inline-start:var(--pggm-space-inline-lg);--pggm-unordered-list-item-margin-block-end:var(--pggm-space-block-2xs);--pggm-unordered-list-item-margin-block-start:var(--pggm-space-block-2xs);--pggm-tooltip-padding-block-end:var(--pggm-space-block-sm);--pggm-tooltip-padding-block-start:var(--pggm-space-block-sm);--pggm-tooltip-padding-inline-end:var(--pggm-space-inline-md);--pggm-tooltip-padding-inline-start:var(--pggm-space-inline-md);--pggm-tooltip-color:var(--pggm-document-color);--pggm-tooltip-border-radius:var(--pggm-border-radius-sm);--pggm-tooltip-font-family:var(--pggm-document-font-family);--pggm-tooltip-font-weight:var(--pggm-document-font-weight);--pggm-tooltip-line-height:var(--pggm-document-line-height);--pggm-textarea-padding-block-end:var(--pggm-space-block-md);--pggm-textarea-padding-block-start:var(--pggm-space-block-md);--pggm-textarea-padding-inline-end:var(--pggm-space-inline-sm);--pggm-textarea-padding-inline-start:var(--pggm-space-inline-sm);--pggm-textarea-background-color:var(--pggm-form-control-background-color);--pggm-textarea-border-color:var(--pggm-form-control-border-color);--pggm-textarea-color:var(--pggm-form-control-color);--pggm-textarea-invalid-background-color:var(--pggm-form-control-invalid-background-color);--pggm-textarea-invalid-color:var(--pggm-form-control-color);--pggm-textarea-invalid-border-width:var(--pggm-form-control-invalid-border-width);--pggm-textarea-placeholder-color:var(--pggm-form-control-placeholder-color);--pggm-textarea-disabled-background-color:var(--pggm-form-control-disabled-background-color);--pggm-textarea-disabled-border-color:var(--pggm-form-control-disabled-border-color);--pggm-textarea-disabled-color:var(--pggm-form-control-disabled-color);--pggm-textarea-read-only-background-color:var(--pggm-form-control-read-only-background-color);--pggm-textarea-read-only-border-color:var(--pggm-form-control-read-only-border-color);--pggm-textarea-read-only-color:var(--pggm-form-control-read-only-color);--pggm-textarea-hover-background-color:var(--pggm-form-control-hover-background-color);--pggm-textarea-hover-border-color:var(--pggm-form-control-hover-border-color);--pggm-textarea-hover-color:var(--pggm-form-control-hover-color);--pggm-textarea-border-width:var(--pggm-form-control-border-width);--pggm-textarea-font-family:var(--pggm-document-font-family);--pggm-textarea-font-weight:var(--pggm-document-font-weight);--pggm-textarea-line-height:var(--pggm-document-line-height);--pggm-text-input-border-radius:var(--pggm-border-radius-sm);--pggm-text-input-content-font-family:var(--pggm-document-font-family);--pggm-text-input-content-font-weight:var(--pggm-document-font-weight);--pggm-text-input-padding-block-end:var(--pggm-space-block-md);--pggm-text-input-padding-block-start:var(--pggm-space-block-md);--pggm-text-input-padding-inline-end:var(--pggm-space-inline-md);--pggm-text-input-padding-inline-start:var(--pggm-space-inline-md);--pggm-text-input-background-color:var(--pggm-form-control-background-color);--pggm-text-input-border-color:var(--pggm-form-control-border-color);--pggm-text-input-color:var(--pggm-form-control-color);--pggm-text-input-invalid-background-color:var(--pggm-form-control-invalid-background-color);--pggm-text-input-invalid-color:var(--pggm-form-control-invalid-color);--pggm-text-input-invalid-border-width:var(--pggm-form-control-invalid-border-width);--pggm-text-input-border-width:var(--pggm-form-control-border-width);--pggm-text-input-read-only-background-color:var(--pggm-form-control-read-only-background-color);--pggm-text-input-read-only-border-color:var(--pggm-form-control-read-only-border-color);--pggm-text-input-read-only-color:var(--pggm-form-control-read-only-color);--pggm-text-input-active-border-width:var(--pggm-form-control-active-border-width);--pggm-text-input-active-background-color:var(--pggm-form-control-background-color);--pggm-text-input-active-color:var(--pggm-form-control-active-color);--pggm-text-input-hover-background-color:var(--pggm-form-control-hover-background-color);--pggm-text-input-hover-border-color:var(--pggm-form-control-hover-border-color);--pggm-text-input-hover-color:var(--pggm-form-control-hover-color);--pggm-text-input-row-gap:var(--pggm-space-row-xs);--pggm-text-input-disabled-background-color:var(--pggm-form-control-disabled-background-color);--pggm-text-input-disabled-border-color:var(--pggm-form-control-disabled-border-color);--pggm-text-input-disabled-color:var(--pggm-form-control-disabled-color);--pggm-tabs-unselected-padding-block-end:var(--pggm-space-block-sm);--pggm-tabs-unselected-padding-block-start:var(--pggm-space-block-sm);--pggm-tabs-unselected-padding-inline-end:var(--pggm-space-inline-lg);--pggm-tabs-unselected-padding-inline-start:var(--pggm-space-inline-lg);--pggm-tabs-border-radius:var(--pggm-border-radius-sm);--pggm-tabs-font-family:var(--pggm-document-font-family);--pggm-tabs-font-weight:var(--pggm-document-strong-font-weight);--pggm-tabs-line-height:var(--pggm-document-line-height);--pggm-tabs-selected-padding-block-end:var(--pggm-space-block-md);--pggm-tabs-selected-padding-block-start:var(--pggm-space-block-md);--pggm-tabs-selected-padding-inline-end:var(--pggm-space-inline-lg);--pggm-tabs-selected-padding-inline-start:var(--pggm-space-inline-lg);--pggm-tabs-panel-column-gap:var(--pggm-space-column-xs);--pggm-table-header-cell-line-height:var(--pggm-document-line-height);--pggm-table-header-cell-color:var(--pggm-document-color);--pggm-table-header-cell-font-family:var(--pggm-document-font-family);--pggm-table-header-cell-font-weight:var(--pggm-document-strong-font-weight);--pggm-table-caption-margin-block-end:var(--pggm-space-block-lg);--pggm-table-caption-color:var(--pggm-heading-color);--pggm-table-caption-font-family:var(--pggm-heading-font-family);--pggm-table-caption-font-weight:var(--pggm-heading-font-weight);--pggm-table-caption-font-size:var(--pggm-typography-font-size-xl);--pggm-table-cell-padding-block-end:var(--pggm-space-block-md);--pggm-table-cell-padding-block-start:var(--pggm-space-block-md);--pggm-table-cell-padding-inline-end:var(--pggm-space-inline-md);--pggm-table-cell-padding-inline-start:var(--pggm-space-inline-md);--pggm-table-data-cell-color:var(--pggm-document-color);--pggm-table-data-cell-font-family:var(--pggm-document-font-family);--pggm-table-data-cell-font-weight:var(--pggm-document-font-weight);--pggm-table-data-cell-line-height:var(--pggm-document-line-height);--pggm-table-header-border-block-end-color:var(--pggm-line-border-color);--pggm-table-footer-border-block-end-color:var(--pggm-line-border-color);--pggm-table-row-border-block-end-color:var(--pggm-line-border-color);--pggm-table-footer-cell-font-weight:var(--pggm-document-strong-font-weight);--pggm-table-footer-cell-color:var(--pggm-document-color);--pggm-table-footer-cell-font-family:var(--pggm-document-font-family);--pggm-table-footer-cell-line-height:var(--pggm-document-line-height);--pggm-separator-color:var(--pggm-line-border-color);--pggm-separator-block-size:var(--pggm-size-2xs);--pggm-separator-padding-block-end:var(--pggm-space-block-md);--pggm-separator-padding-block-start:var(--pggm-space-block-md);--pggm-select-font-family:var(--pggm-document-font-family);--pggm-select-font-weight:var(--pggm-document-font-weight);--pggm-select-line-height:var(--pggm-document-line-height);--pggm-select-padding-block-end:var(--pggm-space-block-sm);--pggm-select-padding-block-start:var(--pggm-space-block-sm);--pggm-select-padding-inline-end:var(--pggm-space-inline-md);--pggm-select-padding-inline-start:var(--pggm-space-inline-md);--pggm-select-row-gap:var(--pggm-space-row-sm);--pggm-select-background-color:var(--pggm-form-control-background-color);--pggm-select-border-color:var(--pggm-form-control-border-color);--pggm-select-color:var(--pggm-form-control-color);--pggm-select-icon-color:var(--pggm-form-control-color);--pggm-select-invalid-icon-color:var(--pggm-form-control-color);--pggm-select-invalid-background-color:var(--pggm-form-control-invalid-background-color);--pggm-select-invalid-color:var(--pggm-form-control-invalid-color);--pggm-select-invalid-border-width:var(--pggm-form-control-invalid-border-width);--pggm-select-hover-icon-color:var(--pggm-form-control-color);--pggm-select-hover-background-color:var(--pggm-form-control-hover-background-color);--pggm-select-hover-border-color:var(--pggm-form-control-hover-border-color);--pggm-select-hover-color:var(--pggm-form-control-hover-color);--pggm-select-disabled-icon-color:var(--pggm-form-control-disabled-color);--pggm-select-disabled-background-color:var(--pggm-form-control-disabled-background-color);--pggm-select-disabled-border-color:var(--pggm-form-control-disabled-border-color);--pggm-select-disabled-color:var(--pggm-form-control-disabled-color);--pggm-select-active-icon-color:var(--pggm-form-control-color);--pggm-select-active-background-color:var(--pggm-form-control-background-color);--pggm-select-active-color:var(--pggm-form-control-active-color);--pggm-select-active-border-width:var(--pggm-form-control-active-border-width);--pggm-select-border-radius:var(--pggm-border-radius-sm);--pggm-select-border-width:var(--pggm-form-control-border-width);--pggm-radio-active-background-color:var(--pggm-form-control-active-background-color);--pggm-radio-active-border-color:var(--pggm-form-control-active-border-color);--pggm-radio-size:var(--pggm-size-lg);--pggm-radio-dot-size:var(--pggm-size-sm);--pggm-radio-background-color:var(--pggm-form-control-background-color);--pggm-radio-border-color:var(--pggm-form-control-border-color);--pggm-radio-invalid-background-color:var(--pggm-form-control-invalid-background-color);--pggm-radio-invalid-border-width:var(--pggm-form-control-invalid-border-width);--pggm-radio-disabled-background-color:var(--pggm-form-control-disabled-background-color);--pggm-radio-disabled-border-color:var(--pggm-form-control-disabled-border-color);--pggm-radio-checked-disabled-background-color:var(--pggm-form-control-disabled-accent-color);--pggm-radio-checked-invalid-background-color:var(--pggm-feedback-negative-color);--pggm-radio-hover-background-color:var(--pggm-form-control-hover-background-color);--pggm-radio-hover-border-color:var(--pggm-form-control-hover-border-color);--pggm-radio-border-width:var(--pggm-form-control-border-width);--pggm-radio-option-column-gap:var(--pggm-space-column-xs);--pggm-radio-option-label-color:var(--pggm-form-control-color);--pggm-radio-option-label-disabled-color:var(--pggm-form-control-disabled-color);--pggm-radio-option-label-font-family:var(--pggm-document-font-family);--pggm-radio-option-label-font-weight:var(--pggm-document-font-weight);--pggm-radio-option-label-line-height:var(--pggm-document-line-height);--pggm-radio-group-row-gap:var(--pggm-space-row-md);--pggm-radio-label-row-gap:var(--pggm-space-row-xs);--pggm-paragraph-color:var(--pggm-document-color);--pggm-paragraph-font-family:var(--pggm-document-font-family);--pggm-paragraph-font-weight:var(--pggm-document-font-weight);--pggm-paragraph-line-height:var(--pggm-document-line-height);--pggm-paragraph-lead-color:var(--pggm-document-color);--pggm-paragraph-lead-font-family:var(--pggm-document-font-family);--pggm-paragraph-lead-font-size:var(--pggm-typography-font-size-lg);--pggm-paragraph-lead-font-weight:var(--pggm-document-font-weight);--pggm-paragraph-lead-line-height:var(--pggm-document-line-height);--pggm-paragraph-small-color:var(--pggm-document-color);--pggm-paragraph-small-font-family:var(--pggm-document-font-family);--pggm-paragraph-small-font-size:var(--pggm-typography-font-size-sm);--pggm-paragraph-small-font-weight:var(--pggm-document-font-weight);--pggm-paragraph-small-line-height:var(--pggm-document-line-height);--pggm-alert-heading-font-family:var(--pggm-heading-font-family);--pggm-alert-heading-font-weight:var(--pggm-heading-font-weight);--pggm-alert-heading-font-size:var(--pggm-typography-font-size-xl);--pggm-alert-column-gap:var(--pggm-space-column-sm);--pggm-alert-padding-block-end:var(--pggm-space-block-md);--pggm-alert-padding-block-start:var(--pggm-space-block-md);--pggm-alert-padding-inline-end:var(--pggm-space-inline-md);--pggm-alert-padding-inline-start:var(--pggm-space-inline-md);--pggm-alert-informative-background-color:var(--pggm-feedback-informative-background-color);--pggm-alert-informative-border-color:var(--pggm-feedback-informative-border-color);--pggm-alert-informative-color:var(--pggm-document-color);--pggm-alert-icon-informative-color:var(--pggm-feedback-informative-color);--pggm-alert-icon-padding-block-end:var(--pggm-space-block-md);--pggm-alert-icon-padding-block-start:var(--pggm-space-block-md);--pggm-alert-icon-positive-color:var(--pggm-feedback-positive-color);--pggm-alert-icon-negative-color:var(--pggm-feedback-negative-color);--pggm-alert-icon-warning-color:var(--pggm-feedback-warning-color);--pggm-alert-negative-background-color:var(--pggm-feedback-negative-background-color);--pggm-alert-negative-border-color:var(--pggm-feedback-negative-border-color);--pggm-alert-negative-color:var(--pggm-document-color);--pggm-alert-positive-background-color:var(--pggm-feedback-positive-background-color);--pggm-alert-positive-border-color:var(--pggm-feedback-positive-border-color);--pggm-alert-positive-color:var(--pggm-document-color);--pggm-alert-warning-background-color:var(--pggm-feedback-warning-background-color);--pggm-alert-warning-border-color:var(--pggm-feedback-warning-border-color);--pggm-alert-warning-color:var(--pggm-document-color);--pggm-alert-message-row-gap:var(--pggm-space-row-sm);--pggm-alert-message-padding-block-end:var(--pggm-space-block-md);--pggm-alert-message-padding-block-start:var(--pggm-space-block-sm);--pggm-alert-content-row-gap:var(--pggm-space-row-sm);--pggm-ordered-list-padding-inline-start:var(--pggm-space-inline-lg);--pggm-ordered-list-color:var(--pggm-document-color);--pggm-ordered-list-font-family:var(--pggm-document-font-family);--pggm-ordered-list-font-weight:var(--pggm-document-font-weight);--pggm-ordered-list-line-height:var(--pggm-document-line-height);--pggm-ordered-list-item-margin-block-end:var(--pggm-space-block-2xs);--pggm-ordered-list-item-margin-block-start:var(--pggm-space-block-2xs);--pggm-link-line-height:var(--pggm-document-line-height);--pggm-link-icon-color:var(--pggm-interaction-color);--pggm-link-color:var(--pggm-interaction-color);--pggm-link-standalone-icon-color:var(--pggm-interaction-color);--pggm-link-standalone-hover-color:var(--pggm-interaction-hover-color);--pggm-link-standalone-hover-icon-color:var(--pggm-interaction-hover-color);--pggm-link-standalone-icon-size:var(--pggm-size-icon-md);--pggm-link-standalone-active-text-decoration-color:var(--pggm-interaction-active-color);--pggm-link-standalone-active-color:var(--pggm-interaction-active-color);--pggm-link-standalone-row-gap:var(--pggm-space-row-md);--pggm-link-hover-text-decoration-color:var(--pggm-interaction-hover-color);--pggm-link-hover-color:var(--pggm-interaction-hover-color);--pggm-link-active-text-decoration-color:var(--pggm-interaction-active-color);--pggm-link-active-color:var(--pggm-interaction-active-color);--pggm-link-icon-size:var(--pggm-size-icon-sm);--pggm-link-column-gap:var(--pggm-space-text-xs);--pggm-link-font-family:var(--pggm-document-font-family);--pggm-heading-2xl-color:var(--pggm-heading-color);--pggm-heading-2xl-font-family:var(--pggm-heading-font-family);--pggm-heading-2xl-font-weight:var(--pggm-heading-strong-font-weight);--pggm-heading-2xl-large-font-size:var(--pggm-typography-font-size-3xl);--pggm-heading-2xl-small-font-size:var(--pggm-typography-font-size-2xl);--pggm-heading-xl-color:var(--pggm-heading-color);--pggm-heading-xl-font-family:var(--pggm-heading-font-family);--pggm-heading-xl-font-weight:var(--pggm-heading-font-weight);--pggm-heading-xl-small-font-size:var(--pggm-typography-font-size-xl);--pggm-heading-lg-color:var(--pggm-heading-color);--pggm-heading-lg-font-family:var(--pggm-heading-font-family);--pggm-heading-lg-font-weight:var(--pggm-heading-font-weight);--pggm-heading-lg-large-font-size:var(--pggm-typography-font-size-lg);--pggm-heading-lg-small-font-size:var(--pggm-typography-font-size-lg);--pggm-heading-md-color:var(--pggm-heading-color);--pggm-heading-md-font-family:var(--pggm-heading-font-family);--pggm-heading-md-font-weight:var(--pggm-heading-font-weight);--pggm-heading-md-large-font-size:var(--pggm-typography-font-size-md);--pggm-heading-md-small-font-size:var(--pggm-typography-font-size-md);--pggm-heading-sm-color:var(--pggm-heading-color);--pggm-heading-sm-font-family:var(--pggm-heading-font-family);--pggm-heading-sm-font-weight:var(--pggm-heading-font-weight);--pggm-heading-sm-large-font-size:var(--pggm-typography-font-size-sm);--pggm-heading-sm-small-font-size:var(--pggm-typography-font-size-sm);--pggm-form-field-label-color:var(--pggm-document-color);--pggm-form-field-label-font-family:var(--pggm-document-font-family);--pggm-form-field-label-font-weight:var(--pggm-document-strong-font-weight);--pggm-form-field-label-line-height:var(--pggm-document-line-height);--pggm-form-field-label-optional-color:var(--pggm-document-subtle-color);--pggm-form-field-label-optional-font-family:var(--pggm-document-font-family);--pggm-form-field-label-optional-font-weight:var(--pggm-document-font-weight);--pggm-form-field-label-optional-line-height:var(--pggm-document-line-height);--pggm-form-field-label-optional-font-size:var(--pggm-typography-font-size-sm);--pggm-form-field-label-column-gap:var(--pggm-space-column-sm);--pggm-form-field-label-disabled-color:var(--pggm-form-control-disabled-color);--pggm-form-field-label-row-gap:var(--pggm-space-row-xs);--pggm-form-field-error-message-row-gap:var(--pggm-space-text-xs);--pggm-form-field-error-message-color:var(--pggm-feedback-negative-color);--pggm-form-field-error-message-font-family:var(--pggm-document-font-family);--pggm-form-field-error-message-font-weight:var(--pggm-document-font-weight);--pggm-form-field-error-message-line-height:var(--pggm-document-line-height);--pggm-form-field-description-color:var(--pggm-document-subtle-color);--pggm-form-field-description-font-family:var(--pggm-document-font-family);--pggm-form-field-description-font-size:var(--pggm-typography-font-size-sm);--pggm-form-field-description-font-weight:var(--pggm-document-font-weight);--pggm-form-field-description-line-height:var(--pggm-document-line-height);--pggm-form-field-invalid-border-inline-start-color:var(--pggm-feedback-negative-border-color);--pggm-form-field-invalid-padding-inline-start:var(--pggm-space-inline-md);--pggm-checkbox-border-radius:var(--pggm-border-radius-sm);--pggm-checkbox-size:var(--pggm-size-lg);--pggm-checkbox-background-color:var(--pggm-form-control-background-color);--pggm-checkbox-border-color:var(--pggm-form-control-border-color);--pggm-checkbox-invalid-background-color:var(--pggm-form-control-invalid-background-color);--pggm-checkbox-invalid-border-width:var(--pggm-form-control-invalid-border-width);--pggm-checkbox-disabled-background-color:var(--pggm-form-control-disabled-background-color);--pggm-checkbox-disabled-border-color:var(--pggm-form-control-disabled-border-color);--pggm-checkbox-checked-disabled-background-color:var(--pggm-form-control-disabled-accent-color);--pggm-checkbox-checked-invalid-background-color:var(--pggm-feedback-negative-color);--pggm-checkbox-indeterminate-disabled-background-color:var(--pggm-form-control-disabled-accent-color);--pggm-checkbox-indeterminate-invalid-background-color:var(--pggm-feedback-negative-color);--pggm-checkbox-border-width:var(--pggm-form-control-border-width);--pggm-checkbox-hover-background-color:var(--pggm-form-control-hover-background-color);--pggm-checkbox-hover-border-color:var(--pggm-form-control-hover-border-color);--pggm-checkbox-active-background-color:var(--pggm-form-control-active-background-color);--pggm-checkbox-active-border-color:var(--pggm-form-control-active-border-color);--pggm-checkbox-option-column-gap:var(--pggm-space-column-xs);--pggm-checkbox-group-row-gap:var(--pggm-space-row-md);--pggm-checkbox-option-label-font-family:var(--pggm-document-font-family);--pggm-checkbox-option-label-color:var(--pggm-form-control-color);--pggm-checkbox-option-label-disabled-color:var(--pggm-form-control-disabled-color);--pggm-checkbox-option-label-font-weight:var(--pggm-document-font-weight);--pggm-checkbox-option-label-line-height:var(--pggm-document-line-height);--pggm-checkbox-label-row-gap:var(--pggm-space-row-xs);--pggm-button-primary-hover-background-color:var(--pggm-interaction-hover-color);--pggm-button-primary-background-color:var(--pggm-interaction-color);--pggm-button-primary-active-background-color:var(--pggm-interaction-active-color);--pggm-button-secondary-hover-border-color:var(--pggm-interaction-hover-color);--pggm-button-secondary-hover-color:var(--pggm-interaction-hover-color);--pggm-button-secondary-border-color:var(--pggm-interaction-color);--pggm-button-secondary-color:var(--pggm-interaction-color);--pggm-button-secondary-active-border-color:var(--pggm-interaction-active-color);--pggm-button-secondary-active-color:var(--pggm-interaction-active-color);--pggm-button-border-radius:var(--pggm-border-radius-sm);--pggm-button-column-gap:var(--pggm-space-text-xs);--pggm-button-font-family:var(--pggm-document-font-family);--pggm-button-tertiary-hover-color:var(--pggm-interaction-hover-color);--pggm-button-tertiary-color:var(--pggm-interaction-color);--pggm-button-tertiary-active-color:var(--pggm-interaction-active-color);--pggm-button-line-height:var(--pggm-document-line-height);--pggm-button-padding-block-end:var(--pggm-space-block-sm);--pggm-button-padding-block-start:var(--pggm-space-block-sm);--pggm-button-padding-inline-end:var(--pggm-space-inline-md);--pggm-button-padding-inline-start:var(--pggm-space-inline-md);--pggm-button-font-weight:var(--pggm-document-strong-font-weight);--pggm-accordion-section-border-color:var(--pggm-line-border-color);--pggm-accordion-body-padding-block-end:var(--pggm-space-block-lg);--pggm-accordion-body-padding-block-start:var(--pggm-space-block-lg);--pggm-accordion-body-padding-inline-end:var(--pggm-space-inline-md);--pggm-accordion-body-padding-inline-start:var(--pggm-space-inline-md);--pggm-accordion-button-line-height:var(--pggm-document-line-height);--pggm-accordion-button-icon-margin-inline:var(--pggm-space-text-sm);--pggm-accordion-button-padding-block-end:var(--pggm-space-block-md);--pggm-accordion-button-padding-block-start:var(--pggm-space-block-md);--pggm-accordion-button-padding-inline-end:var(--pggm-space-inline-md);--pggm-accordion-button-padding-inline-start:var(--pggm-space-inline-md);--pggm-accordion-button-hover-color:var(--pggm-interaction-hover-color);--pggm-accordion-button-expanded-color:var(--pggm-interaction-color);--pggm-accordion-button-color:var(--pggm-interaction-color);--pggm-accordion-button-active-color:var(--pggm-interaction-active-color);--pggm-accordion-button-font-family:var(--pggm-document-font-family);--pggm-accordion-button-font-weight:var(--pggm-document-strong-font-weight);--pggm-document-font-size:var(--pggm-typography-font-size-md);--pggm-form-control-accent-color:var(--pggm-interaction-color);--pggm-form-control-active-accent-color:var(--pggm-interaction-active-color);--pggm-form-control-hover-accent-color:var(--pggm-interaction-hover-color);--pggm-form-control-invalid-border-color:var(--pggm-feedback-negative-border-color);--pggm-pointer-target-min-size:var(--pggm-size-2xl);--pggm-icon-functional-size:var(--pggm-size-icon-md);--pggm-unordered-list-font-size:var(--pggm-document-font-size);--pggm-tooltip-font-size:var(--pggm-document-font-size);--pggm-textarea-invalid-border-color:var(--pggm-form-control-invalid-border-color);--pggm-textarea-font-size:var(--pggm-document-font-size);--pggm-text-input-content-font-size:var(--pggm-document-font-size);--pggm-text-input-invalid-border-color:var(--pggm-form-control-invalid-border-color);--pggm-text-input-active-border-color:var(--pggm-form-control-active-accent-color);--pggm-text-input-error-message-icon-size:var(--pggm-icon-functional-size);--pggm-tabs-font-size:var(--pggm-document-font-size);--pggm-table-header-cell-font-size:var(--pggm-document-font-size);--pggm-table-data-cell-font-size:var(--pggm-document-font-size);--pggm-table-footer-cell-font-size:var(--pggm-document-font-size);--pggm-select-icon-size:var(--pggm-icon-functional-size);--pggm-select-font-size:var(--pggm-document-font-size);--pggm-select-invalid-border-color:var(--pggm-form-control-invalid-border-color);--pggm-select-active-border-color:var(--pggm-form-control-active-accent-color);--pggm-radio-invalid-border-color:var(--pggm-form-control-invalid-border-color);--pggm-radio-checked-background-color:var(--pggm-form-control-accent-color);--pggm-radio-checked-hover-background-color:var(--pggm-form-control-hover-accent-color);--pggm-radio-checked-active-background-color:var(--pggm-form-control-active-accent-color);--pggm-radio-option-label-font-size:var(--pggm-document-font-size);--pggm-paragraph-font-size:var(--pggm-document-font-size);--pggm-alert-icon-size:var(--pggm-icon-functional-size);--pggm-ordered-list-font-size:var(--pggm-document-font-size);--pggm-link-font-size:var(--pggm-document-font-size);--pggm-heading-xl-large-font-size:var(--pggm-heading-2xl-small-font-size);--pggm-form-field-label-font-size:var(--pggm-document-font-size);--pggm-form-field-error-message-icon-size:var(--pggm-icon-functional-size);--pggm-form-field-error-message-font-size:var(--pggm-document-font-size);--pggm-checkbox-icon-size:var(--pggm-icon-functional-size);--pggm-checkbox-invalid-border-color:var(--pggm-form-control-invalid-border-color);--pggm-checkbox-checked-background-color:var(--pggm-form-control-accent-color);--pggm-checkbox-checked-hover-background-color:var(--pggm-form-control-hover-accent-color);--pggm-checkbox-checked-active-background-color:var(--pggm-form-control-active-accent-color);--pggm-checkbox-indeterminate-background-color:var(--pggm-form-control-accent-color);--pggm-checkbox-indeterminate-active-background-color:var(--pggm-form-control-active-accent-color);--pggm-checkbox-indeterminate-hover-background-color:var(--pggm-form-control-hover-accent-color);--pggm-checkbox-option-label-font-size:var(--pggm-document-font-size);--pggm-button-icon-size:var(--pggm-icon-functional-size);--pggm-button-font-size:var(--pggm-document-font-size);--pggm-button-min-block-size:var(--pggm-pointer-target-min-size);--pggm-button-min-inline-size:var(--pggm-pointer-target-min-size);--pggm-accordion-button-font-size:var(--pggm-document-font-size);--pggm-accordion-button-icon-size:var(--pggm-icon-functional-size)}
